/* Exquis Beauty — Design System */
:root {
  --bg: #f7f3ee;
  --bg-deep: #efe8df;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-solid: #ffffff;
  --ink: #2a2623;
  --ink-soft: #5c554e;
  --muted: #8a8178;
  --line: rgba(42, 38, 35, 0.08);
  --gold: #b8956c;
  --gold-deep: #8f7350;
  --gold-soft: #e8d5bc;
  --blush: #e8cfc8;
  --blush-soft: rgba(232, 207, 200, 0.35);
  --success: #5a7a62;
  --shadow: 0 18px 50px rgba(42, 38, 35, 0.08);
  --shadow-soft: 0 8px 24px rgba(42, 38, 35, 0.05);
  --radius: 2px;
  --radius-lg: 18px;
  --nav-h: 76px;
  --container: 1180px;
  --font-display: "Cormorant Garamond", "Noto Serif TC", Georgia, serif;
  --font-body: "Manrope", "Noto Sans TC", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(184, 149, 108, 0.12), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(232, 207, 200, 0.18), transparent 50%),
    linear-gradient(180deg, #faf7f3 0%, var(--bg) 40%, #f3eee8 100%);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 0.6em;
  letter-spacing: 0.01em;
}
p { margin: 0 0 1em; color: var(--ink-soft); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section--tight { padding: clamp(3rem, 5vw, 4.5rem) 0; }
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  max-width: 20ch;
}
.section-lead {
  max-width: 46ch;
  font-size: 1.05rem;
}
.section-head {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.section-head--split {
  grid-template-columns: 1.2fr 1fr;
  align-items: end;
}
@media (max-width: 800px) {
  .section-head--split { grid-template-columns: 1fr; }
}

/* Glass */
.glass {
  background: var(--surface);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: var(--shadow-soft);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.85rem 1.55rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.btn--primary {
  background: var(--ink);
  color: #fff;
}
.btn--primary:hover { background: var(--gold-deep); box-shadow: var(--shadow); }
.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #fff;
}
.btn--outline {
  background: transparent;
  border-color: rgba(42,38,35,0.18);
  color: var(--ink);
}
.btn--outline:hover { border-color: var(--gold); color: var(--gold-deep); }
.btn--ghost {
  background: rgba(255,255,255,0.35);
  border-color: rgba(255,255,255,0.5);
}
.btn-group { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(250, 247, 243, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(42,38,35,0.06); }
.header-inner {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  min-width: max-content;
}
.logo img {
  display: block;
  height: 2.6rem;
  width: auto;
  max-width: 11rem;
  object-fit: contain;
}
.logo--footer img {
  height: 3rem;
  max-width: 12rem;
  margin-bottom: 0.4rem;
}
.logo-mark {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.logo-sub {
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-desktop { display: flex; align-items: center; gap: 0.15rem; }
.nav-desktop > a,
.nav-desktop .nav-dd > button {
  padding: 0.55rem 0.7rem;
  font-size: 0.84rem;
  color: var(--ink-soft);
  background: none;
  border: 0;
  cursor: pointer;
  white-space:nowrap;
}
.nav-desktop > a:hover,
.nav-desktop .nav-dd > button:hover,
.nav-desktop > a[aria-current="page"] { color: var(--ink); }
.nav-dd { position: relative; }
.nav-dd-panel {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 0;
  min-width: 240px;
  padding: 0.7rem;
  border-radius: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.25s var(--ease);
}
.nav-dd:hover .nav-dd-panel,
.nav-dd:focus-within .nav-dd-panel {
  opacity: 1; visibility: visible; transform: none;
}
.nav-dd-panel a {
  display: block;
  padding: 0.65rem 0.8rem;
  border-radius: 10px;
  font-size: 0.86rem;
  color: var(--ink-soft);
}
.nav-dd-panel a:hover { background: var(--bg-deep); color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: 0.55rem; }
.search-toggle, .menu-toggle {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line); background: rgba(255,255,255,0.55);
  display: grid; place-items: center; cursor: pointer;
}
.menu-toggle { display: none; }
.menu-toggle span {
  display: block; width: 16px; height: 1.5px; background: var(--ink);
  position: relative;
}
.menu-toggle span::before, .menu-toggle span::after {
  content: ""; position: absolute; left: 0; width: 16px; height: 1.5px; background: var(--ink);
}
.menu-toggle span::before { top: -5px; }
.menu-toggle span::after { top: 5px; }

@media (max-width: 1080px) {
  .nav-desktop { display: none; }
  .menu-toggle { display: grid; }
}

.mobile-nav {
  position: fixed; inset: var(--nav-h) 0 0 0;
  background: rgba(250,247,243,0.97);
  backdrop-filter: blur(20px);
  padding: 1.5rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  z-index: 99;
}
.mobile-nav.is-open { transform: none; }
.mobile-nav a, .mobile-nav summary {
  display: block;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.05rem;
}
.mobile-nav details a { padding-left: 0.8rem; font-size: 0.95rem; color: var(--ink-soft); }

/* Search overlay */
.search-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(42,38,35,0.42);
  display: none; align-items: flex-start; justify-content: center;
  padding: 12vh 1.5rem 2rem;
}
.search-overlay.is-open { display: flex; }
.search-panel {
  width: min(640px, 100%);
  border-radius: 18px;
  padding: 1.25rem;
}
.search-panel input {
  width: 100%;
  border: 0;
  background: transparent;
  font-size: 1.2rem;
  padding: 0.6rem 0.2rem 1rem;
  border-bottom: 1px solid var(--line);
  outline: none;
}
.search-results { max-height: 50vh; overflow: auto; margin-top: 0.8rem; }
.search-results a {
  display: block; padding: 0.85rem 0.5rem;
  border-bottom: 1px solid var(--line);
}
.search-results a strong { display: block; font-weight: 600; }
.search-results a span { font-size: 0.85rem; color: var(--muted); }

/* Breadcrumb */
.breadcrumb {
  padding: 1.25rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 0.4rem; align-items: center; }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 0.4rem; color: var(--gold-soft); }
.breadcrumb a:hover { color: var(--gold-deep); }

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 900px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(247,243,238,0.96) 0%, rgba(247,243,238,0.78) 42%, rgba(247,243,238,0.15) 100%),
    url("../images/img008.jpg") center/cover no-repeat;
  z-index: -1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(3rem, 8vw, 6rem) 0;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero::before {
    background:
      linear-gradient(180deg, rgba(247,243,238,0.92) 0%, rgba(247,243,238,0.72) 55%, rgba(247,243,238,0.4) 100%),
      url("../images/img008.jpg") center/cover no-repeat;
  }
}
.brand-hero {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 5.6rem);
  line-height: 0.95;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.brand-hero span {
  display: block;
  font-size: 0.28em;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-family: var(--font-body);
  color: var(--gold-deep);
  margin-bottom: 0.8rem;
  font-weight: 600;
}
.hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  max-width: 14ch;
  margin-bottom: 1rem;
}
.hero-copy { max-width: 38ch; margin-bottom: 1.6rem; font-size: 1.05rem; }
.trust-row {
  display: flex; flex-wrap: wrap; gap: 1rem 1.5rem;
  margin: 1.8rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--ink);
}
.trust-item span { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.04em; }
.hero-visual {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 1.2fr 0.9fr;
  gap: 0.85rem;
  min-height: 480px;
}
.hero-visual figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: var(--shadow);
}
.hero-visual figure:first-child { grid-row: 1 / 3; }
.hero-visual img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.hero-visual figure:hover img { transform: scale(1.04); }
.hero-visual figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1rem 1.1rem;
  background: linear-gradient(transparent, rgba(42,38,35,0.55));
  color: #fff; font-size: 0.78rem; letter-spacing: 0.08em;
}

/* Second hero / promo band */
.promo-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #2a2623;
}
.promo-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(42,38,35,0.92) 0%, rgba(42,38,35,0.55) 50%, rgba(42,38,35,0.25) 100%),
    url("../images/img007.jpg") center/cover;
  opacity: 1;
}
.promo-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}
@media (max-width: 800px) { .promo-inner { grid-template-columns: 1fr; } }
.promo-hero .section-label { color: var(--gold-soft); }
.promo-hero h2 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.6rem); max-width: 12ch; }
.promo-hero p { color: rgba(255,255,255,0.78); max-width: 40ch; }
.price-tag {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--gold-soft);
  line-height: 1;
}
.price-tag small { display: block; font-size: 0.28em; letter-spacing: 0.18em; text-transform: uppercase; font-family: var(--font-body); color: rgba(255,255,255,0.65); margin-bottom: 0.5rem; }

/* Cards / grids — used for interaction containers */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.feature-tile {
  padding: 1.6rem 1.4rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.45);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.feature-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(184,149,108,0.35);
}
.feature-tile h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.feature-tile p { margin: 0; font-size: 0.95rem; }
.feature-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.link-tile {
  display: block;
  padding: 1.5rem;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.35s var(--ease), border-color 0.35s var(--ease);
}
.link-tile:hover { padding-left: 1.8rem; border-color: var(--gold); }
.link-tile h3 { font-size: 1.4rem; margin-bottom: 0.35rem; }
.link-tile p { margin: 0; font-size: 0.92rem; }
.link-tile .meta { font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 0.5rem; }

/* Comparison table */
.compare-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--line); background: rgba(255,255,255,0.6); }
.compare {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
.compare th, .compare td {
  padding: 1rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  font-size: 0.92rem;
}
.compare thead th {
  background: var(--ink);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
}
.compare thead th:first-child { background: var(--ink); }
.compare tbody th {
  font-weight: 600;
  color: var(--ink);
  width: 18%;
  background: rgba(255,255,255,0.5);
}
.compare .price { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold-deep); }
.compare .hl { background: rgba(184,149,108,0.08); }

/* Page hero (inner) */
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(280px, 42vw, 420px);
  display: flex;
  align-items: flex-end;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2.5rem, 5vw, 3.8rem);
  border-bottom: 0;
  background: url("../images/img006.jpg") center bottom / cover no-repeat;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(247, 243, 238, 0.78);
  z-index: -1;
}
.page-hero .container {
  position: relative;
}
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  max-width: 16ch;
}
.page-hero .lead { max-width: 52ch; font-size: 1.08rem; }

/* Content prose */
.prose { max-width: 72ch; }
.prose h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-top: 2.2rem; }
.prose h3 { font-size: 1.35rem; margin-top: 1.6rem; }
.prose ul { list-style: disc; padding-left: 1.2rem; margin: 0 0 1.2rem; }
.prose li { margin-bottom: 0.45rem; color: var(--ink-soft); }
.prose ol { list-style: decimal; padding-left: 1.2rem; margin: 0 0 1.2rem; }

/* Split media */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
@media (max-width: 800px) { .split { grid-template-columns: 1fr; } }
.split-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
  box-shadow: var(--shadow);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; min-height: 380px; }

/* FAQ */
.faq-search {
  width: 100%;
  max-width: 420px;
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  cursor: pointer;
  padding: 1.15rem 0;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--gold); font-family: var(--font-display); font-size: 1.4rem; }
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-a { padding: 0 0 1.2rem; color: var(--ink-soft); max-width: 70ch; }

/* Forms */
.form-grid { display: grid; gap: 1rem; }
.form-grid--2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 700px) { .form-grid--2 { grid-template-columns: 1fr; } }
.field label { display: block; font-size: 0.85rem; margin-bottom: 0.4rem; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.75);
  outline: none;
  transition: border-color 0.25s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); }
.form-note { font-size: 0.85rem; color: var(--muted); margin-top: 0.8rem; }

/* Gallery / cases */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.filter-btn {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.55);
  cursor: pointer;
  font-size: 0.85rem;
}
.filter-btn.is-active, .filter-btn:hover {
  background: var(--ink); color: #fff; border-color: var(--ink);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 800px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 4/5;
  background: var(--bg-deep);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item .tag {
  position: absolute; left: 0.8rem; bottom: 0.8rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  display: flex; flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.5);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.blog-card .body { padding: 1.25rem 1.2rem 1.5rem; display: flex; flex-direction: column; flex: 1; gap: 0.5rem; }
.blog-card .cat { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); }
.blog-card h3 { font-size: 1.25rem; margin: 0; }
.blog-card p { margin: 0; font-size: 0.92rem; flex: 1; }

/* CTA dock */
.cta-dock {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  align-items: flex-end;
}
.cta-dock a, .cta-dock button {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 46px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease);
}
.cta-dock a:hover, .cta-dock button:hover { transform: translateY(-2px); }
.cta-wa { background: #25D366; color: #fff; }
.cta-book { background: var(--ink); color: #fff; }
.cta-course { background: var(--gold); color: #fff; }
.cta-top {
  width: 46px; height: 46px; padding: 0; justify-content: center;
  background: rgba(255,255,255,0.9); color: var(--ink); border: 1px solid var(--line) !important;
}
@media (max-width: 600px) {
  .cta-dock .cta-label { display: none; }
  .cta-dock a, .cta-dock button { width: 48px; height: 48px; padding: 0; justify-content: center; }
}

/* Footer */
.site-footer {
  background: #221f1d;
  color: rgba(255,255,255,0.78);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 2rem;
  margin-top: 2rem;
}
.site-footer a:hover { color: var(--gold-soft); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .logo-mark { color: #fff; }
.footer-brand p { color: rgba(255,255,255,0.62); max-width: 36ch; }
.footer-col h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer-col a, .footer-col li { display: block; padding: 0.35rem 0; font-size: 0.92rem; }
.footer-meta { font-size: 0.9rem; line-height: 1.8; }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 1rem; }
.map-embed {
  border: 0;
  border-radius: 14px;
  width: 100%;
  min-height: 180px;
  margin-top: 1rem;
  filter: grayscale(0.2) contrast(0.95);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* Utility */
.text-gold { color: var(--gold-deep); }
.muted { color: var(--muted); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.stack { display: grid; gap: 1rem; }
.chip-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(184,149,108,0.12);
  color: var(--gold-deep);
  font-size: 0.8rem;
}
.divider { height: 1px; background: var(--line); margin: 2rem 0; }
.notice {
  padding: 1rem 1.2rem;
  border-left: 2px solid var(--gold);
  background: rgba(184,149,108,0.08);
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* Skip link */
.skip-link {
  position: absolute; left: 1rem; top: -100px;
  background: var(--ink); color: #fff; padding: 0.6rem 1rem; z-index: 300;
}
.skip-link:focus { top: 1rem; }

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; counter-reset: step; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
.step {
  padding: 1.4rem;
  border-top: 1px solid var(--gold);
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}

/* Reviews */
.review {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.48);
}
.review .stars { color: var(--gold); letter-spacing: 0.1em; margin-bottom: 0.6rem; }
.review cite { display: block; margin-top: 1rem; font-style: normal; font-size: 0.85rem; color: var(--muted); }

/* Feed placeholders */
.feed-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.6rem; }
@media (max-width: 700px) { .feed-grid { grid-template-columns: 1fr 1fr; } }
.feed-slot {
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-deep);
  position: relative;
}
.feed-slot img { width: 100%; height: 100%; object-fit: cover; }
.feed-slot .ph {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 0.75rem; color: var(--muted); text-align: center; padding: 0.5rem;
}
