@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Noto+Sans+Devanagari:wght@400;500;600;700&display=swap");

:root {
  --navy: #0a2f4a;
  --navy-deep: #062338;
  --blue: #12648a;
  --blue-soft: #e9f5fa;
  --green: #2f8b62;
  --green-deep: #1f6c4a;
  --green-soft: #e9f6ef;
  --orange: #f28b3c;
  --ink: #172a36;
  --muted: #627480;
  --line: #dce7ec;
  --surface: #f6fafb;
  --white: #fff;
  --shadow-sm: 0 8px 24px rgba(5, 42, 64, .08);
  --shadow: 0 20px 54px rgba(5, 42, 64, .13);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;
  --container: 1180px;
  --header-height: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", "Noto Sans Devanagari", system-ui, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
svg { width: 1.15em; height: 1.15em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { color: var(--navy); line-height: 1.15; letter-spacing: -.035em; }
h1 { font-size: clamp(2.55rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.45rem); }
h3 { font-size: 1.28rem; }
p { margin-bottom: 1rem; }
::selection { background: #c8ebdc; color: var(--navy); }

.container { width: min(calc(100% - 32px), var(--container)); margin-inline: auto; }
.narrow { width: min(100%, 780px); }
.section { padding: clamp(72px, 9vw, 120px) 0; position: relative; }
.section-sm { padding: 54px 0; }
.section-soft { background: var(--surface); }
.section-dark { color: rgba(255,255,255,.8); background: var(--navy-deep); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-green { background: var(--green-soft); }
.section-kicker {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 14px;
  color: var(--green-deep);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.section-kicker::before { width: 28px; height: 2px; background: var(--orange); content: ""; }
.section-dark .section-kicker { color: #8ee0b8; }
.section-heading { max-width: 760px; margin-bottom: 46px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading.center .section-kicker::before { display: none; }
.section-heading h2 { margin-bottom: 16px; }
.section-heading p { color: var(--muted); font-size: 1.02rem; }
.section-dark .section-heading p { color: rgba(255,255,255,.68); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  color: #ddf5e7;
  background: rgba(255,255,255,.08);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: #69d497; box-shadow: 0 0 0 5px rgba(105,212,151,.13); }
.lead { color: var(--muted); font-size: clamp(1rem, 1.7vw, 1.16rem); }
.text-green { color: var(--green); }
.text-orange { color: var(--orange); }
.accent-rule { width: 56px; height: 4px; margin: 20px 0; border-radius: 99px; background: linear-gradient(90deg, var(--orange), #f3b06d); }

.skip-link { position: fixed; z-index: 9999; top: -100px; left: 18px; padding: 10px 16px; color: white; background: var(--navy); border-radius: 0 0 8px 8px; }
.skip-link:focus { top: 0; }
.topbar { color: rgba(255,255,255,.85); background: var(--navy-deep); font-size: .77rem; }
.topbar-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.topbar-group, .topbar-link { display: flex; align-items: center; gap: 8px; }
.topbar-group { gap: 24px; }
.topbar-link svg { color: #7bd5a3; }
.topbar-note { color: #9eddbb; font-weight: 700; }
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 10px 30px rgba(4, 33, 51, .08); }
.nav-shell { min-height: var(--header-height); display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand img { width: 60px; height: 60px; object-fit: contain; border-radius: 50%; }
.brand span { display: grid; line-height: 1.18; }
.brand strong { color: var(--navy); font-size: .94rem; letter-spacing: -.015em; }
.brand small { margin-top: 4px; color: var(--green-deep); font-size: .66rem; font-weight: 700; letter-spacing: .04em; }
.primary-nav { display: flex; align-items: center; gap: clamp(14px, 1.8vw, 26px); }
.nav-link { position: relative; padding: 29px 0; color: #49606e; font-size: .78rem; font-weight: 700; white-space: nowrap; }
.nav-link::after { position: absolute; right: 0; bottom: 20px; left: 0; height: 2px; border-radius: 99px; background: var(--green); content: ""; transform: scaleX(0); transition: transform .2s ease; }
.nav-link:hover, .nav-link.is-active { color: var(--navy); }
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 12px; border: 0; border-radius: 12px; color: var(--navy); background: var(--blue-soft); cursor: pointer; }
.menu-toggle span { display: block; width: 22px; height: 2px; margin: 4px 0; border-radius: 9px; background: currentColor; transition: .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.btn:hover { transform: translateY(-2px) scale(1.025); }
.btn [data-phone-display], .nav-cta span { white-space: nowrap; }
.btn-primary { color: white; background: var(--green); box-shadow: 0 10px 22px rgba(47,139,98,.2); }
.btn-primary:hover { background: var(--green-deep); box-shadow: 0 14px 28px rgba(47,139,98,.28); }
.btn-secondary { color: var(--navy); background: white; border-color: var(--line); }
.btn-secondary:hover { border-color: #b9cbd3; box-shadow: var(--shadow-sm); }
.btn-outline-light { color: white; border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.06); }
.btn-outline-light:hover { background: rgba(255,255,255,.13); }
.btn-sm { min-height: 42px; padding: 11px 16px; border-radius: 10px; font-size: .75rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--green-deep); font-weight: 800; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 34px));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--ink);
  background: linear-gradient(135deg, #fff 0%, #f5fbf7 100%);
  isolation: isolate;
}
.hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at 78% 18%, rgba(47,139,98,.11), transparent 34%), radial-gradient(circle at 12% 20%, rgba(18,100,138,.08), transparent 30%), linear-gradient(135deg, #fff 0%, #f5fbf7 100%);
  content: "";
}
.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  height: 32%;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.78) 100%);
  content: "";
  pointer-events: none;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.hero-gradient-layer,
.hero-grid-pattern,
.hero-line-art,
.hero-wave { position: absolute; }
.hero-gradient-layer { inset: 0; background: radial-gradient(closest-side at 72% 28%, rgba(47,139,98,.12), transparent 70%), radial-gradient(closest-side at 18% 18%, rgba(18,100,138,.09), transparent 72%), radial-gradient(closest-side at 54% 82%, rgba(142,224,184,.13), transparent 70%); opacity: .9; }
.hero-grid-pattern { inset: 0; background-image: linear-gradient(rgba(10,47,74,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(10,47,74,.045) 1px, transparent 1px); background-size: 42px 42px; -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 86%, transparent 100%); mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 86%, transparent 100%); opacity: .42; }
.hero-line-art { fill: none; stroke: rgba(10,47,74,.11); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.hero-line-art-shield { right: 7%; top: 13%; width: 180px; }
.hero-line-art-family { left: 6%; bottom: 22%; width: 205px; }
.hero-wave { right: 0; bottom: -1px; left: 0; width: 100%; height: 140px; }
.hero-wave path:first-child { fill: rgba(233,246,239,.68); }
.hero-wave path:last-child { fill: rgba(255,255,255,.92); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr); align-items: center; padding: 112px 0 132px; }
.hero-copy { max-width: 820px; text-align: left; }
.hero .eyebrow,
.hero h1,
.hero-copy > p,
.hero .btn-row,
.hero-trust li { opacity: 0; animation: heroFadeIn .72s ease-out forwards; }
.hero .eyebrow { color: var(--green-deep); border-color: rgba(47,139,98,.16); background: rgba(255,255,255,.76); box-shadow: 0 16px 36px rgba(10,47,74,.07); backdrop-filter: blur(14px); animation-delay: .04s; }
.hero h1 { max-width: 820px; margin: 20px 0 24px; color: var(--navy-deep); font-size: 5.1rem; letter-spacing: 0; text-shadow: none; animation-delay: .12s; }
.hero h1 span { color: transparent; background: linear-gradient(115deg, var(--green-deep), var(--blue)); -webkit-background-clip: text; background-clip: text; }
.hero-copy > p { max-width: 680px; margin-bottom: 30px; color: #415967; font-size: 1.12rem; animation-delay: .2s; }
.hero .btn-row { animation-delay: .28s; }
.hero .btn { transition: transform .22s ease-out, box-shadow .22s ease-out, background-color .22s ease-out, border-color .22s ease-out; }
.hero .btn:hover { transform: scale(1.03); box-shadow: 0 16px 34px rgba(10,47,74,.12); }
.hero .btn-outline-light { color: var(--navy); border-color: rgba(10,47,74,.15); background: rgba(255,255,255,.7); box-shadow: 0 12px 28px rgba(10,47,74,.08); backdrop-filter: blur(14px); }
.hero .btn-outline-light:hover { border-color: rgba(47,139,98,.26); background: rgba(255,255,255,.9); }
.hero .btn-secondary { color: white; border-color: transparent; background: linear-gradient(135deg, var(--green), var(--blue)); box-shadow: 0 14px 30px rgba(47,139,98,.2); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 12px 20px; margin: 30px 0 0; padding: 0; list-style: none; color: #415967; font-size: .78rem; font-weight: 800; }
.hero-trust li { display: flex; align-items: center; gap: 7px; animation-delay: .36s; }
.hero-trust li:nth-child(2) { animation-delay: .42s; }
.hero-trust li:nth-child(3) { animation-delay: .48s; }
.hero-trust li::before { width: 18px; height: 18px; display: grid; place-items: center; border-radius: 50%; color: var(--green-deep); background: rgba(47,139,98,.12); content: "\2713"; font-size: .66rem; }

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.form-field { display: grid; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { color: #3e5562; font-size: .72rem; font-weight: 800; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid #cfdee5;
  border-radius: 10px;
  outline: 0;
  color: var(--ink);
  background: white;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-field textarea { min-height: 104px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(47,139,98,.1); }
.form-consent { display: flex; gap: 9px; align-items: flex-start; grid-column: 1 / -1; color: var(--muted); font-size: .69rem; }
.form-consent input { margin-top: 4px; accent-color: var(--green); }
.form-status { grid-column: 1 / -1; margin: 0; font-size: .72rem; font-weight: 700; }
.form-status:empty { display: none; }
.form-status.is-notice { padding: 10px; border-radius: 8px; color: #7a4a12; background: #fff2d9; }
.form-status.is-success { color: var(--green-deep); }

.trust-strip { position: relative; z-index: 2; margin-top: -46px; }
.trust-strip-inner { display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow); }
.trust-item { padding: 26px; display: flex; gap: 14px; align-items: center; border-right: 1px solid var(--line); }
.trust-item:last-child { border: 0; }
.trust-icon, .service-icon, .reason-icon { width: 48px; height: 48px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 14px; color: var(--green-deep); background: var(--green-soft); font-weight: 800; }
.trust-icon svg, .service-icon svg, .reason-icon svg { width: 22px; height: 22px; }
.trust-item strong { display: block; color: var(--navy); font-size: .9rem; }
.trust-item small { color: var(--muted); font-size: .71rem; }

.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(44px, 8vw, 100px); align-items: center; }
.image-composition { position: relative; min-height: 560px; }
.image-main { width: 82%; height: 520px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.image-float { position: absolute; right: 0; bottom: 6px; width: 45%; height: 270px; object-fit: cover; border: 8px solid white; border-radius: var(--radius); box-shadow: var(--shadow); }
.experience-badge { position: absolute; top: 28px; right: 4px; width: 138px; min-height: 116px; display: grid; place-items: center; padding: 16px; border-radius: 50% 50% 50% 10%; color: white; background: var(--green); box-shadow: 0 16px 32px rgba(47,139,98,.3); text-align: center; }
.experience-badge strong { display: block; font-size: 1.48rem; line-height: 1; }
.experience-badge span { font-size: .68rem; font-weight: 700; }
.check-list { display: grid; gap: 13px; margin: 24px 0 30px; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 11px; align-items: flex-start; color: #455e6b; }
.check-list li::before { width: 23px; height: 23px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; color: var(--green-deep); background: var(--green-soft); content: "✓"; font-size: .74rem; font-weight: 900; }

.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card, .reason-card, .info-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 8px 30px rgba(7,45,64,.05);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover, .reason-card:hover, .info-card:hover { transform: translateY(-6px); border-color: #b9d6c6; box-shadow: var(--shadow); }
.service-card::after { position: absolute; right: -24px; bottom: -34px; width: 110px; height: 110px; border-radius: 50%; background: var(--green-soft); content: ""; opacity: .55; }
.service-icon { margin-bottom: 22px; }
.service-card h3, .reason-card h3 { margin-bottom: 10px; }
.service-card p, .reason-card p, .info-card p { color: var(--muted); font-size: .84rem; }
.service-card .text-link { position: relative; z-index: 1; margin-top: 5px; font-size: .78rem; }
.reason-card { padding: 25px; }
.reason-icon { margin-bottom: 18px; color: var(--blue); background: var(--blue-soft); }
.mission-vision-section { background: linear-gradient(180deg, #fff 0%, var(--green-soft) 100%); }
.mission-vision-section .section-heading { margin-bottom: 34px; }
.mission-vision-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(20px, 3vw, 30px); }
.mission-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 22px;
  align-items: start;
  min-height: 260px;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(185, 214, 198, .78);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.92);
  box-shadow: 0 12px 34px rgba(7,45,64,.07);
  transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease, background-color .32s ease;
}
.mission-card::after { position: absolute; right: -42px; bottom: -50px; width: 170px; height: 170px; border-radius: 50%; background: var(--green-soft); content: ""; opacity: .65; }
.mission-card > * { position: relative; z-index: 1; }
.mission-card:hover, .mission-card:active, .mission-card:focus-visible { transform: translateY(-8px); border-color: #a9d7bf; background: white; box-shadow: 0 24px 58px rgba(5,42,64,.14); outline: 0; }
.mission-icon { width: 76px; height: 76px; display: grid; place-items: center; border-radius: 22px; color: var(--green-deep); background: var(--green-soft); box-shadow: inset 0 0 0 1px rgba(47,139,98,.12); transition: transform .32s ease, background-color .32s ease, color .32s ease; }
.mission-icon.vision { color: var(--blue); background: var(--blue-soft); }
.mission-icon svg { width: 34px; height: 34px; }
.mission-card:hover .mission-icon, .mission-card:active .mission-icon, .mission-card:focus-visible .mission-icon { transform: scale(1.07); }
.mission-label { display: inline-flex; margin-bottom: 12px; color: var(--green-deep); font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.mission-card h3 { margin-bottom: 13px; font-size: clamp(1.35rem, 2vw, 1.75rem); letter-spacing: -.015em; }
.mission-card p { margin: 0; color: #455e6b; font-size: clamp(.98rem, 1.35vw, 1.08rem); }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.process-step { position: relative; padding: 0 28px; text-align: center; }
.process-step:not(:last-child)::after { position: absolute; top: 29px; left: calc(50% + 38px); width: calc(100% - 76px); height: 1px; background: repeating-linear-gradient(90deg, #98b8a6 0 6px, transparent 6px 12px); content: ""; }
.step-number { position: relative; z-index: 1; width: 60px; height: 60px; display: grid; place-items: center; margin: 0 auto 18px; border: 6px solid white; border-radius: 50%; color: white; background: var(--green); box-shadow: 0 0 0 1px #a9d7bf, 0 10px 22px rgba(47,139,98,.2); font-size: .83rem; font-weight: 800; }
.process-step h3 { margin-bottom: 8px; font-size: 1.05rem; }
.process-step p { color: var(--muted); font-size: .78rem; }

.facility-showcase { display: grid; grid-template-columns: 1.25fr .75fr .75fr; grid-template-rows: 230px 230px; gap: 16px; }
.facility-tile { position: relative; overflow: hidden; border-radius: var(--radius); background: #dbe9ed; }
.facility-tile:first-child { grid-row: 1 / 3; }
.facility-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.facility-tile:hover img { transform: scale(1.045); }
.facility-label { position: absolute; right: 14px; bottom: 14px; left: 14px; padding: 12px 14px; border-radius: 12px; color: white; background: rgba(4,35,53,.82); backdrop-filter: blur(8px); font-size: .78rem; font-weight: 800; }

.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 190px; gap: 14px; }
.gallery-item { position: relative; grid-column: span 4; overflow: hidden; padding: 0; border: 0; border-radius: 18px; background: #dbe9ed; cursor: zoom-in; }
.gallery-item.wide { grid-column: span 8; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, filter .5s ease; }
.gallery-item::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(2,27,42,.75)); content: ""; opacity: .55; transition: opacity .25s ease; }
.gallery-item span { position: absolute; z-index: 1; right: 18px; bottom: 15px; left: 18px; color: white; font-size: .76rem; font-weight: 800; text-align: left; transform: translateY(6px); opacity: 0; transition: .25s ease; }
.gallery-item:hover img { transform: scale(1.05); filter: saturate(1.08); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover span { transform: translateY(0); opacity: 1; }
.gallery-dialog { width: min(92vw, 980px); padding: 0; border: 0; border-radius: 20px; overflow: hidden; color: white; background: #061f30; box-shadow: 0 30px 100px rgba(0,0,0,.4); }
.gallery-dialog::backdrop { background: rgba(2,15,23,.84); backdrop-filter: blur(5px); }
.gallery-dialog img { width: 100%; max-height: 76vh; object-fit: contain; background: #061f30; }
.gallery-dialog footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 18px; }
.gallery-dialog p { margin: 0; font-size: .8rem; }
.gallery-close { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; color: white; background: transparent; cursor: pointer; }

.video-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 22px; }
.video-card { position: relative; min-height: 400px; display: flex; align-items: flex-end; overflow: hidden; padding: 30px; border-radius: var(--radius); color: white; background: var(--navy); }
.video-card::before { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,36,54,.18), rgba(5,36,54,.93)), url("../images/group-activity-02.jpg") center / cover; content: ""; }
.video-card.tour::before { background-image: linear-gradient(180deg, rgba(5,36,54,.15), rgba(5,36,54,.93)), url("../images/safe-zone-building-front-updated.jpg"); }
.video-content { position: relative; z-index: 1; }
.video-content h3 { margin: 16px 0 8px; color: white; font-size: 1.55rem; }
.video-content p { margin: 0; color: rgba(255,255,255,.7); font-size: .8rem; }
.play-button { width: 62px; height: 62px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; color: var(--navy); background: white; box-shadow: 0 0 0 9px rgba(255,255,255,.12); }
.play-button svg { width: 23px; height: 23px; margin-left: 3px; fill: currentColor; stroke: none; }
.media-status { display: inline-flex; padding: 7px 10px; border-radius: 999px; color: #ffe7c9; background: rgba(242,139,60,.18); font-size: .67rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.video-card.instagram-video-card { height: 400px; align-items: stretch; justify-content: center; padding: 0; color: var(--ink); background: var(--white); border: 1px solid var(--line); }
.video-card.instagram-video-card::before { display: none; }
.instagram-embed-shell { position: absolute; inset: 0; width: 100%; min-width: 0; display: flex; align-items: center; justify-content: center; overflow: hidden; background: var(--white); }
.instagram-video-card .instagram-media { width: 100% !important; min-width: 0 !important; max-width: 540px !important; height: 100% !important; margin: 0 auto !important; border: 0 !important; border-radius: var(--radius) !important; box-shadow: none !important; background: var(--white) !important; }
.instagram-video-card iframe { width: 100% !important; min-width: 0 !important; max-width: 540px !important; height: 100% !important; margin: 0 auto !important; border-radius: var(--radius) !important; }
.instagram-fallback { position: absolute; z-index: 2; right: 24px; bottom: 24px; left: 24px; display: none; width: max-content; max-width: calc(100% - 48px); margin-inline: auto; text-align: center; white-space: nowrap; }
.instagram-video-card.embed-failed .instagram-embed-shell { opacity: .18; }
.instagram-video-card.embed-failed .instagram-fallback { display: inline-flex; }

.faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(40px, 8vw, 100px); align-items: start; }
.faq-aside { position: sticky; top: 125px; }
.faq-aside-card { margin-top: 26px; padding: 24px; border-radius: var(--radius); color: white; background: var(--navy); }
.faq-aside-card h3 { color: white; }
.faq-aside-card p { color: rgba(255,255,255,.7); font-size: .82rem; }
.faq-list { display: grid; gap: 12px; }
.faq-list details { border: 1px solid var(--line); border-radius: 16px; background: white; transition: border-color .2s ease, box-shadow .2s ease; }
.faq-list details[open] { border-color: #bdd9ca; box-shadow: var(--shadow-sm); }
.faq-list summary { position: relative; padding: 20px 54px 20px 22px; color: var(--navy); font-size: .9rem; font-weight: 800; list-style: none; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; top: 18px; right: 18px; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; color: var(--green-deep); background: var(--green-soft); content: "+"; font-size: 1.2rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-answer { padding: 0 22px 20px; color: var(--muted); font-size: .84rem; }

.contact-band { overflow: hidden; padding: 0; background: var(--green); }
.contact-band-inner { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; min-height: 260px; }
.contact-band-copy { padding: 48px 0; color: white; }
.contact-band-copy h2 { margin-bottom: 14px; color: white; }
.contact-band-copy p { max-width: 620px; color: rgba(255,255,255,.78); }
.contact-band-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; }

.page-hero { position: relative; min-height: 390px; display: grid; place-items: center; overflow: hidden; color: white; background: var(--navy-deep); text-align: center; }
.page-hero::before { position: absolute; inset: 0; background: linear-gradient(rgba(4,33,49,.78), rgba(4,33,49,.88)), var(--page-hero-image, url("../images/center-front-02.jpg")) center / cover; content: ""; }
.page-hero .container { position: relative; z-index: 1; padding-block: 72px; }
.page-hero h1 { max-width: 920px; margin: 14px auto; color: white; font-size: clamp(2.8rem, 6vw, 4.8rem); }
.page-hero p { max-width: 700px; margin: 0 auto; color: rgba(255,255,255,.72); }
.breadcrumbs { display: flex; justify-content: center; gap: 8px; color: rgba(255,255,255,.65); font-size: .73rem; font-weight: 700; }
.breadcrumbs a { color: #a6e1c1; }
.about-hero { --page-hero-image: url("../images/center-front-02.jpg"); }
.services-hero { --page-hero-image: url("../images/safe-zone-counselling-hall-updated.jpg"); }
.facilities-hero { --page-hero-image: url("../images/room-shared-02.jpg"); }
.gallery-hero { --page-hero-image: url("../images/group-activity-01.jpg"); }
.stories-hero { --page-hero-image: url("../images/group-activity-03.jpg"); }
.contact-hero { --page-hero-image: url("../images/safe-zone-building-front-updated.jpg"); }
.blog-hero { --page-hero-image: url("../images/uploaded-real-photo-19.jpg"); }
.blog-card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.blog-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 10px 28px rgba(7,45,64,.06); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.blog-card:hover { transform: translateY(-6px); border-color: #b9d6c6; box-shadow: var(--shadow); }
.blog-card img { width: 100%; height: 210px; object-fit: cover; transition: transform .45s ease; }
.blog-card:hover img { transform: scale(1.045); }
.blog-card-body { padding: 22px; }
.blog-card h2, .blog-card h3 { margin: 10px 0 10px; font-size: 1.08rem; letter-spacing: -.015em; }
.blog-card p { color: var(--muted); font-size: .82rem; }
.blog-tag { display: inline-flex; align-items: center; padding: 6px 10px; border-radius: 99px; color: var(--green-deep); background: var(--green-soft); font-size: .66rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.blog-featured { width: 100%; aspect-ratio: 3 / 2; max-height: 560px; object-fit: cover; border-radius: var(--radius-lg); background: #dbe9ed; box-shadow: var(--shadow); }
.article-inline-img { display: block; width: 100%; aspect-ratio: 3 / 2; max-height: 420px; margin: 6px 0 28px; object-fit: cover; border-radius: var(--radius); background: #dbe9ed; box-shadow: var(--shadow-sm); }
.blog-article { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: clamp(36px, 6vw, 72px); align-items: start; }
.article-content { color: #344d5a; font-size: 1rem; }
.article-content h2 { margin-top: 38px; font-size: clamp(1.7rem, 3vw, 2.35rem); }
.article-content h3 { margin-top: 28px; font-size: 1.24rem; letter-spacing: 0; }
.article-content p { margin-bottom: 1.05rem; }
.article-content ul { display: grid; gap: 10px; margin: 18px 0 24px; padding-left: 22px; }
.article-content li::marker { color: var(--green); }
.article-sidebar { position: sticky; top: 122px; display: grid; gap: 18px; }
.article-side-card { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow-sm); }
.article-side-card h2, .article-side-card h3 { margin-bottom: 10px; font-size: 1.05rem; letter-spacing: 0; }
.article-side-card p, .article-side-card a { color: var(--muted); font-size: .8rem; }
.article-side-card a { display: block; margin-top: 9px; color: var(--green-deep); font-weight: 800; }
.article-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; margin-top: 22px; }
.article-meta span { padding: 7px 10px; border: 1px solid rgba(255,255,255,.18); border-radius: 99px; color: rgba(255,255,255,.78); background: rgba(255,255,255,.08); font-size: .68rem; font-weight: 800; }
.article-cta { margin-top: 42px; padding: clamp(28px, 5vw, 46px); border-radius: var(--radius-lg); color: white; background: linear-gradient(135deg, var(--navy), var(--green-deep)); box-shadow: var(--shadow); }
.article-cta h2 { margin-bottom: 12px; color: white; font-size: clamp(1.8rem, 4vw, 2.7rem); }
.article-cta p { color: rgba(255,255,255,.78); }
.article-cta .btn-secondary { border-color: rgba(255,255,255,.34); }
.related-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.related-blog-card { padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: white; transition: transform .2s ease, box-shadow .2s ease; }
.related-blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.related-blog-card h3 { font-size: 1rem; }
.related-blog-card p { color: var(--muted); font-size: .78rem; }

.statement-card { padding: clamp(28px, 5vw, 50px); border-radius: var(--radius-lg); color: white; background: var(--navy); }
.statement-card h2 { color: white; }
.statement-card p { color: rgba(255,255,255,.72); }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card { padding: 30px; border-radius: var(--radius); background: var(--surface); }
.value-card .number { display: block; margin-bottom: 16px; color: var(--orange); font-size: .75rem; font-weight: 800; letter-spacing: .12em; }
.director-card { display: grid; grid-template-columns: .72fr 1.28fr; overflow: hidden; border-radius: var(--radius-lg); background: var(--green-soft); }
.director-card img { width: 100%; height: 100%; min-height: 460px; object-fit: cover; }
.director-message { align-self: center; padding: clamp(32px, 6vw, 72px); }
.quote-mark { color: var(--green); font-family: Georgia, serif; font-size: 5rem; line-height: .6; }

.service-detail { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(36px, 7vw, 86px); align-items: center; padding: 44px 0; border-bottom: 1px solid var(--line); }
.service-detail:last-child { border: 0; }
.service-detail:nth-child(even) .service-detail-media { order: 2; }
.service-detail-media img { width: 100%; height: 360px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.service-detail-media img.image-focus-office { object-position: center 62%; }
.service-pill { display: inline-flex; padding: 7px 11px; border-radius: 99px; color: var(--green-deep); background: var(--green-soft); font-size: .69rem; font-weight: 800; }

.facility-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.facility-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.facility-card img { width: 100%; height: 320px; object-fit: cover; }
.facility-card-content { padding: 24px; }
.facility-card-content p { color: var(--muted); font-size: .83rem; }
.facility-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.facility-meta span { padding: 6px 9px; border-radius: 99px; color: var(--green-deep); background: var(--green-soft); font-size: .66rem; font-weight: 800; }

.gallery-filter-note { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 28px; }
.gallery-filter-note span { padding: 8px 12px; border: 1px solid var(--line); border-radius: 99px; color: var(--muted); background: white; font-size: .7rem; font-weight: 800; }
.gallery-grid.full { grid-auto-rows: 240px; }
.gallery-grid.full .gallery-item.wide { grid-row: span 2; }

.privacy-note { padding: 20px 22px; border-left: 4px solid var(--green); border-radius: 0 14px 14px 0; color: #47606c; background: var(--green-soft); font-size: .8rem; }
.story-principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.story-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.story-card .story-number { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 18px; border-radius: 12px; color: white; background: var(--green); font-weight: 800; }
.story-card p { color: var(--muted); font-size: .83rem; }
.milestone-list { display: grid; gap: 0; max-width: 900px; margin: 0 auto; }
.milestone { display: grid; grid-template-columns: 110px 1fr; gap: 30px; padding: 25px 0; border-bottom: 1px solid var(--line); }
.milestone:last-child { border: 0; }
.milestone strong { color: var(--green-deep); font-size: .78rem; text-transform: uppercase; }
.milestone p { margin: 0; color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(32px, 6vw, 70px); align-items: start; }
.contact-panel { padding: 32px; border-radius: var(--radius); color: white; background: var(--navy); }
.contact-panel h2, .contact-panel h3 { color: white; }
.contact-panel > p { color: rgba(255,255,255,.68); }
.contact-methods { display: grid; gap: 12px; margin-top: 24px; }
.contact-method { display: flex; gap: 13px; align-items: flex-start; padding: 16px; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; background: rgba(255,255,255,.05); }
.contact-method svg { flex: 0 0 auto; margin-top: 3px; color: #8ee0b8; }
.contact-method strong { display: block; color: white; font-size: .8rem; }
.contact-method span { color: rgba(255,255,255,.68); font-size: .75rem; }
.contact-form-card { padding: clamp(28px, 5vw, 46px); border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow-sm); }
.contact-form-card h2 { margin-bottom: 8px; }
.contact-form-card > p { margin-bottom: 28px; color: var(--muted); }
.contact-form-card .btn { grid-column: 1 / -1; justify-self: start; }
.map-frame { width: 100%; height: 440px; display: block; border: 0; border-radius: var(--radius); filter: saturate(.85); }

.site-footer { padding-top: 72px; color: rgba(255,255,255,.7); background: #041d2d; }
.footer-grid { display: grid; grid-template-columns: 1.45fr .65fr .8fr 1fr; gap: clamp(28px, 4vw, 54px); padding-bottom: 56px; }
.brand-light strong { color: white; }
.brand-light small { color: #86d8ab; }
.footer-brand > p { max-width: 360px; margin-top: 20px; font-size: .82rem; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 7px; }
.footer-badges span { padding: 5px 8px; border: 1px solid rgba(255,255,255,.13); border-radius: 99px; font-size: .62rem; font-weight: 700; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-column h2 { margin: 5px 0 13px; color: white; font-size: .9rem; letter-spacing: 0; }
.footer-column a { font-size: .75rem; transition: color .2s ease; }
.footer-column a:hover { color: white; }
.footer-contact a, .footer-contact p { display: flex; gap: 9px; align-items: flex-start; margin: 0; font-size: .75rem; }
.footer-contact svg { flex: 0 0 auto; margin-top: 3px; color: #78d19f; }
.footer-bottom { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: .68rem; }
.footer-bottom p { margin: 0; }
.health-note { color: #e4bf95; }
.floating-call, .floating-whatsapp { position: fixed; z-index: 990; right: 22px; width: 58px; height: 58px; display: grid; place-items: center; border: 3px solid white; border-radius: 50%; color: white; box-shadow: 0 14px 30px rgba(4,31,45,.25); }
.floating-call { bottom: 92px; background: var(--navy); }
.floating-whatsapp { bottom: 22px; background: #1fa463; }
.floating-call svg, .floating-whatsapp svg { width: 27px; height: 27px; }
.floating-call:hover, .floating-whatsapp:hover { transform: translateY(-3px) scale(1.04); }
.mobile-call-bar { display: none; }

.reveal {
  --reveal-x: 0;
  --reveal-y: 40px;
  --reveal-delay: 0s;
  opacity: 0;
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0);
  transition: opacity .7s cubic-bezier(.2, .75, .25, 1), transform .7s cubic-bezier(.2, .75, .25, 1);
  transition-delay: var(--reveal-delay);
  will-change: opacity, transform;
}
.reveal-up, .reveal-card { --reveal-x: 0; --reveal-y: 40px; }
.reveal-left { --reveal-x: -40px; --reveal-y: 0; }
.reveal-right { --reveal-x: 40px; --reveal-y: 0; }
.reveal.is-visible { opacity: 1; transform: none; will-change: auto; }
.reveal-delay-1 { --reveal-delay: .09s; }
.reveal-delay-2 { --reveal-delay: .18s; }
.reveal-delay-3 { --reveal-delay: .27s; }
.reveal-delay-4 { --reveal-delay: .36s; }
.reveal-delay-5 { --reveal-delay: .45s; }
.reveal-delay-6 { --reveal-delay: .54s; }
.reveal-delay-7 { --reveal-delay: .63s; }
.reveal-delay-8 { --reveal-delay: .72s; }
.service-card.reveal.is-visible:hover,
.reason-card.reveal.is-visible:hover,
.info-card.reveal.is-visible:hover,
.blog-card.reveal.is-visible:hover { transform: translateY(-6px); }
.related-blog-card.reveal.is-visible:hover { transform: translateY(-4px); }
.mission-card.reveal.is-visible:hover,
.mission-card.reveal.is-visible:active,
.mission-card.reveal.is-visible:focus-visible { transform: translateY(-8px); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; transition-delay: 0s; }
  .hero .eyebrow, .hero h1, .hero-copy > p, .hero .btn-row, .hero-trust li { opacity: 1; animation: none; }
}

@media (max-width: 1080px) {
  :root { --header-height: 76px; }
  .topbar-address, .topbar-note { display: none; }
  .topbar-inner { justify-content: center; }
  .nav-shell { position: relative; }
  .menu-toggle { display: block; }
  .primary-nav { position: fixed; z-index: 1001; inset: calc(38px + var(--header-height)) 0 auto 0; max-height: calc(100vh - 114px); display: grid; gap: 0; padding: 18px 22px 28px; overflow-y: auto; background: white; border-top: 1px solid var(--line); box-shadow: 0 24px 45px rgba(4,31,45,.16); transform: translateY(-130%); opacity: 0; visibility: hidden; transition: transform .25s ease, opacity .25s ease, visibility .25s; }
  .primary-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-link { padding: 13px 4px; border-bottom: 1px solid var(--line); font-size: .85rem; }
  .nav-link::after { display: none; }
  .nav-cta { margin-top: 14px; }
  .hero-grid { padding: 96px 0 116px; }
  .hero h1 { font-size: 4.25rem; }
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .facility-showcase { grid-template-columns: 1fr 1fr; }
  .facility-tile:first-child { grid-column: 1 / 2; }
  .facility-tile:nth-child(4) { grid-column: 2; }
  .footer-grid { grid-template-columns: 1.3fr .7fr .9fr; }
  .footer-contact { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; align-items: center; }
  .footer-contact h2 { width: 100%; }
}

@media (max-width: 820px) {
  .split-grid, .faq-layout, .contact-band-inner, .director-card, .service-detail, .contact-grid, .blog-article { grid-template-columns: 1fr; }
  .mission-vision-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero::after { opacity: .8; }
  .hero-grid { max-width: 760px; padding: 84px 0 104px; }
  .hero h1 { font-size: 3.75rem; }
  .hero-copy { max-width: 720px; margin-inline: auto; text-align: center; }
  .hero-copy > p { margin-inline: auto; }
  .hero .btn-row { justify-content: center; }
  .hero-line-art-shield { right: 3%; top: 10%; width: 150px; }
  .hero-line-art-family { left: 2%; bottom: 18%; width: 170px; }
  .image-composition { min-height: 500px; }
  .image-main { height: 460px; }
  .cards-3, .value-grid, .story-principles, .blog-card-grid, .related-blog-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 0; }
  .process-step:nth-child(2)::after { display: none; }
  .gallery-item { grid-column: span 6; }
  .gallery-item.wide { grid-column: span 6; }
  .video-grid { grid-template-columns: 1fr; }
  .video-card { min-height: 360px; }
  .video-card.instagram-video-card { height: 360px; }
  .faq-aside { position: static; }
  .contact-band-actions { justify-content: flex-start; padding-bottom: 48px; }
  .director-card img { min-height: 380px; max-height: 520px; }
  .service-detail:nth-child(even) .service-detail-media { order: 0; }
  .article-sidebar { position: static; grid-template-columns: repeat(2, 1fr); }
  .facility-detail-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  :root { --radius: 18px; --radius-lg: 24px; }
  body { padding-bottom: 58px; }
  .container { width: min(calc(100% - 24px), var(--container)); }
  .section { padding: 68px 0; }
  .topbar { display: none; }
  .brand img { width: 51px; height: 51px; }
  .brand strong { font-size: .83rem; }
  .brand small { font-size: .58rem; }
  .primary-nav { inset: var(--header-height) 0 auto; max-height: calc(100vh - var(--header-height)); }
  .hero { min-height: auto; }
  .hero::after { opacity: .9; }
  .hero-grid { padding: 66px 0 78px; gap: 26px; }
  .hero h1 { font-size: 3rem; }
  .hero-copy > p { font-size: .96rem; }
  .hero .btn { width: 100%; }
  .hero-line-art { opacity: .1; }
  .hero-line-art-shield { right: -40px; top: 8%; width: 120px; }
  .hero-line-art-family { left: -44px; bottom: 20%; width: 150px; }
  .hero-wave { height: 98px; }
  .hero-trust { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full, .form-consent { grid-column: auto; }
  .trust-strip { margin-top: 0; padding-top: 16px; }
  .trust-strip-inner { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .image-composition { min-height: 410px; }
  .image-main { width: 90%; height: 385px; }
  .image-float { width: 48%; height: 190px; border-width: 5px; }
  .experience-badge { top: 18px; width: 112px; min-height: 96px; }
  .mission-card { grid-template-columns: 1fr; min-height: 0; }
  .mission-icon { width: 64px; height: 64px; border-radius: 18px; }
  .mission-icon svg { width: 29px; height: 29px; }
  .cards-3, .cards-4, .value-grid, .story-principles, .blog-card-grid, .related-blog-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 26px; }
  .process-step { display: grid; grid-template-columns: 54px 1fr; gap: 15px; padding: 0; text-align: left; }
  .process-step:not(:last-child)::after { top: 55px; left: 26px; width: 1px; height: calc(100% + 26px); background: repeating-linear-gradient(180deg, #98b8a6 0 6px, transparent 6px 12px); }
  .step-number { width: 54px; height: 54px; grid-row: 1 / 3; margin: 0; }
  .process-step h3 { margin: 5px 0 0; }
  .process-step p { margin: 0; }
  .facility-showcase { grid-template-columns: 1fr; grid-template-rows: repeat(4, 260px); }
  .facility-tile:first-child, .facility-tile:nth-child(4) { grid-column: auto; grid-row: auto; }
  .gallery-grid, .gallery-grid.full { display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: 190px; }
  .gallery-item, .gallery-item.wide { grid-column: span 1; }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item:nth-child(3n+1) { grid-column: 1 / -1; }
  .gallery-item span { opacity: 1; transform: none; }
  .video-card { min-height: 330px; padding: 24px; }
  .video-card.instagram-video-card { height: 330px; padding: 0; }
  .instagram-video-card .instagram-media, .instagram-video-card iframe { max-width: none !important; }
  .instagram-fallback { right: 16px; bottom: 18px; left: 16px; max-width: calc(100% - 32px); }
  .page-hero { min-height: 350px; }
  .page-hero h1 { font-size: clamp(2.6rem, 13vw, 3.7rem); }
  .blog-card img { height: 230px; }
  .article-sidebar { grid-template-columns: 1fr; }
  .article-content { font-size: .96rem; }
  .facility-card img { height: 270px; }
  .gallery-grid.full { grid-auto-rows: 210px; }
  .gallery-grid.full .gallery-item.wide { grid-row: span 1; }
  .milestone { grid-template-columns: 1fr; gap: 5px; }
  .map-frame { height: 360px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-contact { grid-column: auto; }
  .footer-contact { flex-direction: column; align-items: flex-start; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding: 18px 0; }
  .floating-call, .floating-whatsapp { right: 15px; width: 52px; height: 52px; }
  .floating-call { bottom: 134px; }
  .floating-whatsapp { bottom: 72px; }
  .mobile-call-bar { position: fixed; z-index: 989; right: 0; bottom: 0; left: 0; min-height: 58px; display: flex; align-items: center; justify-content: center; gap: 10px; color: white; background: var(--navy); box-shadow: 0 -8px 25px rgba(3,27,41,.18); font-size: .84rem; font-weight: 800; }
}
@media (max-width: 390px) {
  .brand small { display: none; }
  .hero h1 { font-size: 2.62rem; }
  .hero-trust { grid-template-columns: 1fr; }
  .gallery-grid, .gallery-grid.full { grid-template-columns: 1fr; }
  .gallery-item, .gallery-item:nth-child(3n+1) { grid-column: 1; }
}
