/* ============================================================
   ReadyMyApp — Stylesheet
   ------------------------------------------------------------
   THEME TOKENS ARE AT THE TOP (inside :root).
   Change a variable here and it propagates across the entire site.
   ============================================================ */

/* ---------- THEME TOKENS ------------------------------------- */
:root {
  /* Palette */
  --navy:        #0a0a0d;   /* page background (deep) */
  --navy-2:      #14141a;   /* card background tint  */
  --gold:        #d4b88a;   /* primary accent        */
  --gold-light:  #ecd1a3;   /* hover / highlight     */
  --gold-dark:   #9a7f4a;   /* shadow / gradient end */
  --cream:       #e8e6d9;   /* primary text          */
  --muted:       #8a8f9f;   /* secondary text        */
  --hairline:    rgba(212,184,138,.12);
  --hairline-2:  rgba(212,184,138,.15);
  --hairline-3:  rgba(212,184,138,.25);
  --error:       #ff9999;

  /* Typography */
  --font-serif:  "Cormorant Garamond", serif;
  --font-sans:   "Inter", sans-serif;

  /* Spacing & layout — tweak here to loosen/tighten the whole page */
  --max-w:       1320px;
  --pad-x:       5%;
  --pad-y:       80px;       /* desktop vertical section padding */
  --pad-y-mob:   56px;       /* mobile vertical section padding  */
  --gap-row:     24px;       /* grid gap between cards           */
  --radius:      2px;

  /* Transitions */
  --ease-out:    cubic-bezier(.2,.8,.2,1);
}

/* ---------- RESET & BASE ------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; scroll-padding-top: 80px; }
body  { font-family: var(--font-sans); background: var(--navy); color: var(--cream);
        line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a       { color: inherit; text-decoration: none; }
button  { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img, svg{ display: block; max-width: 100%; }

/* Background texture (subtle radial + noise) */
body::before {
  content: ''; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(212,184,138,.08), transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(212,184,138,.06), transparent 45%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
}
body::after {
  content: ''; position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .03;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='3'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ---------- TYPOGRAPHY --------------------------------------- */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; letter-spacing: -.01em; line-height: 1.1; color: var(--cream); }
h1 { font-size: clamp(48px, 7.5vw, 96px); font-weight: 300; }
h2 { font-size: clamp(36px, 5vw,   64px); font-weight: 300; }
h3 { font-size: 26px; font-weight: 500; }
em.ital { font-style: italic; color: var(--gold); font-weight: 400; }
.gold   { color: var(--gold); }

/* Common eyebrow / kicker label */
.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px; font-weight: 500;
}
.eyebrow::before, .eyebrow::after { content: ''; width: 30px; height: 1px; background: var(--gold); opacity: .6; }
.eyebrow.center { justify-content: center; }

/* Utility heading modifiers (used by renderer) */
.h-wide  { max-width: 1000px; margin-bottom: 36px; }
.h-tight { margin-bottom: 16px; }

/* ---------- SECTIONS ----------------------------------------- */
section     { padding: var(--pad-y) var(--pad-x); position: relative; }
.container  { max-width: var(--max-w); margin: 0 auto; }

/* ---------- NAV ---------------------------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 5%; backdrop-filter: blur(20px);
  background: rgba(10,10,13,.75); border-bottom: 1px solid var(--hairline);
}
.nav-inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }

.logo      { display: flex; align-items: center; gap: 14px; font-family: var(--font-serif); font-weight: 500; font-size: 24px; letter-spacing: .01em; }
.logo-mark { width: 40px; height: 40px; }
.logo .brand    { color: var(--cream); }
.logo .brand em { font-style: italic; color: var(--gold); font-weight: 400; }

.nav-links     { display: flex; gap: 32px; align-items: center; }
.nav-links a   { font-size: 13px; font-weight: 500; color: var(--cream); opacity: .78; transition: color .25s, opacity .25s; letter-spacing: .05em; }
.nav-links a:hover { opacity: 1; color: var(--gold); }
.nav-cta       { padding: 10px 22px; border: 1px solid var(--gold); color: var(--gold) !important; border-radius: var(--radius); font-size: 12px; letter-spacing: .15em; text-transform: uppercase; transition: all .3s; opacity: 1 !important; }
.nav-cta:hover { background: var(--gold); color: var(--navy) !important; }

.hamburger             { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span        { width: 24px; height: 1px; background: var(--gold); transition: .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(6px)  rotate( 45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- BUTTONS ------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; font-family: inherit; font-size: 12px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; border-radius: var(--radius);
  transition: all .3s; border: 1px solid transparent; cursor: pointer;
}
.btn-gold         { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-gold:hover   { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(212,184,138,.25); }
.btn-outline      { border-color: rgba(232,230,217,.3); color: var(--cream); }
.btn-outline:hover{ border-color: var(--gold); color: var(--gold); }
.btn .arrow       { transition: transform .3s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- HERO --------------------------------------------- */
.hero { min-height: 92vh; padding-top: 130px; display: flex; align-items: center; justify-content: center; text-align: center; position: relative; }
.hero-ornament { margin: 0 auto 22px; width: 80px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); position: relative; }
.hero-ornament::before { content: '◆'; position: absolute; top: -10px; left: 50%; transform: translateX(-50%); color: var(--gold); font-size: 14px; background: var(--navy); padding: 0 10px; }
.hero h1       { margin: 0 auto 20px; max-width: 1100px; }
.hero-sub      { font-family: var(--font-serif); font-size: clamp(17px, 1.8vw, 22px); font-style: italic; color: var(--cream); opacity: .8; max-width: 720px; margin: 0 auto 32px; line-height: 1.5; font-weight: 300; }
.hero-cta      { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-marks    { margin-top: 56px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.hero-marks-label { font-size: 10px; letter-spacing: .35em; text-transform: uppercase; color: var(--muted); }
.hero-marks-row   { display: flex; gap: 44px; flex-wrap: wrap; justify-content: center; opacity: .55; }
.hero-marks-row span { font-family: var(--font-serif); font-weight: 500; font-size: 18px; letter-spacing: .05em; color: var(--cream); }

/* ---------- ABOUT (crest + copy + stats) --------------------- */
.about           { border-top: 1px solid var(--hairline); }
.about .h-center { max-width: 1000px; margin-bottom: 2px; }
.about-grid      { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: center; }
.about-visual    { position: relative; aspect-ratio: 4/5; display: flex; align-items: center; justify-content: center; }

.crest {
  width: 100%; max-width: 300px; aspect-ratio: 1;
  border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center;
  position: relative; background: radial-gradient(circle, rgba(212,184,138,.08), transparent 70%);
}
.crest::before  { content: ''; position: absolute; inset: 12px; border: 1px solid rgba(212,184,138,.3); }
.crest-inner    { text-align: center; font-family: var(--font-serif); }
.crest-inner .big { font-size: 88px; font-weight: 300; color: var(--gold); line-height: 1; font-style: italic; }
.crest-inner .lbl { font-size: 12px; letter-spacing: .3em; color: var(--cream); margin-top: 10px; opacity: .7; }

.about-copy p               { font-size: 16px; color: var(--cream); opacity: .85; margin-bottom: 14px; line-height: 1.7; font-weight: 300; }
.about-copy p:first-of-type { font-family: var(--font-serif); font-size: 24px; font-style: italic; color: var(--cream); opacity: 1; line-height: 1.4; margin-bottom: 20px; font-weight: 300; }
.about-signature            { margin-top: 26px; font-family: var(--font-serif); font-style: italic; color: var(--gold); font-size: 22px; }
.about-signature small      { display: block; font-family: var(--font-sans); font-style: normal; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-top: 6px; font-weight: 500; }

/* ---------- STATS STRIP -------------------------------------- */
.stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--hairline-2); border-bottom: 1px solid var(--hairline-2); margin-top: 56px; }
.stat        { padding: 28px 20px; text-align: center; border-right: 1px solid var(--hairline-2); }
.stat:last-child { border-right: none; }
.stat-num    { font-family: var(--font-serif); font-size: 56px; font-weight: 300; letter-spacing: -.02em; line-height: 1; color: var(--gold); }
.stat-num sup{ font-size: 22px; vertical-align: super; }
.stat-label  { font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: var(--cream); margin-top: 10px; opacity: .75; font-weight: 500; }

/* ---------- CARDS GRID --------------------------------------- */
.cards-grid  { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap-row); }
.card {
  position: relative; padding: 36px 32px; border: 1px solid var(--hairline-2);
  background: linear-gradient(135deg, rgba(14,21,53,.6), rgba(10,10,13,.3));
  transition: all .5s var(--ease-out); overflow: hidden;
}
.card::before      { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); transform: translateX(-100%); transition: transform .8s; }
.card:hover::before{ transform: translateX(100%); }
.card:hover        { border-color: var(--gold); transform: translateY(-6px); box-shadow: 0 30px 60px -20px rgba(0,0,0,.5); }
.card-num          { font-family: var(--font-serif); font-style: italic; font-size: 16px; color: var(--gold); opacity: .7; margin-bottom: 18px; display: flex; align-items: center; gap: 14px; }
.card-num::after   { content: ''; flex: 1; height: 1px; background: rgba(212,184,138,.2); }
.card h3           { font-size: 28px; font-weight: 400; margin-bottom: 10px; color: var(--cream); letter-spacing: -.01em; }
.card h3 em        { font-style: italic; color: var(--gold); font-weight: 400; }
.card p            { font-size: 15px; color: var(--cream); opacity: .7; line-height: 1.7; font-weight: 300; }
.card-icon         { width: 46px; height: 46px; border: 1px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.card-icon svg     { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.2; }

/* ---------- PROCESS ----------------------------------------- */
.process-center { text-align: center; }
.process-lede   { color: var(--cream); opacity: .7; max-width: 620px; margin: 0 auto; font-style: italic; font-family: var(--font-serif); font-size: 19px; font-weight: 300; }
.process-wrap   { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 0; margin-top: 44px; position: relative; }
.process-wrap::before { content: ''; position: absolute; top: 40px; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, rgba(212,184,138,.4), rgba(212,184,138,.4), transparent); }
.process-step   { text-align: center; padding: 0 16px; position: relative; }
.process-num {
  width: 80px; height: 80px; margin: 0 auto 20px; border: 1px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 30px; color: var(--gold); font-weight: 400;
  background: var(--navy); position: relative; z-index: 2; transition: all .4s;
}
.process-step:hover .process-num { background: var(--gold); color: var(--navy); box-shadow: 0 0 30px rgba(212,184,138,.4); }
.process-step h4     { font-size: 20px; margin-bottom: 8px; color: var(--cream); font-weight: 500; }
.process-step h4 em  { font-style: italic; color: var(--gold); font-weight: 400; }
.process-step p      { font-size: 14px; color: var(--cream); opacity: .7; line-height: 1.6; font-weight: 300; }

/* ---------- TESTIMONIALS ------------------------------------- */
.testi            { border-top: 1px solid var(--hairline); }
.testi-grid       { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap-row); margin-top: 36px; }
.testi-card       { padding: 32px 28px; border: 1px solid var(--hairline-2); background: linear-gradient(135deg, rgba(14,21,53,.5), rgba(10,10,13,.3)); transition: border-color .4s, transform .4s; }
.testi-card:hover { border-color: rgba(212,184,138,.4); transform: translateY(-4px); }
.testi-quote      { font-family: var(--font-serif); font-style: italic; font-size: 18px; line-height: 1.5; color: var(--cream); opacity: .95; margin-bottom: 22px; font-weight: 300; position: relative; padding-top: 16px; }
.testi-quote::before { content: '"'; position: absolute; top: -18px; left: -6px; font-size: 64px; color: var(--gold); opacity: .5; font-family: var(--font-serif); line-height: 1; }
.testi-divider    { width: 36px; height: 1px; background: var(--gold); margin-bottom: 16px; opacity: .6; }
.testi-name       { font-size: 15px; color: var(--cream); font-weight: 500; letter-spacing: .02em; }
.testi-role       { font-size: 12px; color: var(--gold); margin-top: 4px; letter-spacing: .1em; text-transform: uppercase; font-weight: 500; }

/* ---------- CONTACT / FORM ----------------------------------- */
.contact         { border-top: 1px solid var(--hairline); }
.contact-wrap    { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 1200px; margin: 0 auto; padding: 36px; border: 1px solid var(--hairline-2); background: linear-gradient(135deg, rgba(14,21,53,.6), rgba(10,10,13,.2)); }
.contact-info h2 { text-align: left; margin-bottom: 18px; }
.contact-info p  { color: var(--cream); opacity: .75; font-size: 16px; line-height: 1.7; margin-bottom: 28px; font-weight: 300; }
.contact-list div         { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; font-size: 14px; color: var(--cream); }
.contact-list div strong  { font-family: var(--font-serif); font-style: italic; color: var(--gold); min-width: 90px; font-weight: 500; font-size: 15px; text-transform: lowercase; }

.socials         { display: flex; gap: 10px; margin-top: 22px; }
.social-btn      { width: 40px; height: 40px; border: 1px solid var(--hairline-3); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all .3s; color: var(--cream); }
.social-btn:hover{ border-color: var(--gold); background: var(--gold); color: var(--navy); }
.social-btn svg  { width: 14px; height: 14px; fill: currentColor; }

.contact-form     { display: flex; flex-direction: column; gap: 14px; }
.contact-form .btn{ align-self: flex-start; margin-top: 4px; }
.field label      { display: block; font-size: 10px; letter-spacing: .25em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; font-weight: 600; }
.field input,
.field textarea,
.field select     { width: 100%; padding: 10px 0; background: transparent; border: none; border-bottom: 1px solid var(--hairline-3); color: var(--cream); font-family: inherit; font-size: 15px; transition: border-color .3s; }
.field input::placeholder,
.field textarea::placeholder { color: rgba(232,230,217,.35); font-style: italic; font-family: var(--font-serif); font-size: 16px; }
.field input:focus,
.field textarea:focus,
.field select:focus { outline: none; border-bottom-color: var(--gold); }
.field textarea     { min-height: 80px; resize: vertical; }
.field select option{ background: var(--navy-2); color: var(--cream); }
.form-row           { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-msg           { display: none; margin-top: 16px; padding: 0; font-size: 13px; font-style: italic; }
.form-msg.error     { display: block; color: var(--error); padding: 6px 0; }

/* ── Success banner ─────────────────────────────────────── */
.form-msg.success {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  background: rgba(212,184,138,.07);
  border: 1px solid rgba(212,184,138,.35);
  border-radius: 4px;
  animation: fadeSlideIn .4s ease;
}
.form-msg.success::before {
  content: "✓";
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  background: var(--gold);
  color: #0a0a0d;
  border-radius: 50%;
  font-style: normal;
  font-size: 14px;
  font-weight: 700;
  margin-top: 1px;
}
.form-msg.success span,
.form-msg.success   { color: var(--cream); font-size: 14px; line-height: 1.6; }

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- CTA BANNER --------------------------------------- */
.cta-banner     { text-align: center; max-width: 820px; margin: 0 auto; }
.cta-banner h2  { margin-bottom: 16px; }
.cta-banner p   { color: var(--cream); opacity: .75; font-size: 17px; line-height: 1.55; margin-bottom: 28px; font-weight: 300; font-family: var(--font-serif); font-style: italic; }

/* ---------- TEXT BLOCK --------------------------------------- */
.text-block     { max-width: 780px; margin: 0 auto; text-align: center; }
.text-block p   { font-size: 18px; line-height: 1.7; color: var(--cream); opacity: .85; font-weight: 300; margin-top: 16px; font-family: var(--font-serif); font-style: italic; }

/* ---------- IMAGE + TEXT SPLIT ------------------------------- */
.image-text        { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.image-text.reverse{ direction: rtl; }
.image-text.reverse > *{ direction: ltr; }
.image-text-media img { width: 100%; border: 1px solid var(--hairline-2); }
.image-text-body h2   { margin-bottom: 16px; }
.image-text-body p    { font-size: 17px; color: var(--cream); opacity: .85; line-height: 1.7; font-weight: 300; margin-bottom: 22px; }

/* ---------- FAQ ACCORDION ------------------------------------ */
.faq-list      { max-width: 900px; margin: 40px auto 0; text-align: left; }
.faq-item      { border-top: 1px solid var(--hairline-2); }
.faq-item:last-child { border-bottom: 1px solid var(--hairline-2); }
.faq-q         { width: 100%; text-align: left; padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-family: var(--font-serif); font-size: 20px; color: var(--cream); font-weight: 400; transition: color .3s; }
.faq-q:hover   { color: var(--gold); }
.faq-q .plus   { font-family: var(--font-sans); font-size: 20px; color: var(--gold); transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a         { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease-out); }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner   { padding: 0 0 22px; color: var(--cream); opacity: .75; font-size: 16px; line-height: 1.6; font-weight: 300; }

/* ---------- FOOTER ------------------------------------------- */
footer                 { padding: 44px 5% 24px; border-top: 1px solid var(--hairline); }
.footer-ornament       { text-align: center; margin-bottom: 30px; color: var(--gold); opacity: .6; letter-spacing: .8em; font-size: 14px; }
.footer-inner          { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 36px; }
.footer-brand          { font-family: var(--font-serif); font-size: 28px; font-weight: 400; color: var(--cream); margin-bottom: 10px; }
.footer-brand em       { font-style: italic; color: var(--gold); }
.footer-desc           { font-size: 13px; color: var(--muted); line-height: 1.6; max-width: 360px; font-weight: 300; }
.footer-col h5         { font-family: var(--font-serif); font-size: 18px; color: var(--gold); margin-bottom: 14px; font-style: italic; font-weight: 400; }
.footer-col a          { display: block; font-size: 13px; margin-bottom: 8px; color: var(--cream); opacity: .7; transition: opacity .2s, color .2s; }
.footer-col a:hover    { opacity: 1; color: var(--gold); }
.footer-bottom         { max-width: var(--max-w); margin: 30px auto 0; padding-top: 20px; border-top: 1px solid rgba(212,184,138,.1); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12px; color: var(--muted); letter-spacing: .08em; }

/* ---------- REVEAL ON SCROLL --------------------------------- */
.reveal          { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s var(--ease-out); }
.reveal.visible  { opacity: 1; transform: translateY(0); }
.reveal-1        { transition-delay: .08s; }
.reveal-2        { transition-delay: .16s; }
.reveal-3        { transition-delay: .24s; }

/* ---------- RESPONSIVE --------------------------------------- */
@media (max-width: 900px) {
  :root { --pad-y: var(--pad-y-mob); }

  .nav                    { padding: 14px 5%; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 80%; height: 100vh;
    background: var(--navy-2); flex-direction: column; padding: 96px 32px; gap: 24px;
    transition: right .35s; border-left: 1px solid rgba(212,184,138,.2); align-items: flex-start;
  }
  .nav-links.open        { right: 0; }
  .nav-links a           { font-family: var(--font-serif); font-size: 22px; }
  .hamburger             { display: flex; }

  .hero                  { padding-top: 104px; min-height: auto; }
  .hero-marks            { margin-top: 40px; }

  .about-grid,
  .contact-wrap,
  .image-text            { grid-template-columns: 1fr; gap: 32px; }
  .contact-wrap          { padding: 24px; }
  .cards-grid            { grid-template-columns: 1fr; gap: 16px; }
  .card                  { padding: 28px 24px; }
  .card h3               { font-size: 24px; }

  .stats-strip           { grid-template-columns: 1fr 1fr; margin-top: 36px; }
  .stat                  { border-right: none; border-bottom: 1px solid var(--hairline-2); padding: 22px 16px; }
  .stat:nth-child(2)     { border-right: none; }
  .stat:last-child       { border-bottom: none; }
  .stat-num              { font-size: 44px; }

  .process-wrap          { grid-template-columns: 1fr 1fr; gap: 32px 16px; margin-top: 36px; }
  .process-wrap::before  { display: none; }

  .testi-grid            { grid-template-columns: 1fr; gap: 16px; margin-top: 28px; }

  .contact-info p        { margin-bottom: 22px; }
  .contact-list div      { flex-wrap: wrap; }
  .form-row              { grid-template-columns: 1fr; gap: 14px; }

  .hero-marks-row        { gap: 28px; }
  .hero-marks-row span   { font-size: 16px; }

  .about .h-center       { margin-bottom: 28px; }
  .crest                 { max-width: 240px; }
  .crest-inner .big      { font-size: 72px; }

  .faq-list              { margin-top: 28px; }
  .faq-q                 { padding: 18px 0; font-size: 18px; }

  .footer-inner          { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom         { margin-top: 24px; padding-top: 16px; }

  .btn                   { padding: 12px 22px; font-size: 11px; }
  .eyebrow               { margin-bottom: 14px; font-size: 10px; letter-spacing: .25em; gap: 10px; }
  .eyebrow::before,
  .eyebrow::after        { width: 20px; }
}

/* Extra squeeze for very small phones */
@media (max-width: 480px) {
  :root { --pad-x: 20px; }
  .hero                  { padding-top: 96px; }
  h1                     { font-size: clamp(40px, 11vw, 56px); }
  h2                     { font-size: clamp(30px, 8vw, 42px); }
  .contact-wrap          { padding: 20px; }
  .hero-cta              { flex-direction: column; width: 100%; }
  .hero-cta .btn         { width: 100%; justify-content: center; }
  .footer-bottom         { flex-direction: column; align-items: flex-start; }
}
