:root {
  --blue-950: #002633;
  --blue-900: #004a63;
  --blue-800: #00607f;
  --blue-700: #087592;
  --blue-100: #e6f3f6;
  --white: #ffffff;
  --paper: #f7f9fb;
  --ink: #14202a;
  --muted: #5c6872;
  --line: rgba(0, 74, 99, 0.16);
  --glass: rgba(255, 255, 255, 0.12);
  --gold: #c6a25a;
  --sage: #7c9a92;
  --shadow: 0 22px 60px rgba(0, 74, 99, 0.18);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1490;
  background: rgba(1, 15, 22, 0.48);
  pointer-events: none;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--blue-900);
  padding: 10px 14px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  color: var(--white);
  background: radial-gradient(circle at center, var(--blue-900) 0, var(--blue-950) 58%, #001620 100%);
  transition: opacity 550ms ease, visibility 550ms ease;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.site-loader p {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 700;
}

.site-loader small {
  color: rgba(255, 255, 255, 0.72);
}

.loader-mark {
  position: relative;
  width: 108px;
  height: 108px;
  padding: 5px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 0 34px rgba(255, 255, 255, 0.18), 0 20px 46px rgba(0, 0, 0, 0.22);
  animation: loaderPulse 1600ms ease-in-out infinite;
}

.loader-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border-radius: 50%;
}

@keyframes loaderPulse {
  0%,
  100% {
    transform: scale(0.98);
    opacity: 0.88;
  }

  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  padding: 14px 18px;
  transition: background 250ms ease, box-shadow 250ms ease, padding 250ms ease;
}

.site-header.is-scrolled {
  padding-block: 8px;
  background: rgba(0, 74, 99, 0.92);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(var(--max), calc(100% - 16px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--white);
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand span {
  display: grid;
  line-height: 1.15;
  min-width: 0;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0;
}

.brand small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
}

.menu-toggle {
  position: relative;
  z-index: 3;
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 250ms ease, opacity 250ms ease;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.primary-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.primary-menu a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  padding: 10px 9px;
  border-radius: var(--radius);
  transition: background 180ms ease, color 180ms ease;
}

.primary-menu a:hover,
.primary-menu a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.primary-menu .nav-cta {
  margin-left: 4px;
  color: var(--blue-950);
  background: var(--white);
  font-weight: 700;
  padding-inline: 16px;
}

.section {
  padding: 92px 18px;
}

.section-dark {
  color: var(--white);
  background: var(--blue-950);
}

.section-blue {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(198, 162, 90, 0.1), transparent 28%),
    linear-gradient(180deg, var(--blue-900), var(--blue-950));
}

.section-heading,
.strip-heading,
.cta-inner {
  width: min(var(--max), 100%);
  margin: 0 auto 40px;
}

.section-heading {
  display: grid;
  gap: 10px;
  max-width: 780px;
}

.section-heading p,
.cta-inner p {
  margin: 0;
  color: var(--muted);
}

.section-blue .section-heading p,
.section-dark .section-heading p,
.booking-cta p {
  color: rgba(255, 255, 255, 0.76);
}

.eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: 0;
}

h1 {
  max-width: 880px;
  font-size: clamp(2.45rem, 3.8rem, 4.6rem);
}

h2 {
  font-size: clamp(2rem, 2.75rem, 3.2rem);
}

h3 {
  font-size: 1.25rem;
}

.hero {
  position: relative;
  min-height: clamp(640px, 88svh, 860px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 124px 18px 70px;
}

.hero-bg,
.hero-bg-slider,
.hero-bg-slide,
.hero-bg-slide picture,
.hero-bg-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg,
.hero-bg-slide img {
  object-fit: cover;
  animation: heroZoom 18s ease-in-out infinite alternate;
}

.hero-bg-slide {
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 900ms ease, transform 1200ms ease;
}

.hero-bg-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-bg-slide picture {
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 74, 99, 0.92) 0%, rgba(0, 74, 99, 0.66) 48%, rgba(0, 74, 99, 0.24) 100%),
    linear-gradient(0deg, rgba(0, 38, 51, 0.72), rgba(0, 74, 99, 0.1));
}

.lens-glow {
  position: absolute;
  right: 9%;
  top: 22%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 162, 90, 0.22), transparent 62%);
  filter: blur(2px);
  opacity: 0.85;
  animation: glowBreathe 5s ease-in-out infinite;
}

.hero-content {
  position: relative;
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.hero-line {
  margin: 0;
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 700;
}

.hero-copy {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn,
.mini-btn,
.filter-btn,
.float-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn {
  padding: 13px 18px;
}

.btn-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 900;
}

.btn-primary {
  color: var(--blue-950);
  background: var(--white);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.btn-primary .btn-icon {
  color: var(--white);
  background: #1f8f59;
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.portfolio-section .btn-secondary,
.social-strip .btn-secondary {
  color: var(--blue-950);
  border-color: var(--line);
  background: var(--white);
}

.btn:hover,
.btn:focus-visible,
.mini-btn:hover,
.mini-btn:focus-visible,
.filter-btn:hover,
.filter-btn:focus-visible,
.float-btn:hover,
.float-btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.pulse {
  animation: ctaPulse 2200ms ease-in-out infinite;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: 30px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
}

.scroll-cue span {
  width: 5px;
  height: 9px;
  border-radius: 999px;
  background: var(--white);
  animation: scrollDot 1400ms ease-in-out infinite;
}

@keyframes heroZoom {
  to { transform: scale(1.08); }
}

@keyframes glowBreathe {
  50% { transform: scale(1.08); opacity: 0.62; }
}

@keyframes ctaPulse {
  50% { box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.12), 0 20px 42px rgba(0, 0, 0, 0.22); }
}

@keyframes scrollDot {
  50% { transform: translateY(16px); opacity: 0.45; }
}

.featured-work {
  position: relative;
  min-height: 100svh;
  padding: 0;
  overflow: hidden;
  background: var(--blue-950);
}

.featured-work::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
  opacity: 0.18;
  pointer-events: none;
}

.featured-shell {
  position: relative;
  width: 100%;
  min-height: 100svh;
  margin: 0 auto;
  display: block;
}

.featured-copy {
  position: absolute;
  z-index: 5;
  left: max(18px, calc((100vw - var(--max)) / 2));
  bottom: clamp(96px, 15svh, 150px);
  max-width: 760px;
  display: grid;
  gap: 12px;
  color: var(--white);
  padding-right: 18px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.36);
}

.featured-copy .eyebrow {
  color: var(--gold);
}

.featured-copy h2,
.featured-copy p {
  margin: 0;
}

.featured-copy p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
}

.featured-carousel {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 100svh;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: var(--blue-950);
  box-shadow: none;
  isolation: isolate;
}

.featured-carousel:focus-visible {
  outline: 3px solid rgba(198, 162, 90, 0.72);
  outline-offset: -6px;
}

.featured-carousel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(0, 38, 51, 0.74) 0%, rgba(0, 74, 99, 0.36) 48%, rgba(0, 38, 51, 0.16) 100%),
    linear-gradient(0deg, rgba(0, 38, 51, 0.72) 0%, rgba(0, 38, 51, 0.16) 46%, rgba(0, 38, 51, 0.28) 100%);
  pointer-events: none;
}

.featured-slides,
.featured-slide,
.featured-slide picture,
.featured-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.featured-slide {
  margin: 0;
  opacity: 0;
  transform: translateX(26px) scale(0.992);
  transition: opacity 760ms ease, transform 960ms ease;
  pointer-events: none;
}

.featured-slide.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.featured-slide picture {
  display: block;
}

.featured-slide img {
  object-fit: cover;
}

.slide-arrow,
.slide-dot {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--white);
  background: rgba(0, 38, 51, 0.56);
  backdrop-filter: blur(14px);
  cursor: pointer;
}

.slide-arrow {
  position: absolute;
  z-index: 6;
  top: 50%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.slide-arrow span {
  display: block;
  margin-top: -2px;
  font-size: 2.3rem;
  line-height: 1;
}

.slide-prev {
  left: max(18px, calc((100vw - var(--max)) / 2));
}

.slide-next {
  right: max(18px, calc((100vw - var(--max)) / 2));
}

.slide-arrow:hover,
.slide-arrow:focus-visible {
  transform: translateY(-50%) scale(1.05);
  border-color: rgba(198, 162, 90, 0.7);
  background: rgba(0, 74, 99, 0.84);
  outline: none;
}

.slide-dots {
  position: absolute;
  z-index: 6;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  width: min(88%, 520px);
}

.slide-dot {
  width: 26px;
  height: 5px;
  padding: 0;
  border-radius: 999px;
  opacity: 0.78;
  transition: width 180ms ease, background 180ms ease, opacity 180ms ease;
}

.slide-dot.is-active {
  width: 42px;
  border-color: rgba(198, 162, 90, 0.8);
  background: var(--gold);
  opacity: 1;
}

.slide-dot:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.trust-strip {
  padding: 44px 18px 32px;
  margin-top: 0;
  position: relative;
  z-index: 3;
}

.trust-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.trust-item {
  min-height: 118px;
  padding: 24px 16px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  color: var(--blue-900);
  font-size: 1.65rem;
  line-height: 1;
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

.stat-number {
  color: var(--blue-900);
}

.stat-plus {
  color: var(--gold);
  font-size: 0.78rem;
  line-height: 1;
  margin-top: -2px;
}

.stat-label {
  display: block;
  max-width: 130px;
  line-height: 1.25;
}

.about-grid,
.contact-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.story-panel,
.director-card,
.contact-card,
.map-card,
.booking-form,
.testimonial-card,
.faq-list {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(0, 74, 99, 0.08);
}

.story-panel,
.contact-card,
.map-card {
  padding: 28px;
}

.story-panel p,
.director-card p,
.contact-card p {
  color: var(--muted);
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.about-points span {
  color: var(--blue-900);
  background: var(--blue-100);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 0.82rem;
  font-weight: 700;
}

.director-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(180px, 42%) 1fr;
}

.director-photo {
  min-height: 100%;
  background: var(--blue-900);
}

.director-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.director-copy {
  padding: 28px;
}

.service-grid,
.video-grid,
.why-grid,
.testimonial-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.service-grid {
  grid-template-columns: repeat(4, 1fr);
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 246px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.15);
  display: grid;
  gap: 12px;
  align-content: start;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: -120%;
  left: -80%;
  width: 80%;
  height: 260%;
  transform: rotate(24deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  transition: left 520ms ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(198, 162, 90, 0.55);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
}

.service-card:hover::before {
  left: 120%;
}

.service-icon,
.why-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--blue-950);
  background: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
}

.service-card p,
.video-card p,
.why-card p,
.testimonial-card p {
  margin: 0;
}

.service-card p,
.video-card p {
  color: rgba(255, 255, 255, 0.72);
}

.service-card .mini-btn {
  width: max-content;
  margin-top: auto;
  min-height: 40px;
  padding: 8px 12px;
  color: var(--blue-950);
  background: var(--white);
  font-size: 0.84rem;
}

.filter-bar {
  width: min(var(--max), 100%);
  margin: 0 auto 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn {
  min-height: 42px;
  padding: 9px 14px;
  color: var(--blue-900);
  background: var(--white);
  border-color: var(--line);
}

.filter-btn.active {
  color: var(--white);
  background: var(--blue-900);
}

.portfolio-gallery {
  width: min(var(--max), 100%);
  margin: 0 auto;
  column-count: 4;
  column-gap: 16px;
}

.portfolio-card {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 0 0 16px;
  break-inside: avoid;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: var(--blue-900);
  box-shadow: 0 14px 36px rgba(0, 74, 99, 0.12);
  cursor: zoom-in;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 240ms ease, transform 240ms ease;
}

.portfolio-card.is-hidden {
  display: none;
}

.portfolio-card img {
  width: 100%;
  height: auto;
  transition: transform 360ms ease;
}

.portfolio-card figcaption {
  display: none;
}

.portfolio-card:hover img,
.portfolio-card:focus-within img {
  transform: scale(1.045);
}

.load-more-wrap {
  width: min(var(--max), 100%);
  margin: 22px auto 0;
  display: flex;
  justify-content: center;
}

.load-more-wrap .btn {
  border: 1px solid var(--line);
  color: var(--white);
  background: var(--blue-900);
}

.video-grid {
  grid-template-columns: repeat(3, 1fr);
}

.video-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.video-frame {
  aspect-ratio: 16 / 9;
  background: rgba(255, 255, 255, 0.08);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-copy {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.video-copy .mini-btn {
  width: max-content;
  min-height: 40px;
  padding: 8px 12px;
  color: var(--blue-950);
  background: var(--white);
}

.social-strip {
  padding: 76px 0;
  overflow: hidden;
  background: var(--white);
}

.strip-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 0 18px;
}

.strip-heading h2 {
  color: var(--blue-950);
}

.marquee {
  width: 100%;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: marquee 34s linear infinite;
}

.marquee-track img {
  width: 220px;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(0, 74, 99, 0.12);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.why-grid {
  grid-template-columns: repeat(5, 1fr);
}

.why-card {
  min-height: 168px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  display: grid;
  gap: 10px;
  align-content: start;
  box-shadow: 0 16px 36px rgba(0, 74, 99, 0.06);
}

.why-icon {
  color: var(--white);
  background: var(--blue-900);
}

.why-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.booking-cta {
  position: relative;
  overflow: hidden;
  padding: 100px 18px;
  background:
    linear-gradient(90deg, rgba(0, 74, 99, 0.93), rgba(0, 74, 99, 0.68)),
    url("assets/og-banner.jpg?v=20260603-brand-1") center / cover no-repeat;
}

.cta-inner {
  display: grid;
  gap: 16px;
  max-width: 720px;
  margin-bottom: 0;
}

.cta-inner .btn {
  width: max-content;
}

.booking-form {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field-full,
.form-submit {
  grid-column: 1 / -1;
}

label {
  color: var(--blue-900);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfd;
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue-700);
  box-shadow: 0 0 0 4px rgba(30, 79, 114, 0.14);
}

.form-submit {
  width: max-content;
  border: 0;
  background: var(--blue-900);
  color: var(--white);
}

.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}

.testimonial-card {
  padding: 22px;
  display: grid;
  gap: 12px;
}

.stars {
  color: var(--gold);
  font-weight: 900;
}

.testimonial-card p {
  color: var(--muted);
}

.testimonial-card cite {
  color: var(--blue-900);
  font-style: normal;
  font-weight: 800;
}

.faq-list {
  width: min(900px, 100%);
  margin: 0 auto;
  overflow: hidden;
}

.faq-item + .faq-item {
  border-top: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  min-height: 60px;
  border: 0;
  background: transparent;
  color: var(--blue-900);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  text-align: left;
  cursor: pointer;
  font-weight: 900;
}

.faq-question::after {
  content: "+";
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue-900);
}

.faq-item.is-open .faq-question::after {
  content: "-";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
}

.contact-card a {
  color: var(--blue-700);
  font-weight: 800;
}

.contact-actions {
  margin-top: 18px;
}

.mini-btn {
  min-height: 40px;
  padding: 8px 11px;
  border-color: var(--line);
  color: var(--blue-900);
  background: var(--blue-100);
  font-size: 0.86rem;
}

.map-card {
  display: grid;
  gap: 16px;
}

.map-placeholder,
.map-frame {
  min-height: 420px;
  width: 100%;
  border: 0;
  border-radius: var(--radius);
}

.map-placeholder {
  border: 1px dashed rgba(18, 54, 79, 0.35);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  color: var(--blue-900);
  background:
    linear-gradient(90deg, rgba(18, 54, 79, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(18, 54, 79, 0.08) 1px, transparent 1px),
    var(--blue-100);
  background-size: 24px 24px;
  text-align: center;
}

.map-placeholder span {
  font-weight: 900;
}

.footer {
  color: rgba(255, 255, 255, 0.78);
  background: #001620;
  padding: 54px 18px 24px;
}

.footer-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 26px;
}

.footer h2 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 12px;
}

.footer a,
.footer span {
  display: block;
  margin: 7px 0;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-bottom {
  width: min(var(--max), 100%);
  margin: 30px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.developer-credit {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
}

.policy-main {
  padding-top: 86px;
}

.policy-content {
  width: min(900px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.policy-content article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(0, 74, 99, 0.08);
}

.policy-content h2 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.policy-content p {
  margin: 0 0 10px;
  color: var(--muted);
}

.policy-content a {
  color: var(--blue-900);
  font-weight: 800;
}

.floating-actions {
  position: fixed;
  right: 16px;
  bottom: 18px;
  z-index: 1400;
  display: grid;
  gap: 8px;
}

.float-btn {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(0, 74, 99, 0.28);
  font-size: 0.68rem;
  letter-spacing: 0;
  backdrop-filter: blur(12px);
}

.whatsapp-float {
  background: linear-gradient(145deg, #1f8f59, var(--blue-900));
}

.call-float {
  display: none;
  background: var(--blue-900);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2500;
  display: grid;
  grid-template-columns: 72px 1fr 72px;
  align-items: center;
  gap: 12px;
  padding: 72px 20px 28px;
  background: rgba(2, 9, 15, 0.94);
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-frame {
  margin: 0;
  height: calc(100svh - 120px);
  display: grid;
  place-items: center;
  gap: 12px;
}

.lightbox-frame img {
  max-width: 100%;
  max-height: calc(100svh - 180px);
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.lightbox-frame figcaption {
  color: var(--white);
  text-align: center;
}

.lightbox-close,
.lightbox-control {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  min-height: 44px;
  padding: 8px 14px;
}

.lightbox-control {
  width: 64px;
  height: 64px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-content.reveal {
  opacity: 1;
  transform: none;
  transition: none;
  animation: heroTextIn 850ms ease both 220ms;
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .menu-toggle {
    display: inline-block;
  }

  .primary-menu {
    position: fixed;
    z-index: 2;
    top: 0;
    right: 0;
    width: min(460px, 92vw);
    height: 100svh;
    padding: 94px 22px 22px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    overflow-y: auto;
    background: rgba(0, 74, 99, 0.98);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -26px 0 60px rgba(0, 0, 0, 0.32);
    transform: translateX(102%);
    transition: transform 280ms ease;
    -webkit-overflow-scrolling: touch;
  }

  .primary-menu.is-open {
    transform: translateX(0);
  }

  .primary-menu a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    text-align: left;
    border-radius: 6px;
  }

  .primary-menu .nav-cta {
    margin: 8px 0 0;
    justify-content: center;
    text-align: center;
  }

  .policy-page .policy-menu {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    display: flex;
    transform: none;
    background: transparent;
    box-shadow: none;
  }

  .policy-page .policy-menu a:not(.nav-cta) {
    display: none;
  }

  .policy-page .policy-menu .nav-cta {
    margin: 0;
  }

  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .trust-grid,
  .about-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .featured-carousel {
    min-height: 100svh;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-grid,
  .video-grid,
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }

  .director-card {
    grid-template-columns: 1fr;
  }

  .director-photo {
    min-height: 320px;
  }

  .portfolio-gallery {
    column-count: 3;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 10px 8px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 88svh;
    padding-top: 110px;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 2rem;
  }

  .section {
    padding: 72px 16px;
  }

  .hero-actions,
  .strip-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .strip-heading .btn {
    width: 100%;
  }

  .featured-work {
    min-height: 100svh;
    padding: 0;
  }

  .featured-shell {
    min-height: 100svh;
  }

  .featured-copy p:not(.eyebrow) {
    font-size: 0.96rem;
  }

  .featured-copy {
    left: 16px;
    right: 16px;
    bottom: 148px;
    max-width: none;
    padding-right: 0;
    gap: 8px;
  }

  .featured-copy h2 {
    max-width: 9ch;
    font-size: 2.2rem;
  }

  .featured-carousel {
    min-height: 100svh;
  }

  .featured-carousel::after {
    background:
      linear-gradient(0deg, rgba(0, 38, 51, 0.78) 0%, rgba(0, 38, 51, 0.22) 46%, rgba(0, 38, 51, 0.28) 100%),
      linear-gradient(90deg, rgba(0, 38, 51, 0.36), transparent 54%, rgba(0, 38, 51, 0.18));
  }

  .slide-arrow {
    top: auto;
    bottom: 28px;
    width: 42px;
    height: 42px;
    transform: none;
  }

  .slide-arrow:hover,
  .slide-arrow:focus-visible {
    transform: scale(1.04);
  }

  .slide-prev {
    left: 16px;
  }

  .slide-next {
    right: 78px;
  }

  .slide-dots {
    bottom: 92px;
    width: min(76%, 300px);
    gap: 6px;
  }

  .slide-dot {
    width: 18px;
    height: 4px;
  }

  .slide-dot.is-active {
    width: 30px;
  }

  .trust-grid,
  .about-grid,
  .contact-grid,
  .service-grid,
  .video-grid,
  .why-grid,
  .testimonial-grid,
  .footer-grid,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item {
    min-height: 104px;
    padding: 18px 10px;
  }

  .trust-item:last-child {
    grid-column: 1 / -1;
  }

  .portfolio-gallery {
    column-count: 2;
    column-gap: 12px;
  }

  .portfolio-card {
    margin-bottom: 12px;
  }

  .lightbox {
    grid-template-columns: 1fr 1fr;
    align-content: center;
    padding-inline: 12px;
  }

  .lightbox-frame {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .lightbox-prev,
  .lightbox-next {
    grid-row: 2;
    width: 100%;
  }

  .call-float {
    display: inline-flex;
  }

  .float-btn {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 420px) {
  .portfolio-gallery {
    column-count: 1;
  }

  .contact-actions .mini-btn,
  .cta-inner .btn,
  .form-submit {
    width: 100%;
  }

  .floating-actions {
    right: 12px;
    bottom: 18px;
  }

  .featured-copy {
    bottom: 140px;
  }

  .featured-copy h2 {
    font-size: 2rem;
  }

  .slide-next {
    right: 70px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .featured-slide {
    transform: none;
  }
}
