/* SÉRAPHINE — wireframe styles, transcribed from mockup 06 (page skeleton)
   + mockup 08 (stylists/booking). Square edges, thin hairlines, letterspaced
   serif caps, interlocking hero collage, tonal placeholders. */

:root {
  --cream: #F7F2EC;
  --porcelain: #FBF8F3;
  --rose: #B76E79;
  --rose-warm: #C08A6E;
  --champagne: #E7C9A9;
  --espresso: #2B2226;
  --taupe: #E3D8CC;
  --muted: #8D8378;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --maxw: 1180px;
  --gutter: max(24px, calc((100vw - var(--maxw)) / 2));
}

* { box-sizing: border-box; margin: 0; padding: 0; }
/* the hidden attribute must beat author display rules (drawer body/foot/success
   toggle via [hidden]; without this the success panel shows over the services) */
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; }
body {
  background: var(--cream);
  color: var(--espresso);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.2; }
a { color: inherit; }

/* ---------- shared ---------- */
.eyebrow {
  font-size: .64rem; letter-spacing: .34em; text-transform: uppercase;
  color: var(--rose); font-weight: 600; margin-bottom: 14px;
}
.section-title {
  font-family: var(--serif); font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}
.section-head { text-align: center; max-width: 560px; margin: 0 auto 48px; }
.section-head .section-title::after {
  content: ""; display: block; width: 54px; height: 1px;
  background: var(--rose-warm); margin: 14px auto 0;
}
.section-head__sub { color: var(--muted); margin-top: 14px; font-size: .88rem; }
.textlink {
  color: var(--rose); text-decoration: none; font-weight: 600;
  font-size: .7rem; letter-spacing: .24em; text-transform: uppercase;
  border-bottom: 1px solid var(--champagne); padding-bottom: 3px;
}
.textlink:hover { border-bottom-color: var(--rose); }

.btn {
  display: inline-block; border: 0; cursor: pointer; text-decoration: none;
  font-family: var(--sans); font-weight: 600; font-size: .7rem;
  letter-spacing: .24em; text-transform: uppercase;
  padding: 15px 32px; border-radius: 0; transition: all .25s ease;
  text-align: center;
}
.btn--solid { background: var(--rose); color: #fff; }
.btn--solid:hover { background: #a25b66; }
.btn--solid:disabled { background: var(--taupe); color: var(--muted); cursor: not-allowed; }
.btn--ghost { background: transparent; color: var(--espresso); border: 1px solid var(--espresso); }
.btn--ghost:hover { background: var(--espresso); color: var(--cream); }
.btn--ghost-rose { background: transparent; color: var(--rose); border: 1px solid var(--rose); }
.btn--ghost-rose:hover { background: var(--rose); color: #fff; }

/* ---------- tonal placeholders (carry the photos' visual weight) ---------- */
.ph {
  position: relative; width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.ph__label {
  font-family: var(--serif); font-style: italic; font-size: .78rem;
  text-align: center; padding: 0 22px; opacity: .9; position: relative; z-index: 1;
}
/* dark: portraits on near-black (stylist photos) */
.ph--dark { background: linear-gradient(160deg, #3a3136 0%, #241e21 55%, #1a1517 100%); }
.ph--dark .ph__label { color: rgba(247, 242, 236, .55); }
/* warm: hair/model shots, warm mid-dark */
.ph--warm { background: linear-gradient(150deg, #b99c86 0%, #8a6a56 45%, #5c4437 100%); }
.ph--warm .ph__label { color: rgba(251, 248, 243, .75); }
/* mid: interiors, warm neutral */
.ph--mid { background: linear-gradient(150deg, #d9c9b8 0%, #b3a08e 55%, #8f7d6c 100%); }
.ph--mid .ph__label { color: rgba(43, 34, 38, .55); }
/* light: product/detail shots */
.ph--light { background: linear-gradient(150deg, #f1e7db 0%, #e3d3c2 60%, #d0bca8 100%); }
.ph--light .ph__label { color: var(--rose-warm); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- nav: transparent over hero, solidifies on scroll ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 20px var(--gutter);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, padding .3s ease, box-shadow .3s ease;
}
.nav.is-scrolled {
  padding: 14px var(--gutter);
  background: rgba(247, 242, 236, .9);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--taupe);
  box-shadow: 0 6px 24px rgba(43, 34, 38, .06);
}
.nav__monogram {
  font-family: var(--serif); font-style: italic; font-size: 1.5rem;
  color: var(--rose); text-decoration: none; justify-self: start;
}
.nav__links { display: flex; gap: 34px; }
.nav__links a {
  text-decoration: none; font-size: .64rem; letter-spacing: .26em;
  text-transform: uppercase; color: var(--espresso); transition: color .2s;
}
.nav__links a:hover { color: var(--rose); }
.nav__cta { justify-self: end; padding: 11px 26px; border-radius: 0; }
.nav__menu-cta { display: none; }
.nav__toggle {
  display: none; /* mobile only */
  grid-column: 3; justify-self: end;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 34px; height: 34px; padding: 5px;
  background: none; border: 0; cursor: pointer;
}
.nav__toggle span {
  display: block; width: 22px; height: 1.5px; background: var(--espresso);
  transition: transform .3s ease, opacity .2s ease;
}
.nav.is-menu-open .nav__toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav.is-menu-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-menu-open .nav__toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- hero: full-bleed widescreen image, copy overlaid left (mockup 06) ---------- */
.hero {
  position: relative;
  min-height: clamp(560px, 100svh, 900px);
  display: flex; align-items: center;
  overflow: hidden;
}
.hero__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: right top;
}
.hero__copy {
  position: relative; z-index: 1;
  margin-left: var(--gutter);
  padding: 34px 0;
  max-width: 620px;
}
.hero__logo { margin: 0; line-height: 0; }
.hero__logo img {
  display: block;
  width: min(540px, 42vw); /* size by WIDTH: raster masthead, trimmed to artwork */
  height: auto;
}
.hero__tagline {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.5rem); color: var(--espresso); margin: 20px 0 40px;
}
.btn--rosegold {
  color: #fff;
  background: linear-gradient(120deg, #DBA98F 0%, #C68B72 48%, #B0715C 100%);
  box-shadow: 0 10px 26px rgba(176, 113, 92, .3);
}
.btn--rosegold:hover {
  filter: brightness(1.07);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(176, 113, 92, .38);
}

/* ---------- studio: interior + intro ---------- */
.studio {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
}
.studio__interior { min-height: 200px; }
.studio__interior img {
  display: block; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.studio__text {
  background: var(--porcelain);
  border: 1px solid var(--taupe); border-left: 0;
  padding: 20px 56px 20px 48px;
  padding-right: max(56px, var(--gutter));
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
}
.studio__text h2 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); margin-bottom: 8px; }
.studio__para { color: var(--muted); font-size: .86rem; margin-bottom: 14px; max-width: 460px; }

/* ---------- stylists ---------- */
.stylists { padding: 92px var(--gutter); }
.filmstrip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
  margin-bottom: 44px;
}
.stylist-card {
  background: none; border: 0; padding: 0; cursor: pointer;
  text-align: center; transition: opacity .25s ease;
}
.stylist-card:hover .stylist-card__photo { transform: translateY(-4px); }
.stylist-card__photo { height: 320px; margin-bottom: 20px; transition: transform .3s ease; overflow: hidden; }
.stylist-card__photo img {
  display: block; width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.stylist-card__name {
  font-family: var(--serif); font-size: .95rem;
  letter-spacing: .18em; text-transform: uppercase;
}
.stylist-card__role {
  font-size: .6rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--rose); margin-top: 8px;
}
.stylist-card__bar {
  width: 0; height: 2px; background: var(--rose); margin: 16px auto 0;
  transition: width .3s ease;
}
.stylist-card.is-selected .stylist-card__bar { width: 48px; }
.stylist-card:not(.is-selected) { opacity: .68; }
.stylist-card:hover { opacity: 1; }

/* ---------- booking panel (mockup 08) ---------- */
.booking {
  display: grid; grid-template-columns: minmax(300px, 400px) 1fr; gap: 48px;
  background: var(--porcelain); border: 1px solid var(--taupe);
  padding: 44px;
}
.cal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.cal__label {
  font-size: .62rem; letter-spacing: .28em; text-transform: uppercase;
  font-weight: 600; color: var(--espresso);
}
.cal__nav { display: flex; align-items: center; gap: 10px; }
.cal__month { font-family: var(--serif); font-size: .92rem; min-width: 108px; text-align: center; }
.cal__arrow {
  background: none; border: 1px solid var(--taupe);
  width: 28px; height: 28px; cursor: pointer; color: var(--espresso);
  font-size: 1rem; line-height: 1; transition: all .2s;
}
.cal__arrow:hover:not(:disabled) { border-color: var(--rose); color: var(--rose); }
.cal__arrow:disabled { opacity: .35; cursor: not-allowed; }
.cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.cal__grid--days {
  margin-bottom: 8px; font-size: .58rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); text-align: center;
}
.cal__day {
  aspect-ratio: 1; border: 0; background: none;
  font-family: var(--sans); font-size: .8rem; color: var(--espresso);
  cursor: pointer; transition: background .2s, color .2s;
}
.cal__day:hover:not(:disabled) { background: var(--champagne); }
.cal__day:disabled { color: var(--taupe); cursor: default; }
.cal__day.is-selected { background: var(--rose); color: #fff; border-radius: 50%; }
.cal__note { margin-top: 14px; font-size: .7rem; color: var(--muted); }

.slots__stylist { font-size: 1.55rem; }
.slots__role {
  font-size: .62rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--rose); margin: 6px 0 22px;
}
.slots__prompt { font-size: .86rem; color: var(--muted); margin-bottom: 18px; }
.slots__prompt strong { color: var(--espresso); font-weight: 500; }
.slots__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
  margin-bottom: 24px;
}
.slot {
  padding: 12px 6px; border: 1px solid var(--champagne);
  background: none; font-family: var(--sans); font-size: .74rem; font-weight: 500;
  letter-spacing: .08em;
  color: var(--espresso); cursor: pointer; transition: all .2s; text-align: center;
}
.slot:hover:not(:disabled) { border-color: var(--rose); color: var(--rose); }
.slot:disabled { opacity: .32; cursor: not-allowed; text-decoration: line-through; }
.slot.is-selected { background: var(--rose); border-color: var(--rose); color: #fff; }
.slots__empty { color: var(--muted); font-size: .86rem; grid-column: 1 / -1; padding: 18px 0; }
.booking__book { width: 100%; padding: 17px; }
.booking__deposit {
  text-align: center; margin-top: 16px; font-size: .72rem; color: var(--muted);
  letter-spacing: .06em;
}

/* ---------- services: bento (feature + 2x2), mockup 06 ---------- */
.services { padding: 0 var(--gutter) 92px; }
.svc-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-auto-rows: 1fr;
  gap: 14px;
}
.svc {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--porcelain); border: 1px solid var(--taupe);
  min-height: 212px; overflow: hidden;
}
.svc--feature { grid-row: span 2; }
.svc__text { padding: 30px 28px; display: flex; flex-direction: column; }
.svc__text h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: 1.02rem; letter-spacing: .12em; text-transform: uppercase;
  line-height: 1.28;
}
.svc__text h3::after {
  content: ""; display: block; width: 30px; height: 1px;
  background: var(--rose-warm); margin: 12px 0 0;
}
.svc__text p { color: var(--muted); font-size: .8rem; line-height: 1.6; margin-top: 14px; }
.price {
  font-family: var(--serif); color: var(--espresso);
  font-size: 1.15rem; margin-top: auto; padding-top: 16px;
}
.svc--feature .price { font-size: 1.4rem; }
.svc__media { overflow: hidden; }
.svc__media img, .svc__media .ph {
  width: 100%; height: 100%; object-fit: cover; display: block; min-height: 150px;
}
.promo {
  margin-top: 14px; border: 1px solid var(--taupe); background: var(--cream);
  padding: 20px 28px; display: flex; align-items: center; justify-content: center; gap: 28px;
  flex-wrap: wrap;
}
.promo__text {
  font-size: .7rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--espresso); font-weight: 500;
}

/* ---------- reviews: open quotes ---------- */
.reviews { padding: 0 var(--gutter) 92px; }
.reviews__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px; }
.review { text-align: center; }
.review__mark {
  font-family: var(--serif); font-size: 3rem; line-height: 1;
  color: var(--rose); display: block; margin-bottom: 10px;
}
.review blockquote {
  font-family: var(--serif); font-style: italic;
  font-size: .98rem; line-height: 1.6; margin-bottom: 18px;
}
.review figcaption {
  font-size: .62rem; letter-spacing: .26em; text-transform: uppercase; color: var(--muted);
}

/* ---------- footer ---------- */
.footer { background: var(--espresso); color: var(--cream); padding: 64px var(--gutter) 0; }
.footer__top {
  display: grid; grid-template-columns: 1fr auto; gap: 64px; align-items: start;
  padding-bottom: 48px;
}
.footer__wordmark { font-family: var(--serif); font-size: 2rem; letter-spacing: .26em; display: block; margin-bottom: 6px; }
.footer__tag { font-family: var(--serif); font-style: italic; color: var(--champagne); font-size: .92rem; }
.footer__cols { display: flex; gap: 64px; }
.footer__cols h4 {
  font-size: .6rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--champagne); margin-bottom: 14px; font-weight: 600;
}
.footer__cols p { font-size: .82rem; line-height: 2; color: rgba(247, 242, 236, .72); }
.footer__cols a { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(231, 201, 169, .4); }
.footer__cols a:hover { color: var(--champagne); }
.footer__social { display: flex; gap: 16px; margin-top: 4px; }
.footer__social a {
  border-bottom: 0; display: inline-flex; align-items: center; justify-content: center;
  color: rgba(247, 242, 236, .78); transition: color .2s ease, transform .2s ease;
}
.footer__social a:hover { color: var(--champagne); transform: translateY(-2px); }
.footer__social svg { width: 19px; height: 19px; display: block; }
.footer__joinhead { margin-top: 22px; }
.footer__join { display: flex; border: 1px solid rgba(247, 242, 236, .25); }
.footer__join input {
  background: none; border: 0; padding: 10px 14px; color: var(--cream);
  font-family: var(--sans); font-size: .8rem; width: 170px;
}
.footer__join input::placeholder { color: rgba(247, 242, 236, .4); }
.footer__join input:focus { outline: none; }
.footer__join button {
  background: none; border: 0; border-left: 1px solid rgba(247, 242, 236, .25);
  color: var(--champagne); padding: 0 14px; cursor: pointer; font-size: 1rem;
}
.footer__join button:hover { background: rgba(247, 242, 236, .08); }
.footer__bar {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  border-top: 1px solid rgba(247, 242, 236, .14);
  padding: 20px 0 24px;
  font-size: .66rem; letter-spacing: .1em; color: rgba(247, 242, 236, .45);
}
.footer__bar a { color: inherit; text-decoration: none; }
.footer__bar a:hover { color: var(--champagne); }

/* ---------- drawer ---------- */
.scrim {
  position: fixed; inset: 0; background: rgba(43, 34, 38, .45);
  backdrop-filter: blur(2px); z-index: 50; opacity: 0; transition: opacity .3s ease;
}
.scrim.is-open { opacity: 1; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 60;
  width: min(440px, 100vw);
  background: var(--porcelain);
  box-shadow: -24px 0 60px rgba(43, 34, 38, .18);
  transform: translateX(105%); transition: transform .38s cubic-bezier(.32, .72, .28, 1);
  display: flex; flex-direction: column;
}
.drawer.is-open { transform: none; }
.drawer__head { display: flex; justify-content: space-between; align-items: flex-start; padding: 30px 30px 0; }
.drawer__name { font-size: 1.55rem; }
.drawer__role { font-size: .62rem; letter-spacing: .28em; text-transform: uppercase; color: var(--rose); margin-top: 5px; }
.drawer__close { background: none; border: 0; font-size: 1.6rem; line-height: 1; color: var(--muted); cursor: pointer; padding: 4px; }
.drawer__close:hover { color: var(--espresso); }
.drawer__slot { padding: 18px 30px 0; }
.drawer__slot span {
  display: inline-block; background: var(--rose); color: #fff;
  font-size: .72rem; font-weight: 600; letter-spacing: .1em;
  padding: 9px 18px;
}
.drawer__body { flex: 1; overflow-y: auto; padding: 24px 30px; }
.drawer__subhead { font-family: var(--serif); font-size: 1.05rem; margin-bottom: 12px; }
.service-row {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 0; border-bottom: 1px solid var(--taupe); cursor: pointer;
}
.service-row:last-child { border-bottom: 0; }
.service-row input { accent-color: var(--rose); width: 16px; height: 16px; cursor: pointer; flex-shrink: 0; }
.service-row__name { font-weight: 500; font-size: .9rem; }
.service-row__meta { font-size: .72rem; color: var(--muted); }
.service-row__price { margin-left: auto; font-family: var(--serif); color: var(--espresso); white-space: nowrap; }
.drawer__noteslabel {
  display: block; font-size: .62rem; letter-spacing: .26em; text-transform: uppercase;
  font-weight: 600; margin: 24px 0 8px;
}
.drawer__notes {
  width: 100%; border: 1px solid var(--taupe);
  background: #fff; padding: 12px 14px; font-family: var(--sans); font-size: .88rem;
  resize: vertical; color: var(--espresso);
}
.drawer__notes:focus { outline: none; border-color: var(--rose); }
.drawer__foot {
  border-top: 1px solid var(--taupe); padding: 18px 30px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: var(--porcelain);
}
.drawer__total { display: flex; flex-direction: column; }
.drawer__total > span:first-child { font-family: var(--serif); font-size: 1.1rem; }
.drawer__depositline { font-size: .7rem; color: var(--muted); }
.drawer__foot .btn { padding: 14px 26px; white-space: nowrap; }
.drawer__success { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 32px; gap: 14px; }
.drawer__check {
  width: 60px; height: 60px; border-radius: 50%; background: var(--rose); color: #fff;
  font-size: 1.7rem; display: flex; align-items: center; justify-content: center;
}
.drawer__success h3 { font-size: 1.5rem; }
.drawer__success p { color: var(--muted); font-size: .9rem; }
.drawer__fineprint { font-size: .72rem !important; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav.is-menu-open {
    background: rgba(247, 242, 236, .98); backdrop-filter: blur(14px);
    border-bottom-color: transparent;
  }
  /* nav links become a slide-down dropdown */
  .nav__links {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(247, 242, 236, .98); backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--taupe);
    box-shadow: 0 14px 30px rgba(43, 34, 38, .1);
    max-height: 0; overflow: hidden; opacity: 0; pointer-events: none;
    transition: max-height .34s ease, opacity .26s ease;
  }
  .nav.is-menu-open .nav__links { max-height: 400px; opacity: 1; pointer-events: auto; }
  .nav__links a {
    padding: 15px var(--gutter); font-size: .74rem; letter-spacing: .24em;
    border-bottom: 1px solid rgba(227, 216, 204, .5);
  }
  .nav__links .nav__menu-cta {
    display: block; text-align: center;
    margin: 16px var(--gutter); padding: 13px 24px;
    border: 1px solid var(--rose); letter-spacing: .22em;
  }
  .hero__copy { max-width: 440px; }
  .studio { grid-template-columns: 1fr; }
  .studio__interior { min-height: 300px; }
  .studio__text { border-left: 1px solid var(--taupe); padding: 44px var(--gutter); }
  .stylists { padding: 64px var(--gutter); }
  .filmstrip {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    margin-left: calc(-1 * var(--gutter)); margin-right: calc(-1 * var(--gutter));
    padding: 0 var(--gutter) 8px;
  }
  .stylist-card { flex: 0 0 220px; scroll-snap-align: start; }
  .stylist-card__photo { height: 260px; }
  .booking { grid-template-columns: 1fr; padding: 28px; gap: 32px; }
  .slots__grid { grid-template-columns: repeat(3, 1fr); }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .svc--feature { grid-row: auto; grid-column: 1 / -1; }
  .reviews__row { grid-template-columns: 1fr; gap: 40px; }
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .footer__cols { flex-wrap: wrap; gap: 40px; }
}
@media (max-width: 700px) {
  /* copy sits to the LEFT of the model in the cream negative space, shrunk to
     fit (model kept on the right via object-position). A soft left-to-right
     cream fade keeps the dark logo legible over the window-light streaks. */
  .hero {
    min-height: 84svh;
    align-items: center;
  }
  .hero__img { object-position: 70% center; }
  .hero::after {
    content: ""; position: absolute; inset: 0; z-index: 0;
    background: linear-gradient(to right,
      rgba(247, 242, 236, .6) 0%, rgba(247, 242, 236, .18) 42%, rgba(247, 242, 236, 0) 62%);
    pointer-events: none;
  }
  .hero__copy {
    max-width: 55%; width: auto; margin: 0 0 0 var(--gutter);
    padding: 0;
  }
  .hero__logo img { width: min(210px, 46vw); }
  .hero__tagline { font-size: 1.05rem; margin: 10px 0 22px; }
  .hero .btn--rosegold { padding: 11px 20px; font-size: .58rem; letter-spacing: .18em; }
}
@media (max-width: 560px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc { grid-template-columns: 1fr; }
  .svc__media { min-height: 190px; }
  .slots__grid { grid-template-columns: repeat(2, 1fr); }
  .drawer { width: 100vw; }
  .drawer__foot { flex-direction: column; align-items: stretch; text-align: center; }
}
