:root {
  --navy-950: #06101d;
  --navy-900: #0a1b2e;
  --navy-800: #102a46;
  --blue-600: #1675d1;
  --blue-500: #2793ef;
  --amber-500: #f2a51a;
  --amber-400: #ffc24a;
  --steel-100: #edf3f8;
  --steel-200: #dbe5ee;
  --steel-500: #708296;
  --ink: #122033;
  --white: #ffffff;
  --paper: #f4f1ea;
  --paper-deep: #e9e4da;
  --shadow: 0 20px 55px rgba(6, 16, 29, .12);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
figure { margin: 0; }
button, input, textarea, select { font: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--blue-600);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 26px; height: 3px; background: var(--amber-500); }
.eyebrow.on-dark { color: #8ecaff; }
h1, h2, h3 { margin: 0; color: var(--navy-950); line-height: 1.04; letter-spacing: -.045em; }
h1 { font-size: clamp(3rem, 7.2vw, 6.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.8rem); }
h3 { font-size: 1.35rem; }
h1 em, h2 em { color: var(--amber-500); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
p { margin: 0; }
.lead { color: #4f6071; font-size: clamp(1.05rem, 1.8vw, 1.25rem); max-width: 660px; }
.section { padding: clamp(78px, 10vw, 132px) 0; }
.section-dark { color: var(--white); background: var(--navy-950); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 36px; margin-bottom: 52px; }
.section-head .lead { max-width: 520px; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: var(--amber-500);
  color: var(--navy-950);
  font-weight: 800;
  transition: .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--amber-400); }
.button-outline { border-color: rgba(255,255,255,.4); background: transparent; color: var(--white); }
.button-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.button-dark { background: var(--navy-950); color: var(--white); }
.button-dark:hover { background: var(--navy-800); }
.button svg { width: 18px; height: 18px; }

.topbar { padding: 9px 0; color: #d7e4ef; background: #030b14; font-size: .76rem; letter-spacing: .03em; }
.topbar-row { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.topbar strong { color: #fff; font-weight: 700; }
.top-contact { display: flex; align-items: center; justify-content: flex-end; gap: 10px; }
.top-contact a { color: #fff; font-weight: 700; transition: color .2s ease; }
.top-contact a:hover { color: var(--amber-400); }
.top-contact-separator { color: #536a80; }
.top-whatsapp { padding: 3px 9px; border: 1px solid rgba(255,255,255,.22); color: #bff1d0 !important; }
.site-header { position: sticky; top: 0; z-index: 40; border-bottom: 1px solid rgba(10,27,46,.12); background: rgba(244,241,234,.94); backdrop-filter: blur(16px); }
.nav-row { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 13px; min-width: 220px; }
.brand-mark { position: relative; display: grid; width: 45px; height: 45px; place-items: center; overflow: hidden; border: 1px solid rgba(255,255,255,.18); color: white; background: var(--navy-950); font-weight: 900; letter-spacing: -.08em; box-shadow: inset 0 0 0 4px rgba(255,255,255,.035); }
.brand-mark::after { content: ""; position: absolute; right: 0; bottom: 0; width: 12px; height: 12px; background: var(--amber-500); }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { color: var(--navy-950); font-size: .92rem; letter-spacing: .05em; }
.brand-copy small { margin-top: 6px; color: var(--steel-500); font-size: .66rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 27px; }
.nav-links a { position: relative; color: #405268; font-size: .88rem; font-weight: 700; }
.nav-links a::after { content: ""; position: absolute; right: 0; bottom: -10px; left: 0; height: 2px; background: var(--amber-500); transform: scaleX(0); transition: .2s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--navy-950); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { padding: 13px 18px; color: white !important; background: var(--blue-600); border-radius: 4px; }
.nav-cta::after { display: none; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--steel-200); background: white; color: var(--navy-950); }
.menu-toggle svg { width: 23px; height: 23px; }

.hero { position: relative; min-height: 760px; display: grid; align-items: stretch; overflow: hidden; color: white; background: var(--navy-950); }
.hero-media { position: absolute; inset: 0 0 0 58%; overflow: hidden; }
.hero-media img { height: 100%; object-fit: cover; object-position: 58% center; opacity: .92; transform: scale(1.015); }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,16,29,.65), transparent 30%), linear-gradient(0deg, rgba(6,16,29,.42), transparent 38%); }
.hero-grid { position: absolute; inset: 0 42% 0 0; opacity: .11; background-image: linear-gradient(rgba(255,255,255,.32) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.32) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(90deg, #000, transparent 92%); }
.hero-content { position: relative; z-index: 2; width: 100%; padding: 104px 0 64px; }
.hero h1 { max-width: 760px; color: white; font-size: clamp(3.8rem, 6.3vw, 6.15rem); }
.hero h1 span { display: block; color: white; }
.hero h1 em { display: block; color: var(--amber-400); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.hero .lead { margin-top: 28px; color: #c7d5e1; max-width: 610px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.hero-facts { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 630px; margin-top: 58px; border-top: 1px solid rgba(255,255,255,.23); }
.fact { padding: 24px 28px 0 0; }
.fact strong { display: block; color: #fff; font-size: 1.05rem; }
.fact span { color: #aebfd0; font-size: .8rem; }
.hero-rail { position: absolute; right: 0; bottom: 0; z-index: 3; width: 42%; padding: 18px 30px; color: var(--navy-950); background: var(--amber-500); font-weight: 900; font-size: .74rem; letter-spacing: .13em; text-transform: uppercase; }

.editorial-statement { position: relative; overflow: hidden; border-bottom: 1px solid #d8d1c5; background: var(--paper); }
.editorial-statement::after { content: "P"; position: absolute; right: -25px; bottom: -120px; color: rgba(6,16,29,.035); font-family: Georgia, "Times New Roman", serif; font-size: 28rem; line-height: 1; }
.statement-inner { position: relative; z-index: 1; padding: clamp(86px, 11vw, 146px) 0; }
.statement-inner h2 { max-width: 1020px; font-size: clamp(2.6rem, 5.3vw, 5.4rem); }
.statement-copy { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 6vw, 80px); max-width: 860px; margin: 48px 0 0 auto; padding-top: 28px; border-top: 1px solid #c9c1b4; color: #536274; }
.statement-copy p:first-child::before { content: "01"; display: block; margin-bottom: 16px; color: var(--blue-600); font-size: .76rem; font-weight: 900; letter-spacing: .13em; }
.statement-copy p:last-child::before { content: "02"; display: block; margin-bottom: 16px; color: var(--blue-600); font-size: .76rem; font-weight: 900; letter-spacing: .13em; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(44px, 8vw, 94px); align-items: center; }
.image-frame { position: relative; min-height: 520px; overflow: hidden; background: var(--navy-800); box-shadow: var(--shadow); }
.image-frame img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.image-frame::after { content: "Odisha · India"; position: absolute; right: 0; bottom: 0; padding: 13px 18px; color: var(--navy-950); background: var(--amber-500); font-size: .72rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.image-frame.building-frame::after { content: "Building construction · Odisha"; }
.body-copy { display: grid; gap: 22px; }
.body-copy h2 { max-width: 650px; }
.body-copy p { color: #536579; }
.check-list { display: grid; gap: 14px; margin: 8px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-weight: 700; }
.check-list li::before { content: ""; flex: 0 0 auto; width: 9px; height: 9px; margin-top: 8px; background: var(--amber-500); }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { position: relative; min-height: 290px; padding: 38px 34px; overflow: hidden; border: 1px solid #d6d0c6; background: #faf8f3; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card-number { display: block; margin-bottom: 45px; color: var(--blue-600); font-weight: 900; font-size: .8rem; letter-spacing: .12em; }
.card h3 { margin-bottom: 14px; }
.card p { color: #607184; }
.card-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 24px; color: var(--blue-600); font-weight: 800; font-size: .88rem; }
.card::after { content: ""; position: absolute; right: -40px; bottom: -40px; width: 95px; height: 95px; border: 18px solid #eef5fb; transform: rotate(45deg); }

.band { padding: 44px 0; color: white; background: var(--blue-600); }
.band-row { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 34px; align-items: center; }
.band-title { font-size: 1.05rem; font-weight: 800; }
.band-item { padding-left: 22px; border-left: 1px solid rgba(255,255,255,.35); }
.band-item strong { display: block; font-size: 1rem; }
.band-item span { color: #cbe6ff; font-size: .79rem; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: #26384b; }
.process-step { min-height: 290px; padding: 34px 28px; background: var(--navy-950); }
.process-step b { display: grid; width: 44px; height: 44px; margin-bottom: 48px; place-items: center; border: 1px solid #3b536d; color: var(--amber-400); font-size: .8rem; }
.process-step p { margin-top: 14px; color: #9fb1c4; font-size: .92rem; }

.site-journal { padding: clamp(78px, 10vw, 128px) 0; border-top: 1px solid #d8d1c5; background: #eae6de; }
.journal-head { display: grid; grid-template-columns: 1fr .7fr; align-items: end; gap: 48px; margin-bottom: 42px; }
.journal-head p:last-child { color: #5f6e7d; }
.journal-grid { display: grid; grid-template-columns: 1.15fr .85fr .85fr; gap: 14px; }
.journal-item { position: relative; min-height: 390px; overflow: hidden; background: var(--navy-900); }
.journal-item:first-child { min-height: 520px; }
.journal-item img { position: absolute; inset: 0; height: 100%; object-fit: cover; transition: transform .5s ease; }
.journal-item:hover img { transform: scale(1.035); }
.journal-item::after { content: ""; position: absolute; inset: 55% 0 0; background: linear-gradient(transparent, rgba(3,11,20,.9)); }
.journal-caption { position: absolute; right: 22px; bottom: 20px; left: 22px; z-index: 1; display: flex; justify-content: space-between; gap: 16px; align-items: end; color: white; }
.journal-caption strong { font-size: .95rem; }
.journal-caption span { color: #c7d5e1; font-size: .7rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }

.cta-panel { position: relative; display: grid; grid-template-columns: 1.3fr auto; gap: 30px; align-items: center; padding: clamp(42px, 7vw, 72px); overflow: hidden; color: white; background: var(--navy-900); }
.cta-panel::before { content: ""; position: absolute; inset: 0 0 0 auto; width: 36%; background: repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 2px, transparent 2px 14px); }
.cta-panel h2 { position: relative; color: white; max-width: 720px; }
.cta-panel p { position: relative; margin-top: 17px; color: #afc1d3; }
.cta-panel .button { position: relative; }

.page-hero { position: relative; padding: 118px 0 88px; overflow: hidden; color: white; background: linear-gradient(112deg, var(--navy-950) 0 70%, #0d2a48 70%); }
.page-hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(90deg, #000, transparent); }
.page-hero::after { content: ""; position: absolute; top: -170px; right: -120px; width: 480px; height: 480px; border: 80px solid rgba(39,147,239,.12); transform: rotate(30deg); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 920px; color: white; font-size: clamp(2.7rem, 6vw, 5.4rem); }
.page-hero .lead { margin-top: 22px; color: #b9c9d8; }
.breadcrumb { margin-top: 36px; color: #85a0ba; font-size: .82rem; font-weight: 700; }
.breadcrumb a { color: white; }

.detail-grid { display: grid; grid-template-columns: 320px 1fr; gap: 70px; }
.sidebar { align-self: start; position: sticky; top: 124px; padding: 28px; color: white; background: var(--navy-900); box-shadow: 14px 14px 0 var(--amber-500); }
.sidebar strong { display: block; margin-bottom: 18px; color: var(--amber-400); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; }
.sidebar a { display: block; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.12); color: #c5d1dc; font-weight: 700; font-size: .9rem; }
.sidebar a:hover { color: white; }
.content-stack { display: grid; gap: 56px; }
.content-block { scroll-margin-top: 120px; }
.content-block h2 { margin-bottom: 20px; }
.content-block p { color: #536579; }
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 28px; }
.info-tile { padding: 26px; border-left: 4px solid var(--amber-500); background: white; box-shadow: 0 10px 28px rgba(6,16,29,.06); }
.info-tile strong { display: block; margin-bottom: 8px; color: var(--navy-950); }
.info-tile span { color: #617386; font-size: .9rem; }

.capability-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.capability { padding: 36px; border: 1px solid #d6d0c6; background: #faf8f3; }
.capability b { display: inline-flex; margin-bottom: 30px; color: var(--blue-600); font-size: .78rem; letter-spacing: .12em; }
.capability h3 { margin-bottom: 13px; }
.capability p { color: #5c6e81; }

.sector-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.sector-card { min-height: 280px; display: flex; flex-direction: column; justify-content: end; padding: 36px; color: white; background: linear-gradient(135deg, var(--navy-900), var(--navy-800)); }
.sector-card:nth-child(2), .sector-card:nth-child(3) { background: linear-gradient(135deg, #0c3560, #145f9d); }
.sector-card span { color: var(--amber-400); font-weight: 900; font-size: .76rem; letter-spacing: .13em; text-transform: uppercase; }
.sector-card h3 { margin: 14px 0; color: white; font-size: 1.75rem; }
.sector-card p { color: #bdd0e3; max-width: 460px; }

.timeline { position: relative; display: grid; gap: 0; }
.timeline::before { content: ""; position: absolute; top: 0; bottom: 0; left: 31px; width: 2px; background: var(--steel-200); }
.timeline-step { position: relative; display: grid; grid-template-columns: 64px 1fr; gap: 28px; padding-bottom: 46px; }
.timeline-step:last-child { padding-bottom: 0; }
.timeline-dot { position: relative; z-index: 1; display: grid; width: 64px; height: 64px; place-items: center; color: white; background: var(--blue-600); border: 9px solid #f7fafc; font-size: .78rem; font-weight: 900; }
.timeline-copy { padding-top: 7px; }
.timeline-copy h3 { margin-bottom: 10px; }
.timeline-copy p { color: #5a6c7f; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 22px; }
.contact-card { padding: 44px 40px; color: white; background: var(--navy-950); box-shadow: 14px 14px 0 var(--amber-500); }
.contact-card h2 { color: white; }
.contact-details { display: grid; gap: 25px; margin-top: 38px; }
.contact-item { padding-top: 18px; border-top: 1px solid rgba(255,255,255,.15); }
.contact-item span { display: block; margin-bottom: 5px; color: #82a0bb; font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-item strong { color: white; font-size: 1rem; }
.contact-item a { color: white; text-decoration: underline; text-decoration-color: rgba(255,255,255,.3); text-underline-offset: 4px; }
.contact-item a:hover { color: var(--amber-400); }
.contact-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.contact-actions .button { min-height: 46px; padding: 0 16px; font-size: .86rem; }
.enquiry-card { padding: 44px 40px; border: 1px solid #d6d0c6; background: #faf8f3; }
.enquiry-card h2 { margin-bottom: 12px; }
.enquiry-card > p { margin-bottom: 28px; color: #5f7184; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { color: var(--navy-900); font-size: .82rem; font-weight: 800; }
.field input, .field textarea, .field select { width: 100%; min-height: 50px; border: 1px solid #cdd9e3; border-radius: 0; padding: 12px 14px; color: var(--ink); background: #fbfdff; }
.field textarea { min-height: 126px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: 3px solid rgba(39,147,239,.17); border-color: var(--blue-500); }
.form-note { margin-top: 14px; color: #718294; font-size: .78rem; }
.form-status { min-height: 28px; margin-top: 16px; padding: 0; color: #1f6f46; font-weight: 700; white-space: pre-line; }
.form-status:not(:empty) { padding: 18px; border-left: 4px solid #2793ef; background: #eef7ff; }

.site-footer { color: #b6c5d3; background: #030b14; }
.footer-main { display: grid; grid-template-columns: 1.25fr .65fr 1fr 1.1fr; gap: 44px; padding: 70px 0 52px; }
.site-footer .brand-copy strong { color: white; }
.footer-about { margin-top: 24px; max-width: 500px; color: #8fa4b8; }
.footer-title { display: block; margin-bottom: 18px; color: white; font-size: .8rem; letter-spacing: .11em; text-transform: uppercase; }
.footer-links { display: grid; gap: 11px; }
.footer-links a:hover { color: white; }
.footer-contact { display: grid; gap: 10px; }
.footer-contact a { color: #d9e5ef; }
.footer-contact a:hover { color: var(--amber-400); }
.footer-follow { display: flex; justify-content: space-between; align-items: center; gap: 28px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.1); }
.follow-wrap { display: flex; align-items: center; gap: 18px; }
.follow-label { color: white; font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.social-links { display: flex; flex-wrap: wrap; gap: 8px; }
.social-links a { display: grid; min-width: 38px; height: 34px; padding: 0 9px; place-items: center; border: 1px solid rgba(255,255,255,.16); color: #c8d5e1; font-size: 0; font-weight: 900; letter-spacing: .04em; transition: .2s ease; }
.social-links a::after { content: attr(aria-label); font-size: .68rem; }
.social-links a:hover { border-color: var(--amber-500); color: var(--navy-950); background: var(--amber-500); }
.developer-credit { display: flex; align-items: center; gap: 10px; color: #879aab; font-size: .72rem; }
.developer-credit img { width: 34px; height: 34px; padding: 4px; object-fit: contain; background: white; }
.developer-credit strong { color: white; font-size: .8rem; }
.footer-bottom { padding: 21px 0; border-top: 1px solid rgba(255,255,255,.1); font-size: .77rem; }
.footer-bottom-row { display: flex; justify-content: space-between; gap: 24px; }

.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 35; display: inline-flex; min-height: 52px; align-items: center; gap: 9px; padding: 0 16px; border: 1px solid rgba(255,255,255,.25); border-radius: 3px; color: white; background: #137a48; box-shadow: 0 15px 35px rgba(6,16,29,.22); font-size: .82rem; font-weight: 850; transition: .2s ease; }
.whatsapp-float:hover { transform: translateY(-3px); background: #0f8c4e; }
.whatsapp-float svg { width: 20px; height: 20px; }

@media (max-width: 960px) {
  .topbar-row { align-items: flex-start; flex-direction: column; gap: 4px; }
  .top-contact { justify-content: flex-start; flex-wrap: wrap; }
  .menu-toggle { display: grid; place-items: center; }
  .nav-links { position: absolute; inset: 100% 0 auto; display: none; padding: 30px 24px 40px; flex-direction: column; align-items: stretch; gap: 0; background: var(--paper); box-shadow: 0 25px 40px rgba(6,16,29,.14); }
  .menu-open .nav-links { display: flex; }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--steel-200); }
  .nav-links a::after { display: none; }
  .nav-cta { margin-top: 16px; padding: 15px 18px !important; text-align: center; }
  .hero { min-height: 720px; }
  .hero-media { inset: 0; }
  .hero-media img { opacity: .48; }
  .hero-media::after { background: linear-gradient(90deg, rgba(6,16,29,.97), rgba(6,16,29,.74) 68%, rgba(6,16,29,.42)); }
  .hero-grid { inset: 0; }
  .hero-rail { display: none; }
  .split, .detail-grid, .contact-grid { grid-template-columns: 1fr; }
  .detail-grid { gap: 42px; }
  .sidebar { position: static; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .band-row { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .journal-grid { grid-template-columns: 1fr 1fr; }
  .journal-item:first-child { grid-column: 1 / -1; }
  .footer-main { grid-template-columns: 1.3fr 1fr; }
  .footer-main > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1160px); }
  .section { padding: 72px 0; }
  .brand-copy strong { font-size: .78rem; }
  .brand-copy small { font-size: .58rem; }
  .hero { min-height: 720px; }
  .hero-content { padding: 78px 0 52px; }
  .hero h1 { font-size: clamp(2.7rem, 14vw, 4.1rem); }
  .hero-facts { grid-template-columns: 1fr; margin-top: 46px; }
  .fact { padding-top: 15px; }
  .section-head { align-items: start; flex-direction: column; margin-bottom: 36px; }
  .statement-copy { grid-template-columns: 1fr; }
  .journal-head, .journal-grid { grid-template-columns: 1fr; }
  .journal-item, .journal-item:first-child { min-height: 330px; grid-column: auto; }
  .image-frame { min-height: 380px; }
  .card-grid, .capability-list, .sector-grid, .info-grid, .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .band-row, .process-grid { grid-template-columns: 1fr; }
  .band-item { padding: 18px 0 0; border-top: 1px solid rgba(255,255,255,.35); border-left: 0; }
  .cta-panel { grid-template-columns: 1fr; }
  .page-hero { padding: 78px 0 62px; }
  .footer-main { grid-template-columns: 1fr; gap: 38px; }
  .footer-main > div:first-child { grid-column: auto; }
  .footer-follow, .follow-wrap { align-items: flex-start; flex-direction: column; }
  .footer-bottom-row { flex-direction: column; }
  .whatsapp-float { right: 14px; bottom: 14px; min-height: 48px; padding: 0 13px; }
  .whatsapp-float span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
