/* ============================================================
   Trupti Enterprise — site styles
   Built on the Maan Enterprise design tokens (navy / orange / cream).
   Link order in each page:
     <link rel="stylesheet" href="_ds/.../colors_and_type.css">
     <link rel="stylesheet" href="assets/site.css">
   ============================================================ */

:root {
  --gold:        #C39A4B;   /* sparing premium accent (hotel, founder) */
  --gold-soft:   #E7D2A1;
  --navy:        var(--maan-navy);
  --navy-deep:   var(--maan-navy-deep);
  --orange:      var(--maan-orange);
  --header-h:    84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); color: var(--ink); overflow-x: hidden; }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--content-max); margin: 0 auto; padding: 0 var(--gutter-desktop); }
@media (max-width: 1024px){ .wrap { padding: 0 var(--gutter-tablet); } }
@media (max-width: 640px){ .wrap { padding: 0 var(--gutter-mobile); } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: var(--fs-eyebrow); font-weight: 700;
  letter-spacing: var(--tr-eyebrow); text-transform: uppercase;
  color: var(--orange); margin: 0 0 18px;
}
.eyebrow::before { content:""; width: 26px; height: 2px; background: currentColor; display: inline-block; }
.eyebrow.is-center { justify-content: center; }
.on-dark .eyebrow { color: var(--orange); }

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-body); font-weight: 700; font-size: 14px;
  padding: 15px 28px; border-radius: 999px; border: 0; cursor: pointer;
  display: inline-flex; align-items: center; gap: 9px; text-decoration: none;
  letter-spacing: 0.01em; white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease-standard),
              background var(--dur-fast) var(--ease-standard),
              box-shadow var(--dur-fast) var(--ease-standard),
              color var(--dur-fast) var(--ease-standard);
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--orange); color: #fff; box-shadow: var(--shadow-orange); }
.btn-primary:hover { background: var(--maan-orange-ember); color:#fff; text-decoration:none; transform: translateY(-1px); }
.btn-primary:active { transform: translateY(1px); box-shadow: none; }
.btn-navy { background: var(--navy); color: var(--fg-on-dark); }
.btn-navy:hover { background: var(--maan-navy-soft); color:#fff; text-decoration:none; transform: translateY(-1px); }
.btn-outline { background: transparent; color: #fff; border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; text-decoration:none; }
.on-dark .btn-outline { color:#fff; border-color: rgba(255,255,255,0.5); }
.on-dark .btn-outline:hover { background:#fff; color: var(--navy); }
.btn-ghost-light { background: rgba(255,255,255,0.10); color:#fff; border:1px solid rgba(255,255,255,0.22); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.18); color:#fff; text-decoration:none; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; }
.topbar {
  background: var(--navy-deep); color: var(--fg-on-dark-muted);
  font-size: 12.5px; font-weight: 500;
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; min-height: 40px; }
.topbar a { color: var(--fg-on-dark); text-decoration: none; }
.topbar a:hover { color: var(--orange); text-decoration: none; }
.topbar-meta { display: flex; gap: 26px; align-items: center; }
.topbar-meta span { display: inline-flex; align-items: center; gap: 7px; }
.topbar-meta svg { width: 14px; height: 14px; color: var(--orange); }
.topbar-tag { display: inline-flex; align-items:center; gap:8px; letter-spacing: 0.12em; text-transform: uppercase; font-size: 11px; font-weight: 700; color: var(--gold-soft); }

.navbar { background: rgba(247,243,238,0.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--hairline); }
.navbar .wrap { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { height: 52px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 14.5px; font-weight: 600; color: var(--ink); text-decoration: none;
  position: relative; padding: 6px 0; letter-spacing: 0.005em;
}
.nav-links a::after { content:""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; background: var(--orange); transition: right var(--dur-base) var(--ease-out-expo); }
.nav-links a:hover { color: var(--orange); text-decoration: none; }
.nav-links a:hover::after { right: 0; }
.nav-links a.is-active { color: var(--orange); }
.nav-links a.is-active::after { right: 0; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--navy); text-decoration: none; font-size: 14.5px; }
.nav-phone svg { width: 16px; height: 16px; color: var(--orange); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; color: var(--navy); }
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 980px){
  .topbar-meta { gap: 16px; }
  .topbar-tag { display: none; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px);
    background: var(--navy); flex-direction: column; align-items: flex-start;
    padding: 100px 36px 36px; gap: 4px; transform: translateX(100%);
    transition: transform var(--dur-base) var(--ease-out-expo); box-shadow: var(--shadow-lg);
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a { color: #fff; font-size: 18px; padding: 14px 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-links a::after { display: none; }
  .nav-links a.is-active { color: var(--orange); }
  .nav-toggle { display: inline-flex; z-index: 60; }
  .nav-phone span { display: none; }
}
@media (max-width: 520px){
  .topbar-meta .topbar-email { display: none; }
  .brand img { height: 44px; }
}

/* scrim for mobile menu */
.nav-scrim { position: fixed; inset: 0; background: rgba(7,21,58,0.5); backdrop-filter: blur(3px); opacity: 0; pointer-events: none; transition: opacity var(--dur-base); z-index: 40; }
.nav-scrim.is-open { opacity: 1; pointer-events: auto; }

/* ============================================================
   Sections & helpers
   ============================================================ */
.section { padding: 104px 0; }
.section-sm { padding: 72px 0; }
@media (max-width: 720px){ .section { padding: 68px 0; } .section-sm { padding: 52px 0; } }
.bg-navy { background: var(--navy); color: var(--fg-on-dark); }
.bg-navy-deep { background: var(--navy-deep); color: var(--fg-on-dark); }
.bg-cream { background: var(--cream); }
.bg-cream-deep { background: var(--cream-deep); }
.bg-paper { background: var(--paper); }
.on-dark { color: var(--fg-on-dark); }
.on-dark h1,.on-dark h2,.on-dark h3,.on-dark h4 { color:#fff; }

.sec-head { max-width: 720px; margin: 0 0 56px; }
.sec-head.is-center { margin-left:auto; margin-right:auto; text-align:center; }
.sec-head h2 { font-size: clamp(32px, 4.4vw, 52px); line-height: 1.07; letter-spacing: -0.02em; color: var(--navy); margin: 0; }
.on-dark .sec-head h2 { color:#fff; }
.sec-head p { margin: 18px 0 0; font-size: var(--fs-body-lg); line-height: 1.6; color: var(--fg-muted); }
.on-dark .sec-head p { color: var(--fg-on-dark-muted); }

.lead { font-size: var(--fs-body-lg); line-height: 1.65; color: var(--fg-muted); }
.muted { color: var(--fg-muted); }
.ruler { height: 10px; background-image: repeating-linear-gradient(90deg, currentColor 0, currentColor 1px, transparent 1px, transparent 9px); opacity: 0.35; }

/* ---------- Hero (home) ---------- */
.hero { position: relative; background: var(--navy); color:#fff; overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after { content:""; position:absolute; inset:0;
  background: linear-gradient(100deg, rgba(7,21,58,0.94) 0%, rgba(7,21,58,0.82) 42%, rgba(11,30,79,0.45) 100%); }
.hero .wrap { position: relative; z-index: 2; padding-top: 110px; padding-bottom: 120px; }
.hero-inner { max-width: 760px; }
.hero h1 { font-size: clamp(40px, 6vw, 76px); line-height: 1.02; letter-spacing: -0.025em; color:#fff; margin: 0 0 26px; }
.hero h1 .accent { color: var(--orange); }
.hero-sub { font-size: clamp(16px, 1.9vw, 20px); line-height: 1.6; color: rgba(255,255,255,0.82); max-width: 620px; margin: 0 0 36px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 0; margin-top: 64px; border-top: 1px solid rgba(255,255,255,0.14); }
.hero-stat { padding: 28px 40px 0 0; margin-right: 40px; border-right: 1px solid rgba(255,255,255,0.14); }
.hero-stat:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.hero-stat .n { font-family: var(--font-display); font-weight: 900; font-size: clamp(34px,4vw,46px); letter-spacing: -0.03em; line-height: 1; color:#fff; }
.hero-stat .n .accent { color: var(--orange); }
.hero-stat .l { margin-top: 8px; font-size: 13px; color: rgba(255,255,255,0.66); }
@media (max-width: 640px){
  .hero-stat { padding: 20px 24px 0 0; margin-right: 24px; }
  .hero-stats { gap: 8px; }
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero { position: relative; background: var(--navy); color:#fff; overflow: hidden; }
.page-hero-media { position:absolute; inset:0; }
.page-hero-media img { width:100%; height:100%; object-fit: cover; }
.page-hero-media::after { content:""; position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(7,21,58,0.92) 0%, rgba(7,21,58,0.74) 48%, rgba(11,30,79,0.42) 100%); }
.page-hero .wrap { position: relative; z-index:2; padding-top: 96px; padding-bottom: 96px; }
.page-hero .crumbs { font-size: 12.5px; font-weight: 600; letter-spacing: 0.04em; color: rgba(255,255,255,0.6); margin-bottom: 22px; }
.page-hero .crumbs a { color: rgba(255,255,255,0.6); text-decoration: none; }
.page-hero .crumbs a:hover { color: var(--orange); }
.page-hero h1 { font-size: clamp(38px, 5.4vw, 66px); line-height: 1.04; letter-spacing: -0.025em; color:#fff; margin: 0; max-width: 800px; }
.page-hero .tagline { margin-top: 18px; font-size: clamp(15px,1.6vw,18px); color: rgba(255,255,255,0.8); max-width: 600px; letter-spacing: 0.01em; }
.page-hero .badge { display:inline-flex; align-items:center; gap:8px; padding:7px 15px; border-radius:999px; background: rgba(242,106,31,0.16); border:1px solid rgba(242,106,31,0.4); color: var(--orange); font-size:12px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; margin-bottom: 22px; }

/* ---------- Venture cards (home) ---------- */
.venture { display: grid; grid-template-columns: 1.05fr 1fr; gap: 0; align-items: stretch; border-radius: var(--radius-md); overflow: hidden; background: var(--paper); border: 1px solid var(--hairline); box-shadow: var(--shadow-sm); }
.venture + .venture { margin-top: 32px; }
.venture.reverse .venture-media { order: 2; }
.venture-media { position: relative; min-height: 380px; overflow: hidden; }
.venture-media img { position:absolute; inset:0; width:100%; height:100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out-expo); }
.venture:hover .venture-media img { transform: scale(1.04); }
.venture-tag { position:absolute; top: 20px; left: 20px; z-index:2; display:inline-flex; align-items:center; gap:8px; padding:8px 14px; border-radius:999px; background: rgba(7,21,58,0.7); color:#fff; font-size:11px; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; backdrop-filter: blur(6px); }
.venture-body { padding: 48px; display:flex; flex-direction:column; }
.venture-no { font-family: var(--font-mono); font-size: 13px; color: var(--orange); font-weight: 600; letter-spacing: 0.1em; margin-bottom: 14px; }
.venture-body h3 { font-size: clamp(26px, 3vw, 36px); color: var(--navy); margin: 0 0 6px; letter-spacing:-0.02em; }
.venture-kicker { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--fg-muted); margin: 0 0 18px; }
.venture-body p { color: var(--fg-muted); line-height: 1.6; margin: 0 0 20px; }
.feat-list { list-style: none; padding: 0; margin: 0 0 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
.feat-list li { display:flex; align-items:center; gap:10px; font-size: 14.5px; color: var(--ink); font-weight: 500; }
.feat-list li svg { width: 16px; height: 16px; color: var(--orange); flex: none; }
.venture-foot { margin-top: auto; display:flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 860px){
  .venture { grid-template-columns: 1fr; }
  .venture.reverse .venture-media { order: 0; }
  .venture-media { min-height: 260px; }
  .venture-body { padding: 32px 28px; }
  .feat-list { grid-template-columns: 1fr; }
}

/* ---------- Generic card grids ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2,1fr); }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-4 { grid-template-columns: repeat(4,1fr); }
@media (max-width: 940px){ .grid-3,.grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px){ .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr; } }

.card { background: var(--paper); border: 1px solid var(--hairline); border-radius: var(--radius-md); padding: 30px; transition: transform var(--dur-base) var(--ease-out-expo), box-shadow var(--dur-base) var(--ease-out-expo); }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card .ic { width: 50px; height: 50px; border-radius: 12px; background: var(--navy); display:flex; align-items:center; justify-content:center; margin-bottom: 20px; }
.card .ic svg { width: 24px; height: 24px; color: var(--orange); }
.card h4 { font-size: 19px; color: var(--navy); margin: 0 0 8px; }
.card p { font-size: 14.5px; color: var(--fg-muted); line-height: 1.6; margin: 0; }

/* feature chips (why-us) on navy */
.why-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width:940px){ .why-grid { grid-template-columns: repeat(2,1fr);} }
@media (max-width:600px){ .why-grid { grid-template-columns: 1fr;} }
.why-item { display:flex; gap: 16px; padding: 24px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.08); }
.why-item .num { font-family: var(--font-mono); font-size: 13px; color: var(--orange); font-weight: 600; }
.why-item h4 { color:#fff; font-size: 17px; margin: 0 0 6px; }
.why-item p { color: var(--fg-on-dark-muted); font-size: 14px; line-height: 1.55; margin: 0; }

/* ---------- Stat ribbon ---------- */
.ribbon { display:grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.ribbon .cell { padding: 8px 28px; border-left: 2px solid var(--orange); }
.ribbon .cell:first-child { padding-left: 0; border-left: 0; }
.ribbon .n { font-family: var(--font-display); font-weight: 900; font-size: clamp(36px,4vw,52px); letter-spacing: -0.03em; line-height:1; color:#fff; }
.ribbon .n .accent { color: var(--orange); }
.ribbon .l { margin-top: 10px; font-size: 13px; color: var(--fg-on-dark-muted); }
@media (max-width: 720px){ .ribbon { grid-template-columns: repeat(2,1fr); gap: 28px 0; } .ribbon .cell{ padding: 0 20px; border-left:2px solid var(--orange);} .ribbon .cell:first-child{ padding-left:20px; border-left:2px solid var(--orange);} }

/* ---------- Founder split ---------- */
.founder-split { display:grid; grid-template-columns: 0.85fr 1fr; gap: 56px; align-items: center; }
.founder-photo { position: relative; }
.founder-photo img { border-radius: var(--radius-md); width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center top; box-shadow: var(--shadow-lg); }
.founder-photo .plate { position:absolute; left: -10px; bottom: 28px; background: var(--orange); color: var(--navy); padding: 16px 22px; border-radius: 10px; box-shadow: var(--shadow-lg); max-width: 230px; }
.founder-photo .plate strong { display:block; font-family: var(--font-display); font-weight: 800; font-size: 17px; letter-spacing: -0.01em; }
.founder-photo .plate span { font-size: 12px; font-weight: 600; }
.founder-split blockquote { margin: 0; }
@media (max-width: 860px){ .founder-split { grid-template-columns: 1fr; gap: 36px; } .founder-photo { max-width: 420px; } }

.quote-block { border-left: 3px solid var(--orange); padding: 4px 0 4px 28px; }
.quote-block p { font-family: var(--font-display); font-weight: 600; font-size: clamp(20px,2.4vw,28px); line-height: 1.4; color: var(--navy); letter-spacing: -0.01em; margin: 0; }
.on-dark .quote-block p { color:#fff; }
.quote-block cite { display:block; margin-top: 18px; font-style: normal; font-size: 14px; font-weight: 700; color: var(--orange); letter-spacing: 0.02em; }

/* ---------- Timeline (founder) ---------- */
.timeline { position: relative; max-width: 880px; margin: 0 auto; }
.timeline::before { content:""; position:absolute; left: 28px; top: 6px; bottom: 6px; width: 2px; background: var(--hairline); }
.tl-item { position: relative; padding: 0 0 48px 84px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot { position:absolute; left: 16px; top: 2px; width: 26px; height: 26px; border-radius: 999px; background: var(--orange); border: 4px solid var(--cream); box-shadow: 0 0 0 1px var(--hairline); }
.tl-year { font-family: var(--font-display); font-weight: 900; font-size: 22px; color: var(--orange); letter-spacing: -0.01em; line-height: 1; margin-bottom: 10px; }
.tl-card { background: var(--paper); border: 1px solid var(--hairline); border-radius: var(--radius-md); padding: 26px 28px; box-shadow: var(--shadow-sm); }
.tl-card h3 { font-size: 22px; color: var(--navy); margin: 0 0 8px; }
.tl-card p { color: var(--fg-muted); line-height: 1.6; margin: 0 0 14px; }
.tl-card p:last-child { margin-bottom: 0; }
.tl-tags { display:flex; flex-wrap:wrap; gap: 8px; margin-top: 4px; }
.tl-tags span { font-size: 12px; font-weight: 600; padding: 6px 12px; border-radius: 999px; background: var(--cream-deep); color: var(--navy); }
.tl-addr { font-size: 13px; color: var(--fg-muted); display:flex; align-items:flex-start; gap: 8px; margin-top: 16px; padding-top: 16px; border-top: 1px dashed var(--hairline); }
.tl-addr svg { width: 15px; height: 15px; color: var(--orange); flex:none; margin-top: 2px; }
@media (max-width: 560px){ .tl-item { padding-left: 64px; } .timeline::before { left: 19px; } .tl-dot { left: 7px; } }

/* ---------- Video block ---------- */
.video-frame { position: relative; border-radius: var(--radius-md); overflow: hidden; background: var(--navy-deep); aspect-ratio: 16/9; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,0.08); }
.video-frame video, .video-frame iframe { position:absolute; inset:0; width:100%; height:100%; border:0; object-fit: cover; }
.video-placeholder { position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; gap: 18px; text-align:center; padding: 32px;
  background:
    linear-gradient(180deg, rgba(7,21,58,0.4), rgba(7,21,58,0.78)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0, rgba(255,255,255,0.03) 2px, transparent 2px, transparent 11px),
    linear-gradient(135deg, #16305f, #0a1838); }
.video-placeholder .play { width: 84px; height: 84px; border-radius: 999px; background: var(--orange); display:flex; align-items:center; justify-content:center; box-shadow: var(--shadow-orange); transition: transform var(--dur-base) var(--ease-out-expo); }
.video-frame:hover .video-placeholder .play { transform: scale(1.06); }
.video-placeholder .play svg { width: 30px; height: 30px; color:#fff; margin-left: 4px; }
.video-placeholder .vp-title { color:#fff; font-family: var(--font-display); font-weight: 700; font-size: 20px; }
.video-placeholder .vp-note { color: rgba(255,255,255,0.6); font-size: 13px; max-width: 360px; line-height: 1.5; }

/* ---------- Address / contact cards ---------- */
.addr-card { background: var(--paper); border: 1px solid var(--hairline); border-radius: var(--radius-md); padding: 30px; display:flex; flex-direction:column; gap: 14px; height: 100%; }
.addr-card .head { display:flex; align-items:center; gap: 12px; }
.addr-card .head .dot { width: 40px; height: 40px; border-radius: 10px; background: var(--cream-deep); display:flex; align-items:center; justify-content:center; flex:none; }
.addr-card .head .dot svg { width: 20px; height: 20px; color: var(--orange); }
.addr-card h4 { font-size: 18px; color: var(--navy); margin: 0; }
.addr-card .role { font-size: 12px; font-weight: 600; color: var(--fg-muted); letter-spacing: 0.04em; text-transform: uppercase; margin-top: 2px; }
.addr-card address { font-style: normal; color: var(--fg-muted); line-height: 1.7; font-size: 14.5px; }
.addr-line { display:flex; align-items:flex-start; gap: 10px; font-size: 14.5px; color: var(--ink); }
.addr-line svg { width:16px; height:16px; color: var(--orange); flex:none; margin-top: 3px; }
.addr-line a { color: var(--ink); text-decoration: none; font-weight: 600; }
.addr-line a:hover { color: var(--orange); }

/* ---------- Form ---------- */
.form { background: var(--paper); border: 1px solid var(--hairline); border-radius: var(--radius-md); padding: 36px; box-shadow: var(--shadow-md); }
.form .row { display:grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px){ .form .row { grid-template-columns: 1fr; } }
.field { display:flex; flex-direction:column; gap: 7px; margin-bottom: 18px; }
.field label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-muted); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 15px; color: var(--ink); font-weight: 500;
  padding: 13px 15px; border-radius: 8px; border: 1px solid var(--hairline); background: var(--cream); width:100%;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline:none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(242,106,31,0.16); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: var(--fg-on-dark-muted); padding: 72px 0 28px; }
.footer-top { display:grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 44px; }
.footer-brand img { height: 56px; background: #fff; padding: 10px 14px; border-radius: 10px; }
.footer-brand p { margin: 18px 0 0; font-size: 14px; line-height: 1.65; color: var(--fg-on-dark-muted); max-width: 300px; }
.footer-col h5 { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); margin: 0 0 18px; }
.footer-col ul { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap: 11px; }
.footer-col a { color: var(--fg-on-dark-muted); text-decoration:none; font-size: 14px; }
.footer-col a:hover { color: var(--orange); }
.footer-col .fline { display:flex; align-items:flex-start; gap: 9px; font-size: 13.5px; line-height: 1.55; }
.footer-col .fline svg { width: 15px; height: 15px; color: var(--orange); flex:none; margin-top: 2px; }
.footer-bottom { display:flex; align-items:center; justify-content:space-between; gap: 16px; margin-top: 52px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 12.5px; flex-wrap: wrap; }
.footer-bottom a { color: var(--gold-soft); text-decoration:none; }
.footer-bottom a:hover { color: var(--orange); }
@media (max-width: 860px){ .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px){ .footer-top { grid-template-columns: 1fr; } }

/* ---------- Reveal animation ----------
   Content is visible by default. Hiding only kicks in after JS adds
   `reveal-ready` to <html> (post first-paint), so any environment where
   JS / rAF / the observer never runs degrades to fully visible. */
@media (prefers-reduced-motion: no-preference){
  .reveal { transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo); }
  html.reveal-ready .reveal:not(.in) { opacity: 0; transform: translateY(20px); }
}

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--orange); color: var(--navy); border-radius: var(--radius-lg); padding: 56px; display:flex; align-items:center; justify-content:space-between; gap: 32px; flex-wrap: wrap; }
.cta-band::after { content:""; position:absolute; right:-40px; top:-40px; width: 220px; height: 220px; border-radius: 999px; background: rgba(255,255,255,0.12); }
.cta-band h3 { font-size: clamp(26px,3vw,38px); color: var(--navy); margin: 0; letter-spacing: -0.02em; max-width: 620px; position: relative; z-index:1; }
.cta-band .btn { position: relative; z-index: 1; }
.cta-band .btn-navy:hover { background: var(--navy-deep); }

/* utility */
.tag-pill { display:inline-flex; align-items:center; gap:8px; padding:7px 14px; border-radius:999px; background:var(--cream-deep); color:var(--navy); font-size:12.5px; font-weight:600; }
.divider-ticks { color: var(--navy); }
.text-orange { color: var(--orange); }
