/* =============================================================================
   DESIGN SYSTEM — skylartemplesinger.com
   Cormorant Garamond + Montserrat · Sunset gradient palette
   ============================================================================= */

/* ── DESIGN TOKENS ─────────────────────────────────────────────────────────── */
:root {
  --sky:          #A8CFF0;
  --blush-violet: #C4BADF;
  --rose-blush:   #E0AECB;
  --peach:        #F0B898;
  --champagne:    #EDD0A0;
  --ink:          #3A2C3E;
  --pearl:        #FAF4EE;
  --pearl-warm:   #F5EDE6;
  --pearl-cool:   #F0E8E0;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Montserrat', -apple-system, system-ui, sans-serif;

  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 18px;

  --gradient-full: linear-gradient(175deg,
    #A8CFF0 0%,
    #C4BADF 22%,
    #E0AECB 42%,
    #F0B898 65%,
    #EDD0A0 82%,
    #EAD8B8 100%
  );
  --gradient-section: linear-gradient(160deg,
    #A8CFF0 0%,
    #C4BADF 30%,
    #E0AECB 60%,
    #F0B898 88%,
    #EDD0A0 100%
  );
}

/* ── RESET ──────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--pearl);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a    { text-decoration: none; color: inherit; }
img  { max-width: 100%; height: auto; display: block; }
ul   { list-style: none; }
button { font-family: var(--font-sans); cursor: pointer; }

/* ── ACCESSIBILITY ──────────────────────────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}
:focus-visible {
  outline: 2px solid var(--sky);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
}
.eyebrow--light { color: rgba(255,255,255,0.7); }
.eyebrow--warm  { color: #b09070; }

.hero h1 {
  font-size: clamp(44px, 6vw, 64px);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: 0.005em;
  color: #fff;
  margin-bottom: 18px;
  text-shadow: 0 2px 28px rgba(58,44,62,0.38), 0 1px 3px rgba(58,44,62,0.28);
}
.hero .eyebrow { color: rgba(255,255,255,0.92); text-shadow: 0 1px 6px rgba(58,44,62,0.28); }
.hero::after {
  background: linear-gradient(to bottom, rgba(255,255,255,0) 25%, rgba(88,60,80,0.20) 100%);
}
.section h2 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 14px;
}
.section h2.on-gradient { color: rgba(255,255,255,0.97); }
.section h3 {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.5vw, 22px);
  line-height: 1.35;
  color: var(--ink);
}
.body-text {
  font-size: 14px;
  line-height: 1.7;
  color: #7a6870;
}
.body-text--light {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
}

/* ── BUTTONS ─────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  transition: opacity 0.18s, transform 0.18s;
  text-align: center;
}
.btn:hover  { opacity: 0.84; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--glass {
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.6);
  color: rgba(255,255,255,0.95);
}
.btn--ink {
  background: var(--ink);
  color: rgba(255,255,255,0.92);
}
.btn--outline {
  background: transparent;
  border: 1px solid rgba(58,44,62,0.35);
  color: var(--ink);
}
.btn--outline-white {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.55);
  color: rgba(255,255,255,0.9);
}
.ghost-link {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  text-decoration: underline;
  text-underline-offset: 3px;
  letter-spacing: 0.04em;
  transition: color 0.18s;
}
.ghost-link:hover { color: rgba(255,255,255,0.9); }

/* ── NAVIGATION ─────────────────────────────────────────────────────────────── */
.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 52px;
}

/* Pearl nav (non-gradient pages) */
.nav-bar {
  background: var(--pearl);
  border-bottom: 0.5px solid rgba(0,0,0,0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 52px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: opacity 0.18s;
}
.logo:hover      { opacity: 0.7; }
.logo--white     { color: rgba(255,255,255,0.95); }
.logo--ink       { color: var(--ink); }

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}
.nav-link {
  font-size: 11px;
  letter-spacing: 0.04em;
  transition: opacity 0.18s;
}
.nav-link:hover      { opacity: 0.65; }
.nav-link--white     { color: rgba(255,255,255,0.72); }
.nav-link--ink       { color: #7a6870; }

.nav-cta {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 40px;
  transition: opacity 0.18s;
}
.nav-cta:hover      { opacity: 0.78; }
.nav-cta--white     { color: rgba(255,255,255,0.9); border: 0.5px solid rgba(255,255,255,0.55); }
.nav-cta--ink       { color: var(--ink); border: 0.5px solid rgba(58,44,62,0.4); }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  border-radius: 2px;
  transition: background 0.18s;
}
.nav-toggle--white span { background: rgba(255,255,255,0.85); }
.nav-toggle--ink   span { background: var(--ink); }

/* ── HERO ────────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 520px;
  background: var(--gradient-full);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
/* Crystalline light blooms */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 68% 22%, rgba(255,252,240,0.45) 0%, transparent 65%),
    radial-gradient(ellipse 35% 50% at 20% 55%, rgba(168,207,240,0.30) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 50% 70%, rgba(240,184,152,0.20) 0%, transparent 55%);
}
/* Warm bottom vignette */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 35%, rgba(210,168,148,0.25) 100%);
}
.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 52px 60px;
  max-width: 640px;
}
.hero-content .eyebrow { margin-bottom: 14px; }
.hero-sub {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 1.6;
  max-width: 460px;
  margin-bottom: 32px;
  text-shadow: 0 1px 14px rgba(58,44,62,0.32), 0 1px 3px rgba(58,44,62,0.20);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Mini hero variant for inner pages */
.hero--mini {
  min-height: 280px;
  justify-content: flex-end;
}
.hero--mini .hero-content {
  padding-bottom: 44px;
}
.hero--mini h1 {
  font-size: clamp(28px, 4vw, 44px);
}

/* ── PRICING STRIP ───────────────────────────────────────────────────────────── */
.strip {
  background: rgba(168,207,240,0.62);
  border-top: 0.5px solid rgba(255,255,255,0.55);
  border-bottom: 0.5px solid rgba(255,255,255,0.3);
  display: flex;
}
.strip-item {
  flex: 1;
  text-align: center;
  padding: 15px 8px;
  border-right: 0.5px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background 0.18s;
  text-decoration: none;
  display: block;
}
.strip-item:last-child { border-right: none; }
.strip-item:hover      { background: rgba(255,255,255,0.1); }
.s-name  { font-size: 12px; font-weight: 600; color: #fff; letter-spacing: 0.04em; margin-bottom: 3px; text-shadow: 0 1px 3px rgba(58,44,62,0.18); }
.s-price { font-size: 10px; color: rgba(255,255,255,0.92); letter-spacing: 0.04em; text-shadow: 0 1px 2px rgba(58,44,62,0.15); }

/* ── SECTIONS ────────────────────────────────────────────────────────────────── */
.section { padding: 72px 52px; }
.section-pearl { background: var(--pearl); }
.section-warm  { background: var(--pearl-warm); }
.section-cool  { background: var(--pearl-cool); }

.section-gradient {
  background: var(--gradient-section);
  position: relative;
}
.section-gradient::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.12);
  pointer-events: none;
}
.section-gradient .inner { position: relative; z-index: 2; }

.section-header { margin-bottom: 36px; }
.section-header .eyebrow { margin-bottom: 10px; }
.section-header h2  { margin-bottom: 14px; }
.section-header p   { max-width: 560px; }

/* ── WORK CARDS ──────────────────────────────────────────────────────────────── */
.work-row { display: flex; gap: 14px; margin-top: 28px; }
.wcard {
  flex: 1;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 0.5px solid rgba(0,0,0,0.06);
}
.wcard-img  { height: 130px; display: flex; align-items: center; justify-content: center; position: relative; }
.wcard-icon { width: 64px; height: 64px; opacity: 0.95; filter: drop-shadow(0 1px 6px rgba(58,44,62,0.18)); }
.wi-sky     { background: linear-gradient(155deg, #A8CFF0 0%, #c4badf 60%, #e0aecb 100%); }
.wi-gold    { background: linear-gradient(155deg, #EDD0A0 0%, #e8b878 50%, #d49050 100%); }
.wi-prism   { background: linear-gradient(135deg, #c8d8f0 0%, #d8c0e8 33%, #e8b8d0 66%, #f0d0a8 100%); }
.wcard-body { background: white; padding: 14px 16px; }
.wcard-title { font-size: 12px; font-weight: 500; color: var(--ink); margin-bottom: 4px; }
.wcard-text  { font-size: 10px; color: #9a8890; line-height: 1.55; }

/* ── TESTIMONIAL ─────────────────────────────────────────────────────────────── */
.testi-inner { max-width: 580px; }
.t-mark {
  font-family: var(--font-serif);
  font-size: 80px;
  line-height: 0.6;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}
.t-quote {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: rgba(255,255,255,0.97);
  line-height: 1.55;
  margin-bottom: 18px;
}
.t-body {
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.t-attr {
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ── OFFER ROWS ──────────────────────────────────────────────────────────────── */
.offer-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.6);
  border: 0.5px solid rgba(180,140,120,0.2);
  border-radius: var(--border-radius-md);
  padding: 16px 20px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s;
  text-decoration: none;
}
.offer-row:hover { background: rgba(255,255,255,0.88); border-color: rgba(180,140,120,0.38); }
.offer-dot   { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.dot-sky     { background: var(--sky); }
.dot-blush   { background: var(--rose-blush); }
.dot-gold    { background: #D49050; }
.offer-info  { flex: 1; }
.offer-name  { font-size: 13px; font-weight: 500; color: var(--ink); }
.offer-detail{ font-size: 11px; color: #a08878; margin-top: 2px; }
.offer-price { font-size: 13px; color: #8a7060; font-weight: 500; white-space: nowrap; }

/* ── WORK-WITH-ME CARDS (expanded) ──────────────────────────────────────────── */
.wm-card {
  background: rgba(255,255,255,0.65);
  border: 0.5px solid rgba(180,140,120,0.2);
  border-radius: var(--border-radius-lg);
  padding: 28px 32px;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  transition: border-color 0.18s, background 0.18s;
}
.wm-card:hover { background: rgba(255,255,255,0.85); border-color: rgba(180,140,120,0.35); }
.wm-badge {
  width: 48px; height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
}
.wm-badge--sky   { background: linear-gradient(135deg, var(--sky) 0%, var(--blush-violet) 100%); }
.wm-badge--blush { background: linear-gradient(135deg, var(--rose-blush) 0%, var(--peach) 100%); }
.wm-badge--gold  { background: linear-gradient(135deg, var(--champagne) 0%, #D49050 100%); }
.wm-badge--prism { background: linear-gradient(135deg, var(--sky) 0%, var(--rose-blush) 50%, var(--champagne) 100%); }
.wm-badge--ink   { background: var(--ink); }
.wm-body  { flex: 1; }
.wm-title { font-family: var(--font-serif); font-size: 21px; color: var(--ink); margin-bottom: 4px; }
.wm-meta  { font-size: 11px; color: #a08878; margin-bottom: 10px; letter-spacing: 0.03em; }
.wm-desc  { font-size: 13px; color: #7a6870; line-height: 1.65; }
.wm-right { text-align: right; flex-shrink: 0; }
.wm-price { font-family: var(--font-serif); font-size: 24px; color: var(--ink); }
.wm-savings { font-size: 10px; color: #a08878; margin-top: 2px; }
.wm-cta   { margin-top: 14px; display: inline-block; }

/* ── FREE GIFT BLOCK ─────────────────────────────────────────────────────────── */
.gift-block {
  background: linear-gradient(160deg, #e8f4fa 0%, #f0e8f5 50%, #faf0e8 100%);
  padding: 60px 52px;
  display: flex;
  gap: 44px;
  align-items: center;
}
.gift-swatch {
  width: 160px; height: 160px;
  border-radius: var(--border-radius-lg);
  flex-shrink: 0;
  background: linear-gradient(155deg, #A8CFF0 0%, #C4BADF 40%, #E0AECB 75%, #F0B898 100%);
}
.gift-text .eyebrow { margin-bottom: 8px; }
.gift-text h2 { font-size: clamp(20px, 2.5vw, 26px); color: var(--ink); margin-bottom: 10px; }
.gift-text p  { font-size: 13px; color: #7a6870; line-height: 1.65; margin-bottom: 20px; max-width: 460px; }

/* ── FORMS ───────────────────────────────────────────────────────────────────── */
.form-wrapper { max-width: 560px; }
.form-group   { margin-bottom: 20px; }

label {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b09070;
  margin-bottom: 6px;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 12px 16px;
  border: 0.5px solid rgba(180,140,120,0.35);
  border-radius: var(--border-radius-sm);
  background: rgba(255,255,255,0.7);
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
  -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--rose-blush);
  background: white;
  box-shadow: 0 0 0 3px rgba(224,174,203,0.15);
}
textarea { resize: vertical; min-height: 100px; }

.radio-group  { display: flex; flex-direction: column; gap: 12px; }
.radio-option { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }
.radio-option input[type="radio"] { accent-color: var(--rose-blush); width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; }
.radio-label  { font-size: 13px; color: #7a6870; line-height: 1.5; text-transform: none; letter-spacing: 0; }

/* Honeypot field */
.form-honeypot { display: none !important; }

/* ── FOOTER ──────────────────────────────────────────────────────────────────── */
.footer {
  background: var(--pearl-cool);
  padding: 32px 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 0.5px solid rgba(0,0,0,0.06);
  flex-wrap: wrap;
  gap: 16px;
}
.f-logo      { font-size: 11px; letter-spacing: 0.09em; text-transform: uppercase; color: #8a7060; }
.f-links     { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.f-links a   { font-size: 10px; color: #b09080; transition: color 0.18s; }
.f-links a:hover { color: var(--ink); }
.f-copy      { font-size: 9px; color: #c0a890; }

/* ── REAL PHOTOS ─────────────────────────────────────────────────────────────── */
.photo-real {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  display: block;
  line-height: 0;
}
.photo-real img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-real--soft { box-shadow: 0 18px 44px rgba(58,44,62,0.14); }

.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.photo-strip .photo-real { aspect-ratio: 3/4; }
.photo-strip-caption { font-size: 10px; letter-spacing: 0.04em; color: #a08878; margin-top: 8px; text-align: center; }

.photo-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}
.photo-pair .photo-real { aspect-ratio: 4/5; }

.cert-strip {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.cert-strip .photo-real {
  width: 110px;
  aspect-ratio: 3.3/4;
  flex-shrink: 0;
  border-radius: var(--border-radius-sm);
  border: 0.5px solid rgba(180,140,120,0.25);
}
.cert-strip-item { text-align: center; }
.cert-strip-label { font-size: 9px; color: #b09070; margin-top: 6px; max-width: 110px; line-height: 1.4; }

@media (max-width: 768px) {
  .photo-strip { grid-template-columns: 1fr 1fr; }
  .photo-pair { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .photo-strip { grid-template-columns: 1fr; }
}

/* ── PHOTO PLACEHOLDER ───────────────────────────────────────────────────────── */
.photo-placeholder {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  background: linear-gradient(155deg, #c8d8f0 0%, #d8c0e8 40%, #f0c8b8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-placeholder span {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ── OPT-IN POPUP ────────────────────────────────────────────────────────────── */
.popup-backdrop {
  position: fixed; inset: 0;
  background: rgba(58, 44, 62, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.popup-backdrop.visible { opacity: 1; }
.popup {
  background: var(--pearl);
  border-radius: var(--border-radius-lg);
  max-width: 460px;
  width: 100%;
  padding: 44px 36px 32px;
  position: relative;
  box-shadow: 0 24px 64px rgba(58,44,62,0.28);
  transform: translateY(24px);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.popup-backdrop.visible .popup { transform: translateY(0); }
.popup-close {
  position: absolute; top: 14px; right: 14px;
  background: none; border: none;
  font-size: 22px; line-height: 1;
  color: #a08878;
  cursor: pointer;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
  font-family: system-ui, sans-serif;
}
.popup-close:hover { background: rgba(58,44,62,0.06); }
.popup-swatch {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: var(--gradient-full);
  margin: 0 auto 20px;
}
.popup-body { text-align: center; }
.popup-eyebrow {
  font-family: var(--font-sans);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #b09070;
  margin-bottom: 10px;
  display: block;
}
.popup-heading {
  font-family: var(--font-serif);
  font-size: 26px;
  line-height: 1.22;
  color: var(--ink);
  margin-bottom: 12px;
  font-weight: 400;
}
.popup-desc {
  font-size: 13px;
  color: #7a6870;
  line-height: 1.6;
  margin-bottom: 22px;
}
.popup-form {
  display: flex; flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
  text-align: left;
}
.popup-form input[type="text"],
.popup-form input[type="email"] {
  padding: 12px 14px;
  border: 0.5px solid rgba(180,140,120,0.4);
  border-radius: 6px;
  background: white;
  font-size: 14px;
  font-family: var(--font-sans);
  color: var(--ink);
  width: 100%;
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
  -webkit-appearance: none;
}
.popup-form input:focus {
  border-color: var(--rose-blush);
  box-shadow: 0 0 0 3px rgba(224,174,203,0.18);
}
.popup-form button {
  padding: 13px;
  font-size: 11px;
  margin-top: 6px;
  width: 100%;
}
.popup-dismiss {
  font-size: 11px;
  color: #a08878;
  text-decoration: underline;
  text-underline-offset: 3px;
  letter-spacing: 0.03em;
  display: inline-block;
  transition: color 0.15s;
}
.popup-dismiss:hover { color: var(--ink); }

/* ── UPCOMING EVENTS (placeholder / stay-tuned) ──────────────────────────────── */
.events-section {
  background: var(--gradient-section);
  padding: 64px 52px;
  position: relative;
  text-align: center;
}
.events-section::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.12);
  pointer-events: none;
}
.events-inner { position: relative; z-index: 2; max-width: 560px; margin: 0 auto; }
.events-inner .eyebrow { color: rgba(255,255,255,0.75); margin-bottom: 14px; display: block; }
.events-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.4vw, 34px);
  color: rgba(255,255,255,0.97);
  font-weight: 400;
  margin-bottom: 14px;
}
.events-inner p {
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  margin-bottom: 26px;
}
.events-form {
  display: flex;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.events-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 13px 16px;
  border-radius: 40px;
  border: 1px solid rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 13px;
  outline: none;
  transition: background 0.18s, border-color 0.18s;
}
.events-form input[type="email"]::placeholder { color: rgba(255,255,255,0.65); }
.events-form input[type="email"]:focus { background: rgba(255,255,255,0.25); border-color: rgba(255,255,255,0.85); }
.events-form button {
  flex-shrink: 0;
  padding: 13px 22px;
}
.events-note { font-size: 11px; color: rgba(255,255,255,0.6); margin-top: 14px; }

/* ── INSTAGRAM SECTION (SnapWidget) ──────────────────────────────────────────── */
.ig-section {
  background: var(--pearl);
  padding: 60px 52px 40px;
  text-align: center;
  border-top: 0.5px solid rgba(0,0,0,0.05);
}
.ig-section .eyebrow { margin-bottom: 12px; }
.ig-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 30px);
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 8px;
}
.ig-section .ig-handle {
  font-size: 13px;
  color: #a08878;
  margin-bottom: 28px;
  display: inline-block;
  transition: color 0.15s;
}
.ig-section .ig-handle:hover { color: var(--ink); }
.ig-embed { max-width: 1000px; margin: 0 auto; }
.ig-placeholder {
  padding: 40px 24px;
  border: 0.5px dashed rgba(180,140,120,0.4);
  border-radius: var(--border-radius-md);
  color: #a08878;
  font-size: 12px;
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .ig-section { padding: 48px 24px 32px; }
}

/* ── UTILITY ─────────────────────────────────────────────────────────────────── */
.max-w-prose { max-width: 580px; }
.max-w-wide  { max-width: 860px; }
.mt-4  { margin-top: 4px; }
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.text-center { text-align: center; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ── RESPONSIVE ──────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .two-col   { grid-template-columns: 1fr; }
  .three-col { grid-template-columns: 1fr 1fr; }

  /* Collapse nav to hamburger early enough that 6 items never crowd */
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 56px; left: 0; right: 0;
    background: rgba(55,40,60,0.97);
    padding: 24px 28px;
    gap: 18px;
    z-index: 100;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  /* Dropdown panel is dark — force light text for both nav styles */
  .nav-link--white, .nav-cta--white,
  .nav-link--ink,   .nav-cta--ink {
    color: rgba(255,255,255,0.85);
    border-color: rgba(255,255,255,0.35);
  }
}

@media (max-width: 768px) {
  /* Nav (collapse behavior handled in the 900px block above) */
  .nav     { padding: 18px 24px; }
  .nav-bar { padding: 16px 24px; }

  /* Sections */
  .section { padding: 48px 24px; }
  .hero-content { padding: 0 24px 44px; }

  /* Layout */
  .work-row  { flex-direction: column; }
  .gift-block { flex-direction: column; }
  .gift-swatch { width: 120px; height: 120px; }
  .strip { flex-wrap: wrap; }
  .strip-item { flex: 1 1 48%; }
  .footer { flex-direction: column; text-align: center; padding: 28px 24px; }
  .f-links { justify-content: center; }
  .wm-card { flex-direction: column; gap: 16px; }
  .wm-right { text-align: left; }
  .three-col { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-content { padding: 0 20px 32px; }
  .section { padding: 40px 20px; }
  .strip-item { flex: 1 1 100%; }
  .gift-block { padding: 44px 20px; }
}
