/* ============================================================
   Lumarc — Event Design & Production
   Light, photography-led, gold accent.
   ============================================================ */

:root {
  /* Brand — taken from assets/img/lumarc-logo.svg */
  --plum:       #4a1142;
  --plum-deep:  #350c2f;
  --plum-soft:  #6b3060;
  --amber:      #ffbb29;

  --paper:      #fdfcfb;
  --cream:      #f7f3f5;
  --ink:        #2a232a;
  --ink-soft:   #4c454b;
  --muted:      #837b81;
  --line:       #e8e1e5;

  /* Amber darkened to stay legible on light backgrounds (5.5:1). Use --amber
     itself only on plum or photography. */
  --gold:       #8a5e0a;
  --gold-deep:  #6d4a06;
  --gold-tint:  #fdf3dd;

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body:    "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --wrap: 1180px;
  --pad: 26px;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-soft);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
ul, ol { list-style: none; padding: 0; }

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--paper); padding: 12px 20px;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.container.narrow { max-width: 780px; }

.section { padding: clamp(76px, 10vw, 132px) 0; }
.section-cream { background: var(--cream); }

.section-head { max-width: 660px; margin-bottom: clamp(44px, 6vw, 72px); }
.section-head.centered { margin-inline: auto; text-align: center; }

.eyebrow {
  font-size: 11px;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4.4vw, 3.15rem);
  line-height: 1.16;
  color: var(--ink);
  letter-spacing: .01em;
}
.section-lead {
  margin-top: 22px;
  color: var(--muted);
  font-size: 16.5px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  border: 1px solid currentColor;
  background: transparent;
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}

.btn-light { color: #fff; border-color: rgba(255, 255, 255, .75); }
.btn-light:hover { background: #fff; color: var(--ink); border-color: #fff; }

.btn-outline-light { color: #fff; border-color: rgba(255, 255, 255, .8); }
.btn-outline-light:hover { background: rgba(255, 255, 255, .16); }

.btn-solid {
  background: var(--plum);
  border-color: var(--plum);
  color: #fff;
}
.btn-solid:hover { background: var(--amber); border-color: var(--amber); color: var(--plum); }

.btn-block { width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid transparent;
  transition: box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 4px 24px rgba(43, 42, 39, .05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
}

.brand { display: inline-flex; align-items: center; gap: 13px; }
.brand-mark { width: 38px; height: 38px; flex: none; border-radius: 7px; }
.brand-text {
  display: grid;
  gap: 3px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--plum);
  text-indent: .34em;
  line-height: 1;
}
.brand-text small {
  font-size: 8px;
  letter-spacing: .42em;
  text-indent: .42em;
  color: var(--muted);
}

.footer-brand { display: block; }
.footer-brand img { width: 150px; height: auto; }

.nav-list { display: flex; align-items: center; gap: 38px; }

.nav-link {
  position: relative;
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .35s var(--ease);
  padding-block: 6px;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--plum);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease);
}
.nav-link:hover, .nav-link.is-active { color: var(--plum); }
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); transform-origin: left; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 12px 9px;
  flex-direction: column;
  justify-content: space-between;
}
.nav-toggle span {
  display: block;
  height: 1px;
  background: var(--ink);
  transition: transform .4s var(--ease), opacity .25s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 92svh;
  margin-top: 74px;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(20, 24, 28, .38), rgba(20, 24, 28, .18) 45%, rgba(20, 24, 28, .5));
}

.hero-inner { padding-block: 90px; }

.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.3rem, 6.2vw, 4.5rem);
  line-height: 1.38;
  letter-spacing: .22em;
  color: #fff;
  text-shadow: 0 2px 26px rgba(0, 0, 0, .38);
  text-indent: .22em; /* balance the trailing letter-space */
}
.hero-title span { display: block; }

.hero-sub {
  margin-top: 30px;
  font-size: 11.5px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .82);
}
.hero-actions { margin-top: 40px; }

.scroll-cue {
  position: absolute;
  left: 50%; bottom: 34px;
  transform: translateX(-50%);
  width: 22px; height: 38px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 14px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
}
.scroll-cue span {
  width: 2px; height: 7px;
  background: #fff;
  animation: cue 2s var(--ease) infinite;
}
@keyframes cue {
  0%   { transform: translateY(0); opacity: 0; }
  30%  { opacity: 1; }
  100% { transform: translateY(13px); opacity: 0; }
}

/* ============================================================
   SERVICES SPLIT (gold panel + photo)
   ============================================================ */
.split { padding: clamp(56px, 8vw, 96px) 0; }

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 3.4vw, 46px);
  align-items: stretch;
}

.panel {
  background: var(--plum);
  color: #fff;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: clamp(44px, 5vw, 72px) clamp(24px, 3vw, 44px);
  min-height: clamp(340px, 40vw, 480px);
}
.panel-title {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.8vw, 19px);
  font-weight: 300;
  letter-spacing: .42em;
  text-transform: uppercase;
  text-indent: .42em;
}
.ornament { display: block; width: 40px; margin: 26px 0 22px; color: var(--amber); }

.panel-copy {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 34px;
}

.split-media { overflow: hidden; }
.split-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.split-media:hover img { transform: scale(1.03); }

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.testimonial-band { padding: clamp(70px, 9vw, 118px) 0; text-align: center; }

.quote-mark {
  display: block;
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: .4;
  color: var(--plum);
  margin-bottom: 34px;
}

.quotes { position: relative; }
.quotes-viewport { position: relative; min-height: 210px; }

.quote {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .7s var(--ease);
  pointer-events: none;
}
.quote.is-active { opacity: 1; pointer-events: auto; position: relative; }

.quote p {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 1.95rem);
  line-height: 1.55;
  font-weight: 300;
  color: var(--ink);
  max-width: 24ch;
  margin-inline: auto;
}
.quote footer { margin-top: 30px; }
.quote footer strong {
  display: block;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.quote footer span { font-size: 13.5px; color: var(--muted); }

.qbtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px; height: 12px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--plum-soft);
  cursor: pointer;
  opacity: .75;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.qbtn:hover { opacity: 1; }
.qbtn-prev { left: calc(-1 * clamp(10px, 7vw, 96px)); }
.qbtn-next { right: calc(-1 * clamp(10px, 7vw, 96px)); }
.qbtn-prev:hover { transform: translate(-5px, -50%); }
.qbtn-next:hover { transform: translate(5px, -50%); }

.qdots { display: flex; justify-content: center; gap: 9px; margin-top: 34px; }
.qdot {
  width: 6px; height: 6px;
  border: 0; padding: 0;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  transition: background .3s var(--ease), width .3s var(--ease), border-radius .3s var(--ease);
}
.qdot.is-active { background: var(--plum); width: 22px; border-radius: 99px; }

/* ============================================================
   OFFER CARDS
   ============================================================ */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(28px, 3.6vw, 52px);
}
.card { text-align: center; }

.card-icon {
  display: grid;
  place-items: center;
  width: 58px; height: 58px;
  margin: 0 auto 22px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}
.card-icon svg { width: 23px; height: 23px; }
.card:hover .card-icon { background: var(--plum); color: var(--amber); border-color: var(--plum); }

.card h3 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 14px;
}
.card p { font-size: 15px; color: var(--muted); max-width: 34ch; margin-inline: auto; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(38px, 6vw, 88px);
  align-items: center;
}

.about-media { position: relative; }
.about-media img { width: 100%; aspect-ratio: 5 / 6; object-fit: cover; }

.badge-float {
  position: absolute;
  right: -18px; bottom: -22px;
  background: var(--plum);
  color: #fff;
  padding: 22px 26px;
  text-align: center;
  min-width: 132px;
}
.badge-float strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  font-weight: 300;
  color: var(--amber);
}
.badge-float span {
  display: block;
  margin-top: 8px;
  font-size: 10.5px;
  line-height: 1.6;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.about-copy p { margin-top: 20px; color: var(--muted); }
.about-copy .section-title + p { margin-top: 26px; }

.check-list { margin-top: 30px; display: grid; gap: 12px; }
.check-list li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: var(--ink-soft);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 7px; height: 7px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  transform: rotate(45deg);
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(26px, 4vw, 54px);
  margin-top: 42px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.stat-row strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 1;
  color: var(--plum);
}
.stat-row span {
  display: block;
  margin-top: 9px;
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   GALLERY
   ============================================================ */
.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: -18px 0 48px;
}
.filter {
  border: 0;
  background: transparent;
  padding: 4px 0;
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 1px solid transparent;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.filter:hover { color: var(--ink); }
.filter.is-active { color: var(--plum); border-bottom-color: var(--plum); }

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: clamp(24px, 3vw, 40px);
}

.work-item.is-hidden { display: none; }

.work-media { overflow: hidden; background: var(--line); }
.work-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.work-item:hover .work-media img { transform: scale(1.05); }

.work-body { padding-top: 20px; text-align: center; }
.work-tag {
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
}
.work-body h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--ink);
  margin: 10px 0 8px;
}
.work-body p { font-size: 14.5px; color: var(--muted); max-width: 38ch; margin-inline: auto; }

/* ============================================================
   PROCESS
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(30px, 4vw, 50px);
}
.step { text-align: center; padding-top: 30px; border-top: 1px solid var(--line); }
.step-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
  color: var(--plum-soft);
  font-weight: 300;
}
.step h3 {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 18px 0 12px;
}
.step p { font-size: 14.5px; color: var(--muted); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  padding: clamp(88px, 12vw, 156px) 0;
  overflow: hidden;
  isolation: isolate;
}
.cta-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.cta-veil {
  position: absolute; inset: 0;
  z-index: -1;
  background: rgba(18, 22, 26, .5);
}
.cta-inner h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  color: #fff;
  letter-spacing: .04em;
}
.cta-inner p { margin-top: 16px; color: rgba(255, 255, 255, .8); font-size: 15.5px; }
.cta-inner .btn { margin-top: 36px; }

/* ============================================================
   FAQ
   ============================================================ */
.accordion { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }

.acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 25px 0;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.9vw, 1.35rem);
  font-weight: 400;
  color: var(--ink);
  transition: color .3s var(--ease);
}
.acc-head:hover, .acc-head[aria-expanded="true"] { color: var(--gold-deep); }

.acc-icon { position: relative; width: 14px; height: 14px; flex: none; }
.acc-icon::before, .acc-icon::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto 0;
  height: 1px;
  background: currentColor;
  transition: transform .4s var(--ease);
}
.acc-icon::after { transform: rotate(90deg); }
.acc-head[aria-expanded="true"] .acc-icon::after { transform: rotate(0deg); }

.acc-panel { overflow: hidden; height: 0; transition: height .4s var(--ease); }
.acc-panel p { padding-bottom: 26px; max-width: 66ch; color: var(--muted); font-size: 15.5px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, .75fr);
  gap: clamp(34px, 5vw, 68px);
  align-items: start;
}

.contact-form { display: grid; gap: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; min-width: 0; }

.field label {
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}
.field .opt { text-transform: none; letter-spacing: .04em; opacity: .75; }

.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  font-size: 15.5px;
  font-weight: 300;
  transition: border-color .35s var(--ease);
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.field input::placeholder, .field textarea::placeholder { color: #b9b2a4; }
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-bottom-color: #b3452f; }

.error { font-size: 12px; color: #b3452f; }

.contact-form .btn { margin-top: 12px; }
.form-note { font-size: 12px; color: var(--muted); text-align: center; }
.form-success {
  background: var(--gold-tint);
  border-left: 2px solid var(--gold);
  padding: 14px 16px;
  font-size: 14.5px;
  color: var(--ink);
}
.form-success[hidden] { display: none; }

/* honeypot — visually hidden, still reachable to bots reading the DOM */
.hp {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.contact-aside {
  background: var(--cream);
  padding: clamp(28px, 3vw, 40px);
}
.contact-details { display: grid; gap: 22px; }
.contact-details li { display: flex; align-items: flex-start; gap: 15px; font-size: 15px; }
.ci {
  display: grid; place-items: center;
  width: 38px; height: 38px;
  flex: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
}
.ci svg { width: 17px; height: 17px; }
.contact-details a { transition: color .3s var(--ease); }
.contact-details a:hover { color: var(--gold-deep); }

.aside-note {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--cream); padding-top: clamp(50px, 6vw, 74px); }

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding-bottom: 40px;
}

.footer-nav { display: flex; flex-wrap: wrap; gap: 28px; }
.footer-nav a {
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .3s var(--ease);
}
.footer-nav a:hover { color: var(--gold-deep); }

.socials { display: flex; gap: 12px; }
.socials a {
  display: grid; place-items: center;
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.socials svg { width: 16px; height: 16px; }
.socials a:hover { background: var(--plum); color: var(--amber); border-color: var(--plum); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 22px 0 28px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
}
.footer-bottom ul { display: flex; gap: 22px; }
.footer-bottom a:hover { color: var(--gold-deep); }

/* ============================================================
   404
   ============================================================ */
.nf {
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 40px 26px;
}
.nf > div { display: grid; justify-items: center; }
.nf-code {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 16vw, 9rem);
  line-height: 1;
  color: var(--gold);
  font-weight: 300;
}
.nf h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.5rem, 4vw, 2.3rem);
  color: var(--ink);
  margin-top: 10px;
}
.nf p { color: var(--muted); margin-top: 16px; max-width: 44ch; }
.nf .actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 34px; }
.nf .btn-solid { color: #fff; }
.nf .btn-dark { color: var(--ink); border-color: var(--line); }
.nf .btn-dark:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .12s; }
.reveal[data-delay="2"] { transition-delay: .24s; }
.reveal[data-delay="3"] { transition-delay: .36s; }
.reveal[data-delay="4"] { transition-delay: .48s; }
.reveal[data-delay="5"] { transition-delay: .60s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 460px; margin-inline: auto; }
  .split-grid { grid-template-columns: 1fr; }
  .panel { min-height: 300px; }
  .split-media img { aspect-ratio: 3 / 2; }
}

@media (max-width: 820px) {
  .nav-toggle { display: flex; }

  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(340px, 84vw);
    display: grid;
    align-content: center;
    justify-items: center;
    padding: 40px;
    background: var(--paper);
    border-left: 1px solid var(--line);
    box-shadow: -20px 0 60px rgba(43, 42, 39, .1);
    transform: translateX(100%);
    transition: transform .5s var(--ease);
    z-index: 90;
  }
  .nav.is-open { transform: none; }

  .nav-list { flex-direction: column; gap: 30px; }
  .nav-link { font-size: 13px; letter-spacing: .3em; }

  body.nav-open { overflow: hidden; }
  body.nav-open::after {
    content: "";
    position: fixed; inset: 0;
    background: rgba(43, 42, 39, .42);
    z-index: 80;
  }

  .qbtn-prev { left: -6px; }
  .qbtn-next { right: -6px; }
  .quote p { max-width: 20ch; }
}

@media (max-width: 620px) {
  :root { --pad: 20px; }
  .field-row { grid-template-columns: 1fr; }
  .hero-title { letter-spacing: .16em; text-indent: .16em; }
  .badge-float { right: 0; bottom: -16px; padding: 16px 18px; min-width: 112px; }
  .stat-row { gap: 24px 30px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-nav { justify-content: center; gap: 20px; }
  .quotes-viewport { min-height: 270px; }
  .qbtn { width: 40px; }
  .quotes .qbtn-prev { left: -10px; }
  .quotes .qbtn-next { right: -10px; }
}
