:root{
  /* constant brand tokens */
  --white:#ffffff;
  --amber:#f8b62c;
  --amber-deep:#dd9e12;
  --amber-ink:#5a3d0a;
  --navy-ink:#241608;
  --on-navy-muted: rgba(255,255,255,0.75);
  --on-navy-faint: rgba(255,255,255,0.55);
  --border-on-navy: rgba(255,255,255,0.22);
  --font-display:'Anton','Pretendard Variable',sans-serif;
  --font-body:'Pretendard Variable','Pretendard',-apple-system,sans-serif;
  --font-mono:'JetBrains Mono', monospace;
  --container: 1120px;

  /* themeable — light (warm) mode defaults */
  --bg-page:#fffaf0;
  --surface:#ffffff;
  --bg-soft:#fbead0;
  --bg-band:linear-gradient(135deg, #f8b62c 0%, #f3a61d 100%);
  --band-text:#3a2a10;
  --band-text-muted:rgba(58,42,16,0.72);
  --band-text-faint:rgba(58,42,16,0.5);
  --band-border: rgba(58,42,16,0.16);
  --nav-bg: rgba(255,250,240,0.92);
  --navy:#6b3f0a;
  --text-body:#4a3b28;
  --text-muted:#8b7a63;
  --text-faint:#b0a28c;
  --border-subtle: rgba(74,59,40,0.12);
  --border-strong: rgba(74,59,40,0.24);
  --hero-scrim-a: rgba(58,38,10,0.28);
  --hero-scrim-b: rgba(48,30,8,0.46);
  --hero-scrim-c: rgba(38,22,6,0.86);
  --hero-scrim-side: rgba(38,22,6,0.72);
  color-scheme: light;
}
[data-theme="dark"]{
  --bg-page:#241a10;
  --surface:#2f2314;
  --bg-soft:#332616;
  --bg-band:linear-gradient(135deg, #f8b62c 0%, #e2a01c 100%);
  --band-text:#2c1e08;
  --band-text-muted:rgba(44,30,8,0.72);
  --band-text-faint:rgba(44,30,8,0.5);
  --band-border: rgba(44,30,8,0.16);
  --nav-bg: rgba(36,26,16,0.9);
  --navy:#ffd27a;
  --text-body:#ecdfcd;
  --text-muted:#c2ac8d;
  --text-faint:#8f7c62;
  --border-subtle: rgba(255,255,255,0.10);
  --border-strong: rgba(255,255,255,0.20);
  --hero-scrim-a: rgba(20,13,4,0.35);
  --hero-scrim-b: rgba(16,10,3,0.55);
  --hero-scrim-c: rgba(12,8,2,0.92);
  --hero-scrim-side: rgba(12,8,2,0.8);
  color-scheme: dark;
}
body{transition:background .25s ease, color .25s ease;}
.frame, .mission-card, .biz-card, .identity-card, .why-card, .project-card, header.nav{
  transition:background .25s ease, border-color .25s ease;
}

*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  background:var(--bg-page);
  color:var(--text-body);
  font-family:var(--font-body);
  line-height:1.68;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  word-break:keep-all;
  overflow-wrap:break-word;
}
img{display:block; max-width:100%; width:100%; height:auto;}
svg{display:block;}
a{color:inherit;}
.wrap{max-width:var(--container); margin:0 auto; padding:0 32px;}
.eyebrow{
  font-family:var(--font-mono);
  font-size:12px;
  letter-spacing:0.13em;
  text-transform:uppercase;
  color:var(--navy);
  display:inline-flex;
  align-items:center;
  gap:10px;
  word-break:normal;
}
.eyebrow::before{
  content:"";
  width:16px; height:2px;
  background:var(--amber);
  display:inline-block;
}
.on-navy .eyebrow{color:var(--amber);}
.on-navy{color:var(--white);}
.on-navy .section-head h2{color:var(--white);}
.on-navy .section-head p{color:var(--on-navy-muted);}
h1,h2,h3{font-family:var(--font-display); font-weight:400; letter-spacing:0.01em; word-break:keep-all;}
.btn{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-body); font-weight:700; font-size:15px;
  padding:14px 26px; border-radius:2px;
  border:1px solid transparent;
  cursor:pointer; text-decoration:none;
  transition:transform .15s ease, background .2s ease, border-color .2s ease;
}
.btn:focus-visible{outline:2px solid var(--amber); outline-offset:3px;}
.btn-primary{background:var(--amber); color:var(--navy-ink);}
.btn-primary:hover{background:var(--amber-deep); transform:translateY(-1px);}
.btn-ghost-light{border-color:var(--border-strong); color:var(--navy);}
.btn-ghost-light:hover{border-color:var(--navy); background:var(--bg-soft);}

/* uniform image frames */
.frame{border-radius:2px; overflow:hidden; position:relative;}
.frame img{width:100%; height:100%; object-fit:cover;}
.on-cream .frame{border-color:rgba(26,20,0,0.14) !important;}
.frame-4-3{aspect-ratio:4/3;}
.frame-3-2{aspect-ratio:3/2;}

/* ---------- NAV ---------- */
header.nav{
  position:sticky; top:0; z-index:40;
  background:var(--nav-bg);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--border-subtle);
}
.nav-inner{display:flex; align-items:center; justify-content:space-between; padding:14px 32px;}
.brandmark{display:flex; align-items:center; text-decoration:none;}
.brandmark img{width:150px; height:auto;}
.nav-links{display:flex; gap:22px; align-items:center;}
.nav-links a{font-size:13.5px; color:var(--text-muted); text-decoration:none; font-weight:600;}
.nav-links a:hover{color:var(--navy);}
.nav-cta{display:none;}
@media(min-width:760px){.nav-cta{display:inline-flex;}}
.nav-links .mobile-hide{display:none;}
@media(min-width:760px){.nav-links .mobile-hide{display:inline;}}
.theme-toggle{
  display:inline-flex; align-items:center; justify-content:center;
  width:36px; height:36px; border-radius:50%;
  border:1px solid var(--border-strong); background:transparent;
  color:var(--navy); cursor:pointer; padding:0;
  transition:border-color .2s ease, background .2s ease;
}
.theme-toggle:hover{background:var(--bg-soft);}
.theme-toggle:focus-visible{outline:2px solid var(--amber); outline-offset:2px;}
.theme-toggle svg{width:17px; height:17px;}
.theme-toggle .icon-sun{display:none;}
[data-theme="dark"] .theme-toggle .icon-moon{display:none;}
[data-theme="dark"] .theme-toggle .icon-sun{display:block;}
.nav-links .lang-switch{
  display:inline-flex; align-items:center; justify-content:center;
  height:36px; padding:0 13px; border-radius:999px;
  border:1px solid var(--border-strong); background:transparent;
  color:var(--navy); font-family:var(--font-mono); font-size:12px; font-weight:600;
  letter-spacing:.06em; text-decoration:none; white-space:nowrap;
  transition:border-color .2s ease, background .2s ease;
}
.nav-links .lang-switch:hover{background:var(--bg-soft); color:var(--navy);}
.nav-links .lang-switch:focus-visible{outline:2px solid var(--amber); outline-offset:2px;}
.logo-light-only{display:block;}
.logo-dark-only{display:none;}
[data-theme="dark"] .logo-light-only{display:none;}
[data-theme="dark"] .logo-dark-only{display:block;}

/* ---------- HERO ---------- */
.hero{
  position:relative;
  min-height:86vh;
  display:flex; align-items:flex-end;
  padding:110px 0 72px;
  overflow:hidden;
  background:var(--navy-ink);
}
.hero-bg{position:absolute; top:0; right:0; bottom:0; left:0; z-index:0;}
.hero-bg img{width:100%; height:100%; object-fit:cover;}
.hero-scrim{
  position:absolute; top:0; right:0; bottom:0; left:0; z-index:1;
  background:
    linear-gradient(180deg, var(--hero-scrim-a) 0%, var(--hero-scrim-b) 34%, var(--hero-scrim-c) 92%),
    linear-gradient(90deg, var(--hero-scrim-side) 0%, transparent 62%);
}
.hero .wrap{position:relative; z-index:2;}
.hero-content{position:relative; z-index:2; max-width:640px;}
.hero h1{
  font-size:clamp(30px, 5vw, 52px);
  line-height:1.24;
  margin:18px 0 20px;
  color:var(--white);
  word-break:keep-all;
}
.hero h1 em{font-style:normal; color:var(--amber);}
.hero p.lede{
  font-family:var(--font-body); font-weight:400;
  font-size:16.5px; color:var(--on-navy-muted); max-width:520px; margin-bottom:32px;
}
.hero-actions{display:flex; flex-wrap:wrap; gap:14px;}

/* ---------- SECTION shell ---------- */
section{padding:84px 0;}
.on-soft{background:var(--bg-soft);}
.section-head{max-width:640px; margin-bottom:46px;}
.section-head h2{font-size:clamp(24px,3.4vw,32px); margin-top:16px; line-height:1.32; font-weight:400;}
.section-head p{color:var(--text-muted); font-size:15px; margin-top:14px;}
.divider{border:none; border-top:1px solid var(--border-subtle);}

/* ---------- WHO WE ARE / BRAND STORY ---------- */
.who-grid{display:grid; grid-template-columns:1fr; gap:44px; align-items:center;}
@media(min-width:900px){.who-grid{grid-template-columns:0.95fr 1.05fr;}}
.who-list{list-style:none; margin:24px 0;}
.who-list li{
  font-size:14.5px; color:var(--text-muted); padding:12px 0 12px 22px; position:relative;
  border-bottom:1px solid var(--border-subtle);
}
.who-list li:first-child{border-top:1px solid var(--border-subtle);}
.who-list li::before{content:""; position:absolute; left:0; top:19px; width:8px; height:8px; background:var(--amber); border-radius:1px;}
.who-close{font-family:var(--font-body); font-weight:700; font-size:17px; color:var(--navy); line-height:1.6; margin-top:6px;}

/* ---------- MISSION ---------- */
.mission-grid{display:grid; grid-template-columns:1fr; gap:1px; background:var(--border-subtle); border:1px solid var(--border-subtle);}
@media(min-width:820px){.mission-grid{grid-template-columns:repeat(3,1fr);}}
.mission-card{background:var(--surface); padding:32px 28px;}
.mission-card .tag{font-family:var(--font-mono); font-size:11.5px; color:var(--amber-deep); letter-spacing:0.06em;}
.mission-card h3{font-size:19px; margin:12px 0 16px; color:var(--navy); font-weight:400;}
.mission-card ul{list-style:none;}
.mission-card li{font-size:14px; color:var(--text-muted); padding-left:15px; position:relative; margin-bottom:9px; line-height:1.55;}
.mission-card li::before{content:""; position:absolute; left:0; top:8px; width:6px; height:6px; background:var(--navy); border-radius:1px; opacity:0.5;}
.mission-note{margin-top:34px; color:var(--text-muted); font-size:15px; max-width:720px;}

/* ---------- BUSINESS PILLARS ---------- */
.biz-grid{display:grid; grid-template-columns:1fr; gap:26px;}
@media(min-width:820px){.biz-grid{grid-template-columns:repeat(3,1fr);}}
.biz-card{background:var(--surface); border:1px solid var(--border-subtle);}
.biz-body{padding:22px 22px 26px;}
.biz-body .num{font-family:var(--font-mono); font-size:11.5px; color:var(--amber-deep);}
.biz-body h3{font-size:19px; margin:10px 0 10px; color:var(--navy); font-weight:400;}
.biz-body p{font-size:14px; color:var(--text-muted);}
.biz-foot{text-align:center; margin-top:38px; font-weight:700; font-size:16px; color:var(--navy);}

/* ---------- SIGNATURE / TWO-COL WITH LIST ---------- */
.signature-grid{display:grid; grid-template-columns:1fr; gap:44px; align-items:center;}
@media(min-width:900px){.signature-grid{grid-template-columns:1fr 1fr;}}
.signature-grid.reverse .img-col{order:2;}
@media(max-width:899px){.signature-grid.reverse .img-col{order:0;}}
.taglist{list-style:none; margin:22px 0;}
.taglist li{font-size:14px; color:var(--text-muted); padding:10px 0 10px 20px; position:relative; border-bottom:1px solid var(--border-subtle);}
.taglist li:first-child{border-top:1px solid var(--border-subtle);}
.taglist li::before{content:""; position:absolute; left:0; top:18px; width:7px; height:7px; background:var(--amber); border-radius:1px;}
.callout{font-weight:700; font-size:16.5px; color:var(--navy); margin-top:18px;}

/* ---------- CRAFT IDENTITY ---------- */
.identity-grid{display:grid; grid-template-columns:1fr; gap:1px; background:var(--border-subtle); border:1px solid var(--border-subtle);}
@media(min-width:820px){.identity-grid{grid-template-columns:repeat(3,1fr);}}
.identity-card{background:var(--surface); padding:32px 26px; text-align:left;}
.identity-icon{width:56px; height:56px; border-radius:50%; background:var(--bg-soft); display:flex; align-items:center; justify-content:center; overflow:hidden; margin-bottom:18px;}
.identity-icon img{width:100%; height:100%; object-fit:cover;}
.identity-card h3{font-size:18px; margin-bottom:6px; color:var(--navy); font-weight:400;}
.identity-card .sub{font-family:var(--font-mono); font-size:11px; color:var(--amber-deep); letter-spacing:0.05em; margin-bottom:10px; display:block;}
.identity-card p{font-size:13.5px; color:var(--text-muted);}
.identity-note{margin-top:30px; color:var(--text-muted); font-size:14px; max-width:720px;}

/* ---------- JOURNEY (how it connects) ---------- */
.journey-track{display:grid; grid-template-columns:1fr; gap:0;}
@media(min-width:900px){.journey-track{grid-template-columns:repeat(6,1fr);}}
.journey-step{padding:22px 16px; border-left:1px solid var(--border-strong); position:relative;}
.journey-step:first-child{border-left:none;}
@media(max-width:899px){
  .journey-step{border-left:none; border-top:1px solid var(--border-strong); padding:18px 4px 18px 24px;}
  .journey-step:first-child{border-top:none;}
}
.journey-step .n{font-family:var(--font-mono); font-size:11.5px; color:var(--amber-deep);}
.journey-step h4{font-size:14.5px; margin:8px 0 6px; font-family:var(--font-body); font-weight:700; letter-spacing:0.01em; color:var(--navy);}
.journey-step p{font-size:12.5px; color:var(--text-muted);}
.journey-foot{text-align:center; margin-top:32px; color:var(--text-muted); font-size:14.5px; max-width:640px; margin-left:auto; margin-right:auto;}

/* ---------- DATA / B2B (two-col) ---------- */
.data-grid{display:grid; grid-template-columns:1fr; gap:44px; align-items:center;}
@media(min-width:900px){.data-grid{grid-template-columns:1fr 1fr;}}
.b2b-grid{display:grid; grid-template-columns:1fr; gap:44px; align-items:center;}
@media(min-width:900px){.b2b-grid{grid-template-columns:1fr 1fr;}}
.b2b-tags{display:flex; flex-wrap:wrap; gap:10px; margin-top:22px;}
.chip{font-family:var(--font-mono); font-size:12px; color:var(--navy); border:1px solid var(--border-strong); padding:8px 14px; border-radius:2px; background:var(--bg-soft);}
.b2b-target{margin-top:24px; font-size:13.5px; color:var(--text-faint);}

/* ---------- WHY US ---------- */
.why-grid{display:grid; grid-template-columns:1fr; gap:1px; background:var(--border-subtle); border:1px solid var(--border-subtle);}
@media(min-width:640px){.why-grid{grid-template-columns:repeat(2,1fr);}}
@media(min-width:960px){.why-grid{grid-template-columns:repeat(3,1fr);}}
.why-card{background:var(--surface); padding:26px 24px;}
.why-card .num{font-family:var(--font-mono); font-size:11.5px; color:var(--amber-deep);}
.why-card h3{font-size:16.5px; margin:10px 0 8px; color:var(--navy); font-weight:400;}
.why-card p{font-size:13px; color:var(--text-muted);}

/* ---------- ACHIEVEMENTS ---------- */
.achieve{position:relative; background:var(--bg-band);}
.achieve .eyebrow::before{background:var(--band-text);}
.achieve-bottle{
  position:absolute; right:-40px; top:50%; transform:translateY(-50%);
  width:340px; opacity:0.1; z-index:0; pointer-events:none;
}
.achieve .wrap{position:relative; z-index:1;}
.stat-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:1px; background:var(--band-border); border:1px solid var(--band-border);}
@media(min-width:760px){.stat-grid{grid-template-columns:repeat(4,1fr);}}
.stat-card{background:rgba(255,255,255,0.22); padding:32px 20px; text-align:center;}
.stat-card .figure{font-family:var(--font-display); font-size:clamp(32px,4.2vw,44px); color:var(--band-text); font-weight:400;}
.stat-card .label{font-size:12.5px; color:var(--band-text-muted); margin-top:8px;}
.achieve-note{margin-top:22px; font-size:12px; color:var(--band-text-faint); text-align:center;}

/* ---------- IMAGE-BLOCK SECTIONS (brewery wall / gallery / products) ---------- */
.imgblock-head{margin-bottom:28px;}
.imgblock .frame{border:1px solid var(--border-subtle);}

/* ---------- POPUP SCHEDULE (dynamic list) ---------- */
.popup-grid{display:grid; grid-template-columns:1fr; gap:36px; align-items:start;}
@media(min-width:900px){.popup-grid{grid-template-columns:0.95fr 1.05fr;}}
.popup-list{list-style:none;}
.popup-item{
  display:flex; justify-content:space-between; align-items:baseline; gap:12px;
  padding:16px 0; border-bottom:1px solid var(--border-subtle);
  font-size:14.5px;
}
.popup-item:first-child{border-top:1px solid var(--border-subtle);}
.popup-item .period{font-family:var(--font-mono); color:var(--amber-deep); white-space:nowrap;}
.popup-item .place{color:var(--navy); font-weight:600; text-align:right;}
.popup-note{margin-top:14px; font-size:11.5px; color:var(--text-faint);}

/* ---------- PARTNERS ---------- */
.partner-list{display:flex; flex-wrap:wrap; gap:10px;}
.partner-chip{
  font-size:13px; padding:9px 16px; border-radius:2px;
  border:1px solid var(--border-strong); color:var(--text-muted);
}

/* ---------- COMMUNITY STATEMENT ---------- */
.community-grid{display:grid; grid-template-columns:1fr; gap:44px; align-items:center;}
@media(min-width:900px){.community-grid{grid-template-columns:0.9fr 1.1fr;}}
.community-grid h2{font-size:clamp(26px,3.6vw,36px); line-height:1.3; margin-bottom:20px; color:var(--navy);}
.community-grid p{font-size:14.5px; color:var(--text-muted); line-height:1.8; max-width:420px;}
.bottle-icon{width:64px; margin-bottom:24px;}

/* ---------- MAJOR PROJECTS ---------- */
.projects-grid{display:grid; grid-template-columns:1fr; gap:26px;}
@media(min-width:820px){.projects-grid{grid-template-columns:repeat(3,1fr);}}
.project-card{border:1px solid var(--border-subtle);}
.project-body{padding:20px 20px 24px;}
.project-body .tag{font-family:var(--font-mono); font-size:11px; color:var(--amber-deep); letter-spacing:0.05em;}
.project-body h3{font-size:17px; margin:10px 0 10px; color:var(--navy); font-weight:400;}
.project-body p{font-size:13px; color:var(--text-muted); line-height:1.6;}
.projects-foot{margin-top:28px; color:var(--text-muted); font-size:14px; max-width:680px;}

/* ---------- CONTACT ---------- */
.contact-grid{display:grid; grid-template-columns:1fr; gap:1px; background:var(--border-subtle); border:1px solid var(--border-subtle);}
@media(min-width:720px){.contact-grid{grid-template-columns:1fr 1fr;}}
.contact-card{background:var(--surface); padding:38px 32px;}
.contact-card h3{font-size:20px; margin:12px 0 10px; color:var(--navy); font-weight:400;}
.contact-card p{color:var(--text-muted); font-size:14.5px; margin-bottom:20px;}
.contact-card a.email{
  font-family:var(--font-mono); font-size:14.5px; color:var(--amber-deep);
  text-decoration:none; border-bottom:1px solid transparent;
}
.contact-card a.email:hover{border-color:var(--amber-deep);}
.contact-meta{margin-top:52px; display:flex; flex-wrap:wrap; gap:26px; font-size:13px; color:var(--text-muted);}
.contact-meta strong{color:var(--navy); font-weight:700;}

/* ---------- FOOTER ---------- */
footer{padding:36px 0; background:var(--surface); border-top:1px solid var(--border-subtle);}
.footer-inner{display:flex; flex-direction:column; gap:18px; font-size:12.5px; color:var(--text-faint);}
@media(min-width:720px){.footer-inner{flex-direction:row; justify-content:space-between; align-items:flex-start;}}
.footer-inner a{color:var(--text-faint); text-decoration:none;}
.footer-inner a:hover{color:var(--text-muted);}
.footer-logo{height:22px; width:auto;}
.footer-meta{display:flex; flex-wrap:wrap; gap:4px 16px; margin-top:6px;}


/* ===== BREWTRIP KOREA 앱 유도 ===== */
.app-cta{text-align:center; max-width:620px; margin:0 auto;}
.app-cta h2{font-size:clamp(23px,3vw,28px); margin-top:16px; color:var(--navy); line-height:1.4;}
.app-lede{margin-top:14px; color:var(--text-muted); font-size:15.5px; line-height:1.7;}
.app-actions{display:flex; gap:10px; justify-content:center; flex-wrap:wrap; margin-top:24px;}
@media (max-width:520px){
  .app-actions .btn{width:100%;}
}
