/* =========================================================
   SUNDaWN COFFEE ROASTER — Demo Site
   Design system: 金色 + 深咖啡 + 米白
   ========================================================= */

:root {
  /* Palette */
  --bg:        #FAF7F2;
  --bg-alt:    #F2EBDF;
  --ink:       #2A2118;
  --ink-soft:  #6B5D52;
  --gold:      #C8A063;
  --gold-deep: #A1844E;
  --dark:      #1F1A14;
  --green:     #6B7F5E;
  --line:      rgba(200,160,99,0.28);

  /* Typography */
  --serif-tc:  "Noto Serif TC", "Songti TC", serif;
  --sans-tc:   "Noto Sans TC", -apple-system, BlinkMacSystemFont, "PingFang TC", sans-serif;
  --serif-en:  "Cormorant Garamond", Georgia, serif;
  --sans-en:   "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Scale */
  --container: 1180px;
  --gutter:    24px;
  --section-y: clamp(80px, 12vw, 140px);
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  margin: 0;
  font-family: var(--sans-tc);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--gold-deep); }

h1, h2, h3 {
  font-family: var(--serif-tc);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.01em;
  margin: 0 0 0.6em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 1.6vw, 1.35rem); }
p  { margin: 0 0 1em; }

em, i { font-style: italic; font-family: var(--serif-en); letter-spacing: 0.02em; }

.eyebrow {
  font-family: var(--sans-en);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 18px;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

.section { padding: var(--section-y) 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--dark); color: var(--bg); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section-head h2 { margin-bottom: 12px; }
.section-head-light, .section-head-light h2 { color: var(--bg); }
.section-head-light .eyebrow { color: var(--gold); }
.section-lead { color: var(--ink-soft); font-size: 1.02rem; }
.section-dark .section-lead { color: rgba(250,247,242,0.75); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans-tc);
  font-weight: 500;
  font-size: 0.96rem;
  letter-spacing: 0.06em;
  padding: 14px 32px;
  border-radius: 2px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary { background: var(--gold); color: var(--dark); }
.btn-primary:hover { background: var(--gold-deep); color: var(--bg); }
.btn-ghost { background: transparent; color: var(--bg); border-color: rgba(250,247,242,0.6); }
.btn-ghost:hover { background: rgba(250,247,242,0.1); border-color: var(--bg); color: var(--bg); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,247,242,0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo { display: flex; align-items: center; gap: 12px; height: 100%; }
.logo-img {
  height: 52px;
  width: auto;
  display: block;
  /* slight contrast lift so logo reads against the warm bg */
  mix-blend-mode: multiply;
}
.logo-wordmark {
  display: flex; flex-direction: column;
  line-height: 1;
  margin-left: 2px;
}
.logo-wordmark-main {
  font-family: var(--serif-en);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.logo-wordmark-accent { color: var(--gold-deep); }
.logo-wordmark-sub {
  font-family: var(--sans-en);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  color: var(--ink-soft);
  margin-top: 5px;
}
@media (max-width: 600px) {
  .logo-wordmark { display: none; }
}
.footer-logo {
  height: 56px;
  width: auto;
  filter: brightness(1.05);
  background: var(--bg);
  padding: 4px;
  border-radius: 2px;
}
.story-logo {
  max-width: 220px;
  width: 100%;
  margin: 0 auto;
  display: block;
}
.site-nav { display: flex; gap: 32px; }
.site-nav a {
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  padding: 4px 0;
  position: relative;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s ease;
}
.site-nav a:hover { color: var(--ink); }
.site-nav a:hover::after { width: 100%; }
.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 1.5px; background: var(--ink); display: block;
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  color: var(--bg);
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  /* 高級公路車 + SunDawn 金色招牌 + Bicycle Parking 標示 — 體現店家「咖啡 + 單車」DNA。HD 1109×1479 */
  background:
    linear-gradient(rgba(15,12,8,0.45), rgba(31,26,20,0.74)),
    url("assets/img/storefront-bike.jpg") center 30%/cover no-repeat;
  background-color: #1f1a14;
}
.hero-media::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 25%, rgba(200,160,99,0.25) 0%, transparent 50%);
  pointer-events: none;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31,26,20,0.15) 0%, rgba(31,26,20,0.55) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 80px 24px; }
.hero-chapter {
  color: var(--gold);
  letter-spacing: 0.24em;
  font-size: 0.95rem;
  margin-bottom: 28px;
  opacity: 0.85;
}
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px;
}
.badge {
  display: inline-block;
  font-family: var(--sans-en);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid rgba(250,247,242,0.5);
  border-radius: 100px;
  color: var(--bg);
  backdrop-filter: blur(4px);
}
.hero-title {
  color: var(--bg);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.hero-title span { display: block; }
.hero-title span:first-child {
  font-size: 0.65em;
  letter-spacing: 0.18em;
  color: rgba(250,247,242,0.75);
  margin-bottom: 8px;
}
.hero-sub {
  font-family: var(--serif-en);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: rgba(250,247,242,0.85);
  margin-bottom: 40px;
  font-style: italic;
  max-width: 56ch;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px; }
.hero-status {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.88rem;
  color: rgba(250,247,242,0.78);
  letter-spacing: 0.06em;
}
.hero-status .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #7CC178;
  box-shadow: 0 0 0 4px rgba(124,193,120,0.18);
  animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(124,193,120,0.18); }
  50%      { box-shadow: 0 0 0 7px rgba(124,193,120,0.05); }
}

/* ---------- Quote band ---------- */
.quote-band {
  background: var(--dark);
  color: var(--bg);
  text-align: center;
  padding: 72px 0;
  border-top: 1px solid rgba(200,160,99,0.2);
  border-bottom: 1px solid rgba(200,160,99,0.2);
}
.quote-band-text {
  font-family: var(--serif-tc);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: var(--gold);
  font-weight: 500;
  margin: 0 0 18px;
  letter-spacing: 0.08em;
}
.quote-band-author {
  font-family: var(--sans-en);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: rgba(250,247,242,0.6);
  margin: 0;
}

/* ---------- Story ---------- */
.story-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.story-art {
  color: var(--gold);
  text-align: center;
}
.story-art svg { max-width: 280px; margin: 0 auto; }
.story-art-caption {
  font-family: var(--sans-en);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  margin-top: 24px;
  line-height: 1.7;
}
.story-text p { color: var(--ink-soft); font-size: 1.05rem; }
.story-text p:first-of-type { font-size: 1.18rem; color: var(--ink); }
.story-tagline {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-family: var(--serif-tc);
  font-size: 1.2rem;
  color: var(--ink) !important;
  font-weight: 500;
}

/* ---------- Hank / About ---------- */
.hank-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}
.hank-photo { margin: 0; }
.hank-photo-frame {
  aspect-ratio: 4/5;
  /* Hank 手沖 + 蒸汽 + SUN DAWN COFFEE ROASTER 制服 — 店家自提 HD 1365×1706。
     臉部低頭聚焦於沖煮、確認為 Hank 本人（制服可辨識） */
  background:
    url("assets/img/hank-pour-steam.jpg") center 20%/cover no-repeat;
  background-color: #2a2118;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

/* Credential card below the main photo — full cert (object-fit:contain) so it never gets cropped */
.hank-cert-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 20px;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 2px;
}
.hank-cert-img {
  display: block;
  width: 96px;
  height: 96px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  padding: 4px;
}
.hank-cert-meta { line-height: 1.4; }
.hank-cert-title {
  font-family: var(--serif-en);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
  margin: 0 0 4px;
  letter-spacing: 0.02em;
}
.hank-cert-sub {
  font-family: var(--sans-en);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin: 0;
}
.hank-photo figcaption {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
}
.hank-en {
  font-family: var(--serif-en);
  font-weight: 400;
  font-size: 0.7em;
  color: var(--ink-soft);
  margin-left: 8px;
  letter-spacing: 0.04em;
}
.hank-creds {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.hank-creds li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.98rem;
}
.cred-icon { color: var(--gold-deep); margin-right: 10px; }
.hank-quote {
  margin: 32px 0 0;
  padding: 24px 28px;
  background: rgba(200,160,99,0.08);
  border-left: 3px solid var(--gold);
  font-family: var(--serif-tc);
  font-size: 1.1rem;
  color: var(--ink);
  letter-spacing: 0.04em;
  line-height: 1.8;
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card {
  background: var(--bg-alt);
  padding: 36px 28px;
  border-radius: 2px;
  border: 1px solid var(--line);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}
.service-card-feature {
  background: linear-gradient(160deg, #2A2118 0%, #3a2d22 100%);
  color: var(--bg);
  border-color: var(--gold);
}
.service-card-feature h3 { color: var(--gold); }
.service-card-feature p { color: rgba(250,247,242,0.78); }
.service-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
  opacity: 0.85;
}
.service-card h3 { margin-bottom: 8px; }
.service-card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0;
}

/* ---------- Menu ---------- */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 980px;
  margin: 0 auto;
}
.menu-cat {
  font-family: var(--serif-en);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gold);
  display: flex; align-items: baseline; gap: 12px;
}
.menu-cat-mt { margin-top: 48px; }
.menu-cat-tag {
  font-family: var(--sans-tc);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: var(--gold-deep);
  background: rgba(200,160,99,0.15);
  padding: 3px 10px;
  border-radius: 100px;
}
.menu-list {
  list-style: none;
  padding: 0; margin: 0;
}
.menu-list li {
  display: flex; align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px dotted rgba(107,93,82,0.18);
  gap: 12px;
}
.menu-list .menu-sep { border-top: 1px solid var(--line); margin-top: 8px; padding-top: 18px; }
.menu-name {
  flex: 0 1 auto;
  font-size: 0.98rem;
  color: var(--ink);
}
.menu-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(107,93,82,0.35);
  transform: translateY(-4px);
  min-width: 24px;
}
.menu-price {
  flex: 0 0 auto;
  font-family: var(--sans-en);
  font-feature-settings: "tnum";
  font-size: 0.96rem;
  color: var(--gold-deep);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.menu-tag {
  display: inline-block;
  font-size: 0.7rem;
  background: var(--gold);
  color: var(--dark);
  padding: 2px 8px;
  margin-left: 8px;
  border-radius: 100px;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.menu-footnote {
  text-align: center;
  margin-top: 56px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.menu-footnote a { color: var(--gold-deep); border-bottom: 1px solid currentColor; }

/* ---------- Signature: Black Humor ---------- */
.signature-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.signature-photo-frame {
  aspect-ratio: 4/5;
  background: url("assets/img/black-humor.jpg") center/cover no-repeat;
  background-color: #1F1A14;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

/* Pour-over (signature) section — reversed layout: text on left, photo on right */
.signature-text-left { order: 1; }
.signature-photo-right { order: 2; }

.signature-photo-pourover {
  /* Hank's hands pouring water from gooseneck kettle into V60 dripper — at the SUNDaWN shop counter.
     From Hank's own IG post (Dec 22, 2025), first-person caption "完完全全就是我的菜". HD 1108×1385. */
  background:
    url("assets/img/hank-handpour.jpg") center/cover no-repeat;
}

/* =========================================================
   TODAY'S PICK — mini editorial card between Menu and Photo break
   ========================================================= */
.todays-pick {
  padding: 64px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.todays-pick-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
  max-width: 900px;
}
.todays-pick-photo { margin: 0; }
.todays-pick-frame {
  aspect-ratio: 4/5;
  /* 多甜點 spread：草莓生乳酪 + 可麗露 + Affogato + 冰咖啡 + 植物 — HD 953×1270 */
  background:
    url("assets/img/dessert-spread.jpg") center/cover no-repeat;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.todays-pick-text .chapter-num {
  display: block;
  margin-bottom: 12px;
}
.todays-pick-text h3 {
  font-family: var(--serif-tc);
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  margin: 0 0 14px;
  letter-spacing: 0.03em;
}
.todays-pick-text p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.todays-pick-cta {
  font-family: var(--sans-en);
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  color: var(--gold-deep);
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
}

@media (max-width: 760px) {
  .todays-pick-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* =========================================================
   SPACE SECTION — interior atmosphere
   ========================================================= */
.space-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.space-text .eyebrow { margin-top: 18px; }
.space-tagline {
  font-family: var(--serif-tc);
  font-size: 1.15rem;
  color: var(--gold-deep);
  margin-bottom: 28px;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.space-text > p {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.85;
  margin-bottom: 14px;
}
.space-finish {
  margin-top: 32px;
  font-family: var(--serif-tc);
  font-size: 1.3rem;
  color: var(--ink);
  letter-spacing: 0.12em;
  font-weight: 500;
}
.space-photo { margin: 0; }
.space-photo-frame {
  aspect-ratio: 4/5;
  /* 店內紅色單車牆裝飾 + 大理石餐桌 + 白椅 — 店家自提 HD 1127×845 */
  background: url("assets/img/space-bike-wall.jpg") center/cover no-repeat;
  background-color: #2a2118;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.space-photo figcaption {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
}

/* English subtitle inline with Chinese H2 */
.h2-sub {
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 400;
  font-size: 0.55em;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  margin-left: 14px;
  vertical-align: 0.1em;
}
.section-dark .h2-sub { color: rgba(250,247,242,0.6); }
.signature-text h2 {
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 8px;
}
.signature-tagline {
  font-family: var(--serif-tc);
  font-size: 1.05rem;
  color: var(--gold-deep);
  margin-bottom: 32px;
  letter-spacing: 0.1em;
}
.signature-text p { color: var(--ink); font-size: 1.02rem; }
.signature-spec {
  display: flex; flex-direction: column; gap: 12px;
  margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.signature-spec > div {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 18px;
  align-items: baseline;
}
.signature-spec dt {
  font-family: var(--sans-en);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.signature-spec dd {
  margin: 0;
  font-size: 0.98rem;
  color: var(--ink);
}
.signature-finish {
  margin-top: 32px;
  font-family: var(--serif-tc);
  font-size: 1.4rem;
  color: var(--ink);
  letter-spacing: 0.2em;
  font-weight: 600;
}

/* ---------- Reviews ---------- */
.rating-stars { color: var(--gold); letter-spacing: 0.12em; margin-right: 8px; font-size: 1.1rem; }

/* Stats strip above reviews */
.reviews-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.8fr;
  gap: 0;
  margin: 0 auto 56px;
  max-width: 1080px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  padding: 26px 28px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 6px;
  text-align: center;
}
.stat:last-child { border-right: 0; text-align: left; padding-left: 32px; }
.stat-num {
  font-family: var(--serif-en);
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1;
}
.stat-label {
  font-family: var(--sans-en);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.stat-tags { padding-left: 32px; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.tag {
  display: inline-block;
  font-size: 0.78rem;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(200,160,99,0.12);
  color: var(--gold-deep);
  letter-spacing: 0.04em;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 32px;
}
.review-card {
  background: var(--bg);
  padding: 32px 28px;
  border-radius: 2px;
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
}
.review-topic {
  position: absolute;
  top: 0; right: 24px;
  transform: translateY(-50%);
  background: var(--bg-alt);
  border: 1px solid var(--line);
  padding: 3px 12px;
  border-radius: 100px;
  font-family: var(--sans-tc);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--gold-deep);
}
.review-card-feature {
  background: var(--dark);
  color: var(--bg);
  border-color: var(--gold);
}
.review-card-feature .review-topic {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  font-weight: 500;
}
.review-card-feature p { color: var(--bg) !important; }
.review-card-feature footer { border-top-color: rgba(200,160,99,0.25) !important; }
.review-card-feature cite { color: var(--bg) !important; }
.review-pull {
  font-family: var(--serif-tc);
  font-size: 1.2rem;
  line-height: 1.55;
  letter-spacing: 0.04em;
  color: var(--gold);
}
.reviews-disclaimer {
  text-align: center;
  color: var(--ink-soft);
  margin: 0 0 16px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}
.review-stars { color: var(--gold); letter-spacing: 0.08em; font-size: 0.92rem; }
.review-card p {
  font-family: var(--serif-tc);
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--ink);
  margin: 0;
  flex: 1;
}
.review-card footer {
  margin-top: 8px; padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 4px;
}
.review-card cite {
  font-style: normal;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
}
.review-card footer span {
  font-family: var(--sans-en);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}
.reviews-more {
  display: block;
  text-align: center;
  font-family: var(--sans-en);
  letter-spacing: 0.12em;
  color: var(--gold-deep);
  border-bottom: 1px solid currentColor;
  width: max-content;
  margin: 0 auto;
  padding-bottom: 4px;
}

/* ---------- Visit ---------- */
.visit-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: stretch;
}
.visit-map {
  border-radius: 2px;
  overflow: hidden;
  min-height: 480px;
  background: var(--bg-alt);
  box-shadow: 0 10px 40px rgba(31,26,20,0.08);
}
.visit-map iframe { width: 100%; height: 100%; min-height: 480px; border: 0; }
.visit-info h2 { margin-bottom: 32px; }
.visit-block {
  display: flex; gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.visit-icon {
  flex: 0 0 36px;
  height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(200,160,99,0.12);
  color: var(--gold-deep);
  border-radius: 50%;
  font-size: 1.05rem;
}
.visit-block h3 {
  font-family: var(--sans-en);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 6px;
}
.visit-block p {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.7;
}
.visit-block a {
  display: inline-block;
  margin-top: 6px;
  font-family: var(--sans-en);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: var(--gold-deep);
  border-bottom: 1px solid currentColor;
}
.closed-day { color: var(--ink-soft); font-size: 0.92rem; }
.visit-note {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

/* ---------- Shop ---------- */
.shop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.shop-card {
  background: linear-gradient(160deg, #2a2118 0%, #1f1a14 100%);
  border: 1px solid rgba(200,160,99,0.3);
  border-radius: 2px;
  padding: 40px 36px;
  transition: all 0.3s ease;
  display: block;
  position: relative;
}
.shop-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  color: var(--bg);
}
.shop-card-tag {
  display: inline-block;
  font-family: var(--sans-en);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.shop-card h3 { color: var(--bg); margin-bottom: 12px; }
.shop-card p { color: rgba(250,247,242,0.7); font-size: 0.95rem; line-height: 1.7; margin: 0 0 24px; }
.shop-card-cta {
  font-family: var(--sans-en);
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  color: var(--gold);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark);
  color: rgba(250,247,242,0.78);
  padding: 64px 0 24px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(200,160,99,0.2);
}
.footer-brand { display: flex; gap: 16px; align-items: center; }
.footer-name {
  font-family: var(--serif-en);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--bg);
  margin: 0 0 6px;
  letter-spacing: 0.04em;
}
.footer-tagline {
  font-family: var(--serif-tc);
  font-size: 0.9rem;
  color: rgba(250,247,242,0.55);
  margin: 0;
}
.footer-meta p { margin: 0 0 6px; font-size: 0.88rem; line-height: 1.7; }
.footer-social { display: flex; gap: 16px; justify-content: flex-end; }
.footer-social a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(250,247,242,0.3);
  border-radius: 50%;
  font-family: var(--sans-en);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(250,247,242,0.78);
  transition: all 0.25s ease;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-copy {
  text-align: center;
  font-family: var(--sans-en);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: rgba(250,247,242,0.35);
  margin: 24px 0 0;
}

/* ---------- Mobile Sticky CTA ---------- */
.sticky-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  background: rgba(31,26,20,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--gold);
}
.sticky-cta a {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 10px 4px;
  color: var(--bg);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  border-right: 1px solid rgba(250,247,242,0.1);
}
.sticky-cta a:last-child { border-right: 0; }
.sticky-cta a span:first-child { font-size: 1.2rem; }

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 960px) {
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .site-nav.is-open {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--bg); padding: 24px;
    border-bottom: 1px solid var(--line);
    gap: 16px;
  }

  .story-inner,
  .hank-inner,
  .signature-inner,
  .space-inner,
  .visit-inner { grid-template-columns: 1fr; gap: 56px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-stats { grid-template-columns: repeat(3, 1fr); }
  .stat-tags { grid-column: 1 / -1; border-top: 1px solid var(--line); border-right: 0; padding-left: 28px; }
  .menu-grid { grid-template-columns: 1fr; gap: 48px; }
  .shop-grid { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-social { justify-content: flex-start; }

  .sticky-cta { display: flex; }
  body { padding-bottom: 72px; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-stats { grid-template-columns: 1fr 1fr; }
  .stat { border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); }
  .stat:nth-child(even) { border-right: 0; }
  .stat-tags { grid-column: 1 / -1; }
  .hero-title { font-size: 2.4rem; }
  .hero-meta { gap: 8px; }
  .badge { font-size: 0.66rem; padding: 4px 10px; }
  .hank-photo-frame { aspect-ratio: 1/1; }
  .signature-photo-frame { aspect-ratio: 1/1; }
}

/* =========================================================
   Scroll reveal (fade-in-up) — paired with IntersectionObserver in script.js
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }

/* Print / reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   PREMIUM TYPOGRAPHY & EDITORIAL DETAILS
   ========================================================= */

/* Chapter numbering (editorial magazine feel) */
.chapter-num {
  display: block;
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--gold-deep);
  letter-spacing: 0.16em;
  margin-bottom: 16px;
}

/* Inline gold rule used in section heads */
.head-mark {
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin: 0 14px 5px;
  opacity: 0.7;
}

/* Drop cap on first paragraph */
.drop-cap::first-letter {
  font-family: var(--serif-tc);
  font-weight: 600;
  font-size: 4.6em;
  float: left;
  line-height: 0.92;
  padding: 8px 14px 0 0;
  color: var(--gold-deep);
}

/* Ornament divider — placed at end of section to bridge */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 auto;
  max-width: 360px;
  padding: 0;
  color: var(--gold);
}
.ornament::before,
.ornament::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}
.ornament-mark {
  display: block;
  width: 7px; height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  opacity: 0.8;
}

/* =========================================================
   PULL QUOTE BAND
   ========================================================= */
.pullquote {
  background: var(--dark);
  color: var(--bg);
  padding: clamp(80px, 12vw, 140px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pullquote::before,
.pullquote::after {
  content: "";
  position: absolute; left: 50%;
  width: 80px; height: 1px;
  background: var(--gold);
  transform: translateX(-50%);
  opacity: 0.7;
}
.pullquote::before { top: 0; }
.pullquote::after { bottom: 0; }
.pullquote-mark {
  font-family: var(--serif-en);
  font-size: 4.4rem;
  color: var(--gold);
  line-height: 0.6;
  margin-bottom: 28px;
  font-style: italic;
  display: block;
}
.pullquote-text {
  font-family: var(--serif-tc);
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.08em;
  max-width: 26ch;
  margin: 0 auto 36px;
  color: var(--bg);
}
.pullquote-cite {
  font-family: var(--sans-en);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  color: rgba(250,247,242,0.5);
  text-transform: uppercase;
}

/* =========================================================
   FULL-BLEED PHOTO BREAK
   ========================================================= */
.photo-break {
  height: clamp(360px, 50vw, 620px);
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}
.photo-break::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31,26,20,0.1) 0%, rgba(31,26,20,0.55) 100%);
}
.photo-break-caption {
  position: absolute; right: clamp(24px, 5vw, 80px); bottom: clamp(28px, 4vw, 60px);
  color: var(--bg);
  font-family: var(--serif-en);
  font-style: italic;
  font-size: clamp(0.95rem, 1.2vw, 1.2rem);
  text-shadow: 0 1px 12px rgba(0,0,0,0.6);
  letter-spacing: 0.04em;
  z-index: 1;
}
.photo-break-caption small {
  display: block;
  font-family: var(--sans-en);
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.7);
  margin-top: 4px;
}

/* =========================================================
   SERVICE CARD WITH PHOTO BACKGROUND
   inline style="background-image: url(...)" provides each card's photo;
   overlay sits in ::before for readability without conflict.
   ========================================================= */
.service-card-photo {
  position: relative;
  min-height: 340px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #1f1a14;
  color: var(--bg);
  border: 1px solid rgba(200,160,99,0.35);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  overflow: hidden;
  isolation: isolate;
}
.service-card-photo::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,12,8,0.20) 0%, rgba(15,12,8,0.50) 45%, rgba(15,12,8,0.92) 100%);
  z-index: 0;
  transition: opacity 0.4s ease;
}
.service-card-photo:hover::before {
  background:
    linear-gradient(180deg, rgba(15,12,8,0.10) 0%, rgba(15,12,8,0.40) 45%, rgba(15,12,8,0.88) 100%);
}
.service-card-photo > * { position: relative; z-index: 1; }
.service-card-photo h3 {
  color: var(--bg);
  margin-bottom: 8px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 18px rgba(0,0,0,0.4);
}
.service-card-photo p {
  color: rgba(250,247,242,0.92);
  font-size: 0.92rem;
  line-height: 1.65;
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
  margin: 0;
}
.service-card-photo .service-icon { display: none; }
.service-card-eyebrow {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
  opacity: 0.85;
}
/* Feature card — keep gold highlight on h3 */
.service-card-photo.service-card-feature {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(200,160,99,0.3);
}
.service-card-photo.service-card-feature h3 { color: var(--gold); }
.service-card-photo.service-card-feature::before {
  background:
    linear-gradient(180deg, rgba(15,12,8,0.25) 0%, rgba(58,45,34,0.65) 45%, rgba(31,26,20,0.95) 100%);
}

/* =========================================================
   LOGO BLEND ON CREAM BACKGROUND
   ========================================================= */
.logo-img { mix-blend-mode: multiply; filter: contrast(1.04); }
.footer-logo {
  background: transparent;
  padding: 0;
  filter: brightness(1.08) saturate(0.95);
  mix-blend-mode: screen;
}
.story-logo {
  mix-blend-mode: multiply;
  filter: contrast(1.04);
}

/* =========================================================
   FADE-IN-UP REVEAL ON SCROLL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.85s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* =========================================================
   FILM GRAIN OVERLAY ON PHOTO ELEMENTS
   ========================================================= */
.hank-photo-frame::after,
.signature-photo-frame::after,
.service-card-photo::after,
.photo-break::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.65'/></svg>");
}

/* =========================================================
   REFINEMENTS — additional polish
   ========================================================= */

/* Ornament between major sections (small floating mark in space) */
.section + .ornament-wrap,
.ornament-wrap {
  background: inherit;
  padding: 56px 0 24px;
}
.section-alt + .section,
.section + .section-alt { position: relative; }

/* Bigger eyebrow on premium sections */
.section-head .eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.28em;
}

/* Tiny gold caret divider — used in nav for premium tick */
.site-nav a:not(:last-child)::after { content: ""; }
