  :root {
    --brand: #2F4538;
    --brand-dark: #1E2E24;
    --accent: #C97C3D;
    --accent-dark: #A6612B;

    --bg: #F2F0EA;
    --surface: #FFFFFF;
    --surface-alt: #E9E4D8;
    --text: #24291F;
    --text-muted: #6B7263;
    --text-on-brand: #FBF8F1;
    --border: #DAD4C4;
    --blob-1: #EFDCC3;
    --blob-2: #D9E1D3;

    --font-display: 'Gowun Batang', 'Gowun Dodum', serif;
    --font-body: 'Gowun Dodum', 'Gowun Batang', sans-serif;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --shadow-sm: 0 1px 3px rgba(30, 46, 36, 0.10);
    --shadow-md: 0 8px 24px rgba(30, 46, 36, 0.12);
    --shadow-lg: 0 20px 48px rgba(30, 46, 36, 0.20);

    --container: 1120px;
    --space-1: 8px; --space-2: 16px; --space-3: 24px; --space-4: 40px; --space-5: 64px; --space-6: 96px;
    --dur-fast: 160ms; --dur-med: 260ms; --ease: cubic-bezier(.22,.61,.36,1);
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
    html.js .reveal { opacity: 1 !important; transform: none !important; }
  }

  body { margin: 0; font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.7; font-size: 16px; -webkit-font-smoothing: antialiased; }
  img { max-width: 100%; display: block; }
  a { color: inherit; }
  ul { list-style: none; margin: 0; padding: 0; }
  h1, h2, h3, h4 { font-family: var(--font-display); color: var(--brand); line-height: 1.35; margin: 0; }
  .container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--space-3); }
  a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }

  .btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 26px; min-height: 48px; border-radius: var(--radius-sm); font-family: var(--font-display); font-weight: 700; font-size: 16px; text-decoration: none; border: 2px solid transparent; cursor: pointer; transition: transform var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease); }
  .btn:active { transform: scale(0.97); }
  .btn-primary { background: var(--accent); color: #FFF9F1; box-shadow: var(--shadow-sm); }
  .btn-primary:hover { background: var(--accent-dark); box-shadow: var(--shadow-md); }
  .btn-ghost { background: transparent; color: var(--brand); border-color: var(--border); }
  .btn-ghost:hover { border-color: var(--brand); }
  .btn-block { width: 100%; }

  .nav { position: sticky; top: 0; z-index: 50; background: rgba(242, 240, 234, 0.92); backdrop-filter: saturate(180%) blur(10px); border-bottom: 1px solid var(--border); }
  .nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px var(--space-3); max-width: var(--container); margin: 0 auto; }
  .brand { font-family: var(--font-display); font-weight: 700; font-size: 21px; color: var(--brand); text-decoration: none; letter-spacing: 0.01em; }
  .nav-links { display: none; gap: var(--space-4); font-weight: 500; font-size: 15px; }
  .nav-links a { text-decoration: none; color: var(--text); transition: color var(--dur-fast) var(--ease); }
  .nav-links a:hover { color: var(--accent-dark); }
  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; background: transparent; border: 1px solid var(--border); border-radius: var(--radius-sm); cursor: pointer; }
  .nav-toggle svg { width: 22px; height: 22px; }
  .nav-mobile { display: none; flex-direction: column; gap: var(--space-1); padding: var(--space-2) var(--space-3) var(--space-3); border-top: 1px solid var(--border); }
  .nav-mobile.open { display: flex; }
  .nav-mobile a { padding: 12px 4px; text-decoration: none; color: var(--text); font-weight: 500; border-bottom: 1px solid var(--border); }
  @media (min-width: 860px) { .nav-links { display: flex; } .nav-cta { display: inline-flex; } .nav-toggle { display: none; } .nav-mobile { display: none !important; } }

  /* ---- Hero (two-column, lattice signature) ---- */
  .hero { position: relative; overflow: hidden; padding: var(--space-6) 0 var(--space-5); }
  .hero-inner { position: relative; display: grid; gap: var(--space-5); grid-template-columns: 1fr; align-items: center; }
  @media (min-width: 900px) { .hero-inner { grid-template-columns: 1.1fr 0.9fr; } }
  .hero-text { max-width: 560px; }
  .eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; letter-spacing: 0.04em; color: var(--accent-dark); background: var(--surface); border: 1px solid var(--border); padding: 6px 14px; border-radius: 999px; margin-bottom: var(--space-3); }
  .hero h1 { font-size: clamp(30px, 5vw, 48px); font-weight: 700; letter-spacing: -0.01em; margin-bottom: var(--space-3); }
  .hero .sub { font-size: clamp(16px, 2vw, 18px); color: var(--text-muted); margin-bottom: var(--space-4); }
  .hero-ctas { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-bottom: var(--space-4); }
  .hero-proof { display: flex; flex-wrap: wrap; gap: var(--space-4); padding-top: var(--space-3); border-top: 1px solid var(--border); }
  .hero-proof-item { display: flex; flex-direction: column; }
  .hero-proof-num { font-family: var(--font-display); font-weight: 700; font-size: 26px; color: var(--brand); }
  .hero-proof-label { font-size: 13px; color: var(--text-muted); }

  .hero-visual { position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg); background: var(--brand); overflow: hidden; box-shadow: var(--shadow-lg); }
  .hero-visual svg { position: absolute; inset: 0; width: 100%; height: 100%; }
  .hero-visual-badge { position: absolute; left: 20px; bottom: 20px; background: rgba(251,248,241,0.94); color: var(--brand); padding: 12px 16px; border-radius: var(--radius-sm); font-family: var(--font-display); font-size: 14px; font-weight: 700; box-shadow: var(--shadow-md); }

  section { padding: var(--space-6) 0; }
  .section-head { max-width: 620px; margin: 0 auto var(--space-5); text-align: center; }
  .section-eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; color: var(--accent-dark); margin-bottom: var(--space-1); }
  .section-head h2 { font-size: clamp(25px, 3.4vw, 34px); font-weight: 700; margin-bottom: var(--space-2); }
  .section-head p { color: var(--text-muted); font-size: 16px; }

  html.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 640ms var(--ease), transform 640ms var(--ease); }
  html.js .reveal.in-view { opacity: 1; transform: translateY(0); }

  .features-bg { background: var(--surface-alt); }
  .feature-grid { display: grid; gap: var(--space-3); grid-template-columns: repeat(1, minmax(0,1fr)); }
  @media (min-width: 640px) { .feature-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
  @media (min-width: 980px) { .feature-grid { grid-template-columns: repeat(4, minmax(0,1fr)); } }
  .feature-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: var(--space-3); box-shadow: var(--shadow-sm); transition: transform var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease); }
  .feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
  .feature-icon { position: relative; width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; margin-bottom: var(--space-2); }
  .feature-icon .blob { position: absolute; inset: 0; width: 100%; height: 100%; }
  .feature-icon .icon-line { position: relative; z-index: 1; width: 24px; height: 24px; color: var(--brand); }
  .feature-card:nth-child(1) .blob { transform: rotate(-6deg); }
  .feature-card:nth-child(2) .blob { transform: rotate(9deg); }
  .feature-card:nth-child(3) .blob { transform: rotate(-11deg); }
  .feature-card:nth-child(4) .blob { transform: rotate(5deg); }
  .defs-host { position: absolute; width: 0; height: 0; overflow: hidden; }
  .feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
  .feature-card p { color: var(--text-muted); font-size: 14.5px; margin: 0; }

  .stat-row { display: grid; gap: var(--space-3); grid-template-columns: repeat(3, minmax(0,1fr)); margin-bottom: var(--space-5); text-align: center; }
  .stat-num { font-family: var(--font-display); font-weight: 700; font-size: clamp(26px, 4vw, 38px); color: var(--brand); }
  .stat-label { color: var(--text-muted); font-size: 14px; margin-top: 4px; }

  .testimonial-grid { display: grid; gap: var(--space-3); grid-template-columns: repeat(1, minmax(0,1fr)); }
  @media (min-width: 760px) { .testimonial-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
  .testimonial-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: var(--space-3); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: var(--space-2); }
  .stars { display: flex; gap: 4px; color: var(--accent); }
  .stars svg { width: 16px; height: 16px; }
  .testimonial-quote { font-size: 15px; color: var(--text); flex: 1; }
  .testimonial-author { font-size: 13.5px; color: var(--text-muted); font-weight: 600; }

  .faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: var(--space-1); }
  .faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface); overflow: hidden; }
  .faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: var(--space-2); padding: 18px 20px; font-family: var(--font-body); font-weight: 700; font-size: 15.5px; color: var(--text); }
  .faq-q .chev { width: 20px; height: 20px; flex-shrink: 0; transition: transform var(--dur-med) var(--ease); color: var(--text-muted); }
  .faq-item[data-open="true"] .chev { transform: rotate(180deg); color: var(--accent); }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height var(--dur-med) var(--ease); }
  .faq-a-inner { padding: 0 20px 18px; color: var(--text-muted); font-size: 14.5px; }

  .cta-section { position: relative; background: var(--brand); color: var(--text-on-brand); border-radius: var(--radius-lg); margin: 0 var(--space-3); overflow: hidden; }
  .cta-section::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(251,248,241,0.10) 1.5px, transparent 1.5px); background-size: 18px 18px; pointer-events: none; }
  .cta-section .container { max-width: none; position: relative; }
  .cta-grid { display: grid; gap: var(--space-5); grid-template-columns: 1fr; padding: var(--space-5) var(--space-3); }
  @media (min-width: 900px) { .cta-grid { grid-template-columns: 1fr 1fr; padding: var(--space-6) var(--space-5); } }
  .cta-copy h2 { color: var(--text-on-brand); font-size: clamp(25px, 3.2vw, 32px); margin-bottom: var(--space-2); }
  .cta-copy p { color: rgba(251,248,241,0.8); margin-bottom: var(--space-3); }
  .cta-contact-list { display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; color: rgba(251,248,241,0.92); }
  .cta-contact-list li { display: flex; align-items: center; gap: 10px; }
  .cta-contact-list svg { width: 18px; height: 18px; flex-shrink: 0; }

  .form-card { background: var(--surface); border-radius: var(--radius-md); padding: var(--space-3); box-shadow: var(--shadow-lg); }
  .field { margin-bottom: var(--space-2); }
  .field label { display: block; font-size: 13.5px; font-weight: 700; margin-bottom: 6px; color: var(--text); }
  .field .req { color: var(--accent-dark); }
  .field input, .field select, .field textarea { width: 100%; padding: 13px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 15px; color: var(--text); background: var(--bg); min-height: 48px; }
  .field textarea { min-height: 96px; resize: vertical; }
  .field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); }
  .form-note { font-size: 12.5px; color: var(--text-muted); margin-top: var(--space-2); text-align: center; }
  .form-success { display: none; text-align: center; padding: var(--space-4) 0; }
  .form-success.show { display: block; }
  .form-success svg { width: 44px; height: 44px; color: var(--accent-dark); margin: 0 auto 12px; }

  footer { padding: var(--space-5) 0 var(--space-4); }
  .footer-inner { display: flex; flex-wrap: wrap; gap: var(--space-3); justify-content: space-between; align-items: flex-start; padding-bottom: var(--space-3); border-bottom: 1px solid var(--border); }
  .footer-brand { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--brand); }
  .footer-desc { color: var(--text-muted); font-size: 13.5px; margin-top: 8px; max-width: 320px; }
  .footer-cols { display: flex; gap: var(--space-5); flex-wrap: wrap; }
  .footer-col h4 { font-size: 13px; color: var(--text); margin-bottom: 10px; font-family: var(--font-body); }
  .footer-col ul { display: flex; flex-direction: column; gap: 8px; }
  .footer-col a { text-decoration: none; color: var(--text-muted); font-size: 13.5px; }
  .footer-col a:hover { color: var(--accent-dark); }
  .footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; padding-top: var(--space-2); font-size: 12px; color: var(--text-muted); }
  .footer-credit { font-size: 11px; color: var(--text-muted); opacity: 0.75; }

/* ── 서브페이지용 추가 ── 소소당 토큰만 쓰고 새 색·폰트를 들이지 않는다. */
.page-head { padding: calc(var(--space-6) + 64px) 0 var(--space-5); text-align: center; }
.page-head h1 { font-size: clamp(30px, 5vw, 46px); margin-bottom: var(--space-2); }
.page-head p { color: var(--text-muted); max-width: 56ch; margin: 0 auto; }

/* 차림표 — 찻집의 실제 물건인 '차림표'를 그대로 옮긴 형태.
   점선 지시선과 고정폭 숫자로 값이 세로로 줄맞춤된다. */
.menu-group { margin-bottom: var(--space-5); }
.menu-group h2 { font-size: 22px; margin-bottom: var(--space-1); }
.menu-group .menu-note { color: var(--text-muted); font-size: 14px; margin: 0 0 var(--space-3); }
.menu-row { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: baseline; gap: var(--space-2); padding: 14px 0; border-bottom: 1px dashed var(--border); }
.menu-row:last-child { border-bottom: 0; }
.menu-name { font-family: var(--font-display); font-size: 17px; color: var(--text); }
.menu-desc { display: block; font-size: 13.5px; color: var(--text-muted); margin-top: 2px; }
.menu-price { font-variant-numeric: tabular-nums; font-size: 16px; color: var(--brand); white-space: nowrap; }
.menu-tag { display: inline-block; margin-left: 6px; padding: 1px 7px; border-radius: 999px; background: var(--surface-alt); color: var(--brand); font-size: 11.5px; vertical-align: 2px; }

/* 오시는 길 */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--space-3); }
.info-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: var(--space-3); box-shadow: var(--shadow-sm); }
.info-card h3 { font-size: 17px; margin-bottom: 6px; }
.info-card p, .info-card li { color: var(--text-muted); font-size: 14.5px; margin: 0; }
.hours { width: 100%; border-collapse: collapse; }
.hours th, .hours td { text-align: left; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 15px; font-weight: 400; }
.hours td { text-align: right; font-variant-numeric: tabular-nums; color: var(--brand); }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; }
.hours .closed { color: var(--accent-dark); }
.map-frame { border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; background: var(--surface-alt); aspect-ratio: 16 / 9; display: grid; place-items: center; text-align: center; padding: var(--space-3); }
.map-frame p { color: var(--text-muted); font-size: 14px; margin: 8px 0 0; }

/* 현재 페이지 표시 — 색만으로 알리지 않고 밑줄을 함께 둔다. */
.nav-links a[aria-current="page"], .nav-mobile a[aria-current="page"] { color: var(--brand); font-weight: 700; box-shadow: inset 0 -2px 0 var(--accent); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
