/* =========================================================================
   Andreita's Artistry — Bay Area Makeup Artist
   Brand stylesheet · mobile-first, responsive, accessible
   Palette: true blue · eucalyptus sage green · deep blue-slate
   ========================================================================= */

/* ---------- Design tokens ------------------------------------------------ */
:root {
  /* ---- Brand palette — true blue + eucalyptus sage ----
     Token groups keep their original role names (blush/rose/lilac) so all
     existing markup keeps working, but now hold the blue/green brand values:
       • "blush" = soft blue mist tints  (backgrounds, borders)
       • "rose"  = azure / true blue     (primary accent: text, links, hovers)
       • "lilac" = eucalyptus sage green (secondary accent)                 */

  /* Soft mist — true-blue tints (backgrounds, borders) */
  --blush-50:  #F4F7FC;
  --blush-100: #E7EEF9;
  --blush-200: #D2DEF4;
  --blush-300: #B4C7EC;

  /* Azure — true-blue primary accent */
  --rose-400:  #6F9BE8;
  --rose-500:  #3F6FD4;
  --rose-600:  #284FAE;

  /* Eucalyptus — sage green secondary accent */
  --lilac-100: #EAF4ED;
  --lilac-200: #D6E9D9;
  --lilac-300: #B4D7BC;
  --lilac-400: #88BE95;
  --lilac-500: #5AA06E;

  /* Ink — deep blue slate */
  --charcoal:      #1C2A3F;
  --charcoal-soft: #46546B;
  --charcoal-mute: #7C879B;

  --white: #FFFFFF;
  --cream: #FAFCFF;

  /* Typography */
  --font-display: "Poppins", "Helvetica Neue", Arial, sans-serif;
  --font-body:    "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-logo:    "Bodoni Moda", Didot, "Times New Roman", serif;  /* Vogue-style Didone — wordmark + script accents */

  /* System */
  --radius-sm: 10px;
  --radius:    18px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(28, 42, 63, .06);
  --shadow:    0 14px 40px rgba(28, 42, 63, .10);
  --shadow-lg: 0 28px 70px rgba(28, 42, 63, .15);
  --maxw: 1180px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
  --section-y: clamp(3.5rem, 9vw, 7rem);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset / base ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.65;
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, picture, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--lilac-500); outline-offset: 3px; border-radius: 4px; }

/* ---------- Typography --------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.12; letter-spacing: -.01em; color: var(--charcoal); }
h1 { font-size: clamp(2.4rem, 1.7rem + 3.4vw, 4.1rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 1.4rem + 2.2vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 1.05rem + .6vw, 1.45rem); }
p { color: var(--charcoal-soft); }
strong { color: var(--charcoal); font-weight: 600; }

.script { font-family: var(--font-logo); font-weight: 500; color: var(--rose-600); letter-spacing: .01em; line-height: 1.1; }

/* ---------- Layout helpers ---------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section--tint { background: linear-gradient(180deg, var(--blush-50), var(--blush-100)); }
.section--lilac { background: linear-gradient(180deg, var(--lilac-100), var(--blush-50)); }

.section-head { max-width: 640px; margin: 0 auto clamp(2rem, 5vw, 3.25rem); text-align: center; }
.section-head .eyebrow { display: inline-block; }
.eyebrow { font-family: var(--font-logo); font-weight: 500; font-size: 1.35rem; letter-spacing: .02em; color: var(--rose-500); line-height: 1.1; }
.section-head p { margin-top: .85rem; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--charcoal); color: var(--cream); padding: .7rem 1.1rem; border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ----------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 600; font-size: .98rem;
  padding: .85rem 1.6rem; border-radius: 999px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn--primary { background: var(--charcoal); color: var(--cream); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--rose-600); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--secondary { background: var(--white); color: var(--charcoal); box-shadow: inset 0 0 0 1.5px var(--blush-300); }
.btn--secondary:hover { background: var(--blush-100); transform: translateY(-2px); box-shadow: inset 0 0 0 1.5px var(--rose-400), var(--shadow-sm); }
.btn--light { background: rgba(255,255,255,.9); color: var(--charcoal); }
.btn--light:hover { background: #fff; transform: translateY(-2px); }
.btn--block { width: 100%; justify-content: center; }
.btn--lg { padding: 1rem 2rem; font-size: 1.05rem; }

/* ---------- Header / nav ------------------------------------------------ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease);
  padding-block: clamp(.7rem, 2vw, 1.1rem);
}
.site-header.is-scrolled { background: rgba(244, 247, 252, .9); backdrop-filter: blur(12px); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.brand { display: flex; flex-direction: column; line-height: .9; }
.brand .brand__name { font-family: var(--font-logo); font-weight: 600; font-size: 1.85rem; letter-spacing: .01em; color: var(--rose-600); }
.brand .brand__tag { font-family: var(--font-display); font-weight: 600; font-size: .62rem; letter-spacing: .42em; text-transform: uppercase; color: var(--charcoal-soft); padding-left: .25rem; }

.nav-links { display: none; align-items: center; gap: clamp(1rem, 2.4vw, 2.1rem); }
.nav-links a { font-family: var(--font-display); font-weight: 500; font-size: .96rem; color: var(--charcoal); position: relative; padding-block: .25rem; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--rose-500); transition: width .25s var(--ease); }
.nav-links a:hover::after, .nav-links a:focus-visible::after { width: 100%; }
.nav__cta { display: none; }

.nav-toggle { display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; width: 46px; height: 46px; border-radius: 50%; background: var(--white); box-shadow: var(--shadow-sm); }
.nav-toggle span { width: 20px; height: 2px; background: var(--charcoal); margin-inline: auto; transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu drawer */
.mobile-menu {
  position: fixed; inset: 0; z-index: 95;
  background: linear-gradient(160deg, var(--blush-100), var(--lilac-100));
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 1.5rem;
  transform: translateY(-100%); transition: transform .45s var(--ease); visibility: hidden;
}
.mobile-menu.is-open { transform: translateY(0); visibility: visible; }
.mobile-menu a { font-family: var(--font-display); font-weight: 600; font-size: 1.6rem; color: var(--charcoal); }
.mobile-menu a:hover { color: var(--rose-600); }
.mobile-menu .btn { margin-top: 1rem; }

/* ---------- Hero -------------------------------------------------------- */
.hero { position: relative; padding-top: clamp(7rem, 16vw, 9.5rem); padding-bottom: var(--section-y); overflow: hidden; background: linear-gradient(150deg, var(--blush-50) 0%, var(--blush-100) 48%, var(--lilac-100) 100%); }
.hero::before, .hero::after { content: ""; position: absolute; border-radius: 50%; filter: blur(8px); z-index: 0; }
.hero::before { width: 340px; height: 340px; background: radial-gradient(circle, rgba(180,215,188,.55), transparent 70%); top: -80px; right: -60px; }
.hero::after { width: 280px; height: 280px; background: radial-gradient(circle, rgba(111,155,232,.45), transparent 70%); bottom: -90px; left: -70px; }
.hero__grid { position: relative; z-index: 1; display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.hero__eyebrow { font-family: var(--font-logo); font-weight: 500; font-size: clamp(1.75rem, 1.3rem + 1.7vw, 2.4rem); letter-spacing: .01em; color: var(--rose-500); line-height: 1.1; }
.hero h1 { margin-top: .35rem; }
.hero h1 .accent { color: var(--rose-600); }
.hero__lead { margin-top: 1.25rem; font-size: clamp(1.05rem, 1rem + .35vw, 1.2rem); max-width: 36ch; }
.hero__cta { margin-top: 1.9rem; display: flex; flex-wrap: wrap; gap: .85rem; }
.hero__trust { margin-top: 1.6rem; display: flex; flex-wrap: wrap; gap: .5rem 1.3rem; font-size: .9rem; color: var(--charcoal-soft); }
.hero__trust li { display: flex; align-items: center; gap: .45rem; font-weight: 500; }
.hero__trust svg { width: 18px; height: 18px; color: var(--rose-500); flex: none; }

.hero__media { position: relative; justify-self: center; }
.hero__media img { width: min(420px, 82vw); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); position: relative; z-index: 1; }
.hero__media::before { content: ""; position: absolute; inset: auto -18px -18px auto; width: 65%; height: 65%; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--lilac-300), var(--rose-400)); z-index: 0; }
.hero__badge { position: absolute; z-index: 2; left: -14px; bottom: 26px; background: var(--white); border-radius: var(--radius); padding: .7rem 1rem; box-shadow: var(--shadow); display: flex; align-items: center; gap: .6rem; }
.hero__badge .num { font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; color: var(--rose-600); line-height: 1; }
.hero__badge .lbl { font-size: .76rem; color: var(--charcoal-soft); line-height: 1.2; }

/* ---------- About ------------------------------------------------------- */
.about__grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.about__media { position: relative; justify-self: center; max-width: 440px; }
.about__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.about__media::after { content: ""; position: absolute; inset: 16px 16px auto auto; top: -16px; right: -16px; width: 120px; height: 120px; border-radius: 50%; background: radial-gradient(circle, var(--lilac-200), transparent 72%); z-index: -1; }
.about h2 { margin-bottom: .4rem; }
.about p + p { margin-top: 1rem; }
.about__sign { font-family: var(--font-logo); font-weight: 500; font-style: italic; font-size: 1.7rem; color: var(--rose-600); margin-top: 1.1rem; }
.about__stats { display: flex; flex-wrap: wrap; gap: 1.5rem 2.2rem; margin-top: 1.6rem; }
.about__stats .num { font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; color: var(--charcoal); }
.about__stats .lbl { font-size: .85rem; color: var(--charcoal-mute); }

/* ---------- Services ---------------------------------------------------- */
.services__grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.service-card {
  background: var(--white); border-radius: var(--radius); padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-sm); border: 1px solid var(--blush-100);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-card__icon { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; background: linear-gradient(135deg, var(--blush-200), var(--lilac-200)); margin-bottom: 1.1rem; }
.service-card__icon svg { width: 26px; height: 26px; color: var(--rose-600); }
.service-card h3 { margin-bottom: .5rem; }
.service-card p { font-size: .97rem; }
.service-card .price { margin-top: 1rem; font-family: var(--font-display); font-weight: 600; color: var(--charcoal); font-size: .95rem; }
.service-card .price span { color: var(--charcoal-mute); font-weight: 500; }
.service-card .card-link { margin-top: auto; padding-top: 1rem; font-family: var(--font-display); font-weight: 600; font-size: .92rem; color: var(--rose-600); display: inline-flex; align-items: center; gap: .35rem; }
.service-card .card-link svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.service-card:hover .card-link svg { transform: translateX(4px); }

/* ---------- Gallery ----------------------------------------------------- */
.gallery__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(.6rem, 2vw, 1rem); }
.gallery__item { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 4 / 5; background: var(--blush-100); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery__item:hover img, .gallery__item:focus-visible img { transform: scale(1.06); }
.gallery__item figcaption {
  position: absolute; inset: auto 0 0 0; padding: 1.4rem 1rem .9rem; color: #fff;
  font-family: var(--font-display); font-weight: 600; font-size: .95rem;
  background: linear-gradient(transparent, rgba(20,30,46,.72));
  opacity: 0; transform: translateY(8px); transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.gallery__item:hover figcaption, .gallery__item:focus-within figcaption { opacity: 1; transform: translateY(0); }
.gallery__note { text-align: center; margin-top: 1.8rem; font-size: .95rem; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(16,24,38,.9); display: none; place-items: center; padding: 1.5rem; }
.lightbox.is-open { display: grid; }
.lightbox img { max-width: min(92vw, 720px); max-height: 86vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox__close { position: absolute; top: 1.1rem; right: 1.2rem; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.15); color: #fff; font-size: 1.6rem; display: grid; place-items: center; }
.lightbox__close:hover { background: rgba(255,255,255,.3); }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,.15); color: #fff; font-size: 1.5rem; display: grid; place-items: center; }
.lightbox__nav:hover { background: rgba(255,255,255,.3); }
.lightbox__nav--prev { left: 1rem; } .lightbox__nav--next { right: 1rem; }

/* ---------- Booking ----------------------------------------------------- */
.booking__grid { display: grid; gap: clamp(2rem, 5vw, 3rem); align-items: start; }
.steps { display: grid; gap: 1.1rem; margin-bottom: 2rem; }
.step { display: flex; gap: 1rem; align-items: flex-start; }
.step__num { flex: none; width: 42px; height: 42px; border-radius: 50%; background: var(--charcoal); color: var(--cream); font-family: var(--font-display); font-weight: 700; display: grid; place-items: center; }
.step h3 { font-size: 1.1rem; margin-bottom: .15rem; }
.step p { font-size: .95rem; }
.deposit-note { background: var(--lilac-100); border: 1px dashed var(--lilac-400); border-radius: var(--radius); padding: 1.1rem 1.25rem; display: flex; gap: .8rem; align-items: flex-start; }
.deposit-note svg { width: 24px; height: 24px; color: var(--lilac-500); flex: none; margin-top: 2px; }
.deposit-note p { font-size: .94rem; color: var(--charcoal-soft); }

/* Form */
.booking-form { background: var(--white); border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 2.4rem); box-shadow: var(--shadow); border: 1px solid var(--blush-100); }
.booking-form h3 { margin-bottom: 1.25rem; }
.field { margin-bottom: 1.1rem; }
.field-row { display: grid; grid-template-columns: 1fr; gap: 0 1rem; }
.field label { display: block; font-family: var(--font-display); font-weight: 600; font-size: .88rem; margin-bottom: .4rem; }
.field label .req { color: var(--rose-600); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--charcoal);
  background: var(--blush-50); border: 1.5px solid var(--blush-200); border-radius: var(--radius-sm);
  padding: .8rem .95rem; transition: border-color .2s, box-shadow .2s, background-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--rose-400); background: var(--white); box-shadow: 0 0 0 4px rgba(111,155,232,.18); }
.field textarea { resize: vertical; min-height: 96px; }
.checkbox-group { display: grid; gap: .55rem; }
.checkbox { display: flex; align-items: center; gap: .6rem; font-size: .95rem; color: var(--charcoal-soft); cursor: pointer; }
.checkbox input { width: 18px; height: 18px; accent-color: var(--rose-600); flex: none; }
.form-note { font-size: .82rem; color: var(--charcoal-mute); margin-top: .9rem; text-align: center; }
.form-success { display: none; text-align: center; padding: 2rem 1rem; }
.form-success.is-visible { display: block; }
.form-success svg { width: 64px; height: 64px; color: var(--rose-500); margin: 0 auto 1rem; }
.form-success h3 { color: var(--charcoal); }
.form-success p { margin-top: .5rem; }

/* Embed slot for 3rd-party booking tool */
.embed-slot { margin-top: 1.5rem; border: 2px dashed var(--blush-300); border-radius: var(--radius); padding: 1.5rem; text-align: center; color: var(--charcoal-mute); font-size: .9rem; background: var(--blush-50); }

/* ---------- FAQ --------------------------------------------------------- */
.faq { max-width: 760px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--blush-200); }
.faq__q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.2rem 0; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--charcoal); }
.faq__q .icon { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--blush-100); display: grid; place-items: center; transition: transform .3s var(--ease), background-color .3s; font-size: 1.2rem; line-height: 1; }
.faq__q[aria-expanded="true"] .icon { transform: rotate(45deg); background: var(--rose-400); color: #fff; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq__a p { padding-bottom: 1.2rem; font-size: .97rem; }

/* ---------- Contact ----------------------------------------------------- */
.contact__grid { display: grid; gap: clamp(2rem, 5vw, 3rem); align-items: center; }
.contact-cards { display: grid; gap: 1rem; }
.contact-card { display: flex; gap: 1rem; align-items: center; background: var(--white); border-radius: var(--radius); padding: 1.15rem 1.3rem; box-shadow: var(--shadow-sm); border: 1px solid var(--blush-100); transition: transform .25s var(--ease); }
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.contact-card__icon { flex: none; width: 48px; height: 48px; border-radius: 14px; background: linear-gradient(135deg, var(--blush-200), var(--lilac-200)); display: grid; place-items: center; }
.contact-card__icon svg { width: 22px; height: 22px; color: var(--rose-600); }
.contact-card .lbl { font-size: .8rem; color: var(--charcoal-mute); }
.contact-card .val { font-family: var(--font-display); font-weight: 600; color: var(--charcoal); }
.contact__cta { background: linear-gradient(140deg, var(--charcoal), #2A3A57); color: var(--cream); border-radius: var(--radius-lg); padding: clamp(1.8rem, 4vw, 2.6rem); text-align: center; }
.contact__cta h3 { color: var(--cream); font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2rem); }
.contact__cta p { color: rgba(255,253,252,.78); margin: .7rem auto 1.5rem; max-width: 38ch; }
.contact__cta .script { color: var(--rose-400); font-size: 1.6rem; display: block; margin-bottom: .3rem; }

/* ---------- Footer ------------------------------------------------------ */
.site-footer { background: var(--blush-100); padding-block: clamp(2.5rem, 6vw, 4rem) 1.5rem; }
.footer__grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
.footer__brand .brand__name { font-family: var(--font-logo); font-weight: 600; font-size: 2rem; letter-spacing: .01em; color: var(--rose-600); }
.footer__brand p { margin-top: .6rem; font-size: .92rem; max-width: 34ch; }
.footer h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .16em; color: var(--charcoal-mute); margin-bottom: 1rem; }
.footer__links a, .footer__contact li { font-size: .95rem; color: var(--charcoal-soft); padding-block: .3rem; display: block; }
.footer__links a:hover { color: var(--rose-600); }
.socials { display: flex; gap: .6rem; margin-top: 1rem; }
.socials a { width: 42px; height: 42px; border-radius: 50%; background: var(--white); display: grid; place-items: center; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), background-color .25s; }
.socials a:hover { transform: translateY(-3px); background: var(--rose-400); color: #fff; }
.socials svg { width: 20px; height: 20px; }
.footer__bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--blush-200); display: flex; flex-wrap: wrap; gap: .5rem 1rem; justify-content: space-between; font-size: .85rem; color: var(--charcoal-mute); }

/* ---------- Scroll reveal ----------------------------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive breakpoints -------------------------------------- */
@media (min-width: 560px) {
  .field-row { grid-template-columns: 1fr 1fr; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .gallery__grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 920px) {
  .nav-links, .nav__cta { display: flex; }
  .nav-toggle { display: none; }
  .hero__grid { grid-template-columns: 1.05fr .95fr; }
  .hero__lead { font-size: 1.2rem; }
  .about__grid { grid-template-columns: .85fr 1.15fr; }
  .about--reverse .about__media { order: 2; }
  .services__grid { grid-template-columns: repeat(4, 1fr); }
  .booking__grid { grid-template-columns: .92fr 1.08fr; }
  .contact__grid { grid-template-columns: 1.1fr .9fr; }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
