/* =========================================================
   Alice Tea Spot — Stylesheet
   ========================================================= */

:root {
  --ink: #14110d;
  --ink-soft: #2a241d;
  --paper: #f6f1e7;
  --paper-2: #efe7d7;
  --cream: #e8d8b0;
  --green: #1f3a2e;
  --green-2: #2e5a44;
  --green-3: #4c8a6a;
  --gold: #c9a24a;
  --gold-soft: #d8b871;
  --rust: #a8542a;
  --line: rgba(20, 17, 13, 0.12);
  --line-dark: rgba(246, 241, 231, 0.16);
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 6px 18px rgba(20, 17, 13, 0.08);
  --shadow-md: 0 18px 50px rgba(20, 17, 13, 0.14);
  --shadow-lg: 0 30px 90px rgba(20, 17, 13, 0.22);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  position: relative;
}

img, iframe { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--green-2); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.12;
  margin: 0 0 0.5em;
  color: var(--ink);
}

p { margin: 0 0 1em; }

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* =========================================================
   Animated background
   ========================================================= */

.bg-layer { position: fixed; inset: 0; pointer-events: none; z-index: 0; }

.bg-grain {
  background-image:
    radial-gradient(rgba(20,17,13,0.05) 1px, transparent 1px),
    radial-gradient(rgba(20,17,13,0.035) 1px, transparent 1px);
  background-size: 24px 24px, 42px 42px;
  background-position: 0 0, 12px 12px;
  opacity: 0.7;
  mix-blend-mode: multiply;
}

.bg-glow {
  background:
    radial-gradient(60% 45% at 15% 10%, rgba(201,162,74,0.20), transparent 60%),
    radial-gradient(55% 45% at 90% 20%, rgba(46,90,68,0.18), transparent 60%),
    radial-gradient(65% 55% at 50% 100%, rgba(168,84,42,0.12), transparent 65%);
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.45;
  z-index: 0;
  pointer-events: none;
  animation: floatOrb 22s ease-in-out infinite;
}
.orb-1 { width: 420px; height: 420px; left: -120px; top: 8%; background: radial-gradient(circle, rgba(76,138,106,0.65), transparent 70%); animation-duration: 26s; }
.orb-2 { width: 380px; height: 380px; right: -100px; top: 40%; background: radial-gradient(circle, rgba(201,162,74,0.55), transparent 70%); animation-duration: 30s; animation-delay: -6s; }
.orb-3 { width: 460px; height: 460px; left: 30%; bottom: -160px; background: radial-gradient(circle, rgba(168,84,42,0.45), transparent 70%); animation-duration: 34s; animation-delay: -12s; }

@keyframes floatOrb {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(30px, -40px, 0) scale(1.08); }
}

/* =========================================================
   Scroll progress
   ========================================================= */

.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--green-2), var(--gold), var(--rust));
  z-index: 100;
  transition: width 0.08s linear;
}

/* =========================================================
   Header
   ========================================================= */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  background: rgba(246, 241, 231, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.scrolled {
  background: rgba(246, 241, 231, 0.94);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--green);
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  box-shadow: inset 0 0 0 1px rgba(232,216,176,0.3), var(--shadow-sm);
  transition: transform 0.5s var(--ease);
}
.brand:hover .brand-mark { transform: rotate(-8deg) scale(1.06); }

.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-display); font-size: 19px; font-weight: 600; letter-spacing: -0.01em; }
.brand-sub { font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); opacity: 0.75; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14.5px;
  font-weight: 500;
}
.main-nav a { position: relative; padding: 4px 0; }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  height: 1.5px; width: 0%;
  background: var(--green-2);
  transition: width 0.35s var(--ease);
}
.main-nav a:hover::after { width: 100%; }

.nav-cta {
  padding: 9px 18px !important;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.nav-cta:hover { background: var(--green); color: var(--cream); transform: translateY(-2px); }
.nav-cta::after { display: none; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  padding: 10px;
  flex-direction: column;
  justify-content: space-between;
}
.nav-toggle span {
  display: block; height: 2px; width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(246, 241, 231, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 6%;
    gap: 16px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  }
  .main-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
}

/* =========================================================
   Buttons
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.28) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
}
.btn:hover::after { transform: translateX(120%); }

.btn-primary {
  background: var(--green);
  color: var(--cream);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--green-2); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }

.btn.full { width: 100%; }

/* =========================================================
   Hero
   ========================================================= */

.hero {
  position: relative;
  padding: 140px 0 0;
  z-index: 1;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 70px;
}

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-2);
  margin-bottom: 18px;
  position: relative;
  padding-left: 34px;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 24px; height: 1.5px;
  background: var(--gold);
  transform: translateY(-50%);
}

.hero-title {
  font-size: clamp(2.6rem, 6.4vw, 5.2rem);
  font-weight: 500;
  margin-bottom: 22px;
}
.hero-title .accent {
  color: var(--green-2);
  font-style: italic;
  position: relative;
}
.hero-title .accent::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0.05em;
  width: 100%; height: 0.35em;
  background: linear-gradient(90deg, rgba(201,162,74,0.35), rgba(201,162,74,0));
  z-index: -1;
  border-radius: 4px;
}

.hero-lead {
  font-size: 1.08rem;
  max-width: 580px;
  color: var(--ink-soft);
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 46px;
}

.hero-stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 42px;
  flex-wrap: wrap;
}
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stats span {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.75;
}

/* Hero visual — animated tea cup */
.hero-visual { display: flex; justify-content: center; }

.tea-card {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1;
  border-radius: 32px;
  background:
    radial-gradient(circle at 30% 20%, rgba(232,216,176,0.6), transparent 55%),
    linear-gradient(160deg, #2e5a44 0%, #1f3a2e 60%, #14110d 100%);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: cardFloat 8s ease-in-out infinite;
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-14px) rotate(-1.2deg); }
}

.tea-card-inner {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.cup {
  position: relative;
  width: 190px;
  height: 150px;
  animation: cupBob 4s ease-in-out infinite;
}
@keyframes cupBob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

.cup-body {
  position: absolute;
  bottom: 18px;
  left: 0;
  width: 190px;
  height: 110px;
  background: linear-gradient(180deg, #f6f1e7 0%, #e8d8b0 100%);
  border-radius: 0 0 90px 90px / 0 0 60px 60px;
  box-shadow: inset 0 -12px 22px rgba(20,17,13,0.18), 0 12px 30px rgba(0,0,0,0.35);
}
.cup-body::before {
  content: "";
  position: absolute;
  top: 6px; left: 12px; right: 12px;
  height: 12px;
  background: linear-gradient(180deg, #a8542a, #6b3417);
  border-radius: 50%;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.4);
}

.cup-handle {
  position: absolute;
  right: -34px;
  bottom: 48px;
  width: 50px;
  height: 50px;
  border: 12px solid #f6f1e7;
  border-radius: 50%;
  border-left-color: transparent;
  border-top-color: transparent;
  transform: rotate(-45deg);
  box-shadow: 4px 4px 0 rgba(0,0,0,0.15);
}

.cup-saucer {
  position: absolute;
  bottom: 0;
  left: -22px;
  width: 234px;
  height: 22px;
  background: linear-gradient(180deg, #e8d8b0, #c9a24a);
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(0,0,0,0.35);
}

.steam {
  position: absolute;
  top: 22%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
  z-index: 2;
}
.steam span {
  display: block;
  width: 8px;
  height: 90px;
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(246,241,231,0) 0%, rgba(246,241,231,0.55) 40%, rgba(246,241,231,0) 100%);
  animation: steamRise 3.4s ease-in-out infinite;
  filter: blur(1px);
}
.steam span:nth-child(2) { animation-delay: 0.6s; height: 110px; }
.steam span:nth-child(3) { animation-delay: 1.2s; height: 80px; }

@keyframes steamRise {
  0%   { transform: translateY(20px) scaleY(0.6); opacity: 0; }
  30%  { opacity: 0.9; }
  100% { transform: translateY(-80px) scaleY(1.15); opacity: 0; }
}

.tea-leaf {
  position: absolute;
  width: 44px;
  height: 22px;
  background: linear-gradient(120deg, #4c8a6a, #2e5a44);
  border-radius: 60% 40% 60% 40%;
  opacity: 0.85;
  filter: blur(0.3px);
}
.leaf-a { top: 14%; left: 16%; transform: rotate(-24deg); animation: leafDrift 9s ease-in-out infinite; }
.leaf-b { top: 22%; right: 12%; transform: rotate(38deg); animation: leafDrift 11s ease-in-out infinite reverse; }
.leaf-c { bottom: 20%; left: 24%; transform: rotate(12deg); animation: leafDrift 13s ease-in-out infinite; animation-delay: -3s; }
@keyframes leafDrift {
  0%, 100% { transform: translate(0, 0) rotate(var(--r, 0deg)); }
  50%      { transform: translate(14px, -20px) rotate(calc(var(--r, 0deg) + 20deg)); }
}

.tea-card-caption {
  position: absolute;
  left: 22px; right: 22px; bottom: 22px;
  background: rgba(20,17,13,0.55);
  backdrop-filter: blur(10px);
  color: var(--paper);
  font-size: 13px;
  padding: 12px 16px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.02em;
}
.tea-card-caption .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(201,162,74,0.7);
  animation: pulseDot 2s ease-out infinite;
}
@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(201,162,74,0.7); }
  70%  { box-shadow: 0 0 0 14px rgba(201,162,74,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,162,74,0); }
}

/* Marquee */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(239, 231, 215, 0.6);
  padding: 18px 0;
  position: relative;
  z-index: 1;
}
.marquee-track {
  display: inline-flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
}
.marquee-track span:nth-child(even) { color: var(--gold); }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================================
   Sections
   ========================================================= */

.section {
  position: relative;
  padding: 110px 0;
  z-index: 1;
}
.section:nth-of-type(even) { background: rgba(239, 231, 215, 0.35); }

.section-head {
  max-width: 720px;
  margin-bottom: 60px;
}

.section-title {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  margin-bottom: 18px;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 640px;
}

.section-body {
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 620px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
@media (max-width: 960px) {
  .grid-2 { grid-template-columns: 1fr; gap: 46px; }
}

/* About value cards */
.value-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 560px) { .value-grid { grid-template-columns: 1fr; } }

.value-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 22px 20px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,162,74,0.55);
}
.value-card h4 { font-size: 1.06rem; margin-bottom: 6px; }
.value-card p { font-size: 0.93rem; color: var(--ink-soft); margin: 0; }

/* Stat panel */
.stat-panel {
  background: var(--green);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-md);
  margin-bottom: 22px;
}
.stat-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line-dark);
  font-size: 0.95rem;
}
.stat-row:last-child { border-bottom: none; }
.stat-label { opacity: 0.7; letter-spacing: 0.04em; }
.stat-value { font-weight: 500; text-align: right; }

.quote-card {
  background: #fff;
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.quote-card p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 14px;
}
.quote-author {
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.8;
}

/* =========================================================
   Collection / products
   ========================================================= */

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}
.filter-btn {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.filter-btn:hover { transform: translateY(-2px); border-color: var(--gold); }
.filter-btn.is-active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 960px) { .product-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .product-grid { grid-template-columns: 1fr; } }

.product-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), opacity 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  min-height: 340px;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.product-card.hidden {
  opacity: 0;
  transform: scale(0.94);
  pointer-events: none;
  position: absolute;
  visibility: hidden;
}

.product-visual {
  height: 170px;
  position: relative;
  overflow: hidden;
}
.product-visual svg { position: absolute; inset: 0; width: 100%; height: 100%; }

.product-tag {
  position: absolute;
  top: 14px; left: 14px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(20,17,13,0.75);
  color: var(--cream);
  padding: 6px 12px;
  border-radius: 999px;
  z-index: 2;
}

.product-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 6px;
}
.product-desc {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin: 0 0 16px;
  flex: 1;
}
.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.product-price { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; }
.product-link {
  font-weight: 600;
  color: var(--green-2);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}
.product-link:hover { border-color: var(--green-2); }

/* =========================================================
   Process
   ========================================================= */

.process-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 960px) { .process-list { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .process-list { grid-template-columns: 1fr; } }

.process-step {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  padding: 34px 26px 30px;
  border: 1px solid var(--line);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.process-step:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }

.process-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}
.process-step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.process-step p { font-size: 0.94rem; color: var(--ink-soft); margin: 0; }

/* =========================================================
   Subscription
   ========================================================= */

.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}
.check-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  font-size: 0.98rem;
  color: var(--ink-soft);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.45em;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--green-2);
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 5px; top: 0.72em;
  width: 6px; height: 3px;
  border-left: 2px solid var(--cream);
  border-bottom: 2px solid var(--cream);
  transform: rotate(-45deg);
}

.plan-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 700px) { .plan-wrap { grid-template-columns: 1fr; } }

.plan-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.plan-featured {
  background: linear-gradient(160deg, #1f3a2e, #14110d);
  color: var(--cream);
  border-color: transparent;
}
.plan-featured .plan-desc { color: rgba(232,216,176,0.8); }

.plan-tag {
  position: absolute;
  top: -12px; left: 22px;
  background: var(--gold);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.plan-name { font-size: 1.35rem; margin-bottom: 8px; }
.plan-price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  margin: 0 0 10px;
  line-height: 1;
}
.plan-price span { font-size: 2.4rem; }
.plan-desc { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 20px; }

.plan-featured .btn-primary { background: var(--gold); color: var(--ink); }
.plan-featured .btn-primary:hover { background: var(--gold-soft); }

/* =========================================================
   Testimonials
   ========================================================= */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 960px) { .testimonial-grid { grid-template-columns: 1fr; } }

.testimonial {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.testimonial:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.testimonial blockquote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ink);
  margin: 0 0 16px;
  line-height: 1.5;
}
.testimonial figcaption {
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.85;
}

/* =========================================================
   Location
   ========================================================= */

.info-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 30px;
}
.info-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.96rem;
}
.info-list li span { color: var(--ink-soft); opacity: 0.85; }
.info-list li strong { font-weight: 500; text-align: right; }

.map-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  background: #ddd;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* =========================================================
   FAQ
   ========================================================= */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.faq-item[open] { border-color: rgba(201,162,74,0.6); box-shadow: var(--shadow-sm); }
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  list-style: none;
  position: relative;
  padding-right: 30px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--green-2);
  transition: transform 0.3s var(--ease);
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p {
  margin: 12px 0 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

/* =========================================================
   Contact
   ========================================================= */

.contact-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 26px;
}
@media (max-width: 560px) { .contact-block { grid-template-columns: 1fr; } }
.contact-label {
  display: block;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.75;
  margin-bottom: 4px;
}
.contact-block p { margin: 0; font-size: 0.98rem; }

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.field input,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--paper);
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green-2);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(76,138,106,0.15);
}
.field textarea { resize: vertical; }

.form-note {
  margin: 14px 0 0;
  font-size: 0.9rem;
  color: var(--green-2);
  min-height: 1.2em;
}
.form-note.error { color: var(--rust); }

/* =========================================================
   Legal
   ========================================================= */

.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 960px) { .legal-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .legal-grid { grid-template-columns: 1fr; } }

.legal-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 26px 22px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.legal-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.legal-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.legal-card p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.legal-card p:last-child { margin-bottom: 0; }
.legal-card a { color: var(--green-2); border-bottom: 1px solid rgba(46,90,68,0.3); }

/* =========================================================
   Newsletter
   ========================================================= */

.newsletter {
  padding: 90px 0;
}
.newsletter-inner {
  background: linear-gradient(140deg, #1f3a2e, #14110d);
  color: var(--cream);
  border-radius: 26px;
  padding: 56px 46px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.newsletter-inner::before {
  content: "";
  position: absolute;
  inset: -40% -10% auto auto;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(201,162,74,0.28), transparent 70%);
  filter: blur(20px);
}
@media (max-width: 900px) { .newsletter-inner { grid-template-columns: 1fr; padding: 40px 26px; } }

.newsletter .eyebrow { color: var(--gold); }
.newsletter .eyebrow::before { background: var(--gold-soft); }
.newsletter .section-title { color: var(--cream); }
.newsletter .section-lead { color: rgba(232,216,176,0.85); }

.newsletter-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.newsletter-form input {
  flex: 1 1 220px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(232,216,176,0.3);
  background: rgba(246,241,231,0.08);
  color: var(--cream);
  font: inherit;
  font-size: 0.95rem;
}
.newsletter-form input::placeholder { color: rgba(232,216,176,0.55); }
.newsletter-form input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(246,241,231,0.14);
}
.newsletter-form .btn-primary { background: var(--gold); color: var(--ink); }
.newsletter-form .btn-primary:hover { background: var(--gold-soft); }
.newsletter-form .form-note { flex-basis: 100%; color: var(--gold-soft); }

/* =========================================================
   Footer
   ========================================================= */

.site-footer {
  background: var(--ink);
  color: rgba(246,241,231,0.85);
  padding: 70px 0 30px;
  position: relative;
  z-index: 1;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-dark);
}
@media (max-width: 900px) { .footer-inner { grid-template-columns: 1fr; gap: 30px; } }

.footer-brand { display: flex; gap: 16px; align-items: flex-start; }
.footer-brand .brand-mark { background: var(--cream); color: var(--green); }
.footer-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--cream);
  margin: 0 0 8px;
}
.footer-line { font-size: 0.92rem; margin: 0 0 4px; }
.footer-line a { color: rgba(246,241,231,0.9); border-bottom: 1px solid rgba(246,241,231,0.25); }
.footer-line a:hover { color: var(--gold-soft); }

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.footer-nav h4 {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 14px;
}
.footer-nav a {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 8px;
  color: rgba(246,241,231,0.8);
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}
.footer-nav a:hover { color: var(--cream); transform: translateX(3px); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: 12.5px;
  color: rgba(246,241,231,0.55);
}
.footer-bottom p { margin: 0; }

/* Back to top */
.to-top {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), background 0.3s var(--ease);
  z-index: 70;
  box-shadow: var(--shadow-sm);
}
.to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.to-top:hover { background: var(--green); color: var(--cream); }

/* =========================================================
   Reveal on scroll
   ========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}