/* =========================================================
   What A Peach Creative — styles.css
   Implements the design handoff (handoff/What A Peach Creative.dc.html).
   Vintage romance meets modern confidence — luxury stationery suite.
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Core brand */
  --burgundy: #7D1E2D;
  --burgundy-deep: #5C1622;
  --rose: #C45B70;
  --blush: #E781B8;
  --dusty-pink: #F4D6D9;
  --dusty-pink-2: #EFC9CE;

  /* Warm neutrals */
  --cream: #F7EFEA;
  --cream-alt: #F1E4DE;
  --input-bg: #FFFDFB;
  --taupe: #8B766E;
  --charcoal: #1A1A1A;

  /* Body-copy warm greys */
  --ink-1: #2A2222;
  --ink-2: #3A3030;
  --ink-3: #4A3A3A;

  /* Text on burgundy */
  --on-burg-strong: rgba(247, 239, 234, 0.90);
  --on-burg-soft: rgba(247, 239, 234, 0.85);
  --on-burg-mute: rgba(247, 239, 234, 0.60);

  /* Fonts */
  --f-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --f-script: "Great Vibes", "Segoe Script", cursive;
  --f-body: "Jost", "Helvetica Neue", Arial, sans-serif;

  /* Layout */
  --content-max: 1240px;
  --section-pad-y: clamp(64px, 9vw, 110px);
  --section-pad-x: clamp(20px, 5vw, 48px);
  --hero-min-h: clamp(560px, 88vh, 900px);
  --card-pad: clamp(28px, 4vw, 44px);
  --card-pad-form: clamp(26px, 3.4vw, 42px);
  --gap-cards: clamp(22px, 3vw, 34px);
  --gap-split: clamp(36px, 6vw, 80px);
  --gap-gallery: clamp(12px, 1.6vw, 20px);
  --gap-insta: clamp(8px, 1.2vw, 14px);

  /* Radius */
  --r-button: 2px;
  --r-image: 3px;
  --r-card: 4px;
  --r-form: 6px;

  /* Shadow */
  --shadow-card: 0 14px 40px -26px rgba(125, 30, 45, 0.40);
  --shadow-form: 0 30px 70px -40px rgba(0, 0, 0, 0.50);

  --ease: cubic-bezier(0.4, 0.14, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--f-body);
  font-weight: 300;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--burgundy); text-decoration: none; transition: color 0.18s var(--ease); }
a:hover { color: var(--rose); }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--blush); color: var(--cream); }

:focus-visible { outline: 2px solid var(--rose); outline-offset: 3px; border-radius: 3px; }

@keyframes wpcFade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ---------- Utilities ---------- */
.wrap {
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--section-pad-x);
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 1rem; top: -3rem;
  background: var(--burgundy); color: var(--cream);
  padding: 0.6rem 1rem; border-radius: 0 0 4px 4px; z-index: 100;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 0; }

.eyebrow {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--taupe);
}
.eyebrow--tight { letter-spacing: 0.30em; }

.script {
  font-family: var(--f-script);
  font-weight: 400;
  line-height: 1;
}

/* Image placeholders — soft branded gradients so empty slots read as
   intentional colour, not a wireframe. Real photos replace these via
   [data-photo] + .has-photo (set in main.js). */
.ph {
  position: relative;
  background: linear-gradient(150deg, var(--dusty-pink) 0%, #ECC1CC 55%, var(--cream-alt) 100%);
  border: 1px solid rgba(125, 30, 45, 0.10);
  border-radius: var(--r-image);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ph::after {
  content: "\2726"; /* decorative peach sparkle */
  font-family: var(--f-script);
  font-size: clamp(26px, 5vw, 48px);
  color: rgba(196, 91, 112, 0.30);
  line-height: 1;
}
.ph--dark {
  background: linear-gradient(150deg, rgba(247, 239, 234, 0.18) 0%, rgba(247, 239, 234, 0.05) 100%), var(--burgundy-deep);
  border-color: rgba(247, 239, 234, 0.2);
}
.ph--dark::after { color: rgba(247, 239, 234, 0.32); }
.ph-cap { display: none; }
.has-photo { background: center / cover no-repeat; border-color: transparent; }
.has-photo::after { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 16px 30px;
  border: 1.5px solid transparent;
  border-radius: var(--r-button);
  transition: background 0.18s var(--ease), color 0.18s var(--ease), border-color 0.18s var(--ease);
}
.btn--burgundy { background: var(--burgundy); color: var(--cream); }
.btn--burgundy:hover { background: var(--burgundy-deep); color: var(--cream); }
.btn--cream { background: var(--cream); color: var(--burgundy); }
.btn--cream:hover { background: var(--dusty-pink); color: var(--burgundy); }
.btn--ghost-light { background: transparent; color: var(--cream); border-color: rgba(247, 239, 234, 0.7); }
.btn--ghost-light:hover { background: rgba(247, 239, 234, 0.12); border-color: var(--cream); color: var(--cream); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 239, 234, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(125, 30, 45, 0.14);
}
.nav__inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding: 14px clamp(18px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 11px; color: var(--burgundy); }
.brand { line-height: 0; }
.brand__logo { height: 44px; width: auto; display: block; }
.nav__right { display: flex; align-items: center; gap: clamp(14px, 2.4vw, 30px); }
.nav__enquire {
  background: var(--burgundy); color: var(--cream);
  padding: 10px 22px; border-radius: var(--r-button);
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  transition: background 0.18s var(--ease);
}
.nav__enquire:hover { background: var(--rose); color: var(--cream); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: var(--hero-min-h);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero__photo { position: absolute; inset: 0; z-index: -2; }
.hero__photo::after { display: none; } /* no sparkle behind the hero copy */
.hero__photo:not(.has-photo) {
  background:
    radial-gradient(circle at 22% 22%, rgba(231, 129, 184, 0.55), transparent 46%),
    radial-gradient(circle at 82% 78%, rgba(196, 91, 112, 0.60), transparent 50%),
    linear-gradient(135deg, #A5324A 0%, var(--burgundy) 48%, #4C1019 100%);
}
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg,
    rgba(125, 30, 45, 0.30) 0%,
    rgba(125, 30, 45, 0.42) 42%,
    rgba(90, 18, 30, 0.86) 100%);
}
.hero__inner {
  max-width: var(--content-max);
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--section-pad-x);
  animation: wpcFade 0.9s var(--ease) both;
}
.hero__content { max-width: 640px; }
.hero__script { font-size: clamp(34px, 6vw, 54px); color: var(--dusty-pink); margin-bottom: 6px; }
.hero__title {
  font-family: var(--f-display); font-weight: 600; color: var(--cream);
  font-size: clamp(42px, 8vw, 78px); line-height: 1.02; letter-spacing: 0.005em;
  margin-bottom: 20px;
}
.hero__title em { font-style: italic; color: var(--dusty-pink); }
.hero__lede {
  font-size: clamp(15px, 2.4vw, 19px); line-height: 1.6;
  color: var(--on-burg-strong); max-width: 520px; margin-bottom: 34px; font-weight: 300;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Trust strip ---------- */
.trust { background: var(--burgundy); color: var(--dusty-pink); }
.trust__inner {
  max-width: var(--content-max); margin-inline: auto;
  padding: 15px var(--section-pad-x);
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px;
  text-align: center; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
}
.dot { color: var(--rose); }

/* ---------- Section scaffolding ---------- */
.section { padding-block: var(--section-pad-y); }
.section--alt {
  background: var(--cream-alt);
  border-top: 1px solid rgba(125, 30, 45, 0.1);
  border-bottom: 1px solid rgba(125, 30, 45, 0.1);
}
.section__head { text-align: center; margin-bottom: clamp(40px, 6vw, 64px); }
.section__head .eyebrow { display: block; margin-bottom: 14px; }
.h2 {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(34px, 5.5vw, 56px); line-height: 1.1; color: var(--charcoal);
}
.h2 em { font-style: italic; color: var(--burgundy); }

/* ---------- About ---------- */
.about__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap-split);
  align-items: center;
}
.about__eyebrow { display: block; margin-bottom: 18px; }
.about__title {
  font-family: var(--f-script); font-weight: 400;
  font-size: clamp(46px, 7vw, 72px); color: var(--burgundy); line-height: 1.02; margin-bottom: 22px;
}
.about__body { font-size: clamp(15px, 2vw, 17px); line-height: 1.75; color: var(--ink-2); max-width: 520px; }
.about__body + .about__body { margin-top: 18px; }
.about__rule { display: flex; align-items: center; gap: 14px; margin-top: 30px; }
.about__rule span:first-child { height: 1px; width: 54px; background: var(--rose); }
.about__rule span:last-child { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--taupe); }
.about__media { position: relative; }
.about__photo { aspect-ratio: 4 / 5; }
.about__photo .ph-cap { font-size: 11px; }
.about__sticker {
  position: absolute; top: -22px; right: -6px;
  font-family: var(--f-script); font-size: 30px; color: var(--blush); transform: rotate(-8deg);
}

/* ---------- Sessions (two paths) ---------- */
.paths {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--gap-cards);
  align-items: stretch;
}
.card {
  border-radius: var(--r-card);
  padding: var(--card-pad);
  display: flex;
  flex-direction: column;
}
.card--studio { background: var(--dusty-pink); border: 1px solid rgba(125, 30, 45, 0.14); }
.card--event { background: var(--burgundy); border: 1px solid var(--burgundy); color: var(--cream); }
.card__eyebrow { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 10px; }
.card--studio .card__eyebrow { color: var(--burgundy); }
.card--event .card__eyebrow { color: var(--blush); }
.card__title {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(26px, 3.4vw, 34px); line-height: 1.15; margin-bottom: 14px;
}
.card--studio .card__title { color: var(--charcoal); }
.card--event .card__title { color: var(--cream); }
.card__lead { font-size: 15px; line-height: 1.7; font-weight: 300; margin-bottom: 22px; }
.card--studio .card__lead { color: var(--ink-3); }
.card--event .card__lead { color: var(--on-burg-soft); }
.card__list { display: flex; flex-direction: column; gap: 9px; margin-bottom: 26px; }
.card__list span { font-size: 14px; }
.card--studio .card__list span { color: var(--ink-2); }
.card--event .card__list span { color: rgba(247, 239, 234, 0.82); }
.card__expect { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--taupe); margin-bottom: 16px; }
.steps { display: flex; gap: 10px; margin-bottom: 30px; }
.step { flex: 1; text-align: center; }
.step__num {
  width: 34px; height: 34px; margin: 0 auto 8px;
  border: 1.5px solid var(--burgundy); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); color: var(--burgundy); font-size: 15px;
}
.step span { font-size: 11px; color: var(--ink-3); letter-spacing: 0.04em; }
.card__stage { aspect-ratio: 16 / 9; margin-bottom: 30px; }
.card .btn { margin-top: auto; width: 100%; padding: 15px 26px; letter-spacing: 0.2em; }

/* ---------- Gallery (masonry) ---------- */
.gallery__head .script { font-size: clamp(28px, 4vw, 40px); color: var(--blush); margin-bottom: 4px; }
.gallery__grid { columns: clamp(140px, 20vw, 300px); column-gap: var(--gap-gallery); }
.gallery__grid .ph,
.gallery__grid .tile {
  break-inside: avoid;
  margin-bottom: var(--gap-gallery);
  border-radius: var(--r-image);
  overflow: hidden;
  transition: border-color 0.18s var(--ease);
}
.gallery__grid .ph:hover { border-color: var(--rose); }
.gallery__grid .ph:nth-child(3n+2) { background: linear-gradient(150deg, var(--cream-alt), var(--dusty-pink)); }
.gallery__grid .ph:nth-child(3n) { background: linear-gradient(150deg, #ECB7C6, var(--rose)); }
.gallery__grid .ph:nth-child(3n)::after { color: rgba(247, 239, 234, 0.5); }
.gallery__grid .tile { border: 1px solid rgba(125, 30, 45, 0.12); }
.gallery__grid .tile:hover { border-color: var(--rose); }
.gallery__grid .tile img { width: 100%; height: auto; display: block; }
.ar-2-3 { aspect-ratio: 2 / 3; }
.ar-1-1 { aspect-ratio: 1 / 1; }
.ar-4-5 { aspect-ratio: 4 / 5; }
.ar-3-4 { aspect-ratio: 3 / 4; }
.ar-16-10 { aspect-ratio: 16 / 10; }

/* ---------- Testimonials ---------- */
.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 2.6vw, 30px);
}
.quote {
  position: relative;
  background: var(--cream);
  border: 1px solid rgba(125, 30, 45, 0.14);
  border-radius: var(--r-card);
  padding: clamp(28px, 3.4vw, 40px);
  box-shadow: var(--shadow-card);
}
.quote__badge {
  position: absolute; top: -16px; left: 26px;
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-size: 16px; color: var(--cream);
}
.quote__badge--1 { background: var(--burgundy); color: var(--dusty-pink); }
.quote__badge--2 { background: var(--rose); }
.quote__badge--3 { background: var(--blush); }
.quote__text {
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(17px, 2.1vw, 21px); line-height: 1.6; color: var(--ink-1); margin: 8px 0 22px;
}
.quote__name { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--burgundy); }
.quote__role { font-size: 12px; color: var(--taupe); margin-top: 4px; }

/* ---------- Instagram strip ---------- */
.insta__head {
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between;
  gap: 10px 20px; margin-bottom: 26px;
}
.insta__head h2 { font-family: var(--f-display); font-weight: 600; font-size: clamp(24px, 3.4vw, 36px); color: var(--charcoal); }
.insta__link { font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--burgundy); }
.insta__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: var(--gap-insta); }
.insta__grid .ph, .insta__grid .tile { aspect-ratio: 1 / 1; border-radius: var(--r-button); overflow: hidden; }
.insta__grid .ph { border-color: rgba(125, 30, 45, 0.1); }
.insta__grid .tile { border: 1px solid rgba(125, 30, 45, 0.1); }
.insta__grid .tile img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Enquiry / contact ---------- */
.contact { background: var(--burgundy); color: var(--cream); }
.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
}
.contact__script { font-size: clamp(30px, 4.4vw, 44px); color: var(--dusty-pink); margin-bottom: 6px; }
.contact__title {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(38px, 6vw, 64px); color: var(--cream); line-height: 1.03; margin-bottom: 22px;
}
.contact__title em { font-style: italic; color: var(--dusty-pink); }
.contact__lead { font-size: clamp(15px, 2vw, 17px); line-height: 1.75; color: var(--on-burg-soft); font-weight: 300; max-width: 440px; margin-bottom: 28px; }
.contact__dm {
  display: inline-block; background: transparent; color: var(--cream);
  padding: 14px 26px; border: 1.5px solid rgba(247, 239, 234, 0.7); border-radius: var(--r-button);
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  transition: background 0.18s var(--ease);
}
.contact__dm:hover { background: rgba(247, 239, 234, 0.12); color: var(--cream); }
.contact__reply { margin-top: 40px; display: flex; align-items: center; gap: 12px; }
.contact__reply span:first-child { height: 1px; width: 44px; background: var(--rose); }
.contact__reply span:last-child { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--on-burg-mute); }

/* ---------- Form ---------- */
.formcard {
  background: var(--cream);
  border-radius: var(--r-form);
  padding: var(--card-pad-form);
  color: var(--charcoal);
  box-shadow: var(--shadow-form);
}
.formcard__title { font-family: var(--f-display); font-size: 22px; color: var(--charcoal); margin-bottom: 22px; }
.field-label {
  display: block; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--taupe); margin-bottom: 7px;
}
.field-label .opt { text-transform: none; letter-spacing: 0; color: #b3a49c; }
.field {
  width: 100%; padding: 13px 14px; margin-bottom: 18px;
  border: 1px solid rgba(125, 30, 45, 0.28); border-radius: var(--r-button);
  background: var(--input-bg); font-family: var(--f-body); font-size: 15px; color: var(--charcoal);
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.field::placeholder { color: #b3a49c; }
.field:focus { outline: none; border-color: var(--burgundy); }
.field:focus-visible { box-shadow: 0 0 0 3px rgba(196, 91, 112, 0.25); }
.field[aria-invalid="true"] { border-color: #b3352c; box-shadow: 0 0 0 3px rgba(179, 53, 44, 0.14); }
textarea.field { resize: vertical; min-height: 108px; }

.pills { display: flex; gap: 10px; margin-bottom: 18px; }
.pill {
  flex: 1; padding: 13px 10px; border-radius: var(--r-button);
  font-family: var(--f-body); font-size: 13px; letter-spacing: 0.08em;
  border: 1.5px solid rgba(125, 30, 45, 0.28); background: var(--input-bg);
  color: var(--burgundy); font-weight: 400;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.pill[aria-pressed="true"] { background: var(--burgundy); color: var(--cream); border-color: var(--burgundy); font-weight: 500; }

.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form__submit {
  width: 100%; background: var(--burgundy); color: var(--cream);
  padding: 16px; border: none; border-radius: var(--r-button);
  font-family: var(--f-body); font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 500;
  transition: background 0.18s var(--ease);
}
.form__submit:hover { background: var(--burgundy-deep); }
.form__submit[aria-busy="true"] { opacity: 0.75; pointer-events: none; }

.form__status { margin-top: 14px; font-size: 14px; text-align: center; min-height: 1.2em; }
.form__status[data-state="error"] { color: #b3352c; }

/* Success state */
.form__success { text-align: center; padding: clamp(20px, 4vw, 44px) 0; animation: wpcFade 0.5s var(--ease) both; }
.form__success-disc {
  width: 66px; height: 66px; margin: 0 auto 22px; border-radius: 50%;
  background: var(--burgundy); color: var(--dusty-pink);
  display: flex; align-items: center; justify-content: center; font-size: 30px;
}
.form__success h3 { font-family: var(--f-display); font-weight: 600; font-size: clamp(24px, 3vw, 30px); color: var(--burgundy); margin-bottom: 12px; }
.form__success p { font-size: 16px; line-height: 1.6; color: var(--ink-3); font-weight: 300; max-width: 320px; margin: 0 auto 24px; }
.form__reset {
  background: none; border: none; color: var(--burgundy);
  font-family: var(--f-body); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
}
.form__reset:hover { color: var(--rose); }
[hidden] { display: none !important; }

/* ---------- FAQ ---------- */
.faq { margin-top: clamp(56px, 7vw, 88px); max-width: 820px; margin-inline: auto; }
.faq__title { font-family: var(--f-display); font-weight: 600; font-size: clamp(24px, 3.2vw, 34px); color: var(--cream); text-align: center; margin-bottom: 30px; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq__item { background: var(--cream); border-radius: var(--r-card); overflow: hidden; }
.faq__q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 20px 22px; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--f-display); font-size: clamp(16px, 2vw, 19px); color: var(--charcoal);
}
.faq__icon { font-family: var(--f-body); font-size: 24px; color: var(--burgundy); flex-shrink: 0; transition: transform 0.25s var(--ease); }
.faq__item[data-open="true"] .faq__icon { transform: rotate(45deg); }
.faq__a { overflow: hidden; max-height: 0; opacity: 0; transition: max-height 0.3s ease, opacity 0.3s ease; }
.faq__item[data-open="true"] .faq__a { max-height: 340px; opacity: 1; }
.faq__a p { padding: 0 22px 20px; font-size: 15px; line-height: 1.7; color: var(--ink-3); font-weight: 300; }

/* ---------- Footer ---------- */
.footer { background: var(--burgundy-deep); color: var(--dusty-pink); text-align: center; }
.footer__inner { max-width: var(--content-max); margin-inline: auto; padding: clamp(48px, 6vw, 72px) var(--section-pad-x); }
.footer__logo { display: inline-block; margin-bottom: 22px; line-height: 0; }
.footer__logo-svg { height: 66px; width: auto; display: block; }
/* Single cream tone on burgundy: ink -> cream, counters (originally near-white
   #FEFDFD) -> burgundy so the letter holes punch through instead of filling. */
.footer__logo-svg path { fill: var(--cream); }
.footer__logo-svg path[fill="#FEFDFD"] { fill: var(--burgundy-deep); }
.footer__name { font-family: var(--f-display); font-size: clamp(18px, 2.6vw, 24px); color: var(--cream); letter-spacing: 0.04em; margin-bottom: 8px; }
.footer__tag { font-size: 11px; letter-spacing: 0.34em; text-transform: uppercase; color: rgba(244, 214, 217, 0.75); margin-bottom: 26px; }
.footer__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 26px; }
.footer__links a { color: var(--dusty-pink); }
.footer__links a:hover { color: var(--cream); }
.footer__meta { font-size: 13px; color: rgba(244, 214, 217, 0.7); margin-bottom: 20px; }
.footer__script { font-family: var(--f-script); font-size: 30px; color: var(--blush); }
.footer__copy { font-size: 11px; color: rgba(244, 214, 217, 0.45); margin-top: 28px; letter-spacing: 0.08em; }

/* ---------- Reveal on scroll ---------- */
[data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ---------- Mobile ---------- */
@media (max-width: 760px) {
  .brand__logo { height: 36px; }
}
