/* ============================================================
   HONGSAMCHEONHA — Common Stylesheet
   Navy + Gold theme
============================================================ */
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.css');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&display=swap');

:root{
  --navy:        #1D263A;
  --navy-deep:   #1D263A;
  --navy-soft:   #1D263A;
  --gold:        #c8a45c;
  --gold-soft:   #d8b97a;
  --ivory:       #f6f1e7;
  --paper:       #fbf8f1;
  --line:        rgba(255,255,255,.12);
  --line-dark:   #e7e1d4;
  --ink:         #1a1a1a;
  --ink-soft:    #4a4a4a;
  --muted:       #8a8a8a;
  --max:         100%;
  --gutter:      8px;
  --radius:      2px;
  --display:     'Cormorant Garamond', 'Pretendard', serif;
  --sans:        'Pretendard', -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
}

html, body {
  overflow-x: hidden;
  max-width: 100%;
}
* {
  box-sizing: border-box;
}


*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:var(--sans);
  color:#fff;
  background:var(--navy);
  -webkit-font-smoothing:antialiased;
  font-size:14px;
  line-height:1.55;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{font-family:inherit;cursor:pointer;border:0;background:none}
.wrap{max-width:100%;width:100%;margin:0;padding:0 var(--gutter)}

/* ---------- Header ---------- */
.site-header{
  position:absolute;top:0;left:0;right:0;z-index:50;
  height:72px;
  display:flex;align-items:center;
  color:#fff;
}
.site-header .wrap{
  width:100%;display:flex;align-items:center;gap:48px;
}
.brand{
  display:flex;align-items:center;gap:8px;
  font-weight:700;font-size:15px;letter-spacing:.04em;
}
.brand .logo-mark{
  width:22px;height:22px;border:1.5px solid var(--gold);border-radius:50%;
  display:inline-flex;align-items:center;justify-content:center;
  color:var(--gold);font-size:11px;font-weight:700;
}
.gnb{display:flex;gap:36px;flex:1;justify-content:center}
.gnb a{
  font-size:14px;font-weight:500;letter-spacing:.02em;
  padding:8px 4px;
  position:relative;
  transition:color .2s;
}
.gnb a:hover{color:var(--gold-soft)}
.gnb a:hover::after{
  content:"";position:absolute;left:0;right:0;bottom:2px;height:1px;background:var(--gold);
}
.header-tools{display:flex;align-items:center;gap:14px}
.search-pill{
  display:flex;align-items:center;gap:8px;
  padding:7px 14px;
  border:1px solid rgba(255,255,255,.35);
  border-radius:999px;
  font-size:12px;color:rgba(255,255,255,.85);
  min-width:140px;
}
.lang{
  display:flex;align-items:center;gap:6px;
  font-size:12px;color:rgba(255,255,255,.85);
}
.lang::before{content:"⊕";color:var(--gold)}

/* ---------- Hero ---------- */
.hero{
  position:relative;
  min-height:520px;
  background:#1D263A url('../img/hero.jpg') center/cover no-repeat;
  color:#fff;
  display:flex;align-items:flex-end;
  padding:120px 0 56px;
  overflow:hidden;
}
.hero::before{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg, rgba(29,38,58,.55) 0%, rgba(29,38,58,.15) 30%, rgba(29,38,58,0) 60%);
  pointer-events:none;
}
.hero .wrap{position:relative;z-index:2;display:flex;align-items:flex-end;justify-content:space-between;gap:48px}
.hero-title{
  font-family:var(--display);
  font-weight:600;
  font-size:78px;
  line-height:.95;
  letter-spacing:.01em;
  margin:0;
  text-shadow:0 2px 24px rgba(0,0,0,.25);
}
.hero-copy{
  text-align:right;
  max-width:340px;
}
.hero-copy p{
  font-size:18px;line-height:1.6;margin:0 0 20px;
  font-weight:500;
}
.hero-cta{
  display:inline-flex;align-items:center;gap:10px;
  padding:14px 22px;
  background:var(--gold);color:#1D263A;
  font-weight:700;font-size:13px;letter-spacing:.06em;
}
.hero-cta:hover{background:var(--gold-soft)}
.hero-arrow{display:inline-block;transform:translateY(-1px)}

/* ---------- Section frame ---------- */
.section{padding:64px 0;background:var(--navy);color:#fff}
.section.dark{background:var(--navy);color:#fff}
.section.deep{background:var(--navy-deep);color:#fff}
.section.cream{background:var(--navy);color:#fff}
.section.cream a:hover {
  transform: none !important;
  opacity: 1 !important;
  background: inherit !important;
}
.section-head{
  display:flex;align-items:flex-end;justify-content:space-between;
  margin-bottom:28px;
}
.section-head h2{
  font-size:18px;font-weight:700;margin:0;letter-spacing:.02em;color:#fff;
}
.section .more{
  font-size:12px;color:inherit;opacity:.75;
  display:inline-flex;align-items:center;gap:6px;
}
.section .more:hover{opacity:1;color:var(--gold-soft)}
.eyebrow{
  font-family:var(--display);
  font-size:13px;letter-spacing:.4em;color:var(--gold);
  text-transform:uppercase;
  margin:0 0 12px;
  text-align:center;
}
.section-title-center{
  text-align:center;font-size:28px;font-weight:600;line-height:1.45;margin:0 0 28px;
  letter-spacing:-.01em;
}

/* ---------- Featured 5-up ---------- */
.featured{
  display:grid;grid-template-columns:repeat(5,1fr);gap:10px;
}
.feat-card{
  background:#1D263A;border:0;
  position:relative;overflow:hidden;
  transition:transform .35s ease, box-shadow .35s ease;
  color:#fff;
}
.feat-card:hover{transform:translateY(-4px);box-shadow:0 16px 30px rgba(0,0,0,.3)}
.feat-card .thumb{
  aspect-ratio:1/1;
  background:var(--navy-deep) center/cover no-repeat;
  position:relative;
}
.feat-card .thumb::after{
  content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 60%,rgba(0,0,0,.15));
}
.feat-card .meta{padding:14px 12px 18px;text-align:center}
.feat-card .name{font-size:13px;font-weight:600;color:#fff;margin:0 0 6px}
.feat-card .tags{
  display:flex;justify-content:center;gap:4px;flex-wrap:wrap;font-size:12px;
}
.feat-card .tags span{
  font-size:12px;color:rgba(255,255,255,.7);
  background:transparent;
  padding:2px 6px;border-radius:2px;
  line-height:0.3;
}

/* ---------- Lab band ---------- */
.lab{
  position:relative;
  min-height:380px;
  background:var(--navy-deep) url('../img/lab.jpg') center/cover no-repeat;
  color:#fff;
  display:flex;align-items:center;justify-content:center;
  text-align:center;
  padding:96px 0;
}
.lab::before{
  content:"";position:absolute;inset:0;background:rgba(29,38,58,.55);
}
.lab .inner{position:relative;z-index:2;max-width:680px}
.lab .eyebrow{color:var(--gold);letter-spacing:.2em;font-size:16px}
.lab h3{
  font-size:30px;font-weight:600;line-height:1.5;margin:8px 0 28px;
  letter-spacing:-.01em;
}
.lab .btn-line{
  display:inline-flex;align-items:center;gap:10px;
  border:1px solid var(--gold);color:var(--gold);
  padding:13px 28px;font-size:13px;letter-spacing:.06em;font-weight:600;
}
.lab .btn-line:hover{background:var(--gold);color:var(--navy-deep)}

/* ---------- Product grid 3x3 ---------- */
.pgrid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:10px;
}
.pcard{
  background:#1D263A;
  border:1px solid var(--line);
  overflow:hidden;
  transition:border-color .25s, transform .35s;
}
/*.pcard:hover{border-color:var(--gold);transform:translateY(-3px)}*/
.pcard .thumb{
  aspect-ratio:1/1;
  background:#1D263A center/cover no-repeat;
  position:relative;
}
.pcard .thumb .badge{
  position:absolute;top:14px;left:14px;
  font-size:10px;letter-spacing:.2em;
  color:var(--gold);
  border:1px solid var(--gold);
  padding:3px 8px;
}
.pcard .body{padding:20px 22px 24px}
.pcard .name{font-size:15px;font-weight:600;margin:0 0 6px;color:#fff}
.pcard .price{font-size:13px;color:var(--gold);font-weight:600;letter-spacing:.04em}

/* ---------- Big circle / brand mark ---------- */
.pcard.brandmark{
  display:flex;align-items:center;justify-content:center;
  background:#1D263A url('../img/circle.jpg') center/cover no-repeat;
  position:relative;
}
.pcard.brandmark::before{
  content:"";position:absolute;inset:0;background:rgba(29,38,58,.4);
}
.pcard.brandmark .ring{
  position:relative;z-index:2;
  width:78%;aspect-ratio:1;border:1px solid var(--gold);border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-family:var(--display);font-size:46px;color:var(--gold);letter-spacing:.3em;
}

/* ---------- Satisfaction ---------- */
.satis{
  text-align:center;color:#fff;
}
.satis .label{font-size:18px;font-weight:600;letter-spacing:.02em}
.satis .pct{
  font-family:var(--display);
  font-size:88px;font-weight:700;color:var(--gold);
  line-height:1;margin-top:12px;
  letter-spacing:.04em;
}

/* ---------- Reviews ---------- */
.reviews{
  display:grid;grid-template-columns:repeat(4,1fr);gap:10px;
  margin-top:32px;
}
.review{
  background:#1D263A;color:#fff;
  padding:0;overflow:hidden;
}
.review .top{
  height:120px;background:var(--navy-deep) center/cover no-repeat;
}
.review .body{padding:18px 18px 20px}
.review .text{
  font-size:12.5px;line-height:1.6;color:#fff;
  margin:0 0 14px;
  display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;
}
.review .meta{
  display:flex;align-items:center;justify-content:space-between;
  font-size:11px;color:rgba(255,255,255,.6);
}
.stars{color:var(--gold);letter-spacing:1px}
/* ---------- SNS ---------- */
.sns {
  display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin-top:32px;
}
.sns a {
  position:relative; aspect-ratio:16/10;
  background:#1D263A center/cover no-repeat;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden; color:#fff;
}
.sns a:hover { transform:none; }
.sns a::before { display:none; }
.sns a:hover::before { display:none; }
.sns .title {
  position:relative; z-index:2;
  font-family:var(--display); font-size:30px; letter-spacing:.3em;
  display:flex; align-items:center; gap:18px;
}
.sns .icon {
  width:44px; height:44px; border:1px solid #fff; border-radius:50%;
  display:inline-flex; align-items:center; justify-content:center;
  font-size:18px;
}





/* ---------- Blog & Youtube ---------- */
.cream .section-head h2{font-size:22px;font-weight:700}
.bloglist{
  display:grid;grid-template-columns:1.4fr 1fr 1fr;gap:10px;
}
.blog-feature{
  background:#1D263A;padding:28px;color:#fff;
  display:flex;flex-direction:column;justify-content:space-between;
  min-height:240px;
}
.blog-feature h3{font-size:20px;line-height:1.45;margin:0 0 14px;font-weight:600;color:#fff}
.blog-feature .date{font-size:11px;color:var(--gold);letter-spacing:.05em}
.blog-card{
  background:#1D263A;color:#fff;
  display:flex;flex-direction:column;
}
.blog-card .img{aspect-ratio:16/10;background:var(--navy-deep) center/cover no-repeat}
.blog-card .body{padding:18px 18px 20px;flex:1;display:flex;flex-direction:column;justify-content:space-between}
.blog-card h4{font-size:14px;font-weight:600;margin:0 0 8px;line-height:1.5;color:#fff}
.blog-card .date{font-size:11px;color:rgba(255,255,255,.55)}

.ytlist{display:grid;grid-template-columns:repeat(2,1fr);gap:10px}
.ytcard{
  position:relative;aspect-ratio:16/9;
  background:#1D263A center/cover no-repeat;color:#fff;
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;
}
.ytcard::before{
  content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.2),rgba(0,0,0,.55));
}
.ytcard .play{
  position:relative;z-index:2;width:64px;height:64px;border-radius:50%;
  background:var(--gold);display:flex;align-items:center;justify-content:center;
  color:var(--navy-deep);font-size:22px;
}
.ytcard .cap{
  position:absolute;left:18px;bottom:14px;z-index:2;
  font-size:13px;font-weight:500;color:#fff;
}

/* ---------- Footer-CTA ---------- */
.footer-cta{
  background:var(--navy-deep);text-align:center;padding:80px 24px;color:#fff;
}
.footer-cta .mark{
  font-family:var(--display);font-size:46px;color:#fff;font-weight:600;
  letter-spacing:.05em;display:flex;align-items:center;justify-content:center;gap:14px;
}
.footer-cta .mark .star{color:var(--gold);font-size:22px;letter-spacing:6px}
.footer-cta .en{font-size:12px;color:var(--gold);letter-spacing:.3em;margin-top:4px}
.footer-cta p{font-size:14px;color:rgba(255,255,255,.75);margin:18px 0 26px;line-height:1.7}
.footer-cta .btns{display:flex;justify-content:center;gap:10px}
.footer-cta .btn{
  padding:12px 26px;border:1px solid #fff;color:#fff;font-size:12px;letter-spacing:.06em;font-weight:600;
}
.footer-cta .btn.solid{background:var(--gold);border-color:var(--gold);color:var(--navy-deep)}

/* ---------- Footer ---------- */
.site-footer{
  background:var(--navy-deep);border-top:0px solid rgba(255,255,255,.08);
  padding:48px 0 36px;font-size:12px;color:rgba(255,255,255,.7);
}
.foot-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr;gap:36px}
.foot-grid h5{font-size:13px;font-weight:700;color:var(--gold);margin:0 0 12px;letter-spacing:.04em}
.foot-grid p{margin:4px 0;line-height:1.7}
.foot-grid .phone{font-family:var(--display);font-size:28px;color:#fff;font-weight:700;letter-spacing:.04em}
.foot-grid .acc{
  display:block;background:transparent;padding:8px 12px;margin-top:10px;
  font-weight:600;color:#fff;
}
.foot-list a{display:block;padding:8px 12px;border-bottom:1px solid rgba(255,255,255,.08);font-size:12px}
.foot-bottom{
  margin-top:36px;padding-top:18px;border-top:1px solid rgba(255,255,255,.08);
  display:flex;justify-content:space-between;color:rgba(255,255,255,.45);font-size:11px;
}

/* ---------- Image placeholder ---------- */
.ph{
  background:
    repeating-linear-gradient(135deg, #1D263A 0 8px, #1D263A 8px 16px);
  display:flex;align-items:center;justify-content:center;
  color:rgba(255,255,255,.5);font:500 11px/1.4 'JetBrains Mono', ui-monospace, monospace;
  text-align:center;letter-spacing:.04em;
  padding:8px;
}
.ph.dark{
  background:
    repeating-linear-gradient(135deg, #1D263A 0 8px, #1D263A 8px 16px);
  color:rgba(255,255,255,.45);
}

/* ---------- Slider arrow buttons ---------- */
.slider-nav{display:flex;gap:6px}
.slider-nav button{
  width:30px;height:30px;border:1px solid currentColor;border-radius:50%;
  display:inline-flex;align-items:center;justify-content:center;
  font-size:11px;color:inherit;opacity:.75;
}
.slider-nav button:hover{opacity:1;background:transparent}

/* ---------- Responsive (basic) ---------- */
@media (max-width:1200px){
  :root{--gutter:8px}
}
@media (max-width:980px){
  :root{--gutter:8px}
  .featured,.pgrid,.reviews,.sns,.bloglist,.ytlist,.foot-grid{grid-template-columns:1fr 1fr;}
  .hero-title{font-size:54px}
  .gnb{display:none}
}


@media (max-width: 768px) {
  /* SNS */
  .sns { grid-template-columns: 1fr !important; }
  
  /* 상품그리드 */
  .featured { grid-template-columns: repeat(2,1fr) !important; }
  .pgrid { grid-template-columns: repeat(2,1fr) !important; }
  
  /* 블로그 */
  .blog-grid { grid-template-columns: 1fr !important; }
  
  /* 전광판 */
  .marquee-track { font-size: 60px !important; }
  
  /* 히어로 텍스트 */
  .hero-text-overlay { 
    bottom: 20px !important; 
    right: 16px !important; 
  }
  .hero-text-overlay p { font-size: 22px !important; }

  /* 랩 너비 */
  .wrap { padding: 0 16px !important; }
}
