/* ─────────────────────────────────────────────────────────────
   BLOOM & CO. SALON — style.css
   Palette : Blush #F2D6D3 · Chalk #FAFAF8 · Rose Gold #C4956A
   Fonts   : Playfair Display (serif) · Jost (sans)
───────────────────────────────────────────────────────────── */

/* ── 0. Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-sans);
  background-color: var(--c-chalk);
  color: var(--c-deep);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* ── 1. Tokens ───────────────────────────────────────────────── */
:root {
  --c-blush:      #F2D6D3;
  --c-blush-2:    #E8C4C0;
  --c-chalk:      #FAFAF8;
  --c-chalk-2:    #EDE8E3;
  --c-rose-gold:  #C4956A;
  --c-rose-dark:  #A87850;
  --c-deep:       #1C1210;
  --c-muted:      rgba(28, 18, 16, 0.52);
  --c-white:      #FFFFFF;

  --f-serif: 'Playfair Display', Georgia, serif;
  --f-sans:  'Jost', system-ui, sans-serif;

  --ease-out:    cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);

  --max-w: 1220px;
  --section-pad: clamp(80px, 10vw, 130px);
}

/* ── 2. Utility ──────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}
.section { padding-block: var(--section-pad); }

.eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-rose-gold);
  margin-bottom: 18px;
}
.text-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-rose-gold);
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  transition: opacity 250ms;
  display: inline-block;
}
@media (hover: hover) and (pointer: fine) {
  .text-link:hover { opacity: 0.6; }
}

/* ── 3. Fade-in (IntersectionObserver) ───────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 680ms var(--ease-out),
    transform 680ms var(--ease-out);
}
.fade-in.is-visible { opacity: 1; transform: none; }
.fade-in-d1 { transition-delay: 90ms; }
.fade-in-d2 { transition-delay: 180ms; }
.fade-in-d3 { transition-delay: 270ms; }
.fade-in-d4 { transition-delay: 360ms; }

/* ── 4. Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    background-color 280ms var(--ease-out),
    color 280ms var(--ease-out),
    border-color 280ms var(--ease-out);
}
.btn:active { transform: scale(0.97); }

.btn--rose-gold {
  background-color: var(--c-rose-gold);
  color: var(--c-white);
  border: 1px solid var(--c-rose-gold);
}
@media (hover: hover) and (pointer: fine) {
  .btn--rose-gold:hover {
    background-color: var(--c-rose-dark);
    border-color: var(--c-rose-dark);
  }
}

.btn--outline {
  background-color: transparent;
  color: var(--c-rose-gold);
  border: 1px solid var(--c-rose-gold);
}
@media (hover: hover) and (pointer: fine) {
  .btn--outline:hover {
    background-color: var(--c-rose-gold);
    color: var(--c-white);
  }
}

/* ── 5. Nav ──────────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  padding-block: 24px;
  transition:
    background-color 350ms var(--ease-out),
    padding-block 350ms var(--ease-out),
    box-shadow 350ms var(--ease-out);
}
.nav.nav--scrolled {
  background-color: var(--c-chalk);
  padding-block: 14px;
  box-shadow: 0 1px 0 var(--c-blush-2);
}
.nav__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--f-serif);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--c-white);
  letter-spacing: 0.01em;
  transition: color 350ms var(--ease-out);
}
.nav.nav--scrolled .nav__logo { color: var(--c-deep); }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav__link {
  font-family: var(--f-sans);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding-bottom: 2px;
  transition: color 280ms var(--ease-out);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 1px;
  width: 0;
  background-color: var(--c-rose-gold);
  transition: width 280ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .nav__link:hover { color: var(--c-white); }
  .nav__link:hover::after { width: 100%; }
}

.nav.nav--scrolled .nav__link { color: rgba(28, 18, 16, 0.55); }
@media (hover: hover) and (pointer: fine) {
  .nav.nav--scrolled .nav__link:hover { color: var(--c-deep); }
}

.nav__link.is-active { color: var(--c-white); }
.nav__link.is-active::after { width: 100%; }
.nav.nav--scrolled .nav__link.is-active { color: var(--c-deep); }

/* CTA btn: always white text on rose-gold, even when is-active */
.nav__link.btn--rose-gold { color: var(--c-white); }
.nav__link.btn--rose-gold.is-active,
.nav.nav--scrolled .nav__link.btn--rose-gold.is-active {
  color: var(--c-white);
}
.nav__link.btn--rose-gold::after { display: none; }
.nav__cta-btn { margin-left: 8px; }

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  cursor: pointer;
  background: none;
  border: none;
}
.nav__toggle span {
  display: block;
  height: 1px;
  background-color: var(--c-white);
  border-radius: 2px;
  transition:
    transform 300ms var(--ease-out),
    opacity 300ms var(--ease-out),
    background-color 350ms var(--ease-out);
}
.nav.nav--scrolled .nav__toggle span { background-color: var(--c-deep); }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── 6. Hero — Crossfade Slider ──────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
}
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1600ms ease-in-out;
}
.hero__slide.is-active { opacity: 1; }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28, 18, 16, 0.30) 0%,
    rgba(28, 18, 16, 0.08) 45%,
    rgba(0, 0, 0, 0) 65%
  );
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero__text-block {
  width: 100%;
  background: rgba(242, 214, 211, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-align: center;
  padding: clamp(44px, 6vw, 64px) clamp(24px, 8vw, 100px) clamp(52px, 7vw, 76px);
}
.hero__eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-rose-gold);
  margin-bottom: 16px;
}
.hero__heading {
  font-family: var(--f-serif);
  font-size: clamp(46px, 7.5vw, 88px);
  font-weight: 400;
  line-height: 1.04;
  color: var(--c-deep);
  margin-bottom: 22px;
}
.hero__sub {
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 300;
  color: rgba(28, 18, 16, 0.68);
  max-width: 540px;
  margin-inline: auto;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero__dots {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
  align-items: center;
}
.hero__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(28, 18, 16, 0.22);
  transition: background 300ms, transform 300ms;
  cursor: pointer;
  border: none;
}
.hero__dot.is-active {
  background: var(--c-rose-gold);
  transform: scale(1.5);
}

/* ── 7. Experience Split ─────────────────────────────────────── */
.experience {
  background-color: var(--c-white);
}
.experience__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.experience__text {
  padding: clamp(64px, 9vw, 120px) clamp(40px, 6vw, 88px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.experience__heading {
  font-family: var(--f-serif);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: 24px;
  color: var(--c-deep);
}
.experience__body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--c-muted);
  max-width: 420px;
  margin-bottom: 36px;
}
.experience__img {
  overflow: hidden;
  position: relative;
}
.experience__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 700ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .experience__img:hover img { transform: scale(1.04); }
}

/* ── 8. Services Preview ─────────────────────────────────────── */
.services-preview {
  background-color: var(--c-chalk);
}
.services-preview__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(40px, 5vw, 64px);
  gap: 24px;
}
.services-preview__heading {
  font-family: var(--f-serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--c-deep);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--c-white);
  overflow: hidden;
  transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(196, 149, 106, 0.14);
  }
}
.service-card__img {
  height: 240px;
  overflow: hidden;
}
.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .service-card:hover .service-card__img img { transform: scale(1.06); }
}
.service-card__body {
  padding: 24px 22px 30px;
  border-top: 1px solid var(--c-chalk-2);
}
.service-card__title {
  font-family: var(--f-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--c-deep);
  margin-bottom: 6px;
}
.service-card__price {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-rose-gold);
  margin-bottom: 10px;
}
.service-card__desc {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--c-muted);
}

/* ── 9. Full-Bleed Image Strip ───────────────────────────────── */
.img-strip {
  height: clamp(280px, 38vw, 520px);
  overflow: hidden;
  position: relative;
}
.img-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ── 10. Tagline Block ───────────────────────────────────────── */
.tagline-block {
  background-color: var(--c-blush);
  padding-top: clamp(100px, 14vw, 170px);
  padding-bottom: clamp(80px, 11vw, 140px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.tagline-block::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-serif);
  font-size: clamp(200px, 26vw, 340px);
  font-weight: 400;
  font-style: italic;
  color: rgba(196, 149, 106, 0.1);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.tagline-block__quote {
  position: relative;
  z-index: 1;
  font-family: var(--f-serif);
  font-size: clamp(26px, 4.5vw, 56px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.35;
  color: var(--c-deep);
  max-width: 740px;
  margin-inline: auto;
}

/* ── 11. CTA Strip ───────────────────────────────────────────── */
.cta-strip {
  background-color: var(--c-chalk-2);
  padding-block: clamp(60px, 8vw, 100px);
  text-align: center;
}
.cta-strip h2 {
  font-family: var(--f-serif);
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.1;
  color: var(--c-deep);
}
.cta-strip p {
  font-size: 15px;
  font-weight: 300;
  color: var(--c-muted);
  margin-bottom: 40px;
  max-width: 460px;
  margin-inline: auto;
}

/* ── 12. Page Hero (inner pages) ─────────────────────────────── */
.page-hero {
  background-color: var(--c-blush);
  padding-top: clamp(130px, 16vw, 200px);
  padding-bottom: clamp(64px, 8vw, 96px);
}
.page-hero__eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-rose-gold);
  margin-bottom: 20px;
}
.page-hero__heading {
  font-family: var(--f-serif);
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--c-deep);
  max-width: 680px;
}
.page-hero__sub {
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 300;
  color: rgba(28, 18, 16, 0.62);
  max-width: 520px;
  margin-top: 20px;
  line-height: 1.7;
}

/* ── 13. About Page ──────────────────────────────────────────── */
.about-main { background-color: var(--c-white); }
.about-split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
  padding-block: var(--section-pad);
}
.about-split__body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.95;
  color: var(--c-muted);
}
.about-split__body p + p { margin-top: 24px; }

.about-img {
  overflow: hidden;
  height: clamp(380px, 52vw, 640px);
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Values row */
.values-row {
  background-color: var(--c-chalk);
}
.values-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background-color: var(--c-blush-2);
}
.value-block {
  background-color: var(--c-chalk);
  padding: clamp(36px, 4.5vw, 56px) clamp(28px, 3.5vw, 44px);
}
.value-block__num {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--c-rose-gold);
  margin-bottom: 16px;
}
.value-block__title {
  font-family: var(--f-serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 14px;
  color: var(--c-deep);
}
.value-block__desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.82;
  color: var(--c-muted);
}

/* ── 14. Services Full Page ──────────────────────────────────── */
.services-main { background-color: var(--c-chalk); }

.services-full-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.service-card-full {
  grid-column: span 2;
  background: var(--c-white);
  overflow: hidden;
  transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
}
.service-card-full:nth-child(4) { grid-column: 2 / span 2; }
.service-card-full:nth-child(5) { grid-column: 4 / span 2; }
@media (hover: hover) and (pointer: fine) {
  .service-card-full:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(196, 149, 106, 0.14);
  }
}
.service-card-full .service-card__img { height: 220px; }
.service-card-full .service-card__body { padding: 28px 24px 34px; }
.service-card-full .service-card__title { font-size: 22px; }
.service-card-full .service-card__desc { font-size: 14px; }

/* ── 15. Contact Page ────────────────────────────────────────── */
.contact-main { background-color: var(--c-white); }

.contact-hub__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background-color: var(--c-blush-2);
  margin-top: 52px;
}
.contact-hub__block {
  background: var(--c-white);
  padding: clamp(36px, 4.5vw, 52px) clamp(28px, 3.5vw, 40px);
}
.contact-hub__block--cta {
  background: var(--c-blush);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.contact-hub__label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-rose-gold);
  margin-bottom: 18px;
}
.contact-hub__value {
  font-family: var(--f-serif);
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 400;
  color: var(--c-deep);
  line-height: 1.55;
}
.contact-hub__value a {
  color: inherit;
  transition: color 250ms;
}
@media (hover: hover) and (pointer: fine) {
  .contact-hub__value a:hover { color: var(--c-rose-gold); }
}
.contact-hub__cta-heading {
  font-family: var(--f-serif);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 22px;
  color: var(--c-deep);
}

/* ── 16. Footer ──────────────────────────────────────────────── */
.footer {
  background-color: var(--c-deep);
  padding-block: clamp(48px, 7vw, 80px);
}
.footer__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.footer__logo {
  font-family: var(--f-serif);
  font-size: 21px;
  font-weight: 400;
  font-style: italic;
  color: var(--c-blush);
}
.footer__links {
  display: flex;
  gap: 28px;
}
.footer__link {
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242, 214, 211, 0.45);
  transition: color 250ms;
}
@media (hover: hover) and (pointer: fine) {
  .footer__link:hover { color: var(--c-blush); }
}
.footer__copy {
  font-size: 11px;
  color: rgba(242, 214, 211, 0.3);
  text-align: right;
  letter-spacing: 0.03em;
}

/* ── 17. Form & Modal ────────────────────────────────────────── */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-rose-gold);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--c-blush-2);
  padding: 10px 0;
  font-family: var(--f-sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--c-deep);
  -webkit-text-fill-color: var(--c-deep);
  outline: none;
  transition: border-color 250ms;
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C4956A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}
.form-group select option {
  color: var(--c-deep);
  -webkit-text-fill-color: var(--c-deep);
  background-color: var(--c-white);
}
.form-group select option[disabled] {
  color: rgba(28, 18, 16, 0.35);
  -webkit-text-fill-color: rgba(28, 18, 16, 0.35);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--c-rose-gold);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(28, 18, 16, 0.28); }

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(28, 18, 16, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms var(--ease-out);
}
.modal-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: var(--c-white);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  padding: clamp(36px, 5vw, 56px);
  transform: scale(0.95) translateY(18px);
  transition: transform 360ms var(--ease-out);
  position: relative;
}
.modal-overlay.is-open .modal {
  transform: scale(1) translateY(0);
}
.modal__close {
  position: absolute;
  top: 20px;
  right: 22px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--c-muted);
  transition: color 200ms;
}
@media (hover: hover) and (pointer: fine) {
  .modal__close:hover { color: var(--c-deep); }
}
.modal__eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-rose-gold);
  margin-bottom: 12px;
}
.modal__heading {
  font-family: var(--f-serif);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  color: var(--c-deep);
  margin-bottom: 32px;
  line-height: 1.2;
}
.modal__success {
  text-align: center;
  padding: 24px 0;
}
.modal__success-icon {
  font-size: 40px;
  margin-bottom: 16px;
  color: var(--c-rose-gold);
}
.modal__success h3 {
  font-family: var(--f-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--c-deep);
  margin-bottom: 10px;
}
.modal__success p {
  font-size: 14px;
  font-weight: 300;
  color: var(--c-muted);
  line-height: 1.7;
}

/* ── 18. Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .services-full-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .service-card-full,
  .service-card-full:nth-child(4),
  .service-card-full:nth-child(5) { grid-column: span 1; }
  .experience__grid { grid-template-columns: 1fr; }
  .experience__img { height: 340px; }
  .about-split__grid { grid-template-columns: 1fr; }
  .about-img { height: 320px; order: -1; }
  .values-inner { grid-template-columns: 1fr; }
  .contact-hub__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; text-align: center; gap: 20px; }
  .footer__copy { text-align: center; }
  .footer__links { justify-content: center; }
}

@media (max-width: 640px) {
  .nav__menu {
    position: fixed;
    inset-block-start: 0;
    inset-inline-end: 0;
    width: min(320px, 100vw);
    height: 100dvh;
    background-color: var(--c-deep);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 48px 40px;
    gap: 20px;
    transform: translateX(100%);
    transition: transform 380ms var(--ease-out);
    z-index: 99;
  }
  .nav__menu.is-open { transform: translateX(0); }
  .nav__link {
    font-size: 13px !important;
    color: rgba(242, 214, 211, 0.75) !important;
  }
  .nav__link.is-active { color: var(--c-blush) !important; }
  .nav__cta-btn { display: none; }
  .nav__toggle { display: flex; }

  .services-grid { grid-template-columns: 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
  .service-card-full { grid-column: 1 / -1 !important; }
  .form-row { grid-template-columns: 1fr; }
  .hero__text-block { padding: 36px 20px 48px; }
}

@media (prefers-reduced-motion: reduce) {
  .fade-in { transition: opacity 200ms; transform: none; }
  .hero__slide { transition: opacity 400ms; }
}

/* ── Team Page ────────────────────────────────────────────────── */
.stylist-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  background-color: var(--c-blush-2);
}
.stylist-card {
  background: var(--c-white);
  overflow: hidden;
}
.stylist-card__img {
  height: 320px;
  overflow: hidden;
}
.stylist-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 600ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .stylist-card:hover .stylist-card__img img { transform: scale(1.05); }
}
.stylist-card:nth-child(4) { grid-column: 2 / span 2; }
.stylist-card:nth-child(5) { grid-column: 4 / span 2; }
.stylist-card__body { padding: 24px; }
.stylist-card__name {
  font-family: var(--f-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--c-deep);
  margin-top: 6px;
}
.stylist-card__title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-rose-gold);
}
.stylist-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0;
}
.stylist-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  background-color: rgba(196, 149, 106, 0.1);
  color: var(--c-rose-gold);
  padding: 4px 10px;
  border-radius: 20px;
}
.stylist-card__bio {
  font-size: 13px;
  font-weight: 300;
  color: var(--c-muted);
  line-height: 1.75;
}
.stylist-card__btn {
  margin-top: 16px;
  padding: 10px 22px;
  font-size: 10px;
}

/* ── Gallery Page ─────────────────────────────────────────────── */
.gallery-grid {
  columns: 3;
  column-gap: 8px;
  padding-top: 8px;
}
.gallery-figure {
  break-inside: avoid;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
}
.gallery-figure img {
  width: 100%;
  display: block;
  transition: transform 600ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .gallery-figure:hover img { transform: scale(1.04); }
  .gallery-figure:hover .gallery-figure__overlay { opacity: 1; }
}
.gallery-figure__overlay {
  position: absolute;
  inset: 0;
  background: rgba(242, 214, 211, 0.70);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 300ms var(--ease-out);
}
.gallery-figure__label {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--c-rose-gold);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.04em;
}
@media (max-width: 600px) {
  .gallery-grid { columns: 1; }
}

/* ── Bridal Page ──────────────────────────────────────────────── */
.bridal-hero {
  min-height: 60vh;
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=1800&q=80');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(120px, 16vw, 180px) clamp(24px, 6vw, 80px) clamp(80px, 10vw, 120px);
}
.bridal-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(242, 214, 211, 0.55);
}
.bridal-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
}
.bridal-packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background-color: var(--c-blush-2);
}
.bridal-package {
  background: var(--c-white);
  padding: 36px 28px;
  border-top: 3px solid transparent;
  transition: border-color 280ms var(--ease-out), box-shadow 280ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .bridal-package:hover {
    border-top-color: var(--c-rose-gold);
    box-shadow: 0 12px 40px rgba(196, 149, 106, 0.12);
  }
}
.bridal-package__name {
  font-family: var(--f-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--c-deep);
  margin-top: 12px;
  margin-bottom: 16px;
}
.bridal-package__price {
  color: var(--c-rose-gold);
  font-weight: 600;
  font-size: 15px;
  margin-top: 20px;
  letter-spacing: 0.04em;
}
.bridal-package__duration {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.bridal-package__desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--c-muted);
  line-height: 1.75;
}
.bridal-timeline {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
}
.timeline-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
}
.timeline-step__connector {
  flex-shrink: 0;
  width: 40px;
  height: 1px;
  background-color: var(--c-blush-2);
  align-self: center;
  margin-top: -40px;
}
.timeline-step__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--c-rose-gold);
  color: var(--c-white);
  font-family: var(--f-serif);
  font-size: 15px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  flex-shrink: 0;
}
.timeline-step__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-deep);
  text-align: center;
}
.bridal-testimonial {
  background-color: var(--c-blush);
  padding: clamp(80px, 11vw, 130px) clamp(24px, 6vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bridal-testimonial::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-serif);
  font-size: clamp(160px, 22vw, 280px);
  font-weight: 400;
  font-style: italic;
  color: rgba(196, 149, 106, 0.12);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.bridal-testimonial__quote {
  position: relative;
  z-index: 1;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 300;
  line-height: 1.7;
  max-width: 600px;
  margin-inline: auto;
  color: var(--c-deep);
}
.bridal-testimonial__attr {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-rose-gold);
  margin-top: 24px;
}
@media (max-width: 768px) {
  .bridal-packages {
    grid-template-columns: 1fr;
  }
  .bridal-timeline {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .timeline-step {
    width: 100%;
    max-width: 320px;
    padding: 20px 16px;
  }
  .timeline-step__connector {
    width: 1px;
    height: 32px;
    margin-top: 0;
    align-self: center;
  }
  .stylist-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stylist-card:nth-child(4),
  .stylist-card:nth-child(5) {
    grid-column: span 1;
  }
}
@media (max-width: 480px) {
  .stylist-grid {
    grid-template-columns: 1fr;
  }
}
