/* ── TOKENS ── */
:root {
  --bg: #FAF7F2;
  --bg-card: #FFFFFF;
  --bg-dark: #F0EBE0;
  --bg-deeper: #E8DDD0;
  --text: #2C1E0F;
  --text-muted: #6B5E4C;
  --text-soft: #8A7A68;
  --text-inverse: #FAF7F2;
  --text-dim: rgba(44,30,15,0.52);
  --accent: #A67C52;
  --accent-hover: #8F6842;
  --accent-2: #7A9E8E;
  --border: rgba(44,30,15,0.09);
  --border-strong: rgba(44,30,15,0.16);
  --border-dark: rgba(44,30,15,0.10);
  --r: 3px;
  --r-md: 6px;
  --max-w: 1180px;
  --gap: clamp(3.5rem, 8vw, 6rem);
  --nav-h: 68px;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #1C1208; --bg-card: #261808; --bg-dark: #301F0C; --bg-deeper: #3A2A12;
    --text: #EDE4D5; --text-muted: #9A8A76; --text-soft: #7A6A58;
    --text-inverse: #EDE4D5; --text-dim: rgba(237,228,213,0.52);
    --accent: #C49A6A; --border: rgba(237,228,213,0.09); --border-strong: rgba(237,228,213,0.18); --border-dark: rgba(237,228,213,0.09);
  }
}
:root[data-theme="dark"] {
  --bg: #1C1208; --bg-card: #261808; --bg-dark: #301F0C; --bg-deeper: #3A2A12;
  --text: #EDE4D5; --text-muted: #9A8A76; --text-soft: #7A6A58;
  --text-inverse: #EDE4D5; --text-dim: rgba(237,228,213,0.52);
  --accent: #C49A6A; --border: rgba(237,228,213,0.09); --border-strong: rgba(237,228,213,0.18); --border-dark: rgba(237,228,213,0.09);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { background: var(--bg); color: var(--text); font-family: 'DM Sans', system-ui, sans-serif; font-size: 1rem; line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
address { font-style: normal; }

/* ── TYPE ── */
.display { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2.8rem, 6vw, 5.2rem); font-weight: 400; line-height: 1.07; letter-spacing: -0.015em; text-wrap: balance; }
.h1 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.9rem, 3.8vw, 3.2rem); font-weight: 400; line-height: 1.14; text-wrap: balance; }
.h2 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.4rem, 2.8vw, 2.1rem); font-weight: 400; line-height: 1.2; text-wrap: balance; }
.h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.15rem; font-weight: 600; }
.eyebrow { font-size: 0.67rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); }
.body-lg { font-size: 1.06rem; line-height: 1.76; font-weight: 300; }
.mono { font-variant-numeric: tabular-nums; }

/* ── LAYOUT ── */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
.sec { padding: var(--gap) 0; }
.g2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 4.5rem); align-items: center; }
.g3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.g4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.g2.top { align-items: flex-start; }
@media (max-width: 880px) { .g2 { grid-template-columns: 1fr; } .g3 { grid-template-columns: 1fr 1fr; } .g4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .g3, .g4 { grid-template-columns: 1fr; } }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.78rem 1.75rem; border-radius: var(--r); font-size: 0.84rem; font-weight: 500; letter-spacing: 0.03em; transition: background 0.2s, color 0.2s, transform 0.2s, opacity 0.2s; line-height: 1; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); }
.btn-ghost { background: transparent; border: 1.5px solid var(--border-strong); color: var(--text); }
.btn-ghost:hover { background: rgba(44,30,15,0.04); }
.btn-dark { background: var(--text); color: var(--bg); }
.btn-dark:hover { background: #3D2B15; }
.btn-outline { background: transparent; border: 1.5px solid var(--border-strong); color: var(--text); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.78rem; }
.btn-lg { padding: 0.95rem 2.2rem; font-size: 0.92rem; }

/* ── NAV ── */
.site-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; height: var(--nav-h); background: rgba(250,247,242,0.94); backdrop-filter: blur(16px) saturate(1.4); border-bottom: 1px solid var(--border); }
.nav-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.nav-logo img { height: 38px; width: auto; object-fit: contain; display: block; }
.nav-links { display: flex; align-items: center; gap: 1.75rem; }
.nav-links a { font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(44,30,15,0.55); transition: color 0.2s; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta { background: var(--accent); color: #fff !important; padding: 0.5rem 1.2rem; border-radius: var(--r); font-weight: 500 !important; transition: background 0.2s !important; }
.nav-cta:hover { background: var(--accent-hover); }
.nav-ham { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-ham span { display: block; width: 22px; height: 1.5px; background: var(--text); transition: 0.3s; }
.nav-mob { display: none; }
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-ham { display: flex; }
  .nav-mob { position: fixed; inset: var(--nav-h) 0 0 0; background: var(--bg); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; z-index: 199; transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1); }
  .nav-mob.open { transform: translateX(0); }
  .nav-mob a { font-size: 1.25rem; color: var(--text); letter-spacing: 0.07em; transition: color 0.2s; }
  .nav-mob a:hover { color: var(--accent); }
}

/* ── REVEAL ANIMATIONS ── */
[data-reveal] { opacity: 0; transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1); }
[data-reveal="left"] { transform: translateX(-28px); }
[data-reveal="right"] { transform: translateX(28px); }
[data-reveal="up"] { transform: translateY(22px); }
[data-reveal="fade"] { transform: none; }
[data-reveal].in-view { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; transition: none; } }

/* ── TICKER ── */
.ticker-wrap { background: var(--accent); padding: 1.15rem 0; overflow: hidden; }
.ticker-track { display: flex; gap: 3rem; animation: ticker 26s linear infinite; white-space: nowrap; }
.ticker-item { font-size: 0.67rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.85); }
.ticker-sep { color: rgba(255,255,255,0.35); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── STAT BLOCK ── */
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.stat-cell { padding: 1.75rem; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 400; color: var(--accent); line-height: 1; margin-bottom: 0.25rem; }
.stat-label { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }
@media (max-width: 560px) { .stat-grid { grid-template-columns: 1fr; } }

/* ── SECTION HEADER ── */
.sec-header { margin-bottom: 3rem; }
.sec-header .eyebrow { margin-bottom: 0.75rem; }
.sec-header p { color: var(--text-muted); max-width: 54ch; margin-top: 0.65rem; }

/* ── CARDS ── */
.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; transition: box-shadow 0.3s, transform 0.3s; }
.card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.09); transform: translateY(-2px); }
.card-img { height: 210px; overflow: hidden; position: relative; background: var(--bg-dark); display: flex; align-items: center; justify-content: center; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 1.5rem; }
.card-body .h3 { margin-bottom: 0.5rem; }
.card-body p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ── PRICE DISPLAY ── */
.price-display { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 400; color: var(--accent); line-height: 1; }
.price-display sup { font-size: 1.1rem; vertical-align: top; margin-top: 0.4rem; }
.price-display small { font-size: 0.82rem; font-family: 'DM Sans', sans-serif; color: var(--text-muted); }

/* ── FEATURE LIST ── */
.feat-list { display: flex; flex-direction: column; gap: 0.35rem; margin-top: 0.9rem; }
.feat-list li { font-size: 0.82rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.55rem; }
.feat-list li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* ── DIVIDERS ── */
hr { border: none; border-top: 1px solid var(--border); }

/* ── FOOTER ── */
.site-footer { background: var(--bg-deeper); color: var(--text); padding: 3.5rem 0 1.75rem; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-brand p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.7; margin-top: 0.85rem; max-width: 28ch; }
.footer-social { display: flex; gap: 0.85rem; margin-top: 1.25rem; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border-strong); color: var(--text-muted); transition: border-color 0.2s, color 0.2s, background 0.2s; }
.footer-social a:hover { border-color: var(--accent); color: var(--accent); background: rgba(166,124,82,0.08); }
.footer-col h4 { font-size: 0.65rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { font-size: 0.84rem; color: var(--text-muted); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--text); }
.footer-col address { font-size: 0.84rem; color: var(--text-muted); line-height: 1.75; }
.footer-col address a { color: inherit; transition: color 0.2s; }
.footer-col address a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; font-size: 0.75rem; color: var(--text-soft); }
.footer-bottom a { color: inherit; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--text); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } .footer-brand p { max-width: 100%; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ── PAGE HERO (inner pages) ── */
.page-hero { background: var(--bg-deeper); padding: calc(var(--nav-h) + 3.5rem) 0 3.5rem; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 70% at 70% 40%, rgba(166,124,82,0.07) 0%, transparent 65%); pointer-events: none; }
.page-hero .eyebrow { margin-bottom: 0.85rem; }
.page-hero h1 { color: var(--text); }
.page-hero p { color: var(--text-muted); margin-top: 0.85rem; max-width: 52ch; }

/* ── GIFT CARD BAND ── */
.gift-band { background: var(--accent); padding: var(--gap) 0; }
.gift-inner { display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center; }
.gift-band h2 { color: #fff; }
.gift-band p { color: rgba(255,255,255,0.75); margin-top: 0.7rem; max-width: 50ch; }
.btn-gift { background: #fff; color: var(--accent); padding: 0.9rem 2rem; border-radius: var(--r); font-size: 0.9rem; font-weight: 500; transition: transform 0.2s, box-shadow 0.2s; white-space: nowrap; display: inline-block; }
.btn-gift:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.14); }
@media (max-width: 640px) { .gift-inner { grid-template-columns: 1fr; } }
