/* =============================================================
   TALAB SIPS — Website
   Recreated from Figma · responsive · ready for handoff
   -------------------------------------------------------------
   Brand: premium specialty (non-alcoholic) mocktail cart
   Metro Detroit, MI
   ============================================================= */

/* ----------  Design tokens  ---------- */
:root {
  /* color */
  --violet:       #b033f7;   /* primary vivid purple — fills, footer, testimonial block */
  --violet-deep:  #9416cf;   /* hover + accent text on white (more legible) */
  --lilac:        #f1d7ff;   /* nav bar + testimonial section background */
  --lilac-card:   #f4e6fc;   /* "what we provide" cards */
  --ink:          #1a1a1a;   /* near-black text + dark pills */
  --ink-2:        #444444;   /* body copy */
  --ink-3:        #8a8a8a;   /* muted labels */
  --line:         #e7e2ea;   /* hairlines */
  --line-soft:    #efeae3;   /* form card bg (warm grey) */
  --white:        #ffffff;
  --cream:        #f7f2ea;   /* footer cream text */

  /* type */
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'DM Sans', system-ui, -apple-system, sans-serif;
  --arabic:'Noto Naskh Arabic', 'Amiri', serif;

  /* layout */
  --maxw:   1280px;
  --gutter: clamp(20px, 5vw, 72px);

  /* motion */
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ----------  Reset  ---------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

/* ----------  Helpers  ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--violet-deep);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 30px; height: 2px;
  background: var(--violet-deep);
}
.eyebrow.center { justify-content: center; }
.eyebrow.bare::before { display: none; }

/* display headings — black with purple italic emphasis */
.display {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.01em;
  font-size: clamp(38px, 5.6vw, 72px);
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.display em { font-style: italic; color: var(--violet); font-weight: 500; }

.body-lg { font-size: 17px; line-height: 1.7; color: var(--ink-2); }
p { margin: 0 0 1.1em; color: var(--ink-2); text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn-violet { background: var(--violet); color: #fff; }
.btn-violet:hover { background: var(--violet-deep); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(176,51,247,.32); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; transform: translateY(-2px); }
.btn-outline { border: 1.5px solid currentColor; }
.btn-outline:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* arabic logo mark */
.mark { font-family: var(--arabic); direction: rtl; line-height: 1; color: var(--violet); font-weight: 600; }

/* scroll reveal — content is visible by default; the entrance animation is
   layered on via .in so the page always renders even if JS/IO never fires. */
.reveal { opacity: 1; transform: none; }
.reveal.in { animation: revealUp .8s var(--ease) both; }
.reveal.in.d1 { animation-delay: .08s; }
.reveal.in.d2 { animation-delay: .16s; }
.reveal.in.d3 { animation-delay: .24s; }
@keyframes revealUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

/* ----------  Image placeholder (swap for real exports in /images)  ---------- */
.ph {
  position: relative;
  width: 100%; height: 100%;
  background:
    repeating-linear-gradient(135deg,
      rgba(176,51,247,.06) 0, rgba(176,51,247,.06) 10px,
      rgba(176,51,247,.12) 10px, rgba(176,51,247,.12) 20px),
    var(--lilac-card);
  overflow: hidden;
  display: flex; align-items: flex-end;
}
.ph::after {
  content: attr(data-label);
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 11px; letter-spacing: .04em;
  color: var(--violet-deep);
  background: rgba(255,255,255,.92);
  padding: 6px 9px; margin: 12px;
  border: 1px solid rgba(176,51,247,.25);
  max-width: calc(100% - 24px);
}

/* =============================================================
   NAV
   ============================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  background: var(--lilac);
  transition: box-shadow .3s var(--ease), padding .3s var(--ease);
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(60,20,80,.10); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: 76px;
  transition: height .3s var(--ease);
}
.nav.scrolled .nav-inner { height: 64px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 50px; width: auto; display: block; transition: height .3s var(--ease); }
.nav.scrolled .brand-logo { height: 42px; }
.brand .mark { font-size: 30px; }
.brand .brand-name {
  font-family: var(--sans);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--violet-deep);
}
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--ink);
  position: relative; transition: color .2s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -5px;
  width: 0; height: 1.5px; background: var(--violet); transition: width .25s var(--ease);
}
.nav-links a:hover { color: var(--violet-deep); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav .btn { padding: 11px 22px; font-size: 13px; }

.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s var(--ease); }

/* mobile overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: 100; background: var(--lilac);
  display: flex; flex-direction: column; padding: 22px var(--gutter) 40px;
  transform: translateY(-100%); transition: transform .5s var(--ease);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-top { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.mobile-top .brand-logo { height: 46px; }
.mobile-close { font-size: 30px; line-height: 1; color: var(--ink); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 6px; margin-top: 30px; }
.mobile-menu nav a { font-family: var(--serif); font-size: 40px; font-weight: 500; padding: 8px 0; }
.mobile-menu nav a em { font-style: italic; color: var(--violet); }
.mobile-cta { margin-top: auto; display: flex; flex-direction: column; gap: 12px; }
.mobile-cta .btn { width: 100%; }

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: flex-end;
  padding: 76px 0 0;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 40%; }
.hero-bg .ph { height: 100%; }
.hero-bg .ph::after { align-self: flex-start; }
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(20,8,28,.62) 0%, rgba(20,8,28,.30) 42%, rgba(20,8,28,.05) 72%),
              linear-gradient(0deg, rgba(20,8,28,.55) 0%, rgba(20,8,28,0) 45%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(56px, 9vh, 110px); padding-top: 120px; }
.hero .eyebrow { color: #fff; }
.hero .eyebrow::before { background: #fff; }
.hero-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(56px, 9vw, 132px); line-height: 0.92;
  letter-spacing: -0.02em; color: #fff;
  margin: 22px 0 26px;
}
.hero-title em { display: block; font-style: italic; color: #fff; }
.hero-sub { color: rgba(255,255,255,.92); font-size: clamp(16px, 1.5vw, 19px); max-width: 46ch; line-height: 1.6; margin-bottom: 34px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-cta .btn-dark { background: rgba(20,8,28,.55); backdrop-filter: blur(4px); border: 1.5px solid rgba(255,255,255,.55); }
.hero-cta .btn-dark:hover { background: var(--ink); border-color: var(--ink); }

/* =============================================================
   SECTION SHELL
   ============================================================= */
section { position: relative; }
.sec { padding: clamp(52px, 7vw, 92px) 0; }
.sec.lilac { background: var(--lilac); }

/* =============================================================
   ABOUT — Built on craft / Rooted in community
   ============================================================= */
.about-grid {
  display: grid; grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(36px, 6vw, 84px); align-items: center;
}
.about-photo { aspect-ratio: 4/5; border-radius: 14px; overflow: hidden; }
.about-photo .ph { border-radius: 14px; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; }
.about-copy .display { margin-bottom: 26px; }
.about-copy p + p { margin-top: 1.1em; }

/* =============================================================
   WHAT WE PROVIDE
   ============================================================= */
.provide-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px); align-items: center;
}
.provide-copy .eyebrow { margin-bottom: 22px; }
.provide-copy .display { margin-bottom: 24px; }
.provide-copy .closing { margin-top: 26px; font-weight: 500; color: var(--ink); }
.provide-cards { display: flex; flex-direction: column; gap: 18px; }
.pcard {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--lilac-card); border-radius: 16px; padding: 24px 26px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.pcard:hover { transform: translateX(6px); box-shadow: 0 12px 30px rgba(176,51,247,.14); }
.pcard .tick {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 999px;
  background: #fff; color: var(--violet); display: grid; place-items: center;
  box-shadow: 0 2px 8px rgba(176,51,247,.18);
}
.pcard .tick svg { width: 18px; height: 18px; }
.pcard p { color: var(--ink); font-weight: 500; margin: 0; line-height: 1.5; }

/* =============================================================
   GET A FREE QUOTE — form + how it works
   ============================================================= */
.quote-head { text-align: center; max-width: 760px; margin: 0 auto clamp(48px, 6vw, 74px); }
.quote-head .display { margin: 16px 0 18px; }
.quote-head p { color: var(--ink-2); font-size: 17px; }

.quote-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(40px, 6vw, 78px); align-items: start; }

/* form card — white with purple border */
.form-card { background: #fff; border: 1.5px solid var(--violet); border-radius: 18px; padding: clamp(28px, 3.4vw, 44px); }
.form-progress { display: flex; align-items: center; gap: 0; margin-bottom: 32px; }
.fp-step { display: flex; align-items: center; gap: 11px; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }
.fp-step .num {
  width: 26px; height: 26px; border-radius: 999px; display: grid; place-items: center;
  background: #fff; border: 1.5px solid var(--line); color: var(--ink-3);
  font-size: 12px; transition: .3s var(--ease);
}
.fp-step.active { color: var(--violet-deep); }
.fp-step.active .num { background: var(--violet); border-color: var(--violet); color: #fff; }
.fp-step.done .num { background: var(--ink); border-color: var(--ink); color: #fff; }
.fp-line { flex: 1; height: 1.5px; background: var(--line); margin: 0 12px; min-width: 18px; }
.fp-line.fill { background: var(--violet); }

.step { display: none; }
.step.active { display: block; animation: stepIn .45s var(--ease) both; }
@keyframes stepIn { from { opacity: 0; transform: translateX(16px); } to { opacity: 1; transform: none; } }
.step h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(26px, 3vw, 34px); margin: 0 0 4px; letter-spacing: -0.01em; }
.step-tag { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--violet-deep); margin-bottom: 12px; }
.step .step-sub { font-size: 13px; color: var(--ink-3); margin-bottom: 26px; }

/* selectable pills (single + multi select) */
.pill-group { display: flex; flex-wrap: wrap; gap: 9px; }
.pill {
  border: 1.5px solid var(--violet); background: transparent; color: var(--violet-deep);
  padding: 9px 16px; border-radius: 999px; font-size: 13px; font-weight: 600;
  line-height: 1.2; transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .15s var(--ease);
}
.pill:hover { background: rgba(176,51,247,.08); }
.pill.on { background: var(--violet); color: #fff; border-color: var(--violet); }
.pill:active { transform: scale(.97); }

.field { margin-bottom: 20px; }
.field.two { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { display: block; font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; border: 0; border-bottom: 1.5px solid var(--line);
  background: transparent; padding: 9px 0 11px; font-size: 16px; color: var(--ink);
  outline: none; transition: border-color .25s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #b8b2bd; }
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--violet); }
.field textarea { resize: vertical; min-height: 84px; }
.field select { -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'><path d='M1 1l4.5 4.5L10 1' stroke='%239416cf' stroke-width='1.6' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat; background-position: right 2px center; padding-right: 24px; }

.form-actions { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 30px; }
.btn-back { font-size: 13px; font-weight: 600; color: var(--ink-3); display: inline-flex; align-items: center; gap: 7px; transition: color .2s var(--ease); }
.btn-back:hover { color: var(--ink); }
.form-actions .spacer { flex: 1; }

.form-done { display: none; text-align: center; padding: 18px 6px; }
.form-done.show { display: block; animation: stepIn .55s var(--ease) both; }
.form-done .mark { font-size: 56px; margin-bottom: 16px; }
.form-done-logo { height: 84px; width: auto; margin: 0 auto 18px; display: block; }
.form-done h3 { font-family: var(--serif); font-weight: 500; font-size: 30px; margin: 0 0 12px; }
.form-done p { max-width: 38ch; margin: 0 auto; color: var(--ink-2); }
.form-done em { font-style: italic; color: var(--violet-deep); }

/* how it works steps */
.hiw .eyebrow { margin-bottom: 28px; }
.hiw-list { counter-reset: step; }
.hiw-item { display: grid; grid-template-columns: auto 1fr; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.hiw-item:last-child { border-bottom: 0; }
.hiw-item .hn { font-family: var(--serif); font-size: 30px; font-weight: 500; color: var(--violet); line-height: 1; min-width: 26px; }
.hiw-item h4 { font-family: var(--serif); font-weight: 500; font-size: 23px; margin: 0 0 4px; letter-spacing: -0.01em; }
.hiw-item p { font-size: 14px; margin: 0; }

/* =============================================================
   MOMENTS WE'VE MADE — collage
   ============================================================= */
.collage {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: clamp(72px, 8vw, 120px);
  gap: 16px;
}
.collage .cell { border-radius: 12px; overflow: hidden; cursor: zoom-in; }
.collage .cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.collage .cell:hover img { transform: scale(1.05); }
/* layout matches the design: big drinks landscape + 2 small top-right + tall strawberry right + 2 bottom-left */
.c1 { grid-column: 1 / 8;  grid-row: 1 / 5; }   /* three drinks (large landscape) */
.c2 { grid-column: 8 / 10; grid-row: 1 / 3; }   /* lilac mehndi portrait */
.c4 { grid-column: 10 / 13; grid-row: 1 / 3; }  /* server at cart */
.c6 { grid-column: 8 / 13; grid-row: 3 / 8; }   /* strawberry cheers (tall) */
.c3 { grid-column: 1 / 4;  grid-row: 5 / 8; }   /* two guests */
.c5 { grid-column: 4 / 8;  grid-row: 5 / 8; }   /* pink toast */
.collage-foot { margin-top: 40px; display: flex; justify-content: center; }
.btn-text { color: var(--violet-deep); font-weight: 600; display: inline-flex; align-items: center; gap: 9px; }
.btn-text .arr { transition: transform .25s var(--ease); }
.btn-text:hover .arr { transform: translateX(5px); }

/* =============================================================
   TESTIMONIALS
   ============================================================= */
.tt-head { text-align: center; max-width: 720px; margin: 0 auto clamp(40px, 5vw, 60px); }
.tt-head .display { margin: 16px 0 16px; }
.tt-head p { color: var(--ink-2); }
.tt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tt-card { background: var(--violet); border-radius: 22px; padding: clamp(26px, 2.4vw, 38px); color: #fff; display: flex; flex-direction: column; }
.tt-quote { font-family: var(--sans); font-weight: 600; font-style: normal; font-size: clamp(16px, 1.25vw, 19px); line-height: 1.5; letter-spacing: 0; margin: 0; text-wrap: pretty; color: #fff; flex: 1; }
.tt-divider { height: 1.5px; background: rgba(255,255,255,.8); margin: clamp(22px, 2.4vw, 30px) 0 clamp(18px, 2vw, 24px); }
.tt-author .who { font-size: 14px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: #fff; margin-bottom: 8px; }
.tt-author .meta { font-size: 11.5px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.9); margin-bottom: 14px; }
.tt-author .stars { color: #e8b84b; letter-spacing: 4px; font-size: 15px; }
.tt-controls, .tt-view, .tt-track, .tt-slide { display: none; }

/* =============================================================
   FAQ
   ============================================================= */
.faq-head { margin-bottom: clamp(36px, 5vw, 56px); }
.faq-head .eyebrow { margin-bottom: 20px; }
.faq-list { max-width: 980px; margin: 0 auto; }
.faq-item { background: var(--line-soft); border-radius: 14px; margin-bottom: 14px; overflow: hidden; border: 1.5px solid transparent; transition: border-color .25s var(--ease), background .25s var(--ease); }
.faq-item.open { border-color: var(--violet); background: #fff; }
.faq-q { width: 100%; display: flex; align-items: center; gap: 20px; padding: 24px 26px; text-align: left; }
.faq-q .qn { font-family: ui-monospace, monospace; font-size: 12px; color: var(--violet); letter-spacing: .1em; }
.faq-q .qt { flex: 1; font-family: var(--serif); font-weight: 500; font-size: clamp(20px, 2.1vw, 27px); letter-spacing: -0.01em; }
.faq-q .chev { flex-shrink: 0; width: 32px; height: 32px; border-radius: 999px; border: 1.5px solid var(--line); display: grid; place-items: center; color: var(--violet); transition: transform .35s var(--ease), background .25s var(--ease); }
.faq-item.open .chev { transform: rotate(45deg); background: var(--violet); color: #fff; border-color: var(--violet); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq-item.open .faq-a { max-height: 640px; }
.faq-a-in { padding: 0 26px 26px 64px; color: var(--ink-2); font-size: 15.5px; line-height: 1.7; max-width: 70ch; }

/* =============================================================
   FOOTER — Let's connect
   ============================================================= */
.footer { background: var(--violet); color: #fff; padding: clamp(64px, 8vw, 104px) 0 36px; }
.footer-head { text-align: center; max-width: 640px; margin: 0 auto clamp(44px, 5vw, 62px); }
.footer-head h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(44px, 6vw, 76px); margin: 0 0 16px; }
.footer-head p { color: rgba(255,255,255,.9); font-size: 16px; }
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 900px; margin: 0 auto; }
.ccard { border: 1.5px solid rgba(255,255,255,.5); border-radius: 16px; padding: 30px 22px; text-align: center; transition: .3s var(--ease); }
.ccard:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.ccard .cicon { width: 48px; height: 48px; border-radius: 999px; background: rgba(255,255,255,.18); display: grid; place-items: center; margin: 0 auto 16px; }
.ccard .cicon svg { width: 22px; height: 22px; }
.ccard .clabel { font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.8); margin-bottom: 8px; }
.ccard .cval { font-size: 18px; font-weight: 600; word-break: break-word; }
.footer-mark { text-align: center; margin: clamp(48px,6vw,70px) 0 0; }
.footer-mark .mark { font-size: clamp(64px, 9vw, 110px); color: #fff; }
.footer-logo { height: clamp(96px, 13vw, 150px); width: auto; margin: 0 auto; display: block; }
.footer-mark .tagline { font-family: var(--serif); font-style: italic; font-size: clamp(20px, 2.4vw, 28px); margin-top: 6px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  margin-top: clamp(44px,5vw,64px); padding-top: 28px; border-top: 1px solid rgba(255,255,255,.22);
  font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.78);
}
.footer-bottom .mid { font-family: var(--serif); font-style: italic; text-transform: none; letter-spacing: .01em; font-size: 15px; color: #fff; }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(18,6,26,.95); display: none; align-items: center; justify-content: center; padding: 40px; }
.lightbox.open { display: flex; }
.lightbox-body { width: min(880px, 92vw); max-height: 86vh; aspect-ratio: 4/3; border-radius: 14px; overflow: hidden; }
.lightbox .lb-close { position: absolute; top: 26px; right: 30px; color: #fff; font-size: 30px; }
.lightbox .lb-nav { position: absolute; top: 50%; transform: translateY(-50%); color: #fff; font-size: 24px; width: 54px; height: 54px; border-radius: 999px; border: 1.5px solid rgba(255,255,255,.4); display: grid; place-items: center; transition: .25s var(--ease); }
.lightbox .lb-nav:hover { background: rgba(255,255,255,.15); }
.lightbox .lb-prev { left: 26px; }
.lightbox .lb-next { right: 26px; }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 920px) {
  .nav-links, .nav-actions { display: none; }
  .burger { display: flex; }

  .hero { min-height: 92vh; }
  .hero-scrim { background: linear-gradient(0deg, rgba(20,8,28,.7) 0%, rgba(20,8,28,.15) 60%); }

  .about-grid { grid-template-columns: 1fr; gap: 34px; }
  .about-photo { order: -1; aspect-ratio: 3/4; max-height: 70vh; }

  .provide-grid { grid-template-columns: 1fr; gap: 34px; }

  .quote-grid { grid-template-columns: 1fr; gap: 44px; }
  .hiw { order: -1; }

  .collage { grid-template-columns: repeat(6, 1fr); grid-auto-rows: clamp(84px,14vw,120px); }
  .c1 { grid-column: 1 / 7; grid-row: 1 / 4; }
  .c2 { grid-column: 1 / 4; grid-row: 4 / 7; }
  .c4 { grid-column: 4 / 7; grid-row: 4 / 7; }
  .c3 { grid-column: 1 / 4; grid-row: 7 / 10; }
  .c5 { grid-column: 4 / 7; grid-row: 7 / 10; }
  .c6 { grid-column: 1 / 7; grid-row: 10 / 14; }

  .contact-cards { grid-template-columns: 1fr; max-width: 420px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 540px) {
  :root { --gutter: 22px; }
  .hero-title { font-size: 17vw; }
  .field.two { grid-template-columns: 1fr; gap: 0; }
  .form-progress { gap: 0; }
  .fp-step span:not(.num) { display: none; }
  .fp-line { margin: 0 8px; }
  .faq-q { padding: 20px; gap: 14px; }
  .faq-a-in { padding-left: 20px; }
  .tt-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal, .reveal.in { opacity: 1; transform: none; animation: none; }
  html { scroll-behavior: auto; }
}
