/* ==========================================================================
   SHANVI ENTERPRISES — Site Stylesheet
   Design language: "Site Line" — the diagonal hi-vis stripe worn on every
   worker in the brand photography, borrowed as the site's structural motif.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Zilla+Slab:wght@500;600;700&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@500;600&display=swap');

:root{
  /* --- Color tokens (sampled from the client's own brand marks) --- */
  --navy:        #0A1B33;   /* Midnight Navy — primary dark */
  --navy-2:      #142A4D;   /* Steel Blue — secondary panel / gradient end */
  --navy-3:      #1B3560;   /* lighter steel, borders on dark */
  --gold:        #C6942E;   /* Foundry Gold — primary accent */
  --amber:       #E3A83D;   /* Safety Amber — hover / CTA, hi-vis nod */
  --canvas:      #F6F4EF;   /* Canvas White — warm light section bg */
  --white:       #FFFFFF;
  --ink:         #23262B;   /* Graphite — body text */
  --ink-soft:    #5B6169;   /* muted text */
  --border:      #E4E0D6;
  --border-dark: rgba(255,255,255,.14);

  /* --- Type --- */
  --f-display: 'Zilla Slab', Georgia, serif;
  --f-body: 'Inter', -apple-system, Segoe UI, sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, Menlo, monospace;

  /* --- Layout --- */
  --container: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-pad: clamp(3.5rem, 8vw, 6.5rem);
  --radius-sm: 3px;

  --shadow-card: 0 1px 2px rgba(10,27,51,.06), 0 8px 24px -8px rgba(10,27,51,.14);
  --shadow-lift: 0 16px 40px -12px rgba(10,27,51,.28);

  --ease: cubic-bezier(.22,.68,0,1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; max-width: 100%; overflow-x: clip; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
body{
  margin: 0;
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  max-width: 100%; overflow-x: clip;
}
img, svg, iframe{ max-width: 100%; }
img{ display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
button{ font: inherit; cursor: pointer; }
h1,h2,h3,h4{ font-family: var(--f-display); font-weight: 700; line-height: 1.12; margin: 0; color: var(--navy); letter-spacing: -.01em; }
p{ margin: 0; }

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

.skip-link{
  position: absolute; left: -999px; top: 0; background: var(--gold); color: var(--navy);
  padding: .75rem 1.25rem; z-index: 1000; font-weight: 600;
}
.skip-link:focus{ left: 1rem; top: 1rem; }

.container{ width: min(100%, calc(var(--container) + (var(--gutter) * 2))); max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

.eyebrow{
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--f-mono); font-size: .78rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--gold);
  margin-bottom: .9rem;
}
.eyebrow::before{ content:''; width: 22px; height: 2px; background: var(--gold); display: inline-block; }
.section--dark .eyebrow, .navy-bg .eyebrow{ color: var(--amber); }

h2.h-section{ font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
.section-head{ max-width: 640px; margin-bottom: clamp(2rem, 5vw, 3.2rem); }
.section-head.center{ margin-inline: auto; text-align: center; }
.lead{ font-size: 1.08rem; color: var(--ink-soft); margin-top: .9rem; }
.section--dark .lead{ color: #C9D2E2; }

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .95rem 1.7rem; font-family: var(--f-body); font-weight: 600; font-size: .96rem;
  border: 1.5px solid transparent; border-radius: var(--radius-sm);
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn svg{ width: 18px; height: 18px; }
.btn--primary{ background: var(--gold); color: var(--navy); }
.btn--primary:hover{ background: var(--amber); transform: translateY(-2px); }
.btn--outline{ border-color: rgba(255,255,255,.55); color: var(--white); }
.btn--outline:hover{ background: rgba(255,255,255,.1); border-color: var(--white); transform: translateY(-2px); }
.btn--dark{ border-color: var(--navy); color: var(--navy); }
.btn--dark:hover{ background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn--block{ width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header{
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid var(--border-dark);
}
.site-header .container{ display: flex; align-items: center; justify-content: space-between; height: 84px; gap: 1.5rem; }
.brand{ display: flex; align-items: center; gap: .8rem; }
.brand-mark{ width: 46px; height: 46px; flex: none; }
.brand-word{ display: flex; flex-direction: column; line-height: 1; }
.brand-word .name{ font-family: var(--f-display); font-weight: 700; font-size: 1.28rem; color: var(--white); letter-spacing: .01em; }
.brand-word .tag{ font-family: var(--f-mono); font-size: .58rem; letter-spacing: .16em; color: var(--gold); text-transform: uppercase; margin-top: .28rem; }

.nav{ display: flex; align-items: center; gap: 2.2rem; }
.nav-links{ display: flex; gap: 2.1rem; }
.nav-links a{
  font-size: .95rem; font-weight: 500; color: #D7DCE6; position: relative; padding: .3rem 0;
}
.nav-links a::after{
  content:''; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px; background: var(--gold);
  transition: right .28s var(--ease);
}
.nav-links a:hover, .nav-links a[aria-current="page"]{ color: var(--white); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after{ right: 0; }

.header-actions{ display: flex; align-items: center; gap: .9rem; }
.call-pill{
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--gold); color: var(--navy); font-weight: 600; font-size: .88rem;
  padding: .6rem 1.05rem; border-radius: 999px; transition: background .2s var(--ease), transform .2s var(--ease);
}
.call-pill:hover{ background: var(--amber); transform: translateY(-1px); }
.call-pill svg{ width: 16px; height: 16px; }

.nav-toggle{
  display: none; background: none; border: 1.5px solid var(--border-dark); border-radius: var(--radius-sm);
  width: 44px; height: 44px; align-items: center; justify-content: center; color: var(--white);
}
.nav-toggle svg{ width: 22px; height: 22px; }

@media (max-width: 900px){
  .nav-links{
    position: fixed; inset: 84px 0 0 0; background: var(--navy);
    flex-direction: column; gap: 0; padding: 1rem var(--gutter) 2rem;
    transform: translateY(-8px); opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
    border-top: 1px solid var(--border-dark);
  }
  .nav-links.is-open{ opacity: 1; transform: translateY(0); visibility: visible; pointer-events: auto; }
  .nav-links a{ padding: 1.05rem 0; border-bottom: 1px solid var(--border-dark); font-size: 1.05rem; }
  .nav-links a::after{ display: none; }
  .nav-toggle{ display: inline-flex; }
  .call-pill .call-text{ display: none; }
  .call-pill{ padding: .6rem; }
}
@media (max-width: 560px){
  .site-header .container{ height: 72px; gap: .65rem; }
  .brand{ gap: .55rem; min-width: 0; }
  .brand-mark{ width: 38px; height: 38px; }
  .brand-word .name{ font-size: 1.05rem; white-space: nowrap; }
  .brand-word .tag{ font-size: .48rem; letter-spacing: .1em; }
  .nav{ gap: .55rem; }
  .header-actions{ gap: .45rem; }
  .nav-toggle{ width: 40px; height: 40px; }
  .nav-links{ inset: 72px 0 0; }
}
@media (max-width: 360px){
  .brand-word .tag{ display: none; }
  .brand-word .name{ font-size: .95rem; }
}

/* ---------- Signature: diagonal "site-line" divider ---------- */
.site-line{
  position: relative; height: clamp(46px, 7vw, 84px);
  background: var(--gold);
}
.site-line::before{
  content:''; position: absolute; inset: 0; background: var(--canvas);
  clip-path: polygon(0 0, 100% 0, 100% 30%, 0 100%);
}
.site-line--to-navy::before{ background: var(--navy); }
.site-line--from-navy{ background: var(--navy); }
.site-line--from-navy::before{ background: var(--canvas); clip-path: polygon(0 0, 100% 0, 100% 100%, 0 30%); }
.site-line--rev::before{ clip-path: polygon(0 0, 100% 0, 100% 100%, 0 55%); }

/* ---------- Sections ---------- */
.section{ padding-block: var(--section-pad); }
.section--canvas{ background: var(--canvas); }
.section--dark, .navy-bg{ background: var(--navy); color: var(--white); }
.section--dark h2, .section--dark h3, .section--dark h4{ color: var(--white); }
.section--dark p{ color: #C9D2E2; }
.section--tight{ padding-block: clamp(2.5rem, 5vw, 3.5rem); }

/* ---------- Page header band (About / Contact / Terms) ---------- */
.page-hero{
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white); padding-block: clamp(3.2rem, 8vw, 5.5rem) clamp(2.4rem,6vw,3.5rem);
  position: relative; overflow: hidden;
}
.page-hero::after{
  content:''; position: absolute; right: -6%; top: -30%; width: 480px; height: 480px;
  border: 60px solid rgba(198,148,46,.10); border-radius: 50%;
}
.page-hero .container{ position: relative; }
.breadcrumb{ font-family: var(--f-mono); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.page-hero h1{ color: var(--white); font-size: clamp(2.2rem, 5vw, 3.4rem); max-width: 720px; }
.page-hero .lead{ max-width: 620px; }

/* ---------- Icon badge ---------- */
.icon{ width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.icon-badge{
  width: 58px; height: 58px; border-radius: 50%; flex: none;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy); color: var(--gold); border: 1.5px solid var(--navy-3);
}
.icon-badge.on-canvas{ background: var(--white); border-color: var(--border); box-shadow: var(--shadow-card); }
.icon-badge.gold{ background: var(--gold); color: var(--navy); border-color: var(--gold); }
.icon-badge.sm{ width: 44px; height: 44px; }
.icon-badge.sm .icon{ width: 20px; height: 20px; }

/* ---------- Hero (home) ---------- */
.hero{ position: relative; background: var(--navy); overflow: hidden; }
.hero-media{ position: absolute; inset: 0; }
.hero-media img{ width: 100%; height: 100%; object-fit: cover; object-position: center 30%; filter: saturate(.85) contrast(1.05); opacity: .55; }
.hero-media::after{
  content:''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,27,51,.65) 0%, rgba(10,27,51,.88) 62%, var(--navy) 100%);
}
.hero-inner{ position: relative; padding-block: clamp(4.5rem, 11vw, 8rem) clamp(2.5rem, 6vw, 4rem); }
.hero h1{ color: var(--white); font-size: clamp(2.6rem, 6vw, 4.4rem); max-width: 780px; }
.hero h1 .accent{ color: var(--gold); }
.hero .lead{ max-width: 560px; font-size: 1.15rem; margin-top: 1.1rem; }
.hero-ctas{ display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }

.trust-strip{ position: relative; border-top: 1px solid var(--border-dark); margin-top: clamp(2.6rem,6vw,4rem); padding-top: clamp(1.6rem,4vw,2.2rem); }
.trust-strip ul{ display: flex; flex-wrap: wrap; gap: clamp(1.6rem,4vw,3rem); }
.trust-strip li{ display: flex; align-items: center; gap: .7rem; color: var(--white); font-weight: 600; font-size: .95rem; }
.trust-strip .icon{ width: 22px; height: 22px; color: var(--gold); }

/* ---------- Grids: services / industries ---------- */
.tile-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.tile{
  display: flex; align-items: center; gap: .9rem; padding: 1.1rem 1.2rem;
  background: var(--navy-2); border: 1px solid var(--border-dark); border-radius: var(--radius-sm);
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}
.tile:hover{ transform: translateY(-3px); background: #1a305c; border-color: rgba(198,148,46,.5); }
.tile .icon-badge{ width: 44px; height: 44px; background: rgba(198,148,46,.12); border-color: rgba(198,148,46,.35); color: var(--gold); }
.tile .icon-badge .icon{ width: 20px; height: 20px; }
.tile span{ font-weight: 600; font-size: .93rem; color: var(--white); }

.tile-grid.on-canvas .tile{ background: var(--white); border-color: var(--border); box-shadow: var(--shadow-card); }
.tile-grid.on-canvas .tile span{ color: var(--navy); }
.tile-grid.on-canvas .tile:hover{ border-color: var(--gold); }

.industry-grid{ display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.4rem 1rem; text-align: center; }
.industry-item{ display: flex; flex-direction: column; align-items: center; gap: .7rem; }
.industry-item .icon-badge{ width: 56px; height: 56px; }
.industry-item span{ font-weight: 600; font-size: .87rem; color: var(--navy); }

@media (max-width: 980px){
  .tile-grid{ grid-template-columns: repeat(2, 1fr); }
  .industry-grid{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px){
  .industry-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px){
  .tile-grid{ grid-template-columns: 1fr; }
  .hero-ctas .btn{ width: 100%; justify-content: center; }
  .trust-strip ul{ gap: 1rem; }
}

/* ---------- Checklist (Why choose us / Quality policy) ---------- */
.checklist{ display: grid; grid-template-columns: repeat(2, 1fr); gap: .9rem 2rem; }
.checklist li{ display: flex; align-items: flex-start; gap: .8rem; font-weight: 500; }
.checklist .check{
  width: 26px; height: 26px; border-radius: 50%; background: var(--gold); color: var(--navy); flex: none;
  display: flex; align-items: center; justify-content: center; margin-top: .1rem;
}
.checklist .check svg{ width: 14px; height: 14px; stroke-width: 3; }
.checklist.single-col{ grid-template-columns: 1fr; }
.checklist li p.note{ color: var(--ink-soft); font-weight: 400; font-size: .92rem; margin-top: .2rem; }
@media (max-width: 700px){ .checklist{ grid-template-columns: 1fr; } }

/* ---------- Quote block ---------- */
.quote-block{
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  border-radius: var(--radius-sm); padding: clamp(2.2rem, 5vw, 3.4rem); position: relative;
  border-left: 4px solid var(--gold);
}
.quote-block .mark{ font-family: var(--f-display); font-size: 3.5rem; color: var(--gold); line-height: .5; display: block; margin-bottom: .6rem; }
.quote-block p{ font-family: var(--f-display); font-size: clamp(1.35rem, 2.6vw, 1.9rem); color: var(--white); font-weight: 600; line-height: 1.35; }

/* ---------- Clients strip ---------- */
.clients-grid{ display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.clients-grid .client-logo{
  background: var(--white); display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: .55rem; padding: 1rem; min-height: 112px; text-align: center;
  font-family: var(--f-body); font-weight: 700; font-size: .92rem; color: var(--navy);
  letter-spacing: -.01em;
}
.client-logo img{ width: 48px; height: 48px; object-fit: contain; }
.client-logo span{ line-height: 1.2; }
@media (max-width: 900px){ .clients-grid{ grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px){ .clients-grid{ grid-template-columns: repeat(2, 1fr); } }

/* ---------- CTA band ---------- */
.cta-band{
  position: relative; background: var(--navy); color: var(--white); overflow: hidden;
  padding-block: clamp(3rem, 7vw, 4.5rem);
}
.cta-band-media{ position: absolute; inset: 0; }
.cta-band-media img{ width: 100%; height: 100%; object-fit: cover; opacity: .28; filter: grayscale(.3); }
.cta-band-media::after{ content:''; position: absolute; inset: 0; background: linear-gradient(90deg, var(--navy) 15%, rgba(10,27,51,.55) 100%); }
.cta-band .container{ position: relative; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band h2{ color: var(--white); font-size: clamp(1.6rem, 3.4vw, 2.3rem); max-width: 520px; }
@media (max-width: 560px){
  .cta-band .container{ text-align: center; justify-content: center; }
  .cta-band .btn{ width: 100%; justify-content: center; }
}

/* ---------- Footer ---------- */
.site-footer{ background: var(--navy); color: #C9D2E2; padding-block: clamp(3rem,6vw,4rem) 0; }
.footer-grid{ display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-brand .brand{ margin-bottom: 1rem; }
.footer-brand p{ max-width: 320px; color: #A9B3C4; font-size: .92rem; }
.footer-col h4{ color: var(--white); font-family: var(--f-mono); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.1rem; font-weight: 600; }
.footer-col ul{ display: flex; flex-direction: column; gap: .7rem; }
.footer-col a, .footer-col li{ color: #C9D2E2; font-size: .93rem; }
.footer-col a:hover{ color: var(--gold); }
.footer-col .fc-item{ display: flex; gap: .6rem; align-items: flex-start; }
.footer-col .fc-item .icon{ width: 17px; height: 17px; color: var(--gold); margin-top: .15rem; flex: none; }
.footer-bottom{
  border-top: 1px solid var(--border-dark); padding-block: 1.4rem; margin-top: 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .8rem; font-size: .84rem; color: #8E9BB3;
}
.footer-bottom a:hover{ color: var(--gold); }
@media (max-width: 860px){ .footer-grid{ grid-template-columns: 1fr; gap: 2.4rem; } }

/* ---------- Cards / two-col content ---------- */
.two-col{ display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 4.5rem); align-items: center; }
.two-col.reverse{ direction: rtl; }
.two-col.reverse > *{ direction: ltr; }
@media (max-width: 900px){ .two-col{ grid-template-columns: 1fr; } .two-col.reverse{ direction: ltr; } }

.img-frame{ position: relative; }
.img-frame img{ width: 100%; height: 100%; object-fit: cover; filter: saturate(.9) contrast(1.04); }
.img-frame::before{
  content:''; position: absolute; inset: -14px -14px auto auto; width: 70%; height: 70%;
  border: 3px solid var(--gold); z-index: -1;
}
.mv-cards{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; margin-top: 2rem; }
.mv-card{ background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 1.8rem; box-shadow: var(--shadow-card); }
.mv-card .icon-badge{ margin-bottom: 1rem; }
.mv-card h3{ font-size: 1.15rem; margin-bottom: .5rem; }
.mv-card p{ color: var(--ink-soft); font-size: .94rem; }
@media (max-width: 560px){ .mv-cards{ grid-template-columns: 1fr; } }

.badge-100{ display: inline-flex; align-items: center; gap: .8rem; background: var(--white); border: 1px solid var(--border); border-radius: 999px; padding: .6rem 1.2rem 0.6rem .7rem; box-shadow: var(--shadow-card); margin-top: 1.6rem; }
.badge-100 .num{ font-family: var(--f-display); font-weight: 700; color: var(--gold); font-size: 1.4rem; background: var(--navy); width: 44px; height:44px; border-radius: 50%; display:flex; align-items:center; justify-content:center; }
.badge-100 span.txt{ font-size: .85rem; font-weight: 600; color: var(--navy); line-height: 1.2; }

/* ---------- Process steps ---------- */
.process-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem 1.2rem; counter-reset: step; }
.process-step{ position: relative; padding-top: 2.6rem; }
.process-step .step-no{
  font-family: var(--f-mono); font-weight: 600; font-size: .82rem; color: var(--gold);
  border: 1.5px solid var(--gold); border-radius: 50%; width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.process-step h3{ font-size: 1.02rem; margin-bottom: .4rem; }
.process-step p{ color: var(--ink-soft); font-size: .88rem; }
.process-step::after{
  content:''; position: absolute; top: 17px; left: 44px; right: -1.2rem; height: 1.5px;
  background: repeating-linear-gradient(90deg, var(--border) 0 6px, transparent 6px 11px);
}
.process-grid .process-step:nth-child(4n)::after{ display:none; }
@media (max-width: 900px){
  .process-grid{ grid-template-columns: repeat(2, 1fr); }
  .process-grid .process-step:nth-child(2n)::after{ display: none; }
  .process-grid .process-step:nth-child(4n)::after{ display: block; }
}
@media (max-width: 560px){
  .process-grid{ grid-template-columns: 1fr; }
  .process-step::after{ display: none !important; }
}

/* ---------- Tabs (About page dense content) ---------- */
.tabs-nav{ display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2.2rem; border-bottom: 1px solid var(--border); }
.tab-btn{
  background: none; border: none; padding: .85rem 1.1rem; font-weight: 600; font-size: .92rem;
  color: var(--ink-soft); border-bottom: 2.5px solid transparent; margin-bottom: -1px;
  transition: color .2s, border-color .2s;
}
.tab-btn:hover{ color: var(--navy); }
.tab-btn[aria-selected="true"]{ color: var(--navy); border-color: var(--gold); }
.tab-panel{ display: none; }
.tab-panel.is-active{ display: block; }

.info-list{ display: flex; flex-direction: column; gap: 1.3rem; }
.info-list li{ display: flex; gap: 1rem; align-items: flex-start; }
.info-list .icon-badge{ width: 46px; height: 46px; }
.info-list .icon-badge .icon{ width: 21px; height: 21px; }
.info-list strong{ display: block; color: var(--navy); font-size: 1rem; margin-bottom: .15rem; }
.info-list span.d{ color: var(--ink-soft); font-size: .9rem; }

.strength-grid{ display: grid; grid-template-columns: repeat(2,1fr); gap: 1.4rem; }
.strength-item{ display: flex; gap: 1rem; align-items: flex-start; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 1.3rem; box-shadow: var(--shadow-card); }
@media (max-width: 700px){ .strength-grid{ grid-template-columns: 1fr; } }

/* ---------- Registration table ---------- */
.reg-table{ width: 100%; border-collapse: collapse; background: var(--white); box-shadow: var(--shadow-card); }
.reg-table tr{ border-bottom: 1px solid var(--border); }
.reg-table tr:last-child{ border-bottom: none; }
.reg-table td{ padding: 1.05rem 1.3rem; vertical-align: middle; }
.reg-table td:first-child{ width: 46px; }
.reg-table td:nth-child(2){ font-weight: 600; color: var(--navy); width: 40%; font-size: .93rem; }
.reg-table td:nth-child(3){ font-family: var(--f-mono); font-size: .88rem; color: var(--ink-soft); letter-spacing: .02em; }
.reg-table .icon-badge{ width: 34px; height: 34px; }
.reg-table .icon-badge .icon{ width: 16px; height: 16px; }
.reg-note{ display:flex; gap:.7rem; align-items:flex-start; background: #FBF6EA; border: 1px solid #EAD9AE; border-radius: var(--radius-sm); padding: 1rem 1.2rem; margin-top: 1.4rem; font-size: .87rem; color: #7A5E20; }
.reg-note .icon{ width:18px; height:18px; flex:none; margin-top:.1rem; }
@media (max-width: 560px){
  .reg-table, .reg-table tbody, .reg-table tr, .reg-table td{ display: block; width: 100%; }
  .reg-table tr{ position: relative; padding: 1rem 1rem 1rem 4rem; }
  .reg-table td{ padding: 0; border: 0; }
  .reg-table td:first-child{ position: absolute; left: 1rem; top: 1rem; width: auto; }
  .reg-table td:nth-child(2){ width: auto; font-size: .88rem; }
  .reg-table td:nth-child(3){ margin-top: .2rem; overflow-wrap: anywhere; font-size: .78rem; }
}

/* ---------- Contact page ---------- */
.contact-grid{ display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem,5vw,3.5rem); align-items: start; }
@media (max-width: 940px){ .contact-grid{ grid-template-columns: 1fr; } }
.contact-card{ background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); box-shadow: var(--shadow-card); }
.contact-detail{ display: flex; gap: 1rem; padding: 1.4rem 1.5rem; border-bottom: 1px solid var(--border); align-items: flex-start; }
.contact-detail:last-child{ border-bottom: none; }
.contact-detail strong{ display:block; color: var(--navy); font-size: .92rem; margin-bottom: .2rem; }
.contact-detail a, .contact-detail p{ color: var(--ink-soft); font-size: .93rem; }
.contact-detail a:hover{ color: var(--gold); }
.map-frame{ margin-top: 1.4rem; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-card); }
.map-frame iframe{ width: 100%; height: 260px; border: 0; display: block; }
.whatsapp-cta{
  display: flex; align-items: center; gap: .9rem; background: #F0FBF4; border: 1px solid #C9EBD3;
  border-radius: var(--radius-sm); padding: 1.1rem 1.3rem; margin-top: 1.4rem;
}
.whatsapp-cta .icon-badge{ background:#25D366; border-color:#25D366; color:#fff; }
.whatsapp-cta strong{ display:block; color: var(--navy); font-size: .93rem; }
.whatsapp-cta a{ margin-left: auto; }
@media (max-width: 420px){
  .whatsapp-cta{ flex-wrap: wrap; padding: 1rem; }
  .whatsapp-cta a{ width: 100%; margin-left: 0; justify-content: center; }
}

.form-card{ background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); box-shadow: var(--shadow-card); padding: clamp(1.6rem,4vw,2.4rem); }
.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 560px){ .form-row{ grid-template-columns: 1fr; } }
.field{ margin-bottom: 1.1rem; }
.field label{ display: block; font-size: .86rem; font-weight: 600; color: var(--navy); margin-bottom: .45rem; }
.field input, .field select, .field textarea{
  width: 100%; border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: .8rem .9rem;
  font: inherit; font-size: .94rem; color: var(--ink); background: var(--canvas);
  transition: border-color .2s, background .2s;
}
.field input, .field select, .field textarea, .form-card{ min-width: 0; }
.field input:focus, .field select:focus, .field textarea:focus{ border-color: var(--gold); background: var(--white); outline: none; }
.field textarea{ resize: vertical; min-height: 110px; }
.field .req{ color: var(--gold); }
.form-note{ font-size: .82rem; color: var(--ink-soft); margin-top: .9rem; }
.form-status{ margin-top: 1rem; font-size: .9rem; font-weight: 600; display:none; padding: .8rem 1rem; border-radius: var(--radius-sm); }
.form-status.ok{ display:block; background:#EAF7EE; color:#1E7B3C; }
.form-status.err{ display:block; background:#FCEDEC; color:#B3261E; }

/* ---------- Terms page ---------- */
.legal-notice{
  display: flex; gap: 1rem; background: #FBF6EA; border: 1px solid #EAD9AE; border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm); padding: 1.3rem 1.5rem; margin-bottom: 3rem; align-items: flex-start;
}
.legal-notice .icon{ width: 22px; height: 22px; color: #7A5E20; flex: none; margin-top: .1rem; }
.legal-notice p{ font-size: .93rem; color: #6B5219; line-height: 1.6; }
.legal-notice strong{ color: #5A430F; }

.legal-toc{ display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 3.2rem; }
.legal-toc a{
  font-family: var(--f-mono); font-size: .78rem; font-weight: 600; color: var(--navy);
  background: var(--white); border: 1px solid var(--border); border-radius: 999px; padding: .5rem 1rem;
  transition: border-color .2s, color .2s;
}
.legal-toc a:hover{ border-color: var(--gold); color: var(--gold); }

.legal-section{ padding-block: 1.8rem; border-bottom: 1px solid var(--border); scroll-margin-top: 110px; }
.legal-section:last-of-type{ border-bottom: none; }
.legal-section h2{ font-size: 1.3rem; display: flex; align-items: baseline; gap: .7rem; }
.legal-section h2 .n{ font-family: var(--f-mono); color: var(--gold); font-size: 1rem; }
.legal-section p, .legal-section li{ color: var(--ink-soft); font-size: .95rem; margin-top: .8rem; }
.legal-section ul{ display:flex; flex-direction:column; gap:.5rem; padding-left: 1.3rem; list-style: disc; }
.legal-section ul li{ margin-top:0; }

/* ---------- Misc utility ---------- */
.mt-lg{ margin-top: clamp(2rem,5vw,3rem); }
.reveal{ opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-visible{ opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .reveal{ opacity: 1; transform: none; } }

.center-copy{ max-width: 700px; margin-inline: auto; text-align: center; }
