:root {
  --primary: #b7102a;
  --primary-d: #8f061b;
  --primary-soft: #ffdad8;
  --accent: #f1b51c;
  --accent-soft: #fff4c9;
  --navy: #1d3557;
  --dark: #191c1e;
  --text: #18212f;
  --muted: #536173;
  --light: #f7f9fb;
  --surface: #ffffff;
  --surface-2: #eef3f8;
  --border: #dfe6ee;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 14px 34px rgba(29, 53, 87, .10);
  --shadow-sm: 0 4px 18px rgba(29, 53, 87, .07);
  --max: 1180px;
  --gap: 1.5rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--light);
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(183, 16, 42, .22);
  outline-offset: 3px;
}
ul { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }

h1, h2, h3, h4, h5 {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.12;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: 0;
}
h1 { font-size: clamp(2.25rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.65rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; }
h5 {
  width: max-content;
  max-width: 100%;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 800; }

.container { width: min(92%, var(--max)); margin-inline: auto; }
.section { padding: clamp(4rem, 7vw, 6.5rem) 0; }
.section--alt {
  background:
    linear-gradient(180deg, rgba(247,249,251,.92), rgba(239,244,249,.94));
  border-block: 1px solid rgba(223, 230, 238, .72);
}
.section--dark {
  background: #252b31;
  color: #fff;
}
.section--dark h2,
.section--dark h3,
.section--dark h5 { color: #fff; }
.section--dark p { color: rgba(255,255,255,.78); }
.section--purpose {
  background:
    radial-gradient(circle at 15% 10%, rgba(183,16,42,.08), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f7f9fb 100%);
  border-block: 1px solid rgba(223, 230, 238, .72);
}
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.eyebrow {
  display: inline-grid;
  gap: .42rem;
  min-height: 28px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--navy);
  line-height: 1;
}
.eyebrow::before {
  content: none;
}
.eyebrow::after {
  content: "";
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary) 0 46%, var(--accent) 46% 100%);
}
.section--dark .eyebrow,
.eyebrow-light {
  color: #fff;
}
.section--purpose .eyebrow,
.cta-banner--light .eyebrow {
  color: var(--navy);
}
.cta-banner:not(.cta-banner--light) .eyebrow {
  color: #fff;
}
.section--dark .eyebrow::after,
.eyebrow-light::after,
.cta-banner:not(.cta-banner--light) .eyebrow::after {
  background: linear-gradient(90deg, #fff 0 46%, var(--accent) 46% 100%);
}
.section-header {
  max-width: 720px;
  margin: 0 auto 3rem;
}
.section-header h2,
.section-header h1 { margin-top: .85rem; }
.section-title-offset { margin-top: .75rem; margin-bottom: 1.25rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 44px;
  padding: .78rem 1.2rem;
  border-radius: 8px;
  font-weight: 800;
  font-size: .95rem;
  line-height: 1;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 20px rgba(183, 16, 42, .18);
}
.btn-primary:hover { background: var(--primary-d); }
.btn-accent {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 20px rgba(183, 16, 42, .18);
}
.btn-accent:hover { background: var(--primary-d); }
.btn-outline {
  border: 1.5px solid #c8d3df;
  color: var(--navy);
  background: rgba(255,255,255,.82);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(223,230,238,.9);
  box-shadow: 0 4px 18px rgba(29,53,87,.05);
  backdrop-filter: blur(12px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
}
.nav-logo {
  display: flex;
  align-items: center;
  min-width: 160px;
}
.nav-logo img {
  width: 170px;
  height: 62px;
  object-fit: contain;
  object-position: left center;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-weight: 700;
  font-size: .94rem;
  color: var(--navy);
  border-bottom: 2px solid transparent;
  transition: color .18s ease, border-color .18s ease, background .18s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  border-color: var(--primary);
  text-decoration: none;
}
.nav-links .nav-cta,
.nav-links .nav-cta.active {
  color: #fff;
  border-bottom: 0;
}
.nav-cta { margin-left: .35rem; padding-inline: 1.2rem; }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: .25s;
  border-radius: 2px;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.language-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.language-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--navy);
  background: #fff;
  transition: color .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.language-trigger:hover,
.language-switch.open .language-trigger {
  color: var(--primary);
  border-color: rgba(183,16,42,.38);
  background: var(--primary-soft);
  box-shadow: 0 8px 20px rgba(29,53,87,.08);
}
.language-trigger svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}
.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 120;
  min-width: 172px;
  padding: .45rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity .16s ease, visibility .16s ease, transform .16s ease;
}
.language-switch.open .language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.language-menu button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  width: 100%;
  min-height: 42px;
  padding: .65rem .7rem;
  border-radius: 8px;
  color: var(--text);
  font-size: .92rem;
  font-weight: 750;
  text-align: left;
  white-space: nowrap;
}
.language-menu button:hover {
  background: var(--surface-2);
  color: var(--primary);
}
.language-menu button.active {
  background: var(--primary-soft);
  color: var(--primary);
}
.language-menu button.active::after {
  content: "";
  width: 8px;
  height: 14px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4.75rem, 8vw, 7rem) 0 2.25rem;
  background:
    radial-gradient(circle at 80% 0%, rgba(183,16,42,.10), transparent 34%),
    linear-gradient(180deg, #fff 0%, #f7f9fb 100%);
  text-align: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(180deg, transparent, rgba(223,230,238,.58));
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
}
.hero h5 { margin-bottom: 1rem; }
.hero h1 {
  max-width: 880px;
  margin-bottom: 1.25rem;
}
.hero .subtitle {
  max-width: 700px;
  margin-bottom: 1.8rem;
  color: #385174;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .8rem;
}
.hero .container::after {
  content: "";
  display: block;
  width: min(100%, 900px);
  aspect-ratio: 16 / 6.3;
  min-height: 230px;
  margin-top: 2.4rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(29,53,87,.04), rgba(29,53,87,.10)),
    url("../img/who-we-are.jpeg") center 42% / cover no-repeat;
  box-shadow: var(--shadow);
}
.trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1rem 0 1.3rem;
}
.trust-grid div {
  position: relative;
  min-height: 118px;
  padding: 1.25rem 1.35rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-top: 5px solid var(--accent);
  box-shadow: var(--shadow-sm);
}
.trust-grid strong {
  display: block;
  margin-bottom: .35rem;
  color: var(--dark);
  font-size: 1.02rem;
  line-height: 1.25;
}
.trust-grid span {
  display: block;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.5;
}

.services-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.service-card,
.value-card,
.mv-card,
.vm-card,
.netlify-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.service-card {
  position: relative;
  min-height: 290px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  border-left: 4px solid var(--primary);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.service-card:hover,
.value-card:hover,
.mv-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.service-card svg,
.value-card svg,
.vm-card svg {
  width: 44px;
  height: 44px;
  fill: var(--primary);
}
.service-card p,
.value-card p {
  color: var(--muted);
  font-size: .96rem;
}
.services-cta { text-align: center; margin-top: 2.5rem; }

.two-col,
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.about-intro { align-items: start; }
.two-col.flip .two-col-img { order: -1; }
.two-col-text p,
.about-intro p,
.mv-card p { color: var(--muted); }
.two-col-img img,
.about-intro-images img,
.team-grid img,
.about-gallery img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.two-col-img img { aspect-ratio: 4 / 3; }
.btn-spaced { margin-top: 1.25rem; }

.vm-grid,
.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}
.vm-card {
  padding: 2rem;
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
}
.vm-card svg { fill: var(--accent); margin-bottom: 1rem; }
.section--purpose .vm-card {
  background: #fff;
  border-color: var(--border);
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow-sm);
}
.section--purpose .vm-card h3 { color: var(--dark); }
.section--purpose .vm-card p { color: var(--muted); }
.section--purpose .vm-card svg { fill: var(--primary); }
.mission-vision .mv-card { padding: 2rem; }
.mv-card h2 { font-size: 1.45rem; margin-bottom: 1rem; }
.quote-block {
  margin: 1.75rem 0 0;
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--accent-soft);
  color: #4b3300;
  font-style: italic;
}

.value-card {
  min-height: 250px;
  padding: 2rem;
  text-align: center;
}
.value-card svg { margin: 0 auto 1rem; }
.value-card h3 { margin-bottom: .6rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.gallery-grid img:first-child { object-position: center top; }
.gallery-grid .wide { grid-column: span 2; }
.gallery-grid .tall { grid-row: span 2; }
.about-intro-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.about-intro-images img { height: 220px; }
.about-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 2.5rem 0;
}
.about-gallery img { height: 260px; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.team-grid img { height: 260px; }

/* ── Gallery ─────────────────────────────────────────────────────────── */
.gallery-intro { padding-bottom: clamp(2.5rem, 4vw, 3.5rem); }
.gallery-intro .section-header { margin-bottom: 2rem; }
.gallery-intro .section-header p { color: var(--muted); margin-top: 1rem; }
.album-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
  max-width: 900px;
  margin: 0 auto;
}
.album-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: .5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-size: .88rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  transition: color .18s ease, border-color .18s ease, background .18s ease, transform .18s ease;
}
.album-chip:hover {
  color: var(--primary);
  border-color: var(--accent);
  background: var(--accent-soft);
  text-decoration: none;
  transform: translateY(-1px);
}
.album { padding-block: clamp(3rem, 5vw, 4.5rem); scroll-margin-top: 100px; }
.album-header { margin-bottom: 2rem; }
.album-header h2 { margin-top: .85rem; }
.album-count {
  margin-top: .5rem;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 700;
}
.album-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gal-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  background: var(--surface-2);
}
.gal-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(29,53,87,.28));
  opacity: 0;
  transition: opacity .2s ease;
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.gal-item:hover img { transform: scale(1.06); }
.gal-item:hover::after { opacity: 1; }

/* ── Lightbox ────────────────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(16, 20, 27, .93);
  backdrop-filter: blur(4px);
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: min(94vw, 1100px);
  max-height: 82vh;
  border-radius: 12px;
  box-shadow: 0 30px 70px rgba(0,0,0,.5);
  animation: lb-in .2s ease;
}
@keyframes lb-in { from { opacity: 0; transform: scale(.97); } to { opacity: 1; transform: scale(1); } }
.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  transition: background .18s ease, transform .18s ease;
}
.lightbox-close {
  top: clamp(1rem, 3vw, 1.75rem);
  right: clamp(1rem, 3vw, 1.75rem);
  width: 48px;
  height: 48px;
  font-size: 2rem;
  line-height: 1;
}
.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  font-size: 2.2rem;
  line-height: 1;
}
.lightbox-prev { left: clamp(.75rem, 3vw, 2rem); }
.lightbox-next { right: clamp(.75rem, 3vw, 2rem); }
.lightbox-close:hover,
.lightbox-nav:hover { background: var(--primary); }
.lightbox-nav:hover { transform: translateY(-50%) scale(1.06); }
.lightbox-counter {
  position: absolute;
  bottom: clamp(1rem, 3vw, 1.75rem);
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}
.video-wrap {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #000;
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-label {
  margin-top: .85rem;
  font-weight: 700;
  color: var(--muted);
  text-align: center;
}
.blog-item .video-label {
  color: var(--dark);
  font-size: 1.05rem;
  text-align: left;
}
.blog-item .video-desc {
  margin-top: .3rem;
  color: var(--muted);
  font-size: .94rem;
  text-align: left;
}
.blog-link { display: block; color: inherit; }
.blog-link:hover { text-decoration: none; }
.blog-link .video-label,
.blog-link .video-desc { display: block; }
.blog-link-thumb {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #8f061b 0%, #b7102a 55%, #cf243c 100%);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.blog-link-thumb.has-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-link-thumb.has-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .5));
}
.blog-link-play,
.blog-link-badge { position: relative; z-index: 1; }
.blog-link-play {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, .16);
  border: 2px solid rgba(255, 255, 255, .72);
  transition: background .2s ease;
}
.blog-link-play svg { width: 28px; height: 28px; margin-left: 3px; }
.blog-link-badge {
  color: #fff;
  font-weight: 800;
  font-size: .9rem;
  letter-spacing: .02em;
  padding: .3rem .8rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, .2);
}
.blog-link:hover .blog-link-thumb {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.blog-link:hover .blog-link-play { background: rgba(255, 255, 255, .3); }

.cta-banner {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 7vw, 6rem) 0;
  background:
    linear-gradient(90deg, transparent 0 9%, rgba(241,181,28,.34) 9% 10.5%, transparent 10.5% 100%),
    linear-gradient(90deg, transparent 0 89.5%, rgba(241,181,28,.30) 89.5% 91%, transparent 91% 100%),
    linear-gradient(135deg, #8f061b 0%, #b7102a 54%, #cf243c 100%);
  color: #fff;
  text-align: center;
}
.cta-banner::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 2rem;
  width: min(720px, 74vw);
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: translateX(-50%);
}
.cta-banner .container {
  position: relative;
  z-index: 1;
}
.cta-banner h1 {
  max-width: 760px;
  margin: .9rem auto 1rem;
  color: #fff;
}
.cta-banner p {
  max-width: 680px;
  margin-inline: auto;
  color: rgba(255,255,255,.78);
}
.cta-actions {
  display: flex;
  gap: .8rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}
.cta-banner .btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.45);
}
.cta-banner .btn-outline:hover {
  background: #fff;
  color: var(--navy);
}
.cta-banner:not(.cta-banner--light) .btn-accent {
  background: var(--accent);
  color: #241a1b;
  box-shadow: 0 10px 24px rgba(0,0,0,.16);
}
.cta-banner:not(.cta-banner--light) .btn-accent:hover {
  background: #ffd45a;
}
.cta-banner--light {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(241,181,28,.22) 12% 13.5%, transparent 13.5% 100%),
    linear-gradient(90deg, transparent 0 86.5%, rgba(241,181,28,.20) 86.5% 88%, transparent 88% 100%),
    linear-gradient(180deg, #fff 0%, #f7f9fb 100%);
  color: var(--text);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-banner--light::before,
.cta-banner--light::after {
  content: "";
  position: absolute;
  left: 50%;
  width: min(760px, 76vw);
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: translateX(-50%);
  opacity: .95;
}
.cta-banner--light::before { top: 2rem; }
.cta-banner--light::after { bottom: 2rem; }
.cta-banner--light .container {
  position: relative;
  z-index: 1;
}
.cta-banner--light h1 { color: var(--dark); }
.cta-banner--light p { color: var(--muted); }
.cta-banner--light .btn-outline {
  background: #fff;
  color: var(--navy);
  border-color: #c8d3df;
}
.cta-banner--light .btn-outline:hover {
  color: var(--primary);
  border-color: var(--primary);
}
.cta-banner--light .social-links a {
  color: var(--navy);
}
.cta-banner--light .social-links a:hover {
  color: var(--primary);
}
.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  min-height: 44px;
  color: rgba(255,255,255,.82);
  font-weight: 700;
}
.social-links a:hover { color: #fff; text-decoration: none; }
.social-links svg { width: 20px; height: 20px; fill: currentColor; }

.page-hero {
  padding: clamp(3rem, 6vw, 5.25rem) 0;
  background:
    radial-gradient(circle at 80% 0%, rgba(183,16,42,.10), transparent 32%),
    linear-gradient(180deg, #fff, #f7f9fb);
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero--accent-edge {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 6.75rem) 0;
  text-align: left;
  background:
    linear-gradient(180deg, #fff 0%, #f7f9fb 100%);
}
.page-hero--accent-edge::before {
  content: "";
  position: absolute;
  left: 0;
  top: clamp(1.75rem, 3vw, 2.25rem);
  bottom: clamp(1.75rem, 3vw, 2.25rem);
  width: 9px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(180deg, #b7102a, #cf243c);
}
.page-hero--accent-edge::after {
  content: "";
  position: absolute;
  right: max(3%, 24px);
  top: clamp(1.75rem, 3vw, 2.25rem);
  width: 112px;
  height: 112px;
  border-top: 11px solid var(--accent);
  border-right: 11px solid var(--accent);
  border-radius: 0 18px 0 0;
  opacity: .92;
}
.page-hero--accent-edge .container {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: start;
  gap: .8rem;
  max-width: 980px;
  padding-left: clamp(1.5rem, 4vw, 4rem);
}
.page-hero--accent-edge h1 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  margin-bottom: .1rem;
}
.page-hero--accent-edge .breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}
.page-hero--accent-edge .breadcrumb::before {
  content: "";
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary) 0 46%, var(--accent) 46% 100%);
}
.page-hero h1 { margin-bottom: .75rem; }
.page-hero .breadcrumb {
  color: var(--muted);
  font-size: .94rem;
}
.page-hero .breadcrumb a { color: var(--navy); font-weight: 700; }

.form-section {
  max-width: 860px;
  margin-inline: auto;
  padding: clamp(4rem, 7vw, 6rem) 0;
}
.form-section h2 { margin-bottom: .6rem; }
.form-section .form-intro {
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 760px;
}
.netlify-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.3rem, 3vw, 2.25rem);
  border-left: 4px solid var(--primary);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.field label {
  font-weight: 800;
  font-size: .92rem;
  color: var(--dark);
}
.field label .req { color: var(--primary); }
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: .75rem 1rem;
  border: 1.5px solid #d8e1ea;
  border-radius: 8px;
  font: inherit;
  font-size: 1rem;
  color: var(--text);
  background: #fbfdff;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(183, 16, 42, .12);
}
.field textarea { min-height: 140px; resize: vertical; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%23536173' d='M5.5 7.5 10 12l4.5-4.5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  padding-right: 2.6rem;
}
.checkbox-group {
  display: grid;
  gap: .55rem;
  margin-top: .25rem;
}
.checkbox-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  min-height: 44px;
  color: var(--text);
  cursor: pointer;
}
.checkbox-item input[type="checkbox"] {
  width: 19px;
  height: 19px;
  accent-color: var(--primary);
  cursor: pointer;
}
.hidden { display: none; }
.form-submit { margin-top: .35rem; }
.form-submit .btn {
  width: 100%;
  min-height: 50px;
}
.contact-methods {
  margin-top: 2rem;
  padding: 1.6rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.contact-methods h3 { margin-bottom: 1rem; }

.site-footer {
  padding: 4rem 0 2rem;
  background: #252b31;
  color: rgba(255,255,255,.72);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-brand img {
  width: 118px;
  height: 52px;
  object-fit: contain;
  object-position: center;
  margin-bottom: 1rem;
  padding: .28rem .45rem;
  border-radius: 8px;
  background: #fff;
}
.footer-brand p {
  max-width: 360px;
  font-size: .95rem;
}
.footer-col h4 {
  margin-bottom: .9rem;
  color: #fff;
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.footer-col a {
  display: block;
  margin-bottom: .45rem;
  color: rgba(255,255,255,.68);
  font-size: .94rem;
}
.footer-col a:hover { color: #fff; text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 1.5rem;
  text-align: center;
  font-size: .9rem;
}

.centered-page {
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
  text-align: center;
  background:
    radial-gradient(circle at 20% 15%, rgba(241,181,28,.16), transparent 28%),
    linear-gradient(180deg, #fff, #f7f9fb);
}
.centered-page .inner {
  width: min(92%, 560px);
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}
.centered-page h1 { margin-bottom: 1rem; }
.centered-page p {
  margin-bottom: 1.6rem;
  color: var(--muted);
}
.status-icon {
  width: 64px;
  height: 64px;
  fill: var(--primary);
  margin: 0 auto 1.5rem;
}
.error-code {
  font-size: clamp(4rem, 12vw, 6.5rem);
  color: var(--primary);
}

.is-rtl { text-align: right; }
.is-rtl .hero,
.is-rtl .page-hero,
.is-rtl .cta-banner,
.is-rtl .centered-page { text-align: center; }
.is-rtl .hero-actions,
.is-rtl .cta-actions,
.is-rtl .social-links { justify-content: center; }
.is-rtl .trust-grid { direction: rtl; }
.is-rtl .nav-cta { margin-left: 0; margin-right: .35rem; }
.is-rtl .language-menu { left: auto; right: 0; }
.is-rtl .quote-block {
  border-left: 0;
  border-right: 4px solid var(--accent);
  border-radius: var(--radius) 0 0 var(--radius);
}
.is-rtl .field select {
  background-position: left 12px center;
  padding-right: 1rem;
  padding-left: 2.6rem;
}

@media (max-width: 1024px) {
  .services-grid,
  .values-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .album-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container { width: min(91%, var(--max)); }
  .section { padding: 3.75rem 0; }
  .nav-inner { min-height: 76px; }
  .nav-logo img { width: 140px; height: 54px; }
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: .2rem;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    padding: 1rem 1.5rem 1.4rem;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    width: 100%;
    border-bottom: 0;
    border-radius: 8px;
    padding: .45rem .65rem;
  }
  .nav-links a:hover,
  .nav-links a.active {
    background: var(--surface-2);
  }
  .nav-cta { margin-left: 0; justify-content: center; }
  .language-switch { margin-top: .65rem; width: max-content; }
  .language-menu {
    left: 0;
    right: auto;
    max-width: calc(100vw - 2rem);
  }
  .nav-toggle { display: flex; }
  .hero { padding-top: 4rem; }
  .hero .container::after {
    aspect-ratio: 4 / 3;
    min-height: 0;
    margin-top: 2rem;
  }
  .two-col,
  .about-intro,
  .vm-grid,
  .mission-vision,
  .video-grid { grid-template-columns: 1fr; }
  .two-col.flip .two-col-img { order: 0; }
  .services-grid,
  .values-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 170px;
  }
  .gallery-grid .wide { grid-column: span 1; }
  .album-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .about-gallery,
  .about-intro-images { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .centered-page { min-height: calc(100vh - 76px); }
}

@media (max-width: 480px) {
  h1 { font-size: clamp(2rem, 13vw, 2.85rem); }
  .hero-actions,
  .cta-actions { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-actions .btn,
  .cta-actions .btn { width: 100%; }
  .gallery-grid,
  .about-gallery { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .team-grid img { height: 190px; }
  .page-hero--accent-edge {
    text-align: center;
  }
  .page-hero--accent-edge::after {
    width: 84px;
    height: 84px;
    border-width: 8px;
    right: 18px;
  }
  .page-hero--accent-edge::before {
    width: 7px;
  }
  .page-hero--accent-edge .container {
    justify-items: center;
    padding-left: 0;
  }
  .page-hero--accent-edge .breadcrumb {
    justify-content: center;
    flex-wrap: wrap;
  }
}
