@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --bg:        #faf8f4;
  --surface:   #f0ebe2;
  --text:      #1c1814;
  --muted:     #6b6058;
  --accent:    #b87d38;
  --accent-lt: #e5cfaa;
  --border:    #ddd5c8;
  --white:     #fff;
  --serif:     'Inter', Helvetica, sans-serif;
  --sans:      'Inter', Helvetica, sans-serif;
  --max-w:     1280px;
  --pad-x:     clamp(20px, 5vw, 80px);
  --nav-h:     70px;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--bg); color: var(--text); line-height: 1.65; font-weight: 500; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { display: block; max-width: 100%; }
.site-img { width: 100%; height: 100%; object-fit: cover; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--sans); }
ul { list-style: none; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
h1, h2, h3 { font-family: var(--serif); font-weight: 700; line-height: 1.15; text-wrap: pretty; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 600; letter-spacing: -0.01em; }
.eyebrow { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 14px; display: block; }
p { max-width: 62ch; text-wrap: pretty; }
h1 em, h2 em, h3 em { font-style: italic; color: var(--accent); }
.logo-em { font-style: normal; color: var(--accent); }

/* ── LAYOUT ──────────────────────────────────────────────── */
.wrap  { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }
.section { padding: clamp(60px, 10vw, 120px) var(--pad-x); max-width: var(--max-w); margin: 0 auto; }
.alt-bg  { background: var(--surface); }
.dark-bg { background: var(--text); color: var(--bg); }
.dark-bg .eyebrow { color: var(--accent-lt); }
.sec-hd { margin-bottom: clamp(36px, 5vw, 64px); }
.sec-hd-row { display: flex; justify-content: space-between; align-items: flex-end; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn { display: inline-block; padding: 13px 28px; font-family: var(--sans); font-size: 0.74rem; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500; transition: all 0.22s; }
.btn-dark  { background: var(--text); color: var(--bg); }
.btn-dark:hover  { background: var(--accent); color: var(--white); }
.btn-ghost { background: transparent; color: var(--text); box-shadow: inset 0 0 0 1.5px var(--border); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--text); }
.btn-accent { background: var(--accent); color: var(--white); }
.btn-accent:hover { background: var(--text); }
.btn-light { background: var(--bg); color: var(--text); }
.btn-light:hover { background: var(--accent); color: var(--white); }
.btn-ghost-light { background: transparent; color: var(--bg); box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.35); }
.btn-ghost-light:hover { box-shadow: inset 0 0 0 1.5px var(--bg); }

/* ── PLACEHOLDER ─────────────────────────────────────────── */
.ph {
  background: var(--surface);
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 12px, rgba(0,0,0,0.025) 12px, rgba(0,0,0,0.025) 13px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; padding: 20px; font-family: 'Courier New', monospace;
  font-size: 10px; letter-spacing: 0.05em; color: var(--muted); text-align: center;
}
.ph-sub { font-size: 9px; opacity: 0.6; }

/* ── NAV ─────────────────────────────────────────────────── */
#site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad-x); height: var(--nav-h);
  background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
  transition: height 0.32s;
}
#site-nav.scrolled { height: 58px; }
.nav-logo { font-family: var(--serif); font-size: 1.55rem; font-weight: 600; flex-shrink: 0; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { font-size: 0.72rem; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 500; color: var(--muted); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-book { background: var(--text) !important; color: var(--bg) !important; padding: 9px 18px !important; letter-spacing: 0.1em; }
.nav-book:hover { background: var(--accent) !important; color: var(--white) !important; }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-burger span { display: block; width: 22px; height: 1.5px; background: var(--text); transition: all 0.3s; }

/* Mobile nav */
#mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 190;
  background: var(--bg); flex-direction: column;
  align-items: center; justify-content: center; gap: 22px;
}
#mobile-nav.open { display: flex; }
#mobile-nav a { font-family: var(--serif); font-size: 1.9rem; color: var(--text); transition: color 0.2s; }
#mobile-nav a:hover { color: var(--accent); }
.mobile-close { position: absolute; top: 20px; right: var(--pad-x); font-size: 1.5rem; color: var(--muted); }

/* ── FOOTER ──────────────────────────────────────────────── */
#site-footer { background: var(--surface); border-top: 1px solid var(--border); }
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 56px var(--pad-x) 36px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 44px; border-bottom: 1px solid var(--border); margin-bottom: 28px; }
.footer-brand p { font-size: 0.84rem; color: var(--muted); line-height: 1.75; max-width: 28ch; margin-top: 12px; }
.footer-col h5 { font-size: 0.66rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; font-weight: 500; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.84rem; color: var(--muted); transition: color 0.2s; line-height: 1.5; }
.footer-col ul a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-copy { font-size: 0.73rem; color: var(--muted); }
.footer-credit { font-size: 0.7rem; color: var(--muted); }
.footer-credit a { color: var(--muted); transition: color 0.2s; }
.footer-credit a:hover { color: var(--accent); }
.footer-socials { display: flex; gap: 20px; }
.footer-socials a { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); transition: color 0.2s; }
.footer-socials a:hover { color: var(--accent); }

/* ── SCROLL FADE ─────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(26px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.in { opacity: 1; transform: none; }

/* ── INTERIOR PAGE HERO ──────────────────────────────────── */
.page-hero { padding: calc(var(--nav-h) + 72px) var(--pad-x) 72px; max-width: var(--max-w); margin: 0 auto; }
.page-hero h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
.page-hero p { font-size: 1.05rem; color: var(--muted); margin-top: 14px; max-width: 52ch; }

/* ── HOME HERO ───────────────────────────────────────────── */
#hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }
.hero-l { display: flex; flex-direction: column; justify-content: flex-end; padding: calc(var(--nav-h) + 60px) var(--pad-x) 80px; }
.hero-eyebrow { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); font-weight: 500; margin-bottom: 28px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 36px; }
.hero-r { position: relative; overflow: hidden; }
.hero-stat { position: absolute; bottom: 48px; left: 0; background: var(--bg); padding: 20px 28px; }
.hero-stat-n { font-family: var(--serif); font-size: 2.8rem; line-height: 1; }
.hero-stat-l { font-size: 0.67rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.hero-sub { font-size: 1rem; color: var(--muted); margin-top: 24px; max-width: 44ch; }

/* ── ABOUT STRIP ─────────────────────────────────────────── */
.about-strip { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 28px 0; }
.stat-n { font-family: var(--serif); font-size: 3rem; line-height: 1; }
.stat-l { font-size: 0.67rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 4px; line-height: 1.5; }
.stockist-strip { display: flex; align-items: center; gap: 14px; padding-top: 28px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.stockist-of { font-size: 0.67rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.stockist-names { display: flex; gap: 16px; align-items: center; }
.stockist-name { font-family: var(--serif); font-size: 1rem; font-weight: 600; }

/* ── SERVICES GRID ───────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.svc-card { background: var(--bg); padding: 44px 36px; transition: background 0.22s; }
.alt-bg .svc-card { background: var(--surface); }
.svc-card:hover { background: var(--text); }
.svc-card:hover .svc-n, .svc-card:hover .svc-num { color: var(--bg); }
.svc-card:hover .svc-d { color: rgba(240,235,224,0.6); }
.svc-card:hover .svc-num { color: var(--accent); opacity: 1; }
.svc-num { font-size: 0.64rem; letter-spacing: 0.15em; color: var(--muted); margin-bottom: 40px; display: block; transition: color 0.22s; }
.svc-n { font-family: var(--serif); font-size: 1.4rem; font-weight: 500; margin-bottom: 14px; line-height: 1.25; transition: color 0.22s; }
.svc-d { font-size: 0.87rem; color: var(--muted); line-height: 1.75; transition: color 0.22s; }

/* ── SERVICES PAGE ───────────────────────────────────────── */
.svc-block { display: grid; grid-template-columns: 240px 1fr; gap: clamp(32px, 5vw, 80px); align-items: start; padding: clamp(40px, 5vw, 64px) var(--pad-x); max-width: var(--max-w); margin: 0 auto; border-top: 1px solid var(--border); }
.svc-block-lhs { }
.svc-block-num { font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); font-weight: 600; display: block; margin-bottom: 10px; }
.svc-block-lhs h3 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); line-height: 1.2; letter-spacing: -0.02em; font-weight: 700; }
.svc-block-rhs p { color: var(--muted); line-height: 1.85; margin-bottom: 24px; font-size: 0.93rem; }
.svc-block-list { display: grid; grid-template-columns: 1fr 1fr; gap: 7px 32px; margin-bottom: 28px; }
.svc-block-list li { font-size: 0.83rem; color: var(--muted); padding-left: 16px; position: relative; }
.svc-block-list li::before { content: '—'; position: absolute; left: 0; color: var(--accent); }
@media (max-width: 760px) {
  .svc-block { grid-template-columns: 1fr; gap: 14px; }
  .svc-block-list { grid-template-columns: 1fr; }
}

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 48px; }
.testi { background: var(--surface); padding: 44px; }
.testi-stars { letter-spacing: 3px; color: var(--accent); margin-bottom: 18px; font-size: 0.8rem; }
.testi-q { font-family: var(--serif); font-size: 1.15rem; line-height: 1.7; font-style: italic; margin-bottom: 24px; }
.testi-by { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }

/* ── INSTAGRAM ───────────────────────────────────────────── */
.insta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; margin-top: 40px; }
.insta-cell { aspect-ratio: 1; overflow: hidden; }

/* ── GIFT BANNER ─────────────────────────────────────────── */
.gift-banner { background: var(--text); color: var(--bg); padding: clamp(64px, 10vw, 100px) var(--pad-x); text-align: center; }
.gift-banner p { color: rgba(240,235,224,0.7); margin: 16px auto 36px; max-width: 50ch; }

/* ── PRICING ─────────────────────────────────────────────── */
.ptabs { display: flex; border-bottom: 1px solid var(--border); margin-bottom: 40px; overflow-x: auto; }
.ptab { padding: 12px 28px; font-size: 0.7rem; letter-spacing: 0.11em; text-transform: uppercase; border-bottom: 2.5px solid transparent; margin-bottom: -1px; color: var(--muted); font-weight: 500; transition: all 0.2s; white-space: nowrap; }
.ptab.active { color: var(--text); border-bottom-color: var(--accent); }
.ptab:hover { color: var(--text); }
.price-panel { display: none; }
.price-panel.active { display: block; }
.price-row { display: flex; justify-content: space-between; align-items: baseline; padding: 20px 0; border-bottom: 1px solid var(--border); gap: 20px; }
.price-row:last-child { border-bottom: none; }
.price-n { font-family: var(--serif); font-size: 1.15rem; font-weight: 500; }
.price-note { font-size: 0.8rem; color: var(--muted); margin-top: 3px; }
.price-v { font-family: var(--serif); font-size: 1.35rem; white-space: nowrap; flex-shrink: 0; }
.pricing-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 96px); }

/* ── TEAM ────────────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 48px; }
.team-card .team-photo { aspect-ratio: 3/4; margin-bottom: 14px; }
.team-n { font-family: var(--serif); font-size: 1.05rem; margin-bottom: 4px; }
.team-r { font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); }
.ci-block { margin-bottom: 36px; }
.ci-label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent-lt); margin-bottom: 10px; display: block; }
.ci-val { font-size: 0.95rem; line-height: 1.9; color: rgba(240,235,224,0.78); }
.ci-val a { color: var(--accent-lt); transition: color 0.2s; }
.ci-val a:hover { color: var(--white); }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid rgba(255,255,255,0.07); }
.hours-table tr:last-child { border: none; }
.hours-table td { padding: 10px 0; font-size: 0.88rem; color: rgba(240,235,224,0.72); }
.hours-table td:last-child { text-align: right; }
.contact-ctas { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 36px; }

/* ── PRODUCTS ────────────────────────────────────────────── */
.brand-section { margin-bottom: 72px; }
.brand-hd { display: flex; align-items: center; gap: 20px; margin-bottom: 32px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.brand-title { font-family: var(--serif); font-size: 1.6rem; }
.brand-badge { font-size: 0.63rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); background: var(--accent-lt); padding: 4px 10px; }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.product-card { background: var(--surface); }
.product-img { aspect-ratio: 4/5; }
.product-info { padding: 16px 20px 20px; }
.product-type { font-size: 0.63rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.product-n { font-family: var(--serif); font-size: 1rem; font-weight: 500; margin-bottom: 8px; }
.product-d { font-size: 0.8rem; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.product-btn { display: block; text-align: center; padding: 10px; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; background: var(--text); color: var(--bg); transition: background 0.2s; }
.product-btn:hover { background: var(--accent); color: var(--white); }

/* ── GIFT CARDS PAGE ─────────────────────────────────────── */
.gc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.gc-card { padding: 44px 36px; background: var(--surface); text-align: center; }
.gc-card.featured { background: var(--text); color: var(--bg); }
.gc-amount { font-family: var(--serif); font-size: 4rem; line-height: 1; margin-bottom: 6px; }
.gc-card.featured .gc-amount { color: var(--accent); }
.gc-label { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; display: block; }
.gc-card.featured .gc-label { color: var(--accent-lt); }
.gc-desc { font-family: var(--serif); font-size: 1.1rem; font-style: italic; color: var(--muted); margin-bottom: 32px; }
.gc-card.featured .gc-desc { color: rgba(240,235,224,0.65); }
.gc-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; text-align: left; }
.gc-features li { font-size: 0.83rem; color: var(--muted); padding: 8px 0; border-bottom: 1px solid var(--border); }
.gc-features li:last-child { border: none; }
.gc-card.featured .gc-features li { color: rgba(240,235,224,0.65); border-color: rgba(255,255,255,0.08); }

/* ── TWEAKS PANEL ────────────────────────────────────────── */
#tweaks-panel { position: fixed; bottom: 24px; right: 24px; z-index: 500; background: var(--bg); border: 1px solid var(--border); width: 272px; padding: 20px; box-shadow: 0 8px 48px rgba(0,0,0,0.1); display: none; }
#tweaks-panel.open { display: block; }
.tp-hd { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.tp-title { font-family: var(--serif); font-size: 1rem; font-weight: 600; }
.tp-close { font-size: 1.3rem; color: var(--muted); line-height: 1; }
.tp-sec { margin-bottom: 16px; }
.tp-lbl { font-size: 0.63rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.tp-row { display: flex; gap: 6px; flex-wrap: wrap; }
.tp-chip { padding: 5px 11px; font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; background: var(--surface); border: 1px solid var(--border); color: var(--text); transition: all 0.2s; }
.tp-chip:hover, .tp-chip.on { background: var(--text); color: var(--bg); border-color: var(--text); }
.tp-sw { width: 26px; height: 26px; border-radius: 50%; border: 2.5px solid transparent; cursor: pointer; transition: border-color 0.2s; }
.tp-sw.on { border-color: var(--text); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  #hero { grid-template-columns: 1fr; }
  .hero-r { height: 60vw; order: -1; }
  .hero-stat { display: none; }
  .hero-l { padding-top: calc(var(--nav-h) + 36px); }
  .about-strip { grid-template-columns: 1fr; gap: 36px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  @media (max-width: 700px) { .testi-grid { grid-template-columns: 1fr; } }
  .pricing-layout { grid-template-columns: 1fr; }
  .svc-block { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gc-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .sec-hd-row { flex-direction: column; align-items: flex-start; gap: 16px; }
}
