/* ==========================================================================
   Poonam Singh — Professional Yoga Teacher
   style.css  |  Mobile-first, vanilla CSS3
   --------------------------------------------------------------------------
   1  Tokens              8  Certifications
   2  Reset & base        9  Classes
   3  Layout helpers     10  Gallery + lightbox
   4  Buttons            11  Contact + forms
   5  Navigation         12  Footer
   6  Hero               13  Floating button + modal
   7  Trust / About      14  Motion + media queries
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  /* Core palette — deep forest, sage, warm sand, brass */
  --ink:         #151B14;
  --forest:      #24391F;
  --forest-2:    #33512D;
  --forest-3:    #486B41;
  --sage:        #7E9A76;
  --sage-soft:   #A9BFA2;
  --mist:        #E9F0E5;

  --gold:        #B4884A;
  --gold-soft:   #D9B981;
  --gold-tint:   #F5EDDF;

  --sand:        #E4D7C1;
  --sand-soft:   #F3ECE0;
  --cream:       #FCFAF6;
  --paper:       #FFFFFF;

  --text:        #3A423A;
  --text-strong: #1E251D;
  --muted:       #79806F;
  --line:        rgba(36, 57, 31, .12);
  --line-strong: rgba(36, 57, 31, .22);

  /* Type */
  --font-head: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Lora', Georgia, 'Times New Roman', serif;

  /* Metrics */
  --max-width: 1180px;
  --gutter: 1.25rem;
  --r-xs: 10px;
  --r-sm: 14px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 36px;

  /* Depth — layered, soft, never harsh */
  --sh-xs: 0 1px 2px rgba(21, 27, 20, .05);
  --sh-sm: 0 4px 14px rgba(21, 27, 20, .06);
  --sh-md: 0 12px 34px rgba(21, 27, 20, .09);
  --sh-lg: 0 26px 64px rgba(21, 27, 20, .14);
  --sh-gold: 0 12px 30px rgba(180, 136, 74, .28);

  --nav-h: 70px;
  --ease: cubic-bezier(.4, 0, .2, 1);
  --spring: cubic-bezier(.34, 1.4, .64, 1);
}

/* ---------- 2. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.78;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
svg { display: block; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

a { color: var(--forest-2); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--gold); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--text-strong);
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: -.02em;
}

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

::selection { background: var(--sage-soft); color: var(--forest); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 400;
  background: var(--forest); color: #fff; padding: .8rem 1.3rem;
  border-radius: 0 0 var(--r-xs) 0; font-family: var(--font-head); font-size: .9rem;
}
.skip-link:focus { left: 0; color: #fff; }

/* Reading progress */
.progress {
  position: fixed; inset: 0 0 auto 0; height: 3px; z-index: 300;
  background: transparent; pointer-events: none;
}
.progress__bar {
  display: block; height: 100%; width: 100%;
  transform: scaleX(0); transform-origin: left;
  background: linear-gradient(90deg, var(--sage), var(--gold));
  transition: transform .1s linear;
}

/* ---------- 3. Layout helpers ---------- */
.container {
  width: 100%; max-width: var(--max-width);
  margin-inline: auto; padding-inline: var(--gutter);
}

.section { padding: 4.75rem 0; position: relative; }
.section--tint { background: var(--sand-soft); }
.section--dark { background: var(--forest); color: rgba(255, 255, 255, .82); }

.section__head { text-align: center; max-width: 660px; margin: 0 auto 2.75rem; }

.eyebrow {
  font-family: var(--font-head);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .75rem;
  display: flex; align-items: center; gap: .6rem;
}
.section__head .eyebrow { justify-content: center; }
.eyebrow::before, .eyebrow::after {
  content: ""; height: 1px; width: 26px; background: currentColor; opacity: .45;
}
.section__head .eyebrow::before { display: block; }
.eyebrow::before { display: none; }
.eyebrow--light { color: var(--gold-soft); }

.h2 {
  font-size: clamp(1.85rem, 5.4vw, 2.7rem);
  margin-bottom: 1rem;
}
.h2--light { color: #fff; }

.section__lead { color: var(--muted); font-size: 1.03rem; }
.section__lead--light { color: rgba(255, 255, 255, .72); }

.lead { font-size: 1.08rem; color: var(--text-strong); }

/* ---------- 4. Buttons ---------- */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-head); font-size: .92rem; font-weight: 500; letter-spacing: .01em;
  padding: .95rem 1.9rem; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: transform .3s var(--spring), box-shadow .3s var(--ease),
              background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
/* Sheen sweep on hover */
.btn::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.32) 50%, transparent 80%);
  transform: translateX(-120%); transition: transform .7s var(--ease);
}
.btn:hover::after { transform: translateX(120%); }

.btn--forest { background: var(--forest); color: #fff; box-shadow: var(--sh-sm); }
.btn--forest:hover { background: var(--forest-2); color: #fff; transform: translateY(-3px); box-shadow: var(--sh-md); }

.btn--gold { background: var(--gold); color: #fff; box-shadow: var(--sh-gold); }
.btn--gold:hover { background: #A57B3E; color: #fff; transform: translateY(-3px); }

.btn--outline { border-color: var(--line-strong); color: var(--forest-2); }
.btn--outline:hover { border-color: var(--forest-2); background: var(--mist); color: var(--forest); transform: translateY(-3px); }

.btn--glass {
  color: #fff; border-color: rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.btn--glass:hover { background: rgba(255, 255, 255, .95); color: var(--forest); border-color: #fff; transform: translateY(-3px); }

.btn--block { width: 100%; }
.btn:disabled { opacity: .65; cursor: progress; transform: none; }

.btn__spinner { display: none; width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.4); border-top-color: #fff; animation: spin .7s linear infinite; }
.btn.is-busy .btn__spinner { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- 5. Navigation ---------- */
.navbar {
  position: fixed; inset: 0 0 auto 0; z-index: 200;
  background: rgba(252, 250, 246, .72);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: background-color .35s var(--ease), box-shadow .35s var(--ease),
              border-color .35s var(--ease), transform .4s var(--ease);
}
.navbar.is-scrolled {
  background: rgba(252, 250, 246, .96);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 20px rgba(21, 27, 20, .06);
}
.navbar.is-hidden { transform: translateY(-105%); }

.nav { height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.brand { display: flex; align-items: center; gap: .7rem; }
.brand__mark {
  display: grid; place-items: center; width: 42px; height: 42px; flex: 0 0 42px;
  border-radius: 50%; color: var(--forest);
  background: linear-gradient(145deg, var(--mist), #fff);
  border: 1px solid var(--line);
  transition: transform .5s var(--spring), box-shadow .4s var(--ease);
}
.brand:hover .brand__mark { transform: rotate(-8deg) scale(1.06); box-shadow: var(--sh-sm); }
.brand__text { display: flex; flex-direction: column; line-height: 1.2; }
.brand__text strong { font-family: var(--font-head); font-size: 1rem; font-weight: 600; color: var(--text-strong); }
.brand__text em {
  font-family: var(--font-head); font-style: normal;
  font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold);
}

.nav__toggle { width: 46px; height: 46px; display: grid; place-items: center; margin-right: -.4rem; }
.nav__burger, .nav__burger::before, .nav__burger::after {
  content: ""; display: block; width: 24px; height: 2px; border-radius: 2px;
  background: var(--text-strong);
  transition: transform .35s var(--spring), opacity .2s var(--ease), width .35s var(--ease);
}
.nav__burger { position: relative; }
.nav__burger::before { position: absolute; top: -7px; }
.nav__burger::after  { position: absolute; top: 7px; width: 15px; }
.nav__toggle[aria-expanded="true"] .nav__burger { background: transparent; }
.nav__toggle[aria-expanded="true"] .nav__burger::before { top: 0; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__burger::after  { top: 0; width: 24px; transform: rotate(-45deg); }

.nav__menu {
  position: fixed; top: var(--nav-h); right: 0;
  width: min(330px, 86vw); height: calc(100dvh - var(--nav-h));
  padding: 1.5rem var(--gutter) 2.5rem;
  background: var(--cream); box-shadow: var(--sh-lg);
  display: flex; flex-direction: column;
  transform: translateX(105%); transition: transform .42s var(--ease);
  overflow-y: auto;
}
.nav__menu.is-open { transform: translateX(0); }
/* Staggered entrance for drawer items */
.nav__menu.is-open li { animation: navIn .45s var(--ease) backwards; }
.nav__menu.is-open li:nth-child(1) { animation-delay: .06s; }
.nav__menu.is-open li:nth-child(2) { animation-delay: .11s; }
.nav__menu.is-open li:nth-child(3) { animation-delay: .16s; }
.nav__menu.is-open li:nth-child(4) { animation-delay: .21s; }
.nav__menu.is-open li:nth-child(5) { animation-delay: .26s; }
.nav__menu.is-open li:nth-child(6) { animation-delay: .31s; }
.nav__menu.is-open li:nth-child(7) { animation-delay: .36s; }
@keyframes navIn { from { opacity: 0; transform: translateX(22px); } }

.nav__link {
  display: block; font-family: var(--font-head); font-size: 1rem; font-weight: 500;
  color: var(--text); padding: .9rem .3rem; border-bottom: 1px solid var(--line);
  transition: color .25s var(--ease), padding-left .3s var(--ease);
}
.nav__link:hover { color: var(--forest); padding-left: .65rem; }
.nav__link.is-active { color: var(--forest); font-weight: 600; }

.nav__cta {
  margin-top: 1.3rem; text-align: center; border-bottom: none;
  background: var(--forest); color: #fff; border-radius: 999px; padding: .95rem 1.5rem;
}
.nav__cta:hover { background: var(--forest-2); color: #fff; padding-left: 1.5rem; }

.nav-backdrop {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 199;
  background: rgba(21, 27, 20, .42);
  backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
  opacity: 0; pointer-events: none; transition: opacity .35s var(--ease);
}
.nav-backdrop.is-visible { opacity: 1; pointer-events: auto; }

/* ---------- 6. Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 3.5rem) 0 4.5rem;
  background: var(--ink); overflow: hidden;
}
.hero__bg {
  position: absolute; inset: -2%;
  background: url("images/hero-bg.jpg") center / cover no-repeat;
  animation: kenburns 26s var(--ease) infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1) translate3d(0, 0, 0); }
  to   { transform: scale(1.12) translate3d(-1.5%, -1%, 0); }
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(21,27,20,.74) 0%, rgba(21,27,20,.52) 32%, rgba(21,27,20,.88) 100%),
    linear-gradient(95deg, rgba(21,27,20,.8) 0%, rgba(36,57,31,.2) 68%);
}
.hero__inner { position: relative; max-width: 760px; color: #fff; }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-head); font-size: .7rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gold-soft);
  padding: .45rem 1rem .45rem .8rem; margin-bottom: 1.4rem;
  border: 1px solid rgba(217, 185, 129, .38); border-radius: 999px;
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.hero__dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold-soft);
  box-shadow: 0 0 0 0 rgba(217, 185, 129, .7); animation: ping 2.4s var(--ease) infinite;
}
@keyframes ping {
  0%   { box-shadow: 0 0 0 0 rgba(217, 185, 129, .65); }
  70%  { box-shadow: 0 0 0 9px rgba(217, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(217, 185, 129, 0); }
}

.hero__title {
  font-size: clamp(2.3rem, 8.6vw, 4.35rem);
  font-weight: 600; color: #fff; margin-bottom: 1.15rem;
  text-shadow: 0 2px 30px rgba(0, 0, 0, .3);
}
.hero__title .line { display: block; }
.hero__title em {
  font-family: var(--font-body); font-style: italic; font-weight: 500;
  color: var(--gold-soft);
}

.hero__subtitle {
  font-size: clamp(1rem, 2.3vw, 1.13rem); color: rgba(255, 255, 255, .9);
  max-width: 35rem; margin-bottom: 2.1rem; text-shadow: 0 1px 14px rgba(0, 0, 0, .32);
}

.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 2.6rem; }

.hero__creds {
  display: grid; gap: .55rem;
  padding: 1rem 1.1rem; border-radius: var(--r-md);
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--sh-md);
}
.hero__creds li { display: flex; align-items: center; gap: .8rem; }
.hero__creds-icon {
  display: grid; place-items: center; flex: 0 0 34px; height: 34px;
  border-radius: 50%; background: rgba(255, 255, 255, .14); font-size: .95rem;
}
.hero__creds span span,
.hero__creds li > span:last-child { display: flex; flex-direction: column; line-height: 1.35; }
.hero__creds strong {
  font-family: var(--font-head); font-size: .87rem; font-weight: 600; color: #fff;
}
.hero__creds li > span:last-child { font-size: .76rem; color: rgba(255, 255, 255, .68); }

.hero__scroll {
  position: absolute; left: 50%; bottom: 1.5rem; transform: translateX(-50%);
  width: 25px; height: 40px; border: 1.5px solid rgba(255, 255, 255, .5);
  border-radius: 999px; display: grid; place-items: start center; padding-top: 7px;
}
.hero__scroll span {
  width: 3px; height: 8px; border-radius: 2px; background: #fff;
  animation: scrollHint 1.9s var(--ease) infinite;
}
@keyframes scrollHint {
  0% { opacity: 0; transform: translateY(0); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translateY(13px); }
}

/* Hero load-in choreography — .js gated so no-JS/crawler views stay visible */
.js [data-anim] { opacity: 0; transform: translateY(24px); }
.is-ready [data-anim] { animation: heroIn .9s var(--ease) forwards; }
.is-ready [data-anim="1"] { animation-delay: .12s; }
.is-ready [data-anim="2"] { animation-delay: .24s; }
.is-ready [data-anim="3"] { animation-delay: .36s; }
.is-ready [data-anim="4"] { animation-delay: .5s; }
.is-ready [data-anim="5"] { animation-delay: .62s; }
.is-ready [data-anim="6"] { animation-delay: .76s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

/* ---------- 7. Trust strip & About ---------- */
.trust {
  background: var(--paper); border-bottom: 1px solid var(--line);
  padding: 2.75rem 0;
}
.trust__grid { display: grid; gap: 1.5rem; }
.trust__item { text-align: center; }
.trust__icon {
  display: grid; place-items: center; width: 52px; height: 52px; margin: 0 auto .85rem;
  border-radius: 50%; color: var(--forest-2);
  background: var(--mist); border: 1px solid var(--line);
  transition: transform .45s var(--spring), background-color .35s var(--ease), color .35s var(--ease);
}
.trust__item:hover .trust__icon { transform: translateY(-4px) scale(1.06); background: var(--forest); color: #fff; }
.trust__item h3 { font-size: .98rem; margin-bottom: .35rem; }
.trust__item p { font-size: .88rem; color: var(--muted); line-height: 1.6; }

.about__grid { display: grid; gap: 3rem; }

.about__media { position: relative; max-width: 380px; margin-inline: auto; }
.about__frame {
  position: relative; border-radius: var(--r-xl) var(--r-xl) var(--r-md) var(--r-md);
  overflow: hidden; box-shadow: var(--sh-lg);
}
.about__frame img { width: 100%; transition: transform 1.1s var(--ease); }
.about__media:hover .about__frame img { transform: scale(1.04); }
.about__frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(21, 27, 20, .28));
}

.about__chip {
  position: absolute; display: flex; align-items: center; gap: .6rem;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: .6rem .85rem; box-shadow: var(--sh-md);
  animation: float 5s var(--ease) infinite alternate;
}
.about__chip--tl { top: 1rem; left: -.6rem; }
.about__chip--br { bottom: 1.4rem; right: -.6rem; animation-delay: -2.5s; }
.about__chip strong { display: block; font-family: var(--font-head); font-size: .84rem; color: var(--text-strong); line-height: 1.25; }
.about__chip span:last-child { font-size: .72rem; color: var(--gold); font-family: var(--font-head); letter-spacing: .06em; }
.about__chip > span[aria-hidden] { font-size: 1.1rem; }
@keyframes float { from { transform: translateY(0); } to { transform: translateY(-8px); } }

.about__body > * + * { margin-top: 1.05rem; }

.quote {
  position: relative; font-style: italic; font-size: 1.08rem; color: var(--forest);
  padding: 1.1rem 1.2rem 1.1rem 2.6rem;
  background: var(--mist); border-radius: var(--r-sm);
  border-left: 3px solid var(--gold);
}
.quote::before {
  content: "\201C"; position: absolute; left: .75rem; top: .35rem;
  font-family: var(--font-body); font-size: 2.6rem; line-height: 1; color: var(--gold); opacity: .55;
}

.pillars { display: grid; gap: .85rem; }
.pillars li { display: flex; gap: .8rem; align-items: flex-start; }
.pillars li > span { color: var(--gold); font-size: .8rem; line-height: 1.9; }
.pillars strong { display: block; font-family: var(--font-head); font-size: .95rem; color: var(--text-strong); }
.pillars div { font-size: .92rem; color: var(--muted); line-height: 1.6; }

.about__actions { display: flex; flex-wrap: wrap; gap: .7rem; }

/* ---------- 8. Certifications ---------- */
.credentials { overflow: hidden; }
.credentials::before {
  content: ""; position: absolute; top: -140px; right: -140px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(180, 136, 74, .18), transparent 68%);
  pointer-events: none;
}

.cert-grid { display: grid; gap: 1.4rem; }

.cert {
  position: relative; overflow: hidden;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--r-lg); padding: 2.4rem 1.5rem 1.75rem;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: transform .45s var(--ease), border-color .4s var(--ease), background-color .4s var(--ease);
}
.cert:hover { transform: translateY(-6px); border-color: rgba(217, 185, 129, .5); background: rgba(255, 255, 255, .08); }
/* Brass hairline that draws across on hover */
.cert::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  transform: scaleX(0); transform-origin: left; transition: transform .6s var(--ease);
}
.cert:hover::after { transform: scaleX(1); }

.cert__ribbon {
  position: absolute; top: 0; left: 0;
  font-family: var(--font-head); font-size: .62rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--forest);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  padding: .38rem 1.1rem; border-radius: 0 0 var(--r-xs) 0;
}

.cert__seal {
  display: grid; place-items: center; width: 66px; height: 66px; margin-bottom: 1.1rem;
  border-radius: 50%; color: var(--gold-soft);
  background: rgba(180, 136, 74, .14);
  border: 1px dashed rgba(217, 185, 129, .45);
  transition: transform .6s var(--spring);
}
.cert:hover .cert__seal { transform: rotate(-8deg) scale(1.05); }

.cert__title { font-size: 1.25rem; color: #fff; margin-bottom: .35rem; }
.cert__inst { font-size: .95rem; color: rgba(255, 255, 255, .74); margin-bottom: .6rem; }
.cert__year {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--font-head); font-size: .74rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; color: var(--gold-soft);
  padding: .3rem .8rem; border-radius: 999px;
  border: 1px solid rgba(217, 185, 129, .35); margin-bottom: 1rem;
}
.cert__year span { font-size: .5rem; }
.cert__desc { font-size: .95rem; color: rgba(255, 255, 255, .74); margin-bottom: 1.2rem; }

.cert__tags { display: flex; flex-wrap: wrap; gap: .45rem; }
.cert__tags li {
  font-family: var(--font-head); font-size: .72rem; color: rgba(255, 255, 255, .8);
  padding: .34rem .8rem; border-radius: 999px;
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .1);
}

.cert__note {
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  margin-top: 2rem; text-align: center; font-size: .92rem;
  color: rgba(255, 255, 255, .7);
}

/* ---------- 9. Classes ---------- */
.cards { display: grid; gap: 1.2rem; }

.card {
  position: relative; overflow: hidden;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 2rem 1.6rem 1.6rem;
  box-shadow: var(--sh-xs);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(420px circle at 50% 0%, rgba(126, 154, 118, .12), transparent 70%);
  opacity: 0; transition: opacity .45s var(--ease);
}
.card:hover { transform: translateY(-7px); box-shadow: var(--sh-md); border-color: var(--sage-soft); }
.card:hover::before { opacity: 1; }

.card__icon {
  position: relative; display: grid; place-items: center;
  width: 56px; height: 56px; font-size: 1.5rem; margin-bottom: 1.1rem;
  border-radius: 18px; background: var(--mist); border: 1px solid var(--line);
  transition: transform .5s var(--spring), border-radius .5s var(--ease);
}
.card:hover .card__icon { transform: translateY(-3px) rotate(-6deg); border-radius: 50%; }

.card__title { position: relative; font-size: 1.16rem; margin-bottom: .5rem; }
.card p { position: relative; font-size: .94rem; color: var(--muted); }
.card__meta {
  position: relative; display: inline-block; margin-top: 1rem;
  font-family: var(--font-head); font-size: .68rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--gold);
  padding-top: .8rem; border-top: 1px solid var(--line); width: 100%;
}

.classes__cta {
  display: grid; gap: 1.2rem; margin-top: 2.25rem; text-align: center;
  padding: 2rem 1.5rem; border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--mist), var(--sand-soft));
  border: 1px solid var(--line);
}
.classes__cta h3 { font-size: 1.2rem; margin-bottom: .35rem; }
.classes__cta p { font-size: .94rem; color: var(--muted); }
.classes__cta .btn { justify-self: center; }

/* ---------- 10. Gallery + lightbox ---------- */
.gallery__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .7rem; }

.gallery__item {
  position: relative; overflow: hidden; cursor: zoom-in;
  border-radius: var(--r-sm); aspect-ratio: 1 / 1; background: var(--mist);
  box-shadow: var(--sh-xs);
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gallery__item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(21, 27, 20, .55));
  opacity: 0; transition: opacity .4s var(--ease);
}
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item:hover::after { opacity: 1; }

.gallery__zoom {
  position: absolute; right: .6rem; bottom: .6rem; z-index: 2;
  display: grid; place-items: center; width: 34px; height: 34px;
  border-radius: 50%; background: rgba(255, 255, 255, .92); color: var(--forest);
  font-size: 1rem; opacity: 0; transform: translateY(8px) scale(.85);
  transition: opacity .35s var(--ease), transform .45s var(--spring);
}
.gallery__item:hover .gallery__zoom { opacity: 1; transform: none; }

.lightbox {
  position: fixed; inset: 0; z-index: 400;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: .5rem;
  padding: 1rem; background: rgba(12, 16, 12, .93);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  opacity: 0; transition: opacity .35s var(--ease);
}
.lightbox[hidden] { display: none; }
.lightbox.is-open { opacity: 1; }
.lightbox__figure { display: grid; justify-items: center; gap: .9rem; max-height: 88vh; }
.lightbox__figure img {
  max-width: 100%; max-height: 76vh; border-radius: var(--r-sm);
  box-shadow: var(--sh-lg); animation: lbIn .45s var(--spring);
}
@keyframes lbIn { from { opacity: 0; transform: scale(.94); } }
.lightbox__figure figcaption {
  font-family: var(--font-head); font-size: .85rem; color: rgba(255, 255, 255, .78); text-align: center;
}
.lightbox__close {
  position: absolute; top: 1rem; right: 1rem; z-index: 2;
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
  color: #fff; background: rgba(255, 255, 255, .12);
  transition: background-color .3s var(--ease), transform .3s var(--spring);
}
.lightbox__close:hover { background: rgba(255, 255, 255, .25); transform: rotate(90deg); }
.lightbox__nav {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  color: #fff; background: rgba(255, 255, 255, .12);
  transition: background-color .3s var(--ease), transform .3s var(--spring);
}
.lightbox__nav:hover { background: rgba(255, 255, 255, .25); transform: scale(1.08); }

/* ---------- 10b. FAQ accordion ----------
   Built on native <details>/<summary>: the answers are real DOM text with no
   JS required, which is what FAQ rich results need. */
.faq__list { display: grid; gap: .75rem; max-width: 820px; margin-inline: auto; }

.faq__item {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-sm); box-shadow: var(--sh-xs);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.faq__item:hover { border-color: var(--sage-soft); }
.faq__item[open] { border-color: var(--sage-soft); box-shadow: var(--sh-sm); }

.faq__item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.2rem; cursor: pointer; list-style: none;
  font-family: var(--font-head); font-size: 1rem; font-weight: 500; color: var(--text-strong);
  transition: color .25s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--forest-2); }
.faq__item[open] summary { color: var(--forest); }

.faq__chevron {
  position: relative; flex: 0 0 26px; height: 26px; border-radius: 50%;
  background: var(--mist); transition: background-color .3s var(--ease), transform .4s var(--spring);
}
.faq__chevron::before, .faq__chevron::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 11px; height: 1.8px; border-radius: 2px; background: var(--forest-2);
  transform: translate(-50%, -50%);
  transition: transform .35s var(--ease), opacity .3s var(--ease);
}
.faq__chevron::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] .faq__chevron { background: var(--forest); transform: rotate(180deg); }
.faq__item[open] .faq__chevron::before,
.faq__item[open] .faq__chevron::after { background: #fff; }
.faq__item[open] .faq__chevron::after { transform: translate(-50%, -50%) rotate(0deg); opacity: 0; }

.faq__answer {
  padding: 0 1.2rem 1.2rem;
  font-size: .95rem; color: var(--muted); line-height: 1.72;
}
.faq__answer p { max-width: 62ch; }
.faq__item[open] .faq__answer { animation: faqIn .4s var(--ease); }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } }

/* ---------- 11. Contact + forms ---------- */
.contact__grid { display: grid; gap: 2.5rem; }

.contact__list { display: grid; gap: 1rem; margin-top: 1.75rem; }
.contact__list li { display: flex; gap: .9rem; align-items: center; }
.contact__icon {
  display: grid; place-items: center; flex: 0 0 44px; height: 44px; border-radius: 14px;
  background: var(--mist); color: var(--forest-2); border: 1px solid var(--line);
  transition: transform .4s var(--spring), background-color .35s var(--ease), color .35s var(--ease);
}
.contact__list li:hover .contact__icon { transform: rotate(-6deg) scale(1.05); background: var(--forest); color: #fff; }
.contact__list strong {
  display: block; font-family: var(--font-head); font-size: .7rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--gold);
}
.contact__list a, .contact__list div > span { font-size: .97rem; color: var(--text-strong); word-break: break-word; }

.contact__assure {
  display: flex; gap: .6rem; align-items: flex-start;
  margin-top: 1.6rem; padding: .85rem 1rem;
  font-size: .85rem; color: var(--muted); line-height: 1.55;
  background: var(--mist); border-radius: var(--r-xs); border: 1px solid var(--line);
}

.form {
  position: relative;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 1.75rem 1.4rem;
  box-shadow: var(--sh-md);
}
.form__title { font-size: 1.15rem; margin-bottom: 1.25rem; }

.form__row { margin-bottom: 1.1rem; }
.form__label {
  display: block; font-family: var(--font-head); font-size: .72rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--text-strong); margin-bottom: .45rem;
}
.form__input {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--text-strong);
  background: var(--cream); border: 1.5px solid var(--line-strong); border-radius: var(--r-xs);
  padding: .85rem 1rem;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease);
}
.form__input::placeholder { color: #A7AC9F; }
.form__input:focus {
  outline: none; background: var(--paper); border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(126, 154, 118, .17);
}
.form__input.is-invalid { border-color: #B5533C; background: #FDF5F2; }
.form__textarea { resize: vertical; min-height: 128px; line-height: 1.65; }

.form__error {
  display: block; min-height: 1.05rem; font-family: var(--font-head);
  font-size: .76rem; color: #B5533C; margin-top: .3rem;
}
.form__honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form__status {
  margin-top: .9rem; font-family: var(--font-head); font-size: .88rem;
  text-align: center; min-height: 1.2rem;
}
.form__status.is-success { color: var(--forest-2); }
.form__status.is-error { color: #B5533C; }

/* ---------- 12. Footer ---------- */
.footer { background: var(--ink); color: rgba(255, 255, 255, .68); }
.footer__inner { display: grid; gap: 2.25rem; padding-block: 3.25rem; }

.brand--light .brand__mark {
  background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .14); color: var(--sage-soft);
}
.brand--light .brand__text strong { color: #fff; }
.brand--light .brand__text em { color: var(--gold-soft); }

.footer__quote {
  margin-top: 1rem; font-style: italic; font-size: .97rem;
  color: rgba(255, 255, 255, .6); max-width: 26rem;
}

.footer__col h4 {
  font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: .9rem;
}
.footer__col ul { display: grid; gap: .5rem; }
.footer__col a { font-size: .93rem; color: rgba(255, 255, 255, .68); }
.footer__col a:hover { color: #fff; }

.footer__social { display: flex; gap: .6rem; margin-top: 1.1rem; }
.social {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
  color: #fff; background: rgba(255, 255, 255, .09);
  transition: background-color .3s var(--ease), transform .35s var(--spring);
}
.social:hover { background: var(--gold); color: #fff; transform: translateY(-3px); }

.footer__bottom { border-top: 1px solid rgba(255, 255, 255, .1); padding-block: 1.1rem; }
.footer__bottom .container {
  display: flex; flex-direction: column; gap: .4rem; align-items: center;
  font-size: .78rem; color: rgba(255, 255, 255, .45); text-align: center;
}

/* ---------- 13. Floating button + modal ---------- */
.fab {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 250;
  display: flex; align-items: center; gap: .6rem;
  height: 58px; padding: 0 1.1rem; border-radius: 999px;
  background: var(--forest); color: #fff; box-shadow: var(--sh-lg);
  opacity: 0; visibility: hidden; transform: translateY(calc(100% + 1.5rem));
  transition: transform .55s var(--spring), opacity .35s var(--ease),
              visibility 0s linear .5s, background-color .3s var(--ease), box-shadow .3s var(--ease);
}
.fab.is-in {
  opacity: 1; visibility: visible; transform: translateY(0);
  transition: transform .55s var(--spring), opacity .35s var(--ease),
              visibility 0s, background-color .3s var(--ease), box-shadow .3s var(--ease);
}
.fab:hover { background: var(--gold); box-shadow: var(--sh-gold); }
.fab__icon { display: grid; place-items: center; }
.fab__label { font-family: var(--font-head); font-size: .9rem; font-weight: 500; white-space: nowrap; }
.fab__pulse {
  position: absolute; inset: 0; border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(126, 154, 118, .6);
  animation: fabPulse 2.8s var(--ease) infinite;
}
@keyframes fabPulse {
  0% { box-shadow: 0 0 0 0 rgba(126, 154, 118, .55); }
  70% { box-shadow: 0 0 0 18px rgba(126, 154, 118, 0); }
  100% { box-shadow: 0 0 0 0 rgba(126, 154, 118, 0); }
}

.modal { position: fixed; inset: 0; z-index: 350; display: grid; place-items: center; padding: 1rem; }
.modal[hidden] { display: none; }

.modal__backdrop {
  position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 50% 0%, rgba(36, 57, 31, .72), rgba(10, 14, 10, .82));
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  opacity: 0; transition: opacity .4s var(--ease);
}
.modal.is-open .modal__backdrop { opacity: 1; }

.modal__panel {
  position: relative; isolation: isolate;
  width: min(880px, 100%); max-height: 92dvh; overflow: hidden auto;
  display: grid; grid-template-columns: 1fr;
  background: var(--cream);
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: var(--r-lg);
  box-shadow: 0 40px 90px rgba(10, 14, 10, .45);
  opacity: 0; transform: translateY(30px) scale(.965);
  transition: opacity .45s var(--ease), transform .55s var(--spring);
}
.modal.is-open .modal__panel { opacity: 1; transform: none; }

.modal__close {
  position: absolute; top: .8rem; right: .8rem; z-index: 4;
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%;
  color: #fff; background: rgba(255, 255, 255, .16);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  transition: background-color .3s var(--ease), transform .4s var(--spring), color .3s var(--ease);
}
.modal__close:hover { background: #fff; color: var(--forest); transform: rotate(90deg); }

/* -- Left rail -- */
.modal__aside {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 1.4rem;
  padding: 2.1rem 1.6rem 1.7rem;
  background: linear-gradient(158deg, var(--forest-2) 0%, var(--forest) 55%, var(--ink) 100%);
  color: rgba(255, 255, 255, .8);
}
.modal__glow { position: absolute; border-radius: 50%; pointer-events: none; }
.modal__glow--a {
  width: 260px; height: 260px; top: -110px; right: -90px;
  background: radial-gradient(circle, rgba(217, 185, 129, .34), transparent 68%);
}
.modal__glow--b {
  width: 230px; height: 230px; bottom: -120px; left: -80px;
  background: radial-gradient(circle, rgba(126, 154, 118, .34), transparent 70%);
}
.modal__aside-top { position: relative; }

.modal__mark {
  display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 1rem;
  border-radius: 50%; color: var(--gold-soft);
  background: rgba(255, 255, 255, .1); border: 1px solid rgba(217, 185, 129, .34);
}
.modal__kicker {
  font-family: var(--font-head); font-size: .64rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: .5rem;
}
.modal__title { font-size: 1.55rem; color: #fff; margin-bottom: .55rem; }
.modal__sub { font-size: .92rem; color: rgba(255, 255, 255, .68); line-height: 1.6; }

.modal__points { position: relative; display: grid; gap: .85rem; }
.modal__points li { display: flex; gap: .7rem; align-items: flex-start; }
.modal__tick {
  display: grid; place-items: center; flex: 0 0 20px; height: 20px; margin-top: .28rem;
  border-radius: 50%; color: var(--forest); background: var(--gold-soft);
}
.modal__points strong {
  display: block; font-family: var(--font-head); font-size: .87rem; font-weight: 500; color: #fff;
}
.modal__points div { font-size: .8rem; color: rgba(255, 255, 255, .58); line-height: 1.5; }

.modal__credential {
  position: relative; margin-top: auto; padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, .14);
  display: flex; align-items: center; gap: .5rem;
  font-family: var(--font-head); font-size: .74rem; letter-spacing: .07em;
  color: var(--gold-soft);
}

/* Condensed trust chips — shown in place of the list on small screens */
.modal__mini { position: relative; display: none; flex-wrap: wrap; gap: .35rem; }
.modal__mini li {
  font-family: var(--font-head); font-size: .68rem; letter-spacing: .03em;
  color: var(--gold-soft); padding: .25rem .6rem; border-radius: 999px;
  background: rgba(255, 255, 255, .1); border: 1px solid rgba(217, 185, 129, .28);
}

/* -- Right rail -- */
.modal__main { padding: 1.9rem 1.5rem 1.6rem; }

/* Floating-label fields */
.field { position: relative; margin-bottom: 1.15rem; }
.field__icon {
  position: absolute; left: .95rem; top: 1.22rem; z-index: 2;
  color: var(--muted); pointer-events: none;
  transition: color .3s var(--ease);
}
.field--area .field__icon { top: 1.15rem; }

.field__input {
  width: 100%; font-family: var(--font-body); font-size: .98rem; color: var(--text-strong);
  background: var(--paper); border: 1.5px solid var(--line-strong); border-radius: var(--r-sm);
  padding: 1.5rem 1rem .6rem 2.9rem;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field--area .field__input { min-height: 118px; resize: vertical; line-height: 1.6; padding-top: 1.7rem; }
.field__input:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(180, 136, 74, .16);
}
.field__input:focus ~ .field__icon { color: var(--gold); }
.field__input.is-invalid { border-color: #B5533C; background: #FDF6F3; }

.field__label {
  position: absolute; left: 2.9rem; top: 1.05rem;
  font-family: var(--font-head); font-size: .95rem; color: var(--muted);
  pointer-events: none; transform-origin: left center;
  transition: transform .28s var(--ease), color .28s var(--ease);
}
.field__input:focus + .field__label,
.field__input:not(:placeholder-shown) + .field__label {
  transform: translateY(-.72rem) scale(.74);
  color: var(--gold);
}
.field--area .field__input:focus + .field__label,
.field--area .field__input:not(:placeholder-shown) + .field__label {
  transform: translateY(-.62rem) scale(.74);
}

/* No reserved gaps in the dialog — error and status rows take space only when used */
.form--modal .form__error,
.form--modal .form__status { min-height: 0; margin-top: 0; }
.form--modal .form__error:not(:empty) { margin-top: .3rem; }
.form--modal .form__status:not(:empty) { margin-top: .7rem; }

.modal__privacy {
  display: flex; align-items: center; justify-content: center; gap: .45rem;
  margin-top: .9rem; font-size: .78rem; color: var(--muted);
}
.modal__alt {
  margin-top: .55rem; padding-top: .85rem; border-top: 1px solid var(--line);
  text-align: center; font-size: .85rem; color: var(--muted);
}

/* -- Success state -- */
.modal__success {
  position: absolute; inset: 0; z-index: 5;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .5rem; padding: 2.5rem 1.75rem; text-align: center;
  background: var(--cream);
  opacity: 0; transition: opacity .4s var(--ease);
}
.modal__success[hidden] { display: none; }
.modal__success.is-in { opacity: 1; }
.modal__success h3 { font-size: 1.5rem; }
.modal__success h3:focus { outline: none; }
.modal__success p { font-size: .95rem; color: var(--muted); max-width: 24rem; }
.modal__success-note { font-size: .82rem !important; color: var(--sage) !important; margin-top: .35rem; }

.modal__check { color: var(--forest-3); margin-bottom: .75rem; }
.modal__check-ring {
  stroke-dasharray: 145; stroke-dashoffset: 145;
  animation: drawRing .7s var(--ease) forwards;
}
.modal__check-tick {
  stroke-dasharray: 40; stroke-dashoffset: 40; color: var(--gold);
  animation: drawTick .45s var(--ease) .45s forwards;
}
@keyframes drawRing { to { stroke-dashoffset: 0; } }
@keyframes drawTick { to { stroke-dashoffset: 0; } }

/* ---------- 14. Scroll reveal ----------
   Scoped to .js: if the script never runs, content is simply visible. */
.js [data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.js [data-reveal].is-visible { opacity: 1; transform: none; }

/* ==========================================================================
   Media queries — mobile-first, enhancing upward
   ========================================================================== */

/* Small screens: strip the dialog to essentials so it fits without scrolling.
   The prose intro and the full points list give way to a row of chips —
   the points stay in the DOM for screen readers via the desktop markup. */
@media (max-width: 599px), (max-height: 660px) {
  .modal { padding: .5rem; }
  .modal__panel { max-height: calc(100dvh - 1rem); }

  .modal__aside { padding: 1.35rem 1.15rem 1.15rem; gap: .8rem; }
  .modal__mark { width: 34px; height: 34px; margin-bottom: .55rem; }
  .modal__kicker { font-size: .6rem; margin-bottom: .35rem; }
  .modal__title { font-size: 1.28rem; margin-bottom: 0; }
  .modal__sub, .modal__points, .modal__credential { display: none; }
  .modal__mini { display: flex; }

  .modal__main { padding: 1.25rem 1.15rem 1.1rem; }
  .field { margin-bottom: .65rem; }
  .field__input { font-size: .94rem; padding: 1.3rem .9rem .5rem 2.7rem; }
  .field--area .field__input { min-height: 72px; padding-top: 1.45rem; }
  .field__icon { left: .85rem; top: 1.05rem; }
  .field__label { left: 2.7rem; top: .9rem; font-size: .9rem; }

  .modal__main .btn { padding: .8rem 1.5rem; }
  .modal__privacy { margin-top: .6rem; font-size: .71rem; }
  .modal__alt { margin-top: .35rem; padding-top: .55rem; font-size: .79rem; }
}

@media (min-width: 560px) {
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { gap: 1rem; }
  .classes__cta { grid-template-columns: 1fr auto; text-align: left; align-items: center; padding: 2rem; }
  .classes__cta .btn { justify-self: end; }
  .hero__creds { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom .container { flex-direction: row; justify-content: space-between; text-align: left; }
}

@media (min-width: 768px) {
  :root { --gutter: 2rem; }

  .section { padding: 6.25rem 0; }
  .trust { padding: 3.5rem 0; }
  .trust__grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
  .cards { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
  .cert { padding: 2.75rem 2rem 2rem; }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .form { padding: 2.25rem 2rem; }

  /* Two-rail booking dialog */
  .modal__panel { grid-template-columns: .82fr 1fr; overflow: hidden; }
  .modal__aside { padding: 2.5rem 1.9rem 1.9rem; }
  .modal__main { padding: 2.5rem 2.1rem 1.9rem; overflow-y: auto; }
  .modal__close { color: var(--text); background: var(--mist); }
  .modal__close:hover { background: var(--forest); color: #fff; }

  .about__grid { grid-template-columns: .85fr 1.15fr; align-items: center; gap: 3.75rem; }
  .about__media { margin-inline: 0; }
  .about__frame::before {
    content: ""; position: absolute; inset: 0; z-index: 2;
    border: 1px solid rgba(255, 255, 255, .35); border-radius: inherit; pointer-events: none;
  }
  .about__media::before {
    content: ""; position: absolute; inset: -16px -16px 28px 28px;
    border: 1.5px solid var(--sage-soft); border-radius: var(--r-xl); z-index: -1;
  }

  .contact__grid { grid-template-columns: 1fr 1.05fr; gap: 3.25rem; align-items: start; }
  .hero__creds { grid-template-columns: repeat(3, 1fr); padding: 1.15rem 1.35rem; }
  .footer__inner { grid-template-columns: 1.6fr 1fr 1.2fr; gap: 3rem; }
  .fab { right: 1.75rem; bottom: 1.75rem; }
}

@media (min-width: 992px) {
  :root { --nav-h: 82px; }

  .nav__toggle, .nav-backdrop { display: none; }

  .nav__menu {
    position: static; width: auto; height: auto; padding: 0;
    background: none; box-shadow: none; overflow: visible;
    flex-direction: row; align-items: center; gap: .15rem; transform: none;
  }
  .nav__link {
    position: relative; padding: .5rem .85rem; border-bottom: none; font-size: .88rem;
  }
  .nav__link:hover { padding-left: .85rem; }
  .nav__link::after {
    content: ""; position: absolute; left: .85rem; right: .85rem; bottom: .1rem; height: 1.5px;
    border-radius: 2px; background: var(--gold);
    transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
  }
  .nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
  .nav__cta { margin: 0 0 0 .8rem; padding: .68rem 1.4rem; font-size: .86rem; }
  .nav__cta::after { display: none; }
  .nav__cta:hover { padding-left: 1.4rem; transform: translateY(-2px); }

  .cards { grid-template-columns: repeat(3, 1fr); }
  .hero__inner { max-width: 820px; }
  .section__head { margin-bottom: 3.25rem; }
}

/* ---------- Accessibility & print ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  [data-reveal], [data-anim] { opacity: 1 !important; transform: none !important; }
  .hero__bg { animation: none; }
  .fab { transform: none !important; }
}

@media print {
  .navbar, .progress, .hero__scroll, .nav-backdrop, .gallery, .form,
  .fab, .modal, .lightbox { display: none !important; }
  body { background: #fff; color: #000; }
  .hero { min-height: auto; background: none; }
  .hero__bg, .hero__veil { display: none; }
  .hero__title, .hero__subtitle, .hero__eyebrow, .hero__creds strong { color: #000; text-shadow: none; }
  .section--dark { background: #fff; color: #000; }
  .cert__title, .h2--light { color: #000; }
  [data-reveal], [data-anim] { opacity: 1 !important; transform: none !important; }
}
