@charset "utf-8";
/* ==========================================================================
   Lilly Haddad — Corporate Flight Attendant
   One stylesheet. Tokens first, then layers. No !important stacking.

   The whole system is lifted from her own materials:
     · navy / deep navy      her résumé headers, her jet's cheatline
     · gold                  her script wordmark and its hairline rules
     · red                   the accent stripe on her jet
     · ──── ◆ ────           the divider used on every page of her menus
     · tracked navy caps     exactly how her résumé sets section headings
   ========================================================================== */

/* ------------------------------------------------------------- 1. fonts -- */
/* Self-hosted latin subsets. No Google Fonts request at runtime. */
@font-face{font-family:'EB Garamond';font-style:italic;font-weight:400;font-display:swap;src:url('../fonts/ebgaramond-400-italic-latin.woff2') format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}
@font-face{font-family:'EB Garamond';font-style:normal;font-weight:400;font-display:swap;src:url('../fonts/ebgaramond-400-latin.woff2') format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}
@font-face{font-family:'EB Garamond';font-style:normal;font-weight:600;font-display:swap;src:url('../fonts/ebgaramond-600-latin.woff2') format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}
@font-face{font-family:'Italianno';font-style:normal;font-weight:400;font-display:swap;src:url('../fonts/italianno-400-latin.woff2') format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}

/* ------------------------------------------------------------ 2. tokens -- */
:root {
  /* palette */
  --navy:      #183a62;
  --deep:      #0d2744;
  --deeper:    #081b31;
  --gold:      #c79a45;
  --gold-lt:   #e4c684;
  --gold-dp:   #9d7529;
  --red:       #b4232f;
  --sky:       #dff2ff;
  --sky-2:     #f4fbff;
  --ink:       #1d2b3c;
  --ink-soft:  #4e6480;
  --line:      #ccdbe8;
  --white:     #ffffff;

  /* type */
  --script: "Italianno", "Segoe Script", cursive;
  --serif:  "EB Garamond", Georgia, "Times New Roman", serif;
  --label:  "EB Garamond", Georgia, serif;

  /* scale */
  --step--1: clamp(.82rem, .80rem + .12vw, .90rem);
  --step-0:  clamp(1.02rem, .99rem + .18vw, 1.14rem);
  --step-1:  clamp(1.22rem, 1.14rem + .38vw, 1.45rem);
  --step-2:  clamp(1.52rem, 1.36rem + .72vw, 2.05rem);
  --step-3:  clamp(1.95rem, 1.64rem + 1.35vw, 2.95rem);
  --step-4:  clamp(2.45rem, 1.86rem + 2.6vw, 4.2rem);

  /* geometry */
  --pad:     clamp(1.15rem, .6rem + 3vw, 3.4rem);
  --radius:  22px;
  --radius-s: 14px;
  --shell:   min(1180px, 100% - 2.2rem);
  --tabbar:  68px;

  /* motion */
  --ease: cubic-bezier(.22, .61, .36, 1);

  /* glass — her "clear glass bubbles" */
  --glass-bg:     rgba(255, 255, 255, .34);
  --glass-bg-on:  rgba(255, 255, 255, .58);
  --glass-brd:    rgba(255, 255, 255, .72);
  --glass-shadow: 0 10px 26px rgba(13, 39, 68, .20), 0 2px 6px rgba(13, 39, 68, .12);

  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  min-height: 100%;
  font-family: var(--serif);
  font-size: var(--step-0);
  line-height: 1.68;
  color: var(--ink);
  background-color: #eaf4fc;          /* painted, never inherited */
  background-image:
    linear-gradient(to bottom, rgba(233, 246, 255, .72), rgba(248, 252, 255, .94)),
    url("../img/sky-soft.jpg");
  background-size: cover, cover;
  background-position: center, center top;
  background-attachment: fixed, fixed;
  overflow-x: hidden;
  padding-bottom: env(safe-area-inset-bottom);
}

/* the live sky: fixed to the viewport, behind everything, one per session.
   Fades in over the CSS sky above so there is never a flash of empty blue. */
.skybg {
  position: fixed;
  inset: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
  pointer-events: none;
}
.skybg.is-live { opacity: 1; }
.no-js .skybg { display: none; }

/* faint film grain so large flat areas have some tooth */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("../img/grain.png");
  background-size: 160px;
  opacity: .32;
  mix-blend-mode: soft-light;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration-color: rgba(199, 154, 69, .6); text-underline-offset: .18em; }
a:hover { color: var(--deep); }

:where(:focus-visible) {
  outline: 2.5px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --------------------------------------------------------- 3. type ------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--deep);
  font-weight: 600;
  line-height: 1.16;
  margin: 0 0 .6em;
  letter-spacing: -.005em;
}
h1 { font-size: var(--step-3); }
h2 { font-size: var(--step-2); }
h3 { font-size: var(--step-1); }
h4 { font-size: var(--step-0); }
p  { margin: 0 0 1.05em; max-width: 68ch; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: var(--step-1);
  line-height: 1.6;
  color: #24384f;
}

/* her résumé's section heading: small navy caps, wide tracking */
.eyebrow {
  font-family: var(--label);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 .9rem;
  display: block;
}
.eyebrow--gold { color: var(--gold-dp); }

.script {
  font-family: var(--script);
  font-weight: 400;
  line-height: .92;
  letter-spacing: .01em;
  color: var(--gold);
}

.quiet { color: var(--ink-soft); }
.small { font-size: var(--step--1); }

/* Centred blocks: the 68ch cap above is a left-aligned box, so it has to be
   released here or centred text sits off-centre in a wide container. */
.center { text-align: center; }
.center p, .center .lead { max-width: none; }
.center .rule { max-width: 32rem; margin-inline: auto; }

/* ─── ◆ ─── the divider from her own menu documents */
.rule {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin: 1.6rem 0;
  color: var(--gold);
}
.rule::before, .rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(199, 154, 69, .62), transparent);
}
.rule__gem {
  width: 8px; height: 8px;
  flex: none;
  background: var(--gold);
  transform: rotate(45deg);
}
.rule--tight { margin: 1rem 0; }
.rule--left::before { flex: 0 0 0; }

/* --------------------------------------------------------- 4. layout ----- */
.shell { width: var(--shell); margin-inline: auto; }

main {
  position: relative;
  z-index: 1;
  padding-bottom: calc(var(--tabbar) + 2.4rem);
}
@media (min-width: 900px) {
  main { padding-bottom: 3rem; }
}

.section { padding: clamp(2.6rem, 5vw, 4.6rem) 0; }
.section--tight { padding: clamp(1.6rem, 3vw, 2.6rem) 0; }

.panel {
  background: rgba(255, 255, 255, .93);
  border: 1px solid rgba(255, 255, 255, .9);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .9) inset,
    0 18px 48px rgba(24, 58, 98, .13),
    0 2px 8px rgba(24, 58, 98, .07);
  border-radius: var(--radius);
  padding: var(--pad);
  position: relative;
  overflow: hidden;
}
/* linen tooth, echoing the paper of her printed menus */
.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("../img/paper.png");
  background-size: 256px;
  opacity: .55;
}
.panel > * { position: relative; }
.panel--gold { border-top: 3px solid var(--gold); }

.grid { display: grid; gap: clamp(1rem, 2vw, 1.6rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 19rem), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr)); }
.grid--split { grid-template-columns: 1fr; }
@media (min-width: 880px) {
  .grid--split { grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(1.6rem, 4vw, 3.4rem); }
  .grid--split.is-reversed > :first-child { order: 2; }
}

/* ----------------------------------------------- 5. glass bubbles -------- */
/* Her ask, verbatim: "we need bubbles for the buttons, clear glass bubbles" */
.bubble {
  --bubble-fg: var(--deep);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .82em 1.5em;
  border-radius: 999px;
  border: 1px solid var(--glass-brd);
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, .62), rgba(255, 255, 255, .12) 48%, rgba(255, 255, 255, .30)),
    var(--glass-bg);
  -webkit-backdrop-filter: blur(14px) saturate(1.5);
  backdrop-filter: blur(14px) saturate(1.5);
  box-shadow: var(--glass-shadow);
  color: var(--bubble-fg);
  font-family: var(--label);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  isolation: isolate;
  overflow: hidden;            /* clips the sheen sweep to the bubble */
  transition: transform .34s var(--ease), box-shadow .34s var(--ease),
              background-color .34s var(--ease);
}
/* the specular highlight across the crown of the bubble */
.bubble::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 1px 1px auto;
  height: 46%;
  border-radius: 999px 999px 60% 60% / 999px 999px 100% 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, .80), rgba(255, 255, 255, 0));
  pointer-events: none;
}
/* a slow sheen that sweeps on hover */
.bubble::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(105deg, transparent 28%, rgba(255, 255, 255, .62) 46%, transparent 62%);
  transform: translateX(-120%);
  transition: transform .8s var(--ease);
  pointer-events: none;
}
.bubble:hover, .bubble:focus-visible {
  transform: translateY(-2px);
  background-color: var(--glass-bg-on);
  box-shadow: 0 16px 34px rgba(13, 39, 68, .26), 0 3px 8px rgba(13, 39, 68, .14);
}
.bubble:hover::after, .bubble:focus-visible::after { transform: translateX(120%); }
.bubble:active { transform: translateY(0) scale(.985); }

.bubble--gold {
  --bubble-fg: #2a1d05;
  border-color: rgba(255, 238, 200, .85);
  background:
    linear-gradient(to bottom, rgba(255, 252, 240, .72), rgba(255, 230, 175, .30) 50%, rgba(214, 170, 82, .42)),
    rgba(226, 190, 118, .46);
}
.bubble--navy {
  --bubble-fg: #f2f8ff;
  border-color: rgba(154, 190, 225, .55);
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, .34), rgba(24, 58, 98, .12) 50%, rgba(8, 27, 49, .40)),
    rgba(20, 50, 86, .58);
}
.bubble--navy::before { background: linear-gradient(to bottom, rgba(255, 255, 255, .46), rgba(255, 255, 255, 0)); }
.bubble--sm { padding: .6em 1.1em; font-size: .74rem; }
.bubble--block { display: flex; width: 100%; }

@media (prefers-reduced-motion: reduce) {
  .bubble, .bubble::after { transition: none; }
  .bubble:hover { transform: none; }
}
/* graceful degradation where backdrop-filter is unsupported */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .bubble { background-color: rgba(255, 255, 255, .86); }
  .bubble--navy { background-color: rgba(20, 50, 86, .92); }
}

/* --------------------------------------------------------- 6. app shell -- */
.masthead {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: .6rem 0;
  background: linear-gradient(to bottom, rgba(244, 251, 255, .92), rgba(244, 251, 255, .55));
  -webkit-backdrop-filter: blur(12px) saturate(1.3);
  backdrop-filter: blur(12px) saturate(1.3);
  border-bottom: 1px solid rgba(199, 154, 69, .28);
}
.masthead__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: .55rem;
  text-decoration: none;
  white-space: nowrap;
}
.brand__mark { font-family: var(--script); font-size: 2.1rem; color: var(--gold); line-height: 1; }
.brand__sub {
  font-family: var(--label);
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--navy);
}
@media (max-width: 560px) { .brand__sub { display: none; } }

.nav { display: none; gap: .3rem; align-items: center; }
@media (min-width: 900px) { .nav { display: flex; } }
.nav__link {
  font-family: var(--label);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  padding: .62rem .82rem;
  border-radius: 999px;
  transition: background-color .25s var(--ease), color .25s var(--ease);
}
.nav__link:hover { background: rgba(199, 154, 69, .16); }
.nav__link[aria-current="page"] {
  color: var(--deep);
  background: rgba(255, 255, 255, .72);
  box-shadow: inset 0 0 0 1px rgba(199, 154, 69, .5);
}

/* mobile: fixed glass tab bar, the "press into menus" surface */
.tabbar {
  position: fixed;
  z-index: 45;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(.5rem + env(safe-area-inset-bottom));
  width: min(31rem, calc(100% - 1.2rem));
  display: flex;
  justify-content: space-between;
  gap: .15rem;
  padding: .4rem;
  border-radius: 999px;
  border: 1px solid var(--glass-brd);
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, .58), rgba(255, 255, 255, .22)),
    rgba(240, 249, 255, .62);
  -webkit-backdrop-filter: blur(18px) saturate(1.6);
  backdrop-filter: blur(18px) saturate(1.6);
  box-shadow: 0 12px 30px rgba(13, 39, 68, .22);
}
@media (min-width: 900px) { .tabbar { display: none; } }
.tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .14rem;
  min-height: 56px;
  padding: .3rem .1rem;
  border-radius: 999px;
  text-decoration: none;
  color: var(--navy);
  font-family: var(--label);
  font-size: .56rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background-color .25s var(--ease);
}
.tab svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.tab[aria-current="page"] {
  color: var(--deep);
  background: rgba(255, 255, 255, .78);
  box-shadow: inset 0 0 0 1px rgba(199, 154, 69, .45);
}
.tab:active { background: rgba(199, 154, 69, .2); }

/* swipe affordance shown briefly on first mobile visit */
.swipe-hint {
  position: fixed;
  z-index: 44;
  left: 50%;
  bottom: calc(var(--tabbar) + 1.4rem + env(safe-area-inset-bottom));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem .95rem;
  border-radius: 999px;
  background: rgba(13, 39, 68, .78);
  color: #eaf4ff;
  font-family: var(--label);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  animation: hintOut 4.2s var(--ease) forwards;
  pointer-events: none;
}
@keyframes hintOut {
  0%, 12% { opacity: 0; transform: translate(-50%, 8px); }
  22%, 72% { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, -6px); }
}
@media (min-width: 900px), (prefers-reduced-motion: reduce) { .swipe-hint { display: none; } }

/* view transitions between pages */
@media (prefers-reduced-motion: no-preference) {
  ::view-transition-old(page) { animation: vtOut .26s var(--ease) both; }
  ::view-transition-new(page) { animation: vtIn .34s var(--ease) both; }
}
@keyframes vtOut { to { opacity: 0; transform: translateY(-8px) scale(.994); } }
@keyframes vtIn { from { opacity: 0; transform: translateY(10px) scale(.994); } }
main { view-transition-name: page; }

/* fallback swap animation when the View Transitions API is absent */
.is-leaving main { opacity: 0; transform: translateY(-8px); }
main { transition: opacity .22s var(--ease), transform .22s var(--ease); }
@media (prefers-reduced-motion: reduce) {
  main { transition: none; }
  .is-leaving main { opacity: 1; transform: none; }
}

/* --------------------------------------------------------- 7. the hero --- */
.hero {
  position: relative;
  min-height: min(92svh, 860px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
/* a scrim, so the gold wordmark stays legible over bright cloud */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(112% 78% at 50% 52%, rgba(10, 32, 58, .40), transparent 70%),
    linear-gradient(to bottom, rgba(10, 32, 58, .22), transparent 30%);
}
.hero__in {
  width: var(--shell);
  margin-inline: auto;
  padding: clamp(3.4rem, 10vh, 7rem) 0 clamp(2.4rem, 7vh, 4.5rem);
  text-align: center;
}
.hero__in p { max-width: none; }
.hero__mark {
  font-size: var(--step-4);
  font-family: var(--script);
  color: #f6dfa8;
  margin: 0;
  text-shadow: 0 2px 2px rgba(8, 27, 49, .34), 0 14px 38px rgba(8, 27, 49, .45);
}
.hero__title {
  font-family: var(--label);
  font-size: clamp(.78rem, .62rem + .62vw, 1.05rem);
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #fff;
  margin: .5rem 0 0;
  text-shadow: 0 1px 10px rgba(8, 27, 49, .6);
}
.hero__tag {
  font-size: var(--step-0);
  color: #e8f3fc;
  margin: .2rem 0 0;
  text-shadow: 0 1px 12px rgba(8, 27, 49, .72);
}
.hero .rule { color: #f0d69a; max-width: 30rem; margin-inline: auto; }
.hero .rule::before, .hero .rule::after {
  background: linear-gradient(to right, transparent, rgba(244, 216, 154, .8), transparent);
}
.hero .rule__gem { background: #f0d69a; }
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  justify-content: center;
  margin-top: 1.9rem;
}
.hero__cta.u-left { justify-content: flex-start; }
.hero__scroll {
  position: absolute;
  bottom: calc(var(--tabbar) + .8rem);
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .8);
  font-family: var(--label);
  font-size: .6rem;
  letter-spacing: .24em;
  text-transform: uppercase;
}
@media (min-width: 900px) { .hero__scroll { bottom: 1.4rem; } }

/* ------------------------------------------------ 7b. the plane banner -- */
/* A wide band carrying her own aircraft photograph with a tagline over it.
   Held to the shell width so the image renders close to its native pixels
   rather than being stretched full-bleed. */
.band {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  background: #0d2744;
  box-shadow: 0 22px 54px rgba(13, 39, 68, .28);
  border: 1px solid rgba(199, 154, 69, .38);
}
.band img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: 50% 20%;
  display: block;
}
@media (max-width: 700px) {
  .band img { aspect-ratio: 4 / 5; object-position: 56% 16%; }
}
.band::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(7, 22, 40, .86) 2%, rgba(7, 22, 40, .34) 34%, transparent 62%),
    linear-gradient(to right, rgba(7, 22, 40, .48), transparent 58%);
}
.band__copy {
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  padding: clamp(1.2rem, 4vw, 2.9rem);
  text-align: left;
}
.band__tag {
  font-family: var(--script);
  font-size: clamp(2.1rem, 1.3rem + 3.6vw, 4.1rem);
  line-height: .94;
  color: #f6dfa8;
  margin: 0;
  text-shadow: 0 2px 3px rgba(5, 17, 32, .55), 0 12px 34px rgba(5, 17, 32, .5);
}
.band__sub {
  font-family: var(--label);
  font-size: clamp(.64rem, .55rem + .34vw, .82rem);
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #eaf3fb;
  margin: .55rem 0 0;
  max-width: min(36rem, 100%);
  text-shadow: 0 1px 8px rgba(5, 17, 32, .8);
}
.band__rule {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin: .75rem 0 0;
  max-width: 17rem;
}
.band__rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(244, 216, 154, .85), transparent);
}
.band__rule i {
  width: 7px; height: 7px;
  flex: none;
  background: #f0d69a;
  transform: rotate(45deg);
}

/* ------------------------------------------------------- 8. components -- */
/* credibility tiles on the home page */
.fact {
  text-align: center;
  padding: 1.5rem 1.1rem;
  border-radius: var(--radius-s);
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(199, 154, 69, .3);
}
.fact__n {
  font-family: var(--serif);
  font-size: var(--step-2);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.1;
  display: block;
}
.fact__n--sm { font-size: var(--step-1); }
.fact__k {
  font-family: var(--label);
  font-size: .64rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: .4rem;
  display: block;
}

/* photo frames */
.figure { margin: 0; }
.figure img {
  width: 100%;
  border-radius: var(--radius-s);
  box-shadow: 0 14px 36px rgba(13, 39, 68, .2);
  background: #dce8f2;
}
.figure figcaption {
  font-family: var(--label);
  font-size: var(--step--1);
  color: var(--ink-soft);
  margin-top: .6rem;
  font-style: italic;
}
.figure--portrait img { aspect-ratio: 4 / 5; object-fit: cover; }
.figure--tall img { aspect-ratio: 3 / 4; object-fit: cover; }
.figure--gold img { border: 1px solid rgba(199, 154, 69, .45); }

/* the gallery */
.gallery { display: grid; gap: .8rem; grid-template-columns: repeat(auto-fill, minmax(min(100%, 15rem), 1fr)); }
.gallery--events { grid-template-columns: repeat(auto-fill, minmax(min(100%, 12rem), 1fr)); }
.shot {
  position: relative;
  margin: 0;
  border: 0;
  padding: 0;
  background: #dce8f2;
  border-radius: var(--radius-s);
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 4 / 3;
  box-shadow: 0 8px 22px rgba(13, 39, 68, .15);
}
.shot img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease);
}
.shot:hover img, .shot:focus-visible img { transform: scale(1.055); }
.shot__cap {
  position: absolute;
  inset: auto 0 0;
  padding: 1.6rem .8rem .55rem;
  background: linear-gradient(to top, rgba(8, 27, 49, .76), transparent);
  color: #f1f7fc;
  font-family: var(--label);
  font-size: .68rem;
  letter-spacing: .06em;
  text-align: left;
  line-height: 1.3;
}
.shot--portrait { aspect-ratio: 4 / 5; }

/* lightbox */
.lightbox:not([open]) { display: none; }
.lightbox[open] {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1rem;
  border: 0;
  background: rgba(6, 20, 37, .88);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.lightbox::backdrop { background: rgba(6, 20, 37, .82); }
.lightbox img {
  max-width: min(96vw, 1200px);
  max-height: 86svh;
  width: auto;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .55);
}
.lightbox__cap {
  color: #dbe8f3;
  font-family: var(--label);
  font-size: var(--step--1);
  text-align: center;
  margin: .8rem auto 0;       /* auto, or the capped box sits left of a wider image */
  max-width: 44rem;
}
.lightbox__x {
  position: fixed;
  top: 1rem; right: 1rem;
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .4);
  background: rgba(255, 255, 255, .16);
  color: #fff;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

/* menu tabs — "you press into menus" */
.mtabs {
  display: flex;
  gap: .45rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: .3rem .1rem 1rem;
  margin: 0 calc(var(--pad) * -1);
  padding-inline: var(--pad);
  scrollbar-width: none;
}
.mtabs::-webkit-scrollbar { display: none; }
.mtab {
  flex: none;
  scroll-snap-align: start;
  padding: .6em 1.1em;
  border-radius: 999px;
  border: 1px solid rgba(199, 154, 69, .38);
  background: rgba(255, 255, 255, .6);
  color: var(--navy);
  font-family: var(--label);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color .25s var(--ease), color .25s var(--ease);
}
.mtab:hover { background: rgba(255, 255, 255, .9); }
.mtab[aria-selected="true"] {
  background: var(--deep);
  border-color: var(--deep);
  color: #f6e6c2;
}

.mpanel[hidden] { display: none; }
.mpanel { animation: fadeUp .34s var(--ease) both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } }
@media (prefers-reduced-motion: reduce) { .mpanel { animation: none; } }

/* menu listing — not a data table, a menu: name + service note */
.menu { list-style: none; margin: 0; padding: 0; }
.menu > div {
  display: grid;
  gap: .15rem .9rem;
  padding: .95rem 0;
  border-bottom: 1px solid var(--line);
}
.menu > div:last-child { border-bottom: 0; }
@media (min-width: 720px) {
  .menu > div { grid-template-columns: minmax(10rem, 15rem) 1fr; align-items: baseline; }
}
.menu dt, .menu__n {
  font-weight: 600;
  color: var(--deep);
  font-size: var(--step-0);
}
.menu dd, .menu__d { margin: 0; color: var(--ink-soft); font-size: var(--step--1); line-height: 1.6; }

/* résumé */
.cv { display: grid; gap: clamp(1.4rem, 3vw, 2.6rem); }
.cv > * { min-width: 0; }
@media (min-width: 900px) { .cv { grid-template-columns: 1fr 19rem; align-items: start; } }
.cv__aside { display: grid; gap: 1.5rem; align-content: start; }
.cv__block + .cv__block { margin-top: 1.9rem; }
.cv h3 {
  font-family: var(--label);
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--navy);
  padding-bottom: .45rem;
  border-bottom: 1px solid rgba(199, 154, 69, .55);
  margin-bottom: .95rem;
}
.role { margin-bottom: 1.4rem; }
.role__h { display: flex; flex-wrap: wrap; align-items: baseline; gap: .3rem .7rem; }
.role__org { font-weight: 600; color: var(--deep); letter-spacing: .04em; text-transform: uppercase; font-size: var(--step--1); }
.role__yr { color: var(--ink-soft); font-size: var(--step--1); }
.role__t { font-style: italic; color: var(--navy); margin: .1rem 0 .5rem; }
.ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: .42rem; }
.ticks li { padding-left: 1.05rem; position: relative; font-size: var(--step--1); line-height: 1.6; }
.ticks li::before {
  content: "";
  position: absolute;
  left: 0; top: .58em;
  width: 5px; height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
}
.chips { display: flex; flex-wrap: wrap; gap: .34rem; list-style: none; margin: 0; padding: 0; }
.chips li {
  min-width: 0;
  overflow-wrap: anywhere;
  font-family: var(--label);
  font-size: .7rem;
  letter-spacing: .06em;
  padding: .3em .7em;
  border-radius: 999px;
  background: rgba(223, 242, 255, .9);
  border: 1px solid rgba(24, 58, 98, .14);
  color: var(--navy);
}
.chips--gold li { background: rgba(251, 243, 226, .95); border-color: rgba(199, 154, 69, .38); }

/* the client welcome card, from her own onboarding document */
.welcome {
  border: 1px solid rgba(199, 154, 69, .5);
  border-radius: var(--radius-s);
  padding: clamp(1.2rem, 3vw, 2.2rem);
  background: linear-gradient(150deg, rgba(255, 255, 255, .97), rgba(228, 244, 255, .82));
}
.slots { display: grid; gap: .2rem 1.6rem; margin: 1.2rem 0 0; }
@media (min-width: 620px) { .slots { grid-template-columns: 1fr 1fr; } }
.slots > div {
  display: flex;
  justify-content: space-between;
  gap: .6rem;
  align-items: baseline;
  padding: .55rem 0;
  border-bottom: 1px dotted #a9c1d6;
  font-size: var(--step--1);
}
.slots b { color: var(--navy); font-weight: 600; white-space: nowrap; }
.slots span { flex: 1; border-bottom: 1px solid transparent; min-width: 3rem; }
.signature { font-family: var(--script); font-size: 2.6rem; color: var(--gold); line-height: 1; margin-top: 1rem; }

/* contact */
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .1rem; }
.contact-list li { padding: .85rem 0; border-bottom: 1px solid var(--line); }
.contact-list li:last-child { border-bottom: 0; }
.contact-list a { font-size: var(--step-1); text-decoration: none; font-weight: 600; }

.field { display: grid; gap: .35rem; margin-bottom: 1rem; }
.field label {
  font-family: var(--label);
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
}
.field input, .field textarea, .field select {
  font: inherit;
  font-size: var(--step-0);
  color: var(--ink);
  padding: .7rem .85rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, .92);
  width: 100%;
}
.field textarea { min-height: 7.5rem; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--gold);
  outline: 2px solid rgba(199, 154, 69, .28);
  outline-offset: 0;
}

/* footer */
.foot {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2.6rem 1rem calc(var(--tabbar) + 1.6rem);
  color: var(--ink-soft);
  font-size: var(--step--1);
}
@media (min-width: 900px) { .foot { padding-bottom: 2.6rem; } }
.foot p { max-width: none; }
.foot a { color: var(--navy); }
.foot__mark { font-family: var(--script); font-size: 2rem; color: var(--gold); display: block; margin-bottom: .2rem; }

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: .7rem 1.1rem;
  background: var(--deep);
  color: #fff;
  border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; }

.sr {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Scroll-reveal, opt-in.

   Content is visible by default and only hidden once shell.js has confirmed it
   can actually reveal it again (by setting .has-reveal on <html>). Hiding first
   and revealing later would leave the page blank if the script ever failed
   between the two. */
.has-reveal .reveal { opacity: 0; transform: translateY(18px); }
.has-reveal .reveal.is-in {
  opacity: 1;
  transform: none;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
@media (prefers-reduced-motion: reduce) {
  .has-reveal .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------- 9. print ----- */
@media print {
  :root { --pad: 0; }
  body {
    background: #fff;
    color: #000;
    font-size: 10.5pt;
    line-height: 1.42;
  }
  body::after, .masthead, .tabbar, .hero, .foot, .swipe-hint,
  .bubble, .skip, .no-print { display: none !important; }
  main { padding: 0; }
  .panel {
    box-shadow: none;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: #fff;
  }
  .panel::before { display: none; }
  .shell { width: 100%; }
  .section { padding: 0; }
  .cv { grid-template-columns: 1fr 35%; gap: 1.1rem; }
  .cv > * { min-width: 0; }
  .cv h3 { font-size: 8.5pt; border-color: #c79a45; }
  .cv__aside { font-size: 8.5pt; }
  .cv__aside .ticks li { font-size: 8.5pt; padding-left: .85rem; }
  .chips li { font-size: 7.5pt; padding: .18em .45em; }
  .role, .cv__block { break-inside: avoid; }
  h1 { font-size: 21pt; }
  a { color: #000; text-decoration: none; }
  .print-only { display: revert; }
}
.print-only { display: none; }
