@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --navy: #0f2a3a;
  --navy-dark: #0a1c27;
  --gold: #c7a164;
  --sand: #f3ede3;
  --mist: #f7f5f1;
  --slate: #3b4c59;
  --white: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Work Sans", sans-serif;
  color: var(--navy-dark);
  background: var(--mist);
}

body.no-scroll {
  overflow: hidden;
}

.app-ready .seo-fallback {
  display: none;
}

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

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  color: var(--navy-dark);
}

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

.container {
  max-width: 1200px;
}

.site-header {
  background: rgba(15, 42, 58, 0.95);
  position: sticky;
  top: 0;
  z-index: 1020;
  backdrop-filter: blur(8px);
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  height: 76px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  font-family: "Playfair Display", serif;
  color: var(--white);
  font-size: 1.1rem;
  letter-spacing: 0.03em;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.12);
}

.navbar-toggler-icon {
  filter: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.6' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.32);
}

.nav-link {
  color: rgba(255, 255, 255, 0.78);
  margin-left: 1rem;
  font-weight: 500;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--white);
}

.nav-cta {
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--white);
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1rem;
}

.lang-btn {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 0.35rem 0.45rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
}

.lang-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.lang-btn.active {
  border-color: rgba(199, 161, 100, 0.9);
  background: rgba(199, 161, 100, 0.18);
}

.lang-btn img {
  display: block;
  width: 26px;
  height: 18px;
  border-radius: 3px;
}

.hero {
  position: relative;
}

.hero-carousel .carousel-item {
  min-height: 100vh;
}

.hero-carousel .carousel-inner {
  position: relative;
  min-height: 100vh;
}

/* React-driven carousel: keep all slides in the DOM and fade them ourselves (no Bootstrap JS required). */
.hero-carousel .carousel-item {
  display: block !important;
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  transition: opacity 1.1s ease;
}

.hero-carousel .carousel-item.active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

.hero-slide {
  min-height: 100vh;
  background: #000;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--slide-image);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
  will-change: transform, opacity;
}

/* No dark overlay: keep photos bright from the first frame. */
.hero-slide::after {
  content: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 2rem 0;
  max-width: 620px;
}

.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  margin-bottom: 1rem;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
}

.hero-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.5);
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Keep text readable without dimming the whole image. */
.hero-content {
  /* Move the hero copy block to the left + make it more transparent. */
  margin-left: clamp(1rem, 5vw, 5rem) !important;
  margin-right: auto !important;
  /* Fully transparent hero panel. */
  background: transparent;
  backdrop-filter: none;
  border: none;
  border-radius: 18px;
  padding: 2.25rem;
}

/* Aubuchon-style "zoom-move" animation on the background layer. */
.carousel-item.active .hero-slide::before {
  animation: zoom-move 15s linear infinite;
}

@keyframes zoom-move {
  0% {
    transform: scale(1.3);
    transform-origin: 50% 50%;
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  100% {
    transform: scale(1);
    transform-origin: 50% 50%;
    opacity: 1;
  }
}

.section {
  padding: 5rem 0;
}

.section-light {
  background: var(--mist);
}

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

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-title {
  margin-bottom: 2.5rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.section-split {
  background: var(--sand);
}

.split-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.feature-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(15, 42, 58, 0.15);
}

.stat-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  margin-top: 2rem;
}

.stat-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(15, 42, 58, 0.12);
}

.stat-number {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--navy);
}

.stat-label {
  color: var(--slate);
}

.card-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.service-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(15, 42, 58, 0.12);
}

.process-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.process-step {
  background: rgba(255, 255, 255, 0.08);
  padding: 2rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.process-step span {
  display: inline-block;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.gallery-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.gallery-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 42, 58, 0.12);
}

.gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.gallery-open {
  display: block;
  width: 100%;
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.gallery-open:focus-visible {
  outline: 3px solid rgba(199, 161, 100, 0.6);
  outline-offset: 2px;
}

.gallery-info {
  padding: 1.2rem 1.5rem 1.6rem;
}

.gallery-info h3 {
  margin: 0 0 0.25rem;
  font-size: 1.25rem;
}

.gallery-info p {
  margin: 0;
  color: var(--slate);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 28, 39, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 2000;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-inner {
  position: relative;
  width: min(1100px, 100%);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 1.25rem;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

.lightbox-inner img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.25);
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(15, 42, 58, 0.55);
  color: rgba(255, 255, 255, 0.92);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  user-select: none;
}

.nav-btn:hover {
  background: rgba(15, 42, 58, 0.8);
}

.nav-btn.prev {
  left: 14px;
}

.nav-btn.next {
  right: 14px;
}

.nav-btn.close {
  top: 14px;
  left: 14px;
  transform: none;
  width: auto;
  padding: 0 0.9rem;
  font-size: 0.9rem;
  height: 40px;
}

@media (max-width: 640px) {
  .nav-btn.prev,
  .nav-btn.next {
    top: auto;
    bottom: 14px;
    transform: none;
  }

  .nav-btn.prev {
    left: 14px;
  }

  .nav-btn.next {
    right: 14px;
  }

  .lightbox-inner {
    padding: 1rem;
  }
}

.section-cta {
  text-align: center;
}

.cta-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.cta-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(15, 42, 58, 0.12);
  text-align: left;
}

.contact-form {
  display: grid;
  gap: 0.85rem;
  margin: 1.2rem 0 1rem;
}

.contact-form .form-control {
  border-radius: 12px;
  border: 1px solid rgba(15, 42, 58, 0.12);
  padding: 0.65rem 0.9rem;
  font-size: 0.95rem;
}

.contact-form .form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.15rem rgba(199, 161, 100, 0.25);
}

.contact-form textarea.form-control {
  resize: vertical;
}

.form-status {
  margin: 0.5rem 0 0.25rem;
  font-weight: 500;
}

.form-status.success {
  color: #1f6b42;
}

.form-status.error {
  color: #8f1d1d;
}

.form-status.submitting {
  color: var(--slate);
}

.cta-note {
  margin-top: 1rem;
  color: var(--slate);
}

.contact-details {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.5rem;
  color: rgba(15, 42, 58, 0.9);
}

.contact-details a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(199, 161, 100, 0.75);
  text-underline-offset: 3px;
}

.map-embed {
  position: relative;
  margin-top: 1.25rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 42, 58, 0.12);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
}

/* Make map click open full Google Maps (per request). */
.map-embed .map-click {
  position: absolute;
  inset: 0;
}

.btn {
  border-radius: 999px;
  padding: 0.75rem 1.6rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
}

.btn-primary:hover {
  background: #d3b275;
  border-color: #d3b275;
  color: var(--navy-dark);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}

.btn-outline-dark {
  border-color: var(--navy-dark);
  color: var(--navy-dark);
}

.text-link {
  color: var(--navy);
  font-weight: 600;
}

.page-hero {
  /* Full clarity header image (no overlay gradient). */
  background: url("/images/hero/hero-2.png");
  background-size: cover;
  background-position: center;
  padding: 6rem 0 4rem;
  color: var(--white);
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.seo-page-hero {
  position: relative;
}

.seo-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10, 28, 39, 0.72), rgba(15, 42, 58, 0.36));
}

.seo-page-hero .container {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.seo-lede {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

.seo-body {
  color: rgba(255, 255, 255, 0.82);
  max-width: 760px;
}

.seo-list {
  margin: 1.5rem 0 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.75rem;
}

.seo-list li {
  padding-left: 0.15rem;
}

.seo-faq-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.seo-faq-item p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
}

.seo-link-grid h3 a {
  text-decoration: underline;
  text-decoration-color: rgba(199, 161, 100, 0.75);
  text-underline-offset: 4px;
}

.seo-copy {
  max-width: 860px;
}

.seo-copy h2,
.seo-copy h3 {
  margin-top: 1.75rem;
}

.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-brand {
  font-family: "Playfair Display", serif;
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.footer-title {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0.15rem 0;
  padding: 0.2rem 0.6rem;
  border: 1px solid rgba(199, 161, 100, 0.55);
  border-radius: 999px;
  color: var(--white);
  background: rgba(199, 161, 100, 0.12);
}

.footer-social-link:hover,
.footer-social-link:focus {
  color: var(--white);
  background: rgba(199, 161, 100, 0.22);
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1199px) {
  .brand-logo {
    height: 68px;
  }

  .section {
    padding: 4.5rem 0;
  }
}

@media (max-width: 991px) {
  #about,
  #services,
  #process,
  #contact {
    scroll-margin-top: 8.75rem;
  }

  .nav-link {
    margin-left: 0;
    padding: 0.5rem 0;
  }

  .lang-toggle {
    margin-left: 0;
    padding: 0.75rem 0 0.25rem;
  }

  .navbar-collapse {
    background: rgba(15, 42, 58, 0.98);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-top: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero-carousel .carousel-item,
  .hero-slide {
    min-height: 70vh;
  }

  .hero-content {
    /* On mobile: keep it readable and avoid edge-to-edge. */
    margin-left: 1rem !important;
    margin-right: 1rem !important;
    background: transparent;
    backdrop-filter: none;
    border: none;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 3.5rem 0;
  }

  .brand-logo {
    height: 56px;
  }

  .brand-text {
    display: none;
  }

  .hero-carousel .carousel-item,
  .hero-carousel .carousel-inner,
  .hero-slide {
    min-height: 64vh;
  }

  .hero-content {
    padding: 1.25rem 0;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .feature-card,
  .service-card,
  .cta-card {
    padding: 1.5rem;
  }

  .contact-form .form-control {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  #about,
  #services,
  #process,
  #contact {
    scroll-margin-top: 9.5rem;
  }

  .navbar {
    padding: 0.75rem 0;
  }

  .map-embed iframe {
    height: 200px;
  }
}

/* 2026 frontend refresh: fluid, responsive, modernized styling */
:root {
  --aaq-font-heading: "Cormorant Garamond", serif;
  --aaq-font-body: "Manrope", sans-serif;
  --aaq-ink-950: #08161f;
  --aaq-ink-900: #0d2432;
  --aaq-ink-800: #17374b;
  --aaq-ink-700: #204b63;
  --aaq-sand-300: #ead7bd;
  --aaq-sand-200: #f4e7d5;
  --aaq-teal-300: #7bc4c3;
  --aaq-teal-200: #b6e2df;
  --aaq-white: #ffffff;
  --aaq-slate-600: #4b677a;
  --aaq-slate-500: #5f7687;
  --aaq-radius-lg: 18px;
  --aaq-radius-xl: 24px;
  --aaq-shadow-soft: 0 20px 50px rgba(13, 36, 50, 0.12);
  --aaq-shadow-strong: 0 28px 70px rgba(8, 22, 31, 0.22);
}

body {
  position: relative;
  min-height: 100vh;
  font-family: var(--aaq-font-body);
  color: var(--aaq-ink-900);
  line-height: 1.65;
  background: linear-gradient(180deg, #f8fbfd 0%, #f2f7fb 40%, #eff6f8 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: -1;
}

body::before {
  inset: -18vmax;
  background:
    radial-gradient(46vmax 42vmax at 8% 10%, rgba(123, 196, 195, 0.25), transparent 66%),
    radial-gradient(52vmax 46vmax at 96% 14%, rgba(234, 215, 189, 0.32), transparent 68%),
    radial-gradient(52vmax 45vmax at 24% 88%, rgba(182, 226, 223, 0.2), transparent 68%);
}

body::after {
  inset: 0;
  background-image: linear-gradient(transparent 95%, rgba(13, 36, 50, 0.03) 95%);
  background-size: 100% 22px;
  opacity: 0.32;
}

h1,
h2,
h3,
h4 {
  font-family: var(--aaq-font-heading);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--aaq-ink-950);
  line-height: 1.15;
}

p {
  color: var(--aaq-slate-600);
}

main [id] {
  scroll-margin-top: 7.5rem;
}

.container {
  --container-pad: clamp(1rem, 3.4vw, 2rem);
  width: min(1180px, calc(100% - (var(--container-pad) * 2)));
  max-width: none;
  margin-inline: auto;
  padding-inline: 0;
}

.site-header {
  z-index: 1040;
  padding-top: max(0px, env(safe-area-inset-top));
  border-bottom: 1px solid rgba(198, 218, 229, 0.2);
  background: linear-gradient(180deg, rgba(8, 22, 31, 0.94) 0%, rgba(13, 36, 50, 0.86) 100%);
  backdrop-filter: blur(16px);
}

.navbar {
  padding: 0.8rem 0;
}

.navbar-brand {
  gap: 0.8rem;
}

.brand-logo {
  height: clamp(48px, 5.4vw, 68px);
}

.brand-text {
  color: var(--aaq-white);
  font-family: var(--aaq-font-heading);
  font-size: clamp(0.95rem, 1.25vw, 1.3rem);
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.35rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.22rem rgba(182, 226, 223, 0.35);
}

.nav-link {
  margin-left: 0;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.93rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.45rem 0.95rem;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--aaq-white);
  background: rgba(255, 255, 255, 0.1);
}

.nav-cta {
  border: 1px solid rgba(234, 215, 189, 0.85);
  background: linear-gradient(120deg, rgba(234, 215, 189, 0.22), rgba(123, 196, 195, 0.18));
  color: var(--aaq-white);
}

.lang-toggle {
  margin-left: 0.8rem;
  gap: 0.35rem;
}

.lang-btn {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.28rem 0.34rem;
}

.lang-btn.active {
  border-color: rgba(234, 215, 189, 0.92);
  background: rgba(234, 215, 189, 0.2);
}

.lang-btn img {
  width: 24px;
  height: 17px;
}

.hero-carousel .carousel-inner,
.hero-carousel .carousel-item,
.hero-slide {
  min-height: min(920px, 100dvh);
}

@supports not (height: 100dvh) {
  .hero-carousel .carousel-inner,
  .hero-carousel .carousel-item,
  .hero-slide {
    min-height: 100vh;
  }
}

.hero-slide {
  display: grid;
  align-items: center;
}

.hero-slide::before {
  transform: scale(1.08);
  animation: aaq-hero-pan 15s linear infinite;
}

.hero-slide::after {
  content: none;
}

.hero-content {
  margin-left: clamp(0.2rem, 3.2vw, 2rem) !important;
  margin-right: auto !important;
  max-width: min(700px, 100%);
  padding: clamp(1.35rem, 3.6vw, 2.5rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--aaq-radius-xl);
  background: rgba(8, 22, 31, 0.05);
  backdrop-filter: none;
  box-shadow: none;
  animation: aaq-hero-rise 700ms ease;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 4.35rem);
}

.hero-content p {
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  max-width: 60ch;
}

.hero-eyebrow,
.eyebrow {
  font-size: 0.74rem;
  letter-spacing: 0.2em;
}

.hero-carousel .carousel-indicators {
  right: clamp(0.95rem, 3vw, 2.25rem);
  left: auto;
  bottom: clamp(1rem, 2.8vw, 2.1rem);
  justify-content: flex-end;
  gap: 0.5rem;
  margin: 0;
}

.hero-carousel .carousel-indicators button {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.38);
}

.hero-carousel .carousel-indicators .active {
  width: 32px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--aaq-sand-300), var(--aaq-teal-300));
}

.carousel-control-prev,
.carousel-control-next {
  top: auto;
  bottom: clamp(1rem, 2.8vw, 2rem);
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(8, 22, 31, 0.28);
  backdrop-filter: blur(5px);
  opacity: 1;
}

.carousel-control-prev {
  left: clamp(0.9rem, 3.2vw, 2rem);
}

.carousel-control-next {
  left: calc(clamp(0.9rem, 3.2vw, 2rem) + 56px);
  right: auto;
}

.section {
  padding-block: clamp(3.4rem, 8vw, 6.4rem);
}

.section-light {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(244, 251, 255, 0.92));
}

.section-split {
  background: linear-gradient(165deg, rgba(255, 248, 239, 0.95), rgba(240, 248, 252, 0.92));
}

.section-dark {
  position: relative;
  background: linear-gradient(145deg, var(--aaq-ink-950), var(--aaq-ink-800));
  color: rgba(255, 255, 255, 0.92);
}

.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(44vmax 28vmax at 4% 0%, rgba(123, 196, 195, 0.16), transparent 70%),
    radial-gradient(40vmax 24vmax at 94% 100%, rgba(234, 215, 189, 0.2), transparent 70%);
}

.section-dark .container {
  position: relative;
  z-index: 1;
}

.section-title {
  margin-bottom: clamp(1.8rem, 5vw, 2.7rem);
  max-width: 740px;
}

.section-title h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.split-grid {
  gap: clamp(1.2rem, 3.5vw, 2.6rem);
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  align-items: stretch;
}

.feature-card,
.service-card,
.process-step,
.stat-card,
.gallery-card,
.cta-card {
  border: 1px solid rgba(32, 75, 99, 0.09);
  border-radius: var(--aaq-radius-lg);
  background: var(--aaq-white);
  box-shadow: var(--aaq-shadow-soft);
}

.feature-card {
  padding: clamp(1.35rem, 3vw, 2.4rem);
  background:
    linear-gradient(130deg, rgba(255, 248, 239, 0.88), rgba(232, 246, 244, 0.85)),
    var(--aaq-white);
}

.stat-grid {
  margin-top: 1.3rem;
  gap: 0.85rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card {
  padding: 1.15rem 1rem;
}

.stat-number {
  color: var(--aaq-ink-900);
  font-family: var(--aaq-font-heading);
  font-size: clamp(1.6rem, 2.7vw, 2.15rem);
}

.stat-label {
  color: var(--aaq-slate-600);
  font-size: 0.88rem;
  line-height: 1.4;
}

.card-grid,
.process-grid,
.gallery-grid {
  gap: clamp(0.95rem, 2vw, 1.4rem);
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.service-card {
  grid-column: span 4;
  padding: clamp(1.2rem, 2.6vw, 2rem);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.98), rgba(241, 248, 252, 0.95));
}

.process-step {
  grid-column: span 3;
  padding: clamp(1.2rem, 2.5vw, 1.95rem);
  border-color: rgba(255, 255, 255, 0.2);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  box-shadow: none;
}

.process-step span {
  min-width: 2.2rem;
  height: 2.2rem;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--aaq-ink-900);
  background: linear-gradient(140deg, var(--aaq-sand-300), var(--aaq-teal-300));
}

.gallery-card {
  grid-column: span 4;
}

.gallery-card img {
  aspect-ratio: 4 / 3;
  height: auto;
  transition: transform 420ms ease;
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.lightbox {
  padding: max(1rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right))
    max(1rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
  background: rgba(8, 22, 31, 0.88);
  backdrop-filter: blur(4px);
}

.lightbox-inner {
  width: min(1120px, 100%);
  padding: clamp(0.85rem, 2vw, 1.3rem);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(8, 22, 31, 0.48);
  box-shadow: var(--aaq-shadow-strong);
}

.lightbox-inner img {
  max-height: min(78vh, 860px);
  border-radius: 14px;
  background: rgba(8, 22, 31, 0.35);
}

.nav-btn {
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  background: rgba(8, 22, 31, 0.64);
  color: var(--aaq-white);
}

.section-cta {
  text-align: left;
}

.cta-grid {
  gap: clamp(1rem, 2.4vw, 2rem);
  align-items: start;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
}

.cta-card {
  padding: clamp(1.25rem, 2.8vw, 2rem);
}

.contact-details {
  margin-top: 1.25rem;
  gap: 0.45rem;
  font-size: 0.95rem;
  color: var(--aaq-slate-600);
}

.contact-details a {
  text-decoration: underline;
  text-decoration-color: rgba(32, 75, 99, 0.4);
  text-underline-offset: 2px;
}

.contact-form .form-control {
  min-height: 46px;
  border: 1px solid rgba(13, 36, 50, 0.18);
  padding: 0.62rem 0.82rem;
}

.contact-form .form-control:focus {
  border-color: rgba(123, 196, 195, 0.95);
  box-shadow: 0 0 0 0.2rem rgba(123, 196, 195, 0.2);
}

.contact-form textarea.form-control {
  min-height: 112px;
}

.cta-note {
  color: var(--aaq-slate-500);
}

.map-embed iframe {
  height: 228px;
}

.btn {
  border-radius: 999px;
  padding: 0.78rem 1.4rem;
  font-weight: 700;
  font-size: 0.91rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.btn-primary {
  color: var(--aaq-ink-900);
  border-color: #d9bf96;
  background: linear-gradient(130deg, #ebd7ba, #d8be97);
  box-shadow: 0 10px 24px rgba(124, 92, 45, 0.26);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  color: var(--aaq-ink-900);
  border-color: #e8cfaa;
  background: linear-gradient(130deg, #f0dec3, #dec69f);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.03);
}

.btn-outline-light:hover,
.btn-outline-light:focus-visible {
  color: var(--aaq-ink-950);
  background: rgba(255, 255, 255, 0.9);
}

.page-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: min(620px, 72dvh);
  padding: clamp(5rem, 10vw, 7rem) 0 clamp(2.8rem, 5vw, 4.2rem);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(112deg, rgba(8, 22, 31, 0.76) 8%, rgba(8, 22, 31, 0.36) 52%, rgba(8, 22, 31, 0.7) 100%),
    linear-gradient(180deg, rgba(8, 22, 31, 0.08), rgba(8, 22, 31, 0.42));
}

.page-hero .container {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 4rem);
}

.seo-page-hero .container,
.seo-copy {
  max-width: 880px;
}

.site-footer {
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
  padding: clamp(2.8rem, 6vw, 3.6rem) 0 calc(1.8rem + env(safe-area-inset-bottom));
  color: rgba(255, 255, 255, 0.78);
  background: linear-gradient(148deg, #071721 0%, #102f40 58%, #18495f 100%);
}

.footer-grid {
  gap: clamp(1.2rem, 2.8vw, 2.1rem);
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.footer-grid > * {
  grid-column: span 4;
}

.footer-brand {
  font-family: var(--aaq-font-heading);
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
}

.footer-title {
  color: var(--aaq-sand-200);
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.84);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--aaq-sand-200);
}

@media (max-width: 1199px) {
  .service-card,
  .gallery-card,
  .footer-grid > * {
    grid-column: span 6;
  }

  .process-step {
    grid-column: span 6;
  }
}

@media (max-width: 991px) {
  main [id] {
    scroll-margin-top: 8.3rem;
  }

  .navbar-collapse {
    margin-top: 0.7rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(8, 22, 31, 0.9);
    padding: 0.95rem 1rem;
  }

  .navbar-nav {
    align-items: stretch;
    gap: 0.2rem;
  }

  .nav-link {
    width: 100%;
    text-align: left;
    padding: 0.55rem 0.78rem;
  }

  .lang-toggle {
    margin: 0.25rem 0 0;
    width: fit-content;
  }

  .hero-carousel .carousel-inner,
  .hero-carousel .carousel-item,
  .hero-slide {
    min-height: min(860px, 82dvh);
  }

  .hero-content {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .split-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  main [id] {
    scroll-margin-top: 8.8rem;
  }

  .brand-logo {
    height: 50px;
  }

  .brand-text {
    display: none;
  }

  .hero-carousel .carousel-inner,
  .hero-carousel .carousel-item,
  .hero-slide {
    min-height: min(760px, 78dvh);
  }

  .hero-content {
    padding: 1.15rem 1rem;
    border-radius: 18px;
  }

  .hero-content h1 {
    font-size: clamp(1.8rem, 9vw, 2.85rem);
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .service-card,
  .process-step,
  .gallery-card,
  .footer-grid > * {
    grid-column: span 12;
  }

  .feature-card,
  .service-card,
  .process-step,
  .cta-card {
    padding: 1.2rem;
  }
}

@media (max-width: 479px) {
  .section {
    padding-block: clamp(3rem, 11vw, 4rem);
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    font-size: 0.85rem;
    padding: 0.72rem 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

@keyframes aaq-hero-pan {
  0% {
    transform: scale(1.08) translate(0, 0);
  }

  50% {
    transform: scale(1.15) translate(1%, -0.8%);
  }

  100% {
    transform: scale(1.08) translate(0, 0);
  }
}

@keyframes aaq-hero-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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