:root {
  --navy-950: #061d33;
  --navy-900: #082b4a;
  --navy-800: #0a3d68;
  --blue-700: #075fa8;
  --blue-600: #0b73c5;
  --blue-500: #178ddd;
  --blue-100: #dcefff;
  --blue-50: #f2f9ff;
  --gold: #f0b541;
  --gold-soft: #fff2d1;
  --ink: #142436;
  --muted: #5d6d7f;
  --line: #d6e2ed;
  --white: #ffffff;
  --shadow-sm: 0 10px 28px rgba(6, 29, 51, .08);
  --shadow-lg: 0 26px 70px rgba(6, 29, 51, .18);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  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.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
p { margin-top: 0; }
address { font-style: normal; }
[hidden] { display: none !important; }

.container { width: min(1180px, calc(100% - 2rem)); margin-inline: auto; }
.skip-link { position: fixed; left: -9999px; top: 1rem; z-index: 200; padding: .75rem 1rem; border-radius: 10px; background: var(--white); color: var(--navy-950); font-weight: 800; }
.skip-link:focus { left: 1rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
a:focus-visible, button:focus-visible, summary:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.topbar { position: relative; z-index: 31; color: #e7f4ff; background: var(--navy-950); font-size: .86rem; }
.topbar-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.topbar-group { display: flex; align-items: center; gap: 1.25rem; }
.topbar a { text-decoration: none; }
.topbar a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.status-dot { display: inline-block; width: 8px; height: 8px; margin-right: .45rem; border-radius: 50%; background: var(--gold); }

.site-header { position: sticky; top: 0; z-index: 30; border-bottom: 1px solid transparent; background: rgba(255,255,255,.96); backdrop-filter: blur(16px); transition: box-shadow .25s ease, border-color .25s ease; }
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(6, 29, 51, .08); }
.nav-wrap { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: .85rem; min-width: 0; color: var(--navy-900); text-decoration: none; }
.brand-logo { width: 92px; height: 52px; flex: 0 0 auto; object-fit: contain; }
.brand-copy { display: grid; line-height: 1.12; }
.brand-name { font-family: Georgia, "Times New Roman", serif; font-size: 1.15rem; font-weight: 800; letter-spacing: -.015em; }
.brand-motto { margin-top: .22rem; color: var(--blue-700); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: .18rem; }
.site-nav a { padding: .68rem .78rem; border-radius: 10px; color: var(--navy-900); font-size: .94rem; font-weight: 760; text-decoration: none; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--blue-700); background: var(--blue-50); }
.site-nav .nav-cta { margin-left: .4rem; padding-inline: 1rem; color: var(--white); background: var(--blue-700); }
.site-nav .nav-cta:hover, .site-nav .nav-cta[aria-current="page"] { color: var(--white); background: var(--navy-900); }
.menu-button { display: none; align-items: center; gap: .55rem; padding: .65rem .75rem; border: 1px solid var(--line); border-radius: 12px; color: var(--navy-900); background: var(--white); font-weight: 800; cursor: pointer; }
.menu-lines, .menu-lines::before, .menu-lines::after { width: 20px; height: 2px; display: block; border-radius: 2px; background: currentColor; }
.menu-lines { position: relative; }
.menu-lines::before, .menu-lines::after { content: ""; position: absolute; left: 0; }
.menu-lines::before { top: -6px; }
.menu-lines::after { top: 6px; }

h1, h2, h3, h4 { color: var(--navy-900); line-height: 1.12; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; letter-spacing: -.035em; }
h1 { margin: .8rem 0 1rem; font-size: clamp(3rem, 6vw, 6.2rem); }
h2 { margin: .55rem 0 1rem; font-size: clamp(2.2rem, 4.2vw, 4rem); }
h3 { margin: 0 0 .55rem; font-size: 1.2rem; }
.eyebrow { display: inline-flex; align-items: center; gap: .55rem; color: var(--blue-700); font-size: .78rem; font-weight: 900; letter-spacing: .13em; line-height: 1.4; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 3px; border-radius: 4px; background: var(--gold); }
.eyebrow.light { color: #d7edff; }
.lead { max-width: 700px; color: var(--muted); font-size: 1.15rem; }
.actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: .5rem; padding: .72rem 1.18rem; border: 2px solid var(--navy-900); border-radius: 12px; font-weight: 850; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(6, 29, 51, .17); }
.button.primary { color: var(--white); background: var(--blue-700); border-color: var(--blue-700); }
.button.secondary { color: var(--navy-900); background: var(--white); }
.button.white { color: var(--navy-900); background: var(--white); border-color: var(--white); }
.button.ghost-white { color: var(--white); background: transparent; border-color: rgba(255,255,255,.72); }
.text-link { display: inline-flex; align-items: center; gap: .4rem; color: var(--blue-700); font-weight: 850; text-underline-offset: 4px; }

.hero-carousel { position: relative; min-height: 720px; overflow: hidden; color: var(--white); background: var(--navy-950); }
.hero-slide { position: absolute; inset: 0; display: grid; opacity: 0; visibility: hidden; transition: opacity .8s ease, visibility .8s ease; }
.hero-slide.is-active { opacity: 1; visibility: visible; }
.hero-slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); transition: transform 7s ease; }
.hero-slide.is-active img { transform: scale(1); }
.hero-slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,29,51,.94) 0%, rgba(6,29,51,.78) 42%, rgba(6,29,51,.3) 72%, rgba(6,29,51,.18) 100%); }
.hero-slide-content { position: relative; z-index: 2; align-self: center; width: min(1180px, calc(100% - 2rem)); margin-inline: auto; padding: 6.5rem 0 9rem; }
.hero-slide-copy { max-width: 760px; }
.hero-slide h1, .hero-slide h2 { max-width: 780px; margin: .8rem 0 1rem; color: var(--white); font-family: Georgia, "Times New Roman", serif; font-size: clamp(3rem, 6vw, 6.2rem); letter-spacing: -.035em; line-height: 1.12; }
.hero-slide .lead { max-width: 670px; color: #e3f1fd; font-size: clamp(1.08rem, 2vw, 1.28rem); }
.hero-slide .eyebrow { color: #d8edff; }
.hero-note { display: inline-flex; align-items: center; gap: .55rem; margin-top: 1.5rem; padding: .48rem .72rem; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; background: rgba(6,29,51,.36); color: #f1f8ff; font-size: .87rem; font-weight: 700; backdrop-filter: blur(7px); }
.hero-note::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.carousel-controls { position: absolute; z-index: 5; left: 0; right: 0; bottom: 2rem; }
.carousel-controls-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.carousel-buttons { display: flex; gap: .55rem; }
.carousel-button, .carousel-toggle { min-width: 46px; min-height: 46px; display: inline-grid; place-items: center; border: 1px solid rgba(255,255,255,.48); border-radius: 50%; color: var(--white); background: rgba(6,29,51,.42); cursor: pointer; backdrop-filter: blur(7px); }
.carousel-button:hover, .carousel-toggle:hover { background: var(--blue-700); border-color: var(--blue-700); }
.carousel-toggle { width: auto; padding: 0 .9rem; border-radius: 999px; font-size: .82rem; font-weight: 800; }
.carousel-dots { display: flex; align-items: center; gap: 0; }
.carousel-dot { position: relative; width: 36px; height: 36px; padding: 0; border: 0; border-radius: 50%; background: transparent; cursor: pointer; }
.carousel-dot::after { content: ""; position: absolute; width: 10px; height: 10px; left: 50%; top: 50%; border-radius: 50%; background: rgba(255,255,255,.55); transform: translate(-50%, -50%); transition: width .2s ease, border-radius .2s ease, background .2s ease; }
.carousel-dot.is-active { width: 46px; }
.carousel-dot.is-active::after { width: 30px; border-radius: 999px; background: var(--gold); }

.quick-links-wrap { position: relative; z-index: 8; margin-top: -1.2rem; }
.quick-links { display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-lg); }
.quick-link { position: relative; display: grid; grid-template-columns: 48px 1fr auto; align-items: center; gap: 1rem; padding: 1.35rem 1.5rem; text-decoration: none; }
.quick-link + .quick-link { border-left: 1px solid var(--line); }
.quick-link:hover { background: var(--blue-50); }
.quick-icon { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 14px; color: var(--blue-700); background: var(--blue-100); font-weight: 900; }
.quick-link strong { display: block; color: var(--navy-900); }
.quick-link span:not(.quick-icon):not(.quick-arrow) { color: var(--muted); font-size: .87rem; }
.quick-arrow { color: var(--blue-700); font-size: 1.25rem; }

.section { padding: 6.3rem 0; }
.section.compact { padding: 4.5rem 0; }
.section.alt { background: var(--blue-50); }
.section.dark { color: #ddecf8; background: var(--navy-950); }
.section.dark h2, .section.dark h3 { color: var(--white); }
.section-head { max-width: 760px; margin-bottom: 2.7rem; }
.section-head.centered { margin-inline: auto; text-align: center; }
.section-head.centered .eyebrow { justify-content: center; }
.split { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 5rem; }
.split.reverse { grid-template-columns: 1.05fr .95fr; }
.split.reverse > :first-child { order: 2; }
.image-stack { position: relative; min-height: 510px; }
.image-stack-main { position: absolute; inset: 0 10% 8% 0; width: 90%; height: 92%; border-radius: var(--radius-lg) var(--radius-lg) 8px var(--radius-lg); object-fit: cover; box-shadow: var(--shadow-lg); }
.image-stack-badge { position: absolute; right: 0; bottom: 0; width: 190px; padding: 1.2rem; border: 7px solid var(--white); border-radius: 24px 8px 24px 24px; color: var(--white); background: var(--blue-700); box-shadow: var(--shadow-sm); }
.image-stack-badge strong { display: block; font: 800 2rem/1 Georgia, serif; }
.image-stack-badge span { display: block; margin-top: .3rem; font-size: .85rem; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.feature-grid.single-column { grid-template-columns: 1fr; }
.feature-card { position: relative; min-height: 260px; padding: 1.75rem; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); }
.feature-card::after { content: ""; position: absolute; right: -45px; bottom: -55px; width: 130px; height: 130px; border-radius: 50%; background: var(--blue-50); }
.feature-number { position: relative; z-index: 1; display: inline-grid; width: 46px; height: 46px; place-items: center; margin-bottom: 1.35rem; border-radius: 14px; color: var(--white); background: var(--blue-700); font-weight: 900; }
.feature-card h3, .feature-card p { position: relative; z-index: 1; }
.feature-card p { color: var(--muted); }

.metrics { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius-md); background: rgba(255,255,255,.05); }
.metric { padding: 2rem 1.4rem; text-align: center; }
.metric + .metric { border-left: 1px solid rgba(255,255,255,.13); }
.metric strong { display: block; color: var(--gold); font: 800 clamp(2.2rem, 4vw, 3.5rem)/1 Georgia, serif; }
.metric span { display: block; margin-top: .55rem; color: #ddecf8; font-size: .9rem; }

.tabs-shell { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-sm); }
.tab-list { display: grid; grid-template-columns: repeat(3, 1fr); padding: .65rem; gap: .5rem; background: var(--blue-50); }
.tab-button { padding: 1rem; border: 0; border-radius: 14px; color: var(--navy-900); background: transparent; font-weight: 850; cursor: pointer; }
.tab-button[aria-selected="true"] { color: var(--white); background: var(--blue-700); box-shadow: 0 8px 20px rgba(7,95,168,.2); }
.tab-panel { display: grid; grid-template-columns: 1fr .9fr; align-items: center; gap: 3rem; padding: 2.2rem; }
.tab-panel img { width: 100%; aspect-ratio: 4 / 3; border-radius: 22px 8px 22px 22px; object-fit: cover; }
.tag-row { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.3rem; }
.tag { padding: .45rem .7rem; border-radius: 999px; color: var(--blue-700); background: var(--blue-100); font-size: .85rem; font-weight: 800; }

.vision-panel { position: relative; overflow: hidden; padding: 4.5rem; border-radius: var(--radius-lg) 8px var(--radius-lg) var(--radius-lg); color: var(--navy-900); background: var(--gold); }
.vision-panel::before { content: "“"; position: absolute; right: 2rem; top: -2.6rem; font: 13rem Georgia, serif; opacity: .15; }
.vision-panel blockquote { position: relative; max-width: 950px; margin: .7rem 0 0; font: 800 clamp(1.8rem, 3.6vw, 3.3rem)/1.25 Georgia, serif; }
.values-row { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 2rem; }
.values-row span { padding: .5rem .8rem; border: 1px solid rgba(8,43,74,.22); border-radius: 999px; background: rgba(255,255,255,.45); font-weight: 800; }

.cta-band { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 3rem; padding: 3rem; border-radius: var(--radius-lg) 8px var(--radius-lg) var(--radius-lg); color: #ddecf8; background: linear-gradient(120deg, var(--blue-700), var(--navy-950)); box-shadow: var(--shadow-lg); }
.cta-band h2 { color: var(--white); }
.cta-band p { max-width: 680px; margin-bottom: 0; }
.cta-band .actions { margin-top: 0; }

.page-hero { position: relative; min-height: 500px; display: grid; align-items: end; overflow: hidden; background: var(--navy-950); }
.page-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,29,51,.94), rgba(6,29,51,.56) 65%, rgba(6,29,51,.22)); }
.page-hero-content { position: relative; z-index: 2; padding: 7rem 0 5rem; }
.page-hero h1 { max-width: 900px; color: var(--white); font-size: clamp(3rem, 5.5vw, 5.5rem); }
.page-hero .lead { color: #e1f0fc; }

.story-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 5rem; align-items: start; }
.story-grid > div:first-child { position: sticky; top: 130px; }
.timeline { position: relative; display: grid; gap: 1rem; padding-left: 2.2rem; }
.timeline::before { content: ""; position: absolute; left: .58rem; top: .5rem; bottom: .5rem; width: 2px; background: var(--blue-100); }
.timeline-item { position: relative; padding: 1.4rem 1.5rem; border: 1px solid var(--line); border-radius: 18px; background: var(--white); box-shadow: var(--shadow-sm); }
.timeline-item::before { content: ""; position: absolute; left: -2rem; top: 1.7rem; width: 15px; height: 15px; border: 4px solid var(--white); border-radius: 50%; background: var(--blue-700); box-shadow: 0 0 0 2px var(--blue-100); }
.timeline-year { display: block; margin-bottom: .35rem; color: var(--blue-700); font-weight: 900; }
.timeline-item p { margin-bottom: 0; color: var(--muted); }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.value-card { min-height: 150px; padding: 1.4rem; border: 1px solid var(--line); border-radius: 18px; background: var(--white); transition: transform .2s ease, box-shadow .2s ease; }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.value-card span { color: var(--blue-600); font-size: .78rem; font-weight: 900; letter-spacing: .1em; }
.value-card h3 { margin-top: 1.7rem; }

.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; counter-reset: process; }
.process-card { counter-increment: process; position: relative; min-height: 250px; padding: 1.4rem; border: 1px solid var(--line); border-radius: 20px; background: var(--white); box-shadow: var(--shadow-sm); }
.process-card::before { content: counter(process, decimal-leading-zero); display: block; margin-bottom: 2rem; color: var(--blue-600); font: 800 2rem/1 Georgia, serif; }
.process-card::after { content: ""; position: absolute; top: 2rem; right: -1.15rem; z-index: 2; width: 28px; height: 2px; background: var(--gold); }
.process-card:last-child::after { display: none; }
.process-card p { color: var(--muted); }
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.info-card { padding: 1.65rem; border-radius: 20px; color: #ddecf8; background: var(--navy-900); }
.info-card h3 { color: var(--white); }
.info-card p { margin-bottom: 0; }
.notice { padding: 1.1rem 1.25rem; border-left: 5px solid var(--gold); border-radius: 0 12px 12px 0; color: var(--muted); background: var(--gold-soft); }
.faq-list { display: grid; gap: .75rem; }
.faq-item { border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.15rem 1.25rem; color: var(--navy-900); font-weight: 850; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--blue-700); font-size: 1.4rem; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin: 0; padding: 0 1.25rem 1.2rem; color: var(--muted); }

.gallery-intro { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 2.4rem; }
.gallery-intro .section-head { margin-bottom: 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 190px; gap: 1rem; }
.gallery-item { position: relative; grid-column: span 5; grid-row: span 2; min-height: 0; padding: 0; overflow: hidden; border: 0; border-radius: 22px; color: var(--white); background: var(--navy-900); cursor: zoom-in; text-decoration: none; box-shadow: var(--shadow-sm); }
.gallery-item:nth-child(1) { grid-column: span 7; grid-row: span 3; }
.gallery-item:nth-child(2) { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(3) { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 6; grid-row: span 2; }
.gallery-item:nth-child(5) { grid-column: span 6; grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.025); }
.gallery-item::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(6,29,51,.92)); }
.gallery-caption { position: absolute; z-index: 2; left: 1.25rem; right: 1.25rem; bottom: 1rem; display: grid; text-align: left; }
.gallery-caption strong { font-size: 1.15rem; }
.gallery-caption span { color: #d8ebf9; font-size: .85rem; }
.media-note, .privacy-note { margin: 1.35rem 0 0; padding: 1rem 1.1rem; border: 1px solid var(--line); border-radius: 12px; color: var(--muted); background: var(--blue-50); font-size: .92rem; }

.lightbox { width: min(1040px, calc(100% - 2rem)); max-width: none; padding: 0; border: 0; border-radius: 22px; color: var(--white); background: var(--navy-950); box-shadow: var(--shadow-lg); }
.lightbox::backdrop { background: rgba(1, 10, 19, .82); backdrop-filter: blur(6px); }
.lightbox figure { margin: 0; }
.lightbox img { width: 100%; max-height: 74vh; object-fit: contain; background: #031321; }
.lightbox figcaption { padding: 1rem 5.5rem 1.2rem 1.25rem; color: #ddecf8; }
.lightbox-close { position: absolute; top: .8rem; right: .8rem; z-index: 2; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; color: var(--white); background: rgba(6,29,51,.72); cursor: pointer; }
.lightbox-nav { position: absolute; top: 50%; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; color: var(--white); background: rgba(6,29,51,.72); cursor: pointer; transform: translateY(-50%); }
.lightbox-prev { left: .8rem; }
.lightbox-next { right: .8rem; }

.contact-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 4.5rem; align-items: start; }
.contact-list { display: grid; gap: .8rem; margin: 1.8rem 0 0; padding: 0; list-style: none; }
.contact-item { display: grid; grid-template-columns: 48px 1fr; gap: 1rem; padding: 1.1rem; border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
.contact-icon { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 14px; color: var(--blue-700); background: var(--blue-100); font-weight: 900; }
.contact-label { display: block; color: var(--navy-900); font-size: .76rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.contact-links { display: flex; flex-wrap: wrap; gap: .25rem 1rem; }
.contact-links a, .inline-link { color: var(--blue-700); font-weight: 820; text-underline-offset: 3px; }
.contact-visual { position: relative; }
.contact-visual img { width: 100%; aspect-ratio: 4 / 3; border-radius: var(--radius-lg) 8px var(--radius-lg) var(--radius-lg); object-fit: cover; box-shadow: var(--shadow-lg); }
.contact-badge { position: absolute; right: -1rem; bottom: -1rem; max-width: 260px; padding: 1.2rem; border: 6px solid var(--white); border-radius: 20px 8px 20px 20px; color: var(--white); background: var(--blue-700); }
.contact-badge strong { display: block; }

.enquiry-layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr); gap: 3.5rem; align-items: start; }
.enquiry-form-card { padding: clamp(1.5rem, 4vw, 3rem); border: 1px solid var(--line); border-radius: var(--radius-lg) 8px var(--radius-lg) var(--radius-lg); background: var(--white); box-shadow: var(--shadow-lg); }
.enquiry-form-card h2, .enquiry-aside h2 { font-size: clamp(2rem, 3.5vw, 3.3rem); }
.enquiry-form { position: relative; margin-top: 2rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.15rem; }
.form-field { display: grid; align-content: start; gap: .45rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { color: var(--navy-900); font-weight: 820; }
.form-field .optional { margin-left: .35rem; color: var(--muted); font-size: .78rem; font-weight: 650; }
.form-field input:not([type="checkbox"]), .form-field select, .form-field textarea { width: 100%; min-height: 50px; padding: .72rem .82rem; border: 1px solid #71869a; border-radius: 11px; color: var(--ink); background: var(--white); transition: border-color .2s ease, box-shadow .2s ease; }
.form-field textarea { min-height: 150px; resize: vertical; }
.form-field input:not([type="checkbox"]):focus, .form-field select:focus, .form-field textarea:focus { outline: 0; border-color: var(--blue-700); box-shadow: 0 0 0 4px rgba(7,95,168,.14); }
.field-help { color: var(--muted); font-size: .86rem; }
.field-error { color: #a62020; font-size: .88rem; font-weight: 760; }
.form-field [aria-invalid="true"] { border-color: #a62020 !important; box-shadow: 0 0 0 3px rgba(166,32,32,.12); }
.consent-row { display: grid; grid-template-columns: 22px 1fr; gap: .7rem; align-items: start; padding: 1rem; border: 1px solid var(--line); border-radius: 12px; background: var(--blue-50); }
.consent-row input { width: 20px; height: 20px; margin-top: .16rem; accent-color: var(--blue-700); }
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 1.35rem; }
.form-submit { cursor: pointer; }
.form-submit:disabled { cursor: wait; opacity: .68; transform: none; }
.form-status { flex: 1 1 260px; margin: 0; font-weight: 760; }
.form-status.is-success { color: #12633a; }
.form-status.is-error { color: #a62020; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.enquiry-aside { position: sticky; top: 130px; padding: 2rem; border-radius: var(--radius-md); background: var(--gold-soft); }
.enquiry-aside .privacy-note { margin-top: 2rem; background: var(--white); }

@media (max-width: 900px) {
  .enquiry-layout { grid-template-columns: 1fr; }
  .enquiry-aside { position: static; }
}

@media (max-width: 620px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .form-actions { align-items: stretch; }
  .form-submit { width: 100%; }
}

.js [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.js [data-reveal].is-visible { opacity: 1; transform: none; }

.site-footer { padding: 4rem 0 1.2rem; color: #c9dceb; background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 1.35fr .65fr .95fr; gap: 3rem; }
.footer-brand { display: inline-flex; margin-bottom: .9rem; }
.footer-brand .brand-logo { padding: .25rem; border-radius: 8px; background: var(--white); }
.footer-brand .brand-name, .footer-brand .brand-motto { color: var(--white); }
.site-footer h3 { margin-bottom: 1rem; color: var(--white); }
.site-footer p { max-width: 430px; }
.footer-links { display: grid; gap: .55rem; }
.footer-links a { color: #eaf5ff; text-underline-offset: 3px; }
.footer-links a:hover { color: var(--white); }
.copyright { margin-top: 2.8rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.12); font-size: .88rem; }

@media (max-width: 1050px) {
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .process-card::after { display: none; }
  .value-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .topbar { display: none; }
  .nav-wrap { min-height: 78px; flex-wrap: wrap; padding: .45rem 0; }
  .js .nav-wrap { flex-wrap: nowrap; padding: 0; }
  .brand-logo { width: 76px; height: 44px; }
  .brand-motto { display: none; }
  .site-nav { width: 100%; order: 3; flex-wrap: wrap; padding-bottom: .75rem; }
  .js .menu-button { display: inline-flex; }
  .js .site-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; height: calc(100dvh - 78px); overflow-y: auto; flex-direction: column; flex-wrap: nowrap; align-items: stretch; gap: .3rem; padding: 1.2rem; background: rgba(255,255,255,.99); }
  .js .site-nav.open { display: flex; }
  .site-nav a { padding: 1rem; font-size: 1.05rem; }
  .site-nav .nav-cta { margin: .5rem 0 0; text-align: center; }
  .hero-carousel { display: grid; min-height: 0; }
  .hero-slide { position: relative; grid-area: 1 / 1; min-height: 660px; }
  .hero-slide::after { background: linear-gradient(90deg, rgba(6,29,51,.92), rgba(6,29,51,.58)); }
  .hero-slide-content { padding: 5rem 0 8.5rem; }
  .quick-links { grid-template-columns: 1fr; }
  .quick-link + .quick-link { border-left: 0; border-top: 1px solid var(--line); }
  .split, .split.reverse, .story-grid, .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .split.reverse > :first-child { order: initial; }
  .story-grid > div:first-child { position: static; }
  .feature-grid, .info-grid { grid-template-columns: 1fr; }
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .metric:nth-child(3) { border-left: 0; border-top: 1px solid rgba(255,255,255,.13); }
  .metric:nth-child(4) { border-top: 1px solid rgba(255,255,255,.13); }
  .tab-panel { grid-template-columns: 1fr; }
  .vision-panel { padding: 3rem; }
  .cta-band { grid-template-columns: 1fr; }
  .cta-band .actions { margin-top: 1rem; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero { min-height: 440px; }
  .gallery-grid { grid-auto-rows: 180px; }
  .gallery-item, .gallery-item:nth-child(n) { grid-column: span 6; grid-row: span 2; }
  .gallery-item:nth-child(1) { grid-column: 1 / -1; grid-row: span 3; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 1.25rem, 1180px); }
  .brand-name { font-size: 1rem; }
  h1 { font-size: 3rem; }
  h2 { font-size: 2.35rem; }
  .section { padding: 4.5rem 0; }
  .hero-carousel { min-height: 0; }
  .hero-slide { min-height: 780px; }
  .hero-slide h1, .hero-slide h2 { font-size: 2.85rem; }
  .hero-slide::after { background: linear-gradient(180deg, rgba(6,29,51,.75), rgba(6,29,51,.92)); }
  .hero-slide-content { align-self: end; padding: 4rem 0 9.5rem; }
  .hero-note { border-radius: 12px; }
  .carousel-controls { bottom: 1.4rem; }
  .carousel-controls-inner { align-items: flex-end; }
  .carousel-buttons { flex-wrap: wrap; max-width: 180px; }
  .carousel-toggle { order: 3; min-height: 38px; }
  .quick-links-wrap { margin-top: 0; }
  .quick-links { border-radius: 0 0 20px 20px; }
  .quick-link { padding: 1rem; }
  .image-stack { min-height: 380px; }
  .image-stack-main { inset: 0 6% 9% 0; width: 94%; height: 91%; }
  .image-stack-badge { width: 160px; padding: .95rem; }
  .metrics { grid-template-columns: 1fr; }
  .metric + .metric { border-left: 0; border-top: 1px solid rgba(255,255,255,.13); }
  .tab-list { display: flex; overflow-x: auto; }
  .tab-button { flex: 1 0 130px; }
  .tab-panel { padding: 1.4rem; }
  .vision-panel { padding: 2rem 1.4rem; }
  .cta-band { padding: 2rem 1.35rem; }
  .value-grid, .process-grid { grid-template-columns: 1fr; }
  .page-hero { min-height: 430px; }
  .page-hero-content { padding: 6rem 0 3.5rem; }
  .gallery-intro { align-items: start; flex-direction: column; }
  .gallery-grid { display: grid; grid-template-columns: 1fr; grid-auto-rows: 330px; }
  .gallery-item, .gallery-item:nth-child(n) { grid-column: auto; grid-row: auto; }
  .lightbox-nav { top: auto; bottom: 4.4rem; }
  .contact-badge { position: relative; right: auto; bottom: auto; max-width: none; margin: -1.2rem .8rem 0; border-width: 5px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
  .hero-slide img { transform: none; }
}
