/* Golden Walsh Studio — design tokens + base */
:root {
  --cream: #f3eedc;
  --cream-deep: #ebe3cb;
  --tan: #cc9b59;
  --tan-soft: #e4c89a;
  --sky: #94cedb;
  --sage: #aebd6a;
  --sage-deep: #8ea355;
  --pink: #df738d;
  --orange: #cc9b59;
  --ink: #2a2620;
  --ink-soft: #4a4338;
  --muted: #7a7062;
  --line: #2a262022;

  /* Type pairings — overridden by Tweaks */
  --font-display: 'Dancing Script', cursive;
  --font-sub: 'Inter', sans-serif;
  --font-body: 'Cormorant Garamond', serif;
  --display-weight: 600;
  --display-tracking: -0.01em;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--cream); color: var(--ink); font-family: var(--font-body); font-size: 18px; line-height: 1.55; }
body { min-height: 100vh; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.eyebrow {
  font-family: var(--font-sub);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
}

.script {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  line-height: 1.05;
}

.serif-display {
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

.btn {
  font-family: var(--font-sub);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 14px 24px;
  border-radius: 999px;
  transition: all 180ms ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
}
.btn-primary { background: var(--ink); color: var(--cream); }
.btn-primary:hover { background: var(--orange); }
.btn-sage { background: var(--sage); color: var(--ink); }
.btn-sage:hover { background: var(--sage-deep); color: var(--cream); }
.btn-ghost { border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn-pink { background: var(--pink); color: #fff; }
.btn-pink:hover { background: var(--orange); }

.container { max-width: 1320px; margin: 0 auto; padding: 0 48px; }

.hairline { height: 1px; background: var(--line); width: 100%; }

/* Scroll reset for SPA-like routing */
.page { animation: fade 400ms ease; }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 48px;
  max-width: 1320px; margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-mark { width: 36px; height: 36px; }
.nav-logo-text { font-family: var(--font-display); font-size: 22px; font-weight: 600; line-height: 1; }
.nav-logo-sub { font-family: var(--font-sub); font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-link {
  font-family: var(--font-sub); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 500; color: var(--ink-soft);
  padding: 6px 0; border-bottom: 1px solid transparent;
  transition: all 180ms;
}
.nav-link:hover, .nav-link.active { color: var(--ink); border-color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.cart-btn { position: relative; padding: 8px; }
.cart-count {
  position: absolute; top: -2px; right: -2px;
  background: var(--pink); color: #fff;
  font-family: var(--font-sub); font-size: 10px; font-weight: 600;
  min-width: 16px; height: 16px; padding: 0 4px;
  border-radius: 999px; display: flex; align-items: center; justify-content: center;
}

/* Footer */
.footer {
  background: var(--ink); color: var(--cream);
  padding: 80px 48px 32px;
  margin-top: 120px;
}
.footer-inner { max-width: 1320px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid #ffffff18; }
.footer h4 { font-family: var(--font-sub); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; color: var(--sage); margin-bottom: 20px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-family: var(--font-body); font-size: 17px; opacity: 0.8; }
.footer ul a:hover { opacity: 1; color: var(--sage); }
.footer-sig { font-family: var(--font-display); font-size: 44px; line-height: 1; color: var(--cream); margin-bottom: 12px; }
.footer-tag { font-family: var(--font-body); font-size: 17px; max-width: 320px; opacity: 0.75; }
.footer-bottom {
  padding-top: 24px; display: flex; justify-content: space-between;
  font-family: var(--font-sub); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: #ffffff66;
}

/* Placeholder image */
.ph {
  background: var(--sage);
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end; justify-content: flex-start;
  color: var(--cream);
  font-family: 'Courier New', monospace; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
}
.ph::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent 0 12px, #00000010 12px 13px);
}
.ph-label { position: relative; padding: 10px 12px; background: #00000030; border-top-right-radius: 4px; }
.ph-cream { background: var(--cream-deep); color: var(--ink-soft); }
.ph-cream .ph-label { background: #00000012; }
.ph-tan { background: var(--tan-soft); color: var(--ink); }
.ph-tan .ph-label { background: #00000018; }
.ph-pink { background: var(--pink); color: #fff; }
.ph-orange { background: var(--orange); color: var(--cream); }
.ph-sky { background: var(--sky); color: var(--ink); }

/* Botanical corner svg util */
.bot-corner { position: absolute; pointer-events: none; opacity: 0.35; }
