/* ==========================================================================
   Unique Signature Salon — Phase 1 static shell
   Tokens live in :root; selectors stay class-based and low-specificity so
   later phases can layer on without fighting the cascade.
   ========================================================================== */

/* ---------- Fonts (self-hosted, latin subset, variable) ---------- */

@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("fonts/fraunces-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Fraunces";
  font-style: italic;
  font-weight: 400 600;
  font-display: swap;
  src: url("fonts/fraunces-italic-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- Tokens ---------- */

:root {
  --bg-deep: #0F2B25;
  --surface: #1A3A33;
  --surface-lift: #21453D;
  --ivory: #F3EDE4;
  --gold: #C9A96A;
  --gold-soft: #E8CF9E;
  --gold-deep: #A98A4F;
  --muted: #A9B8B1;
  --maroon: #6E2639;
  --maroon-lift: #823044;
  --hairline: rgba(201, 169, 106, 0.28);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius: 14px;
  --radius-small: 9px;

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 6.5rem;

  --container: 68rem;
}

/* ---------- Base ---------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  background: var(--bg-deep);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, p, ul, figure, blockquote, address {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

a {
  color: var(--gold);
}

svg {
  display: block;
}

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

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

/* ---------- Shared type ---------- */

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.section-lede {
  max-width: 34rem;
  margin-top: var(--space-2);
  color: var(--muted);
}

.subsection-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.4rem, 4vw, 1.8rem);
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.wordmark em {
  font-style: italic;
  color: var(--gold);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 0.8rem 1.9rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-align: center;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.btn-gold {
  background: var(--gold);
  color: var(--bg-deep);
}

.btn-gold:hover {
  background: var(--gold-soft);
}

.btn-maroon {
  background: var(--maroon);
  color: var(--ivory);
}

.btn-maroon:hover {
  background: var(--maroon-lift);
}

.btn-outline {
  border: 1px solid var(--hairline);
  color: var(--ivory);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-small {
  padding: 0.55rem 1.3rem;
  font-size: 0.85rem;
}

/* ---------- Header ---------- */

.site-header {
  border-bottom: 1px solid var(--hairline);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-2);
}

.header-cta {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold);
}

.header-cta:hover {
  color: var(--gold-soft);
}

/* ---------- Hero ---------- */

.hero {
  padding-block: clamp(4rem, 12vh, 8rem);
  text-align: center;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  font-weight: 500;
}

.hero-figure {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(7rem, 30vw, 13rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--gold);
  background: linear-gradient(150deg, var(--gold-soft) 10%, var(--gold) 55%, var(--gold-deep) 95%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-unit {
  font-size: clamp(1.4rem, 5.5vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.04em;
}

.hero-statement {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 6.5vw, 2.6rem);
  line-height: 1.2;
}

.hero-support {
  max-width: 30rem;
  color: var(--muted);
}

.hero .btn {
  margin-top: var(--space-1);
}

/* ---------- Trust strip ---------- */

.trust {
  border-block: 1px solid var(--hairline);
  background: var(--surface);
  padding-block: var(--space-4);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.trust-item-wide {
  grid-column: 1 / -1;
  padding-top: var(--space-2);
  border-top: 1px solid var(--hairline);
}

.trust-figure {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 500;
  color: var(--gold);
}

.trust-figure-brands {
  font-size: clamp(1.05rem, 3.5vw, 1.35rem);
  line-height: 1.4;
}

.trust-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Booking: two paths ---------- */

.booking {
  padding-block: var(--space-6);
}

.booking .section-title {
  text-align: center;
}

.paths {
  display: grid;
  gap: var(--space-5);
  margin-top: var(--space-5);
}

.path-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 2.1rem);
  font-weight: 500;
}

.path-bridal .path-title {
  color: var(--gold);
}

.path-lede {
  max-width: 30rem;
  margin-top: var(--space-1);
  color: var(--muted);
}

/* Bridal cards */

.bridal-cards {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-3);
}

.bridal-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-2);
  padding: var(--space-3);
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
}

.bridal-card-signature {
  border-color: var(--maroon-lift);
  background: linear-gradient(160deg, rgba(110, 38, 57, 0.35), var(--surface) 60%);
}

.bridal-badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory);
  background: var(--maroon);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
}

.bridal-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
}

.bridal-includes {
  font-size: 0.95rem;
  color: var(--muted);
}

.bridal-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold);
}

.price-currency {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--muted);
  vertical-align: 0.15em;
  margin-right: 0.15rem;
}

/* Beauty & Party service list */

.service-list {
  display: grid;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.service-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.4rem var(--space-2);
  padding: var(--space-2) var(--space-3);
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
}

.service-info {
  grid-column: 1;
}

.service-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
}

.service-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.service-price {
  grid-column: 2;
  grid-row: 1;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--gold);
  text-align: right;
}

.service-row .btn {
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
}

.service-row-placeholder {
  border-style: dashed;
  opacity: 0.65;
}

.path-footnote {
  margin-top: var(--space-2);
  font-size: 0.85rem;
  color: var(--muted);
}

/* ---------- Proof ---------- */

.proof {
  padding-block: var(--space-6);
  border-top: 1px solid var(--hairline);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.gallery-slot {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.slot-art {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, var(--surface-lift), var(--surface));
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  color: var(--gold);
}

.slot-ornament {
  width: 44px;
  height: 44px;
  opacity: 0.85;
}

.slot-caption {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.testimonials {
  margin-top: var(--space-5);
}

.quote-list {
  display: grid;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.quote-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-3);
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
}

.quote-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.5;
}

.quote-attribution {
  font-size: 0.85rem;
  color: var(--muted);
}

.quote-card-clip {
  align-items: flex-start;
}

.clip-slot {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 5.5rem;
  border: 1px dashed var(--hairline);
  border-radius: var(--radius-small);
  color: var(--gold);
}

/* ---------- Why her ---------- */

.why {
  padding-block: var(--space-6);
  border-top: 1px solid var(--hairline);
}

.why-list {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.why-icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
  margin-bottom: var(--space-1);
}

.why-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
}

.why-text {
  margin-top: 0.3rem;
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 26rem;
}

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--hairline);
  background: var(--surface);
  padding-block: var(--space-4);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-details {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-style: normal;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-fine {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ---------- Reveal motion (disabled under reduced motion) ---------- */

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 600ms ease, transform 600ms ease;
  }

  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Wider screens ---------- */

@media (min-width: 640px) {
  .trust-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .bridal-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }

  .quote-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
  }

  .footer-details {
    flex-direction: row;
    gap: var(--space-3);
  }
}

@media (min-width: 960px) {
  .paths {
    grid-template-columns: 1.15fr 1fr;
    gap: var(--space-4);
    align-items: start;
  }

  .path {
    padding: var(--space-4);
    border: 1px solid var(--hairline);
    border-radius: var(--radius);
  }

  .path-bridal {
    background: linear-gradient(170deg, rgba(110, 38, 57, 0.14), transparent 45%);
  }

  .bridal-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
