/* ==========================================================================
   Aqua Vista Media — Ocean Depth design system
   Palette derived from the Aqua Vista Media logo
   ========================================================================== */

:root {
  /* Brand — sampled from logo + existing site tokens */
  --navy-900: #01121f;
  --navy-800: #031b2e;
  --navy-700: #062b47;
  --navy-600: #082f4d;
  --navy-500: #0d3c60;

  --aqua-400: #12d9ef;
  --aqua-300: #39e9f6;
  --aqua-600: #0aa8bd;

  --sun-400: #ff9f1c;
  --sun-500: #f5821f;

  --paper: #f4f9fc;
  --paper-2: #e6f1f7;
  --white: #f7fbff;

  --ink-900: #04202f;
  --ink-600: #4d6472;
  --ink-400: #7d95a3;

  --line-dark: rgba(255, 255, 255, 0.11);
  --line-light: rgba(4, 32, 47, 0.1);

  /* Type */
  --font-display: 'Montserrat', 'Helvetica Neue', sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;

  --text-hero: clamp(2.5rem, 6.2vw, 5rem);
  --text-3xl: clamp(2.1rem, 4.4vw, 3.4rem);
  --text-2xl: clamp(1.75rem, 3.2vw, 2.6rem);
  --text-xl: clamp(1.35rem, 2.2vw, 1.75rem);
  --text-lg: 1.125rem;
  --text-base: 1rem;
  --text-sm: 0.9375rem;
  --text-xs: 0.8125rem;
  --text-2xs: 0.6875rem;

  /* Space */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;

  --section-y: clamp(4.5rem, 8vw, 8rem);
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --maxw: 1240px;
  --maxw-narrow: 780px;

  --radius: 18px;
  --radius-sm: 10px;
  --radius-lg: 26px;

  --shadow-sm: 0 2px 10px rgba(1, 18, 31, 0.14);
  --shadow-md: 0 14px 38px rgba(1, 18, 31, 0.22);
  --shadow-lg: 0 30px 70px rgba(1, 18, 31, 0.38);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--ink-900);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img,
svg,
video {
  display: block;
  max-width: 100%;
}
img {
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}
ul {
  list-style: none;
  padding: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

::selection {
  background: var(--aqua-400);
  color: var(--navy-900);
}

:focus-visible {
  outline: 2px solid var(--aqua-400);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow {
  max-width: var(--maxw-narrow);
}
.section {
  padding-block: var(--section-y);
  position: relative;
}
.section--dark {
  background: var(--navy-800);
  color: var(--white);
}
.section--deep {
  background: var(--navy-900);
  color: var(--white);
}
.section--paper {
  background: var(--paper);
}
.section--paper-2 {
  background: var(--paper-2);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--deep h1,
.section--deep h2,
.section--deep h3 {
  color: var(--white);
}

/* ---------- Shared type helpers ---------- */
.eyebrow {
  font-family: var(--font-display);
  font-size: var(--text-2xs);
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--aqua-600);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: var(--space-4);
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
  flex: none;
  opacity: 0.6;
}
.section--dark .eyebrow,
.section--deep .eyebrow,
.eyebrow--light {
  color: var(--aqua-300);
}

.section-head {
  max-width: 720px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-head h2 {
  font-size: var(--text-3xl);
}
.section-head p {
  margin-top: var(--space-4);
  font-size: var(--text-lg);
  color: var(--ink-600);
  max-width: 62ch;
}
.section--dark .section-head p,
.section--deep .section-head p {
  color: rgba(226, 240, 248, 0.76);
}

.lead {
  font-size: var(--text-lg);
  color: var(--ink-600);
}
.section--dark .lead,
.section--deep .lead {
  color: rgba(226, 240, 248, 0.78);
}

.muted {
  color: var(--ink-400);
  font-size: var(--text-sm);
}
.section--dark .muted,
.section--deep .muted {
  color: rgba(200, 219, 231, 0.62);
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--aqua-400);
  --btn-fg: var(--navy-900);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(18, 217, 239, 0.3);
}
.btn:active {
  transform: translateY(0);
}
.btn svg {
  width: 17px;
  height: 17px;
  flex: none;
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: none;
}
.btn--outline-dark {
  --btn-bg: transparent;
  --btn-fg: var(--navy-800);
  border-color: rgba(4, 32, 47, 0.24);
}
.btn--outline-dark:hover {
  background: var(--navy-800);
  color: var(--white);
  box-shadow: none;
}
.btn--sun {
  --btn-bg: var(--sun-400);
  --btn-fg: #2a1503;
}
.btn--sun:hover {
  box-shadow: 0 10px 26px rgba(255, 159, 28, 0.32);
}
.btn--lg {
  padding: 1.1rem 2rem;
  font-size: var(--text-base);
}
.btn--block {
  width: 100%;
}

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--aqua-600);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: gap 0.3s var(--ease);
}
.section--dark .textlink,
.section--deep .textlink {
  color: var(--aqua-300);
}
.textlink:hover {
  gap: 0.85rem;
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition:
    background 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease),
    transform 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  height: 82px;
}
.header.is-scrolled {
  background: rgba(3, 27, 46, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line-dark);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex: none;
}
.brand img {
  height: 48px;
  width: auto;
  display: block;
}
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand__name {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  color: #fff;
  text-transform: uppercase;
}
.brand__sub {
  font-family: var(--font-display);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  color: var(--aqua-300);
  text-transform: uppercase;
  margin-top: 5px;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2rem);
}
.nav a {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(233, 244, 250, 0.82);
  position: relative;
  padding-block: 4px;
  transition: color 0.25s ease;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1.5px;
  width: 0;
  background: var(--aqua-400);
  transition: width 0.35s var(--ease);
}
.nav a:hover {
  color: #fff;
}
.nav a:hover::after {
  width: 100%;
}

.header__cta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex: none;
}
.header__phone {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.header__phone svg {
  width: 15px;
  height: 15px;
  color: var(--aqua-300);
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(3, 27, 46, 0.55);
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.burger span {
  display: block;
  width: 17px;
  height: 1.5px;
  background: #fff;
  margin: 3.5px auto;
  transition: transform 0.35s var(--ease), opacity 0.25s ease;
}
.burger[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
.burger[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}
.burger[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--navy-900);
  padding: 110px var(--gutter) var(--space-12);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform 0.5s var(--ease), visibility 0.5s;
  overflow-y: auto;
}
.mobile-nav.is-open {
  transform: translateY(0);
  visibility: visible;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  padding-block: 0.7rem;
  border-bottom: 1px solid var(--line-dark);
}
.mobile-nav .btn {
  margin-top: var(--space-8);
}
.mobile-nav__contact {
  margin-top: var(--space-6);
  color: rgba(210, 229, 240, 0.7);
  font-size: var(--text-sm);
  display: grid;
  gap: 0.3rem;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: clamp(620px, 94svh, 940px);
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(3rem, 7vw, 6rem);
  padding-top: 140px;
  background: var(--navy-900);
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  animation: heroDrift 26s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.12);
  }
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, rgba(1, 18, 31, 0.96) 2%, rgba(1, 18, 31, 0.66) 34%, rgba(1, 18, 31, 0.22) 62%, rgba(1, 18, 31, 0.6) 100%),
    linear-gradient(to right, rgba(1, 18, 31, 0.78) 0%, rgba(1, 18, 31, 0.12) 62%);
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: end;
  width: 100%;
}
.hero__locale {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: var(--text-2xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--aqua-300);
  background: rgba(18, 217, 239, 0.1);
  border: 1px solid rgba(18, 217, 239, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  margin-bottom: var(--space-6);
}
.hero__locale::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--aqua-400);
  box-shadow: 0 0 0 4px rgba(18, 217, 239, 0.2);
}
.hero h1 {
  font-size: var(--text-hero);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 15ch;
}
.hero h1 strong {
  font-weight: 700;
  display: block;
  background: linear-gradient(100deg, #fff 8%, var(--aqua-300) 52%, var(--aqua-400) 88%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__sub {
  margin-top: var(--space-6);
  font-size: clamp(1rem, 1.5vw, 1.185rem);
  color: rgba(226, 240, 248, 0.84);
  max-width: 48ch;
}
.hero__actions {
  margin-top: var(--space-8);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.hero__card {
  background: rgba(3, 27, 46, 0.6);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  box-shadow: var(--shadow-lg);
}
.hero__card h2 {
  font-size: var(--text-2xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--aqua-300);
  margin-bottom: var(--space-4);
}
.hero__stats {
  display: grid;
  gap: var(--space-4);
}
.hero__stat {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--line-dark);
}
.hero__stat:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.hero__stat b {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  flex: none;
  min-width: 3.6ch;
}
.hero__stat span {
  font-size: var(--text-sm);
  color: rgba(210, 229, 240, 0.76);
  line-height: 1.4;
}

/* ---------- Marquee of service areas ---------- */
.ticker {
  background: var(--navy-900);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  overflow: hidden;
  padding-block: 0.95rem;
}
.ticker__track {
  display: flex;
  width: max-content;
  animation: tickerScroll 46s linear infinite;
}
.ticker:hover .ticker__track {
  animation-play-state: paused;
}
@keyframes tickerScroll {
  to {
    transform: translateX(-50%);
  }
}
.ticker__group {
  display: flex;
  align-items: center;
  flex: none;
}
.ticker__item {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(214, 233, 244, 0.62);
  padding-inline: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  white-space: nowrap;
}
.ticker__item::after {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--aqua-400);
  opacity: 0.7;
}

/* ==========================================================================
   Positioning statement
   ========================================================================== */
.positioning {
  position: relative;
  overflow: hidden;
}
.positioning__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.positioning blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.35vw, 1.95rem);
  font-weight: 300;
  line-height: 1.42;
  letter-spacing: -0.015em;
  color: var(--navy-800);
}
.positioning blockquote em {
  font-style: normal;
  font-weight: 600;
  color: var(--aqua-600);
}
.positioning__mark {
  width: clamp(180px, 26vw, 300px);
  opacity: 0.95;
  justify-self: center;
  filter: drop-shadow(0 18px 40px rgba(1, 18, 31, 0.18));
}
.positioning__sig {
  margin-top: var(--space-8);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  border-top: 1px solid var(--line-light);
  padding-top: var(--space-6);
}
.positioning__sig b {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy-800);
  display: block;
}
.positioning__sig span {
  font-size: var(--text-xs);
  color: var(--ink-400);
}

/* ==========================================================================
   Services
   ========================================================================== */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.25rem, 2.4vw, 1.75rem);
}
.svc {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy-700);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
  border: 1px solid var(--line-dark);
}
.svc img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.svc::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(1, 18, 31, 0.98) 30%, rgba(1, 18, 31, 0.92) 52%, rgba(1, 18, 31, 0.55) 74%, rgba(1, 18, 31, 0.22) 100%);
}
.svc:hover img {
  transform: scale(1.07);
}
.svc__body {
  padding: clamp(1.25rem, 2.2vw, 1.75rem);
}
.svc__num {
  font-family: var(--font-display);
  font-size: var(--text-2xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--aqua-300);
  margin-bottom: 0.6rem;
  display: block;
}
.svc h3 {
  font-size: var(--text-xl);
  color: #fff;
  margin-bottom: 0.55rem;
}
.svc p {
  font-size: var(--text-sm);
  color: rgba(219, 235, 245, 0.8);
  margin-bottom: var(--space-4);
}
.svc ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.svc li {
  font-size: var(--text-2xs);
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(219, 235, 245, 0.88);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0.32rem 0.7rem;
}
.svc--tall {
  min-height: 480px;
}

/* ==========================================================================
   Portfolio / gallery
   ========================================================================== */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: var(--space-8);
}
.filter {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: rgba(224, 238, 247, 0.78);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.filter:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}
.filter.is-active {
  background: var(--aqua-400);
  border-color: var(--aqua-400);
  color: var(--navy-900);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(0.75rem, 1.5vw, 1.15rem);
}
.shot {
  position: relative;
  grid-column: span 4;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--navy-700);
  isolation: isolate;
  cursor: pointer;
  border: 0;
  padding: 0;
  width: 100%;
  display: block;
  text-align: left;
  color: inherit;
  font: inherit;
}
.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease), filter 0.5s ease;
}
.shot__meta {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.35rem 1.25rem 1.1rem;
  background: linear-gradient(to top, rgba(1, 18, 31, 0.94), rgba(1, 18, 31, 0));
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.shot:hover img,
.shot:focus-visible img {
  transform: scale(1.06);
}
.shot:hover .shot__meta,
.shot:focus-visible .shot__meta {
  opacity: 1;
  transform: translateY(0);
}
.shot__meta b {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: #fff;
}
.shot__meta span {
  font-size: var(--text-xs);
  color: var(--aqua-300);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.shot--wide {
  grid-column: span 8;
  aspect-ratio: 16 / 9;
}
.shot--tall {
  grid-column: span 4;
  aspect-ratio: 3 / 4;
}
.shot--half {
  grid-column: span 6;
  aspect-ratio: 3 / 2;
}
.shot.is-hidden {
  display: none;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(1, 18, 31, 0.94);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 78vh;
  width: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}
.lightbox__cap {
  margin-top: var(--space-4);
  text-align: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--text-base);
}
.lightbox__cap span {
  display: block;
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--aqua-300);
  margin-top: 0.3rem;
}
.lightbox__close {
  position: absolute;
  top: clamp(1rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 2rem);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.25s ease;
}
.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* ==========================================================================
   Full-bleed band
   ========================================================================== */
.band {
  position: relative;
  min-height: clamp(420px, 56vw, 620px);
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  padding-block: var(--space-24);
}
.band img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.band::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(1, 18, 31, 0.72), rgba(1, 18, 31, 0.82));
}
.band h2 {
  font-size: var(--text-3xl);
  font-weight: 300;
  max-width: 20ch;
  margin-inline: auto;
}
.band h2 strong {
  font-weight: 700;
  color: var(--aqua-300);
}
.band p {
  margin: var(--space-6) auto 0;
  max-width: 58ch;
  color: rgba(230, 242, 249, 0.86);
  font-size: var(--text-lg);
}
.band .btn {
  margin-top: var(--space-8);
}

/* ==========================================================================
   Pricing
   ========================================================================== */
.tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(1.25rem, 2.2vw, 1.75rem);
  align-items: stretch;
}
.tier {
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 2.6vw, 2.15rem);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s ease;
}
.tier:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(18, 217, 239, 0.5);
}
.tier--featured {
  background: linear-gradient(168deg, var(--navy-800) 0%, var(--navy-900) 100%);
  border-color: rgba(18, 217, 239, 0.42);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.tier__badge {
  position: absolute;
  top: -13px;
  left: clamp(1.6rem, 2.6vw, 2.15rem);
  font-family: var(--font-display);
  font-size: var(--text-2xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--sun-400);
  color: #2a1503;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
}
.tier h3 {
  font-size: var(--text-xl);
  color: var(--navy-800);
}
.tier__for {
  font-size: var(--text-sm);
  color: var(--ink-600);
  margin-top: 0.35rem;
}
.tier--featured .tier__for {
  color: var(--aqua-300);
}
.tier__price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin: var(--space-6) 0 var(--space-4);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--line-light);
}
.tier--featured .tier__price {
  border-bottom-color: var(--line-dark);
}
.tier__price b {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
  color: var(--navy-800);
  letter-spacing: -0.03em;
}
.tier__price i {
  font-style: normal;
  font-size: var(--text-sm);
  color: var(--ink-400);
}
.tier--featured .tier__price i {
  color: var(--aqua-300);
}
.tier__list {
  display: grid;
  gap: 0.75rem;
  margin-bottom: var(--space-8);
  flex: 1;
}
.tier__list li {
  display: flex;
  gap: 0.65rem;
  font-size: var(--text-sm);
  color: var(--ink-600);
  line-height: 1.5;
}
.tier--featured .tier__list li {
  color: #fff;
}
.tier--featured h3,
.tier--featured .tier__price b {
  color: #fff;
}
.tier__list svg {
  width: 17px;
  height: 17px;
  flex: none;
  margin-top: 3px;
  color: var(--aqua-600);
}
.tier--featured .tier__list svg {
  color: var(--aqua-400);
}

.addons {
  margin-top: clamp(2rem, 4vw, 3rem);
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.addons h3 {
  font-size: var(--text-lg);
  color: var(--navy-800);
  margin-bottom: var(--space-2);
}
.addons > p {
  font-size: var(--text-sm);
  color: var(--ink-600);
  margin-bottom: var(--space-6);
}
.addons ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.9rem 3rem;
}
.addons li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: var(--text-sm);
  color: var(--ink-600);
  padding-bottom: 0.55rem;
  border-bottom: 1px dashed rgba(4, 32, 47, 0.14);
}
.addons li b {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy-800);
  white-space: nowrap;
}
.pricing-note {
  margin-top: var(--space-6);
  font-size: var(--text-sm);
  color: var(--ink-400);
  text-align: center;
}

/* ==========================================================================
   Process
   ========================================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: 3.5rem;
  border-top: 1px solid var(--line-dark);
}
.step::before {
  counter-increment: step;
  content: '0' counter(step);
  position: absolute;
  top: 1.35rem;
  left: 0;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--aqua-300);
}
.step::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 34%;
  height: 2px;
  background: var(--aqua-400);
}
.step h3 {
  font-size: var(--text-lg);
  margin-bottom: 0.6rem;
  color: #fff;
}
.step p {
  font-size: var(--text-sm);
  color: rgba(214, 233, 244, 0.72);
}

/* ==========================================================================
   Coverage map / areas
   ========================================================================== */
.areas {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.areas__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(178px, 1fr));
  gap: 0.5rem 1.25rem;
  margin-top: var(--space-6);
}
.areas__list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: var(--text-sm);
  color: var(--ink-600);
  padding-block: 0.4rem;
  border-bottom: 1px solid var(--line-light);
}
.areas__list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--aqua-400);
  flex: none;
}
.areas__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}
.areas__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.areas__tag {
  position: absolute;
  left: var(--space-6);
  bottom: var(--space-6);
  right: var(--space-6);
  background: rgba(3, 27, 46, 0.82);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
  color: #fff;
  font-size: var(--text-sm);
}
.areas__tag b {
  font-family: var(--font-display);
  display: block;
  margin-bottom: 0.15rem;
}
.areas__tag span {
  color: rgba(210, 229, 240, 0.72);
  font-size: var(--text-xs);
}

/* ==========================================================================
   About / founder
   ========================================================================== */
.about {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.about__photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}
.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__years {
  position: absolute;
  right: -1px;
  bottom: -1px;
  background: var(--aqua-400);
  color: var(--navy-900);
  padding: 1rem 1.35rem;
  border-radius: var(--radius) 0 0 0;
  text-align: right;
}
.about__years b {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  display: block;
  letter-spacing: -0.03em;
}
.about__years span {
  font-size: var(--text-2xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.about p + p {
  margin-top: var(--space-4);
}
.about__signature {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 2rem;
  color: var(--aqua-300);
  margin-top: var(--space-8);
  line-height: 1;
}
.about__role {
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(200, 219, 231, 0.6);
  margin-top: 0.6rem;
}
.about__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: var(--space-8);
}
.about__pills li {
  font-family: var(--font-display);
  font-size: var(--text-2xs);
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(219, 235, 245, 0.86);
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.25rem, 2.4vw, 1.75rem);
}
.quote {
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
}
.quote__stars {
  display: flex;
  gap: 3px;
  color: var(--sun-400);
  margin-bottom: var(--space-4);
}
.quote__stars svg {
  width: 15px;
  height: 15px;
}
.quote p {
  font-size: var(--text-base);
  color: var(--ink-600);
  flex: 1;
  line-height: 1.62;
}
.quote footer {
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid var(--line-light);
}
.quote footer b {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  color: var(--navy-800);
  display: block;
}
.quote footer span {
  font-size: var(--text-xs);
  color: var(--ink-400);
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  display: grid;
  gap: 0;
  max-width: 880px;
}
.faq details {
  border-bottom: 1px solid var(--line-light);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.3rem 3rem 1.3rem 0;
  position: relative;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--navy-800);
  transition: color 0.25s ease;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary:hover {
  color: var(--aqua-600);
}
.faq summary::after {
  content: '';
  position: absolute;
  right: 6px;
  top: 50%;
  width: 11px;
  height: 11px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.35s var(--ease);
  opacity: 0.6;
}
.faq details[open] summary::after {
  transform: translateY(-20%) rotate(-135deg);
}
.faq p {
  padding: 0 3rem 1.5rem 0;
  color: var(--ink-600);
  font-size: var(--text-base);
  max-width: 68ch;
}

/* ==========================================================================
   Booking / contact
   ========================================================================== */
.book {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.book__aside .contact-list {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-8);
}
.contact-item {
  display: flex;
  gap: 0.95rem;
  align-items: flex-start;
  padding: 1rem 1.15rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 0.3s ease, background 0.3s ease;
}
a.contact-item:hover {
  border-color: rgba(18, 217, 239, 0.55);
  background: rgba(18, 217, 239, 0.07);
}
.contact-item svg {
  width: 19px;
  height: 19px;
  color: var(--aqua-300);
  flex: none;
  margin-top: 3px;
}
.contact-item > span {
  min-width: 0;
}
.contact-item b {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: #fff;
  display: block;
  overflow-wrap: anywhere;
  text-transform: none;
  letter-spacing: 0;
}
.contact-item span span {
  font-size: var(--text-xs);
  color: rgba(200, 219, 231, 0.62);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}

.form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.35rem);
}
.form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.field--full {
  grid-column: 1 / -1;
}
.field label {
  font-family: var(--font-display);
  font-size: var(--text-2xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(206, 226, 238, 0.78);
}
.field input,
.field select,
.field textarea {
  background: rgba(1, 18, 31, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  color: #fff;
  font-size: var(--text-sm);
  width: 100%;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.field textarea {
  min-height: 118px;
  resize: vertical;
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2339e9f6' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 16px;
  padding-right: 2.5rem;
}
.field option {
  background: var(--navy-800);
  color: #fff;
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(184, 207, 221, 0.45);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--aqua-400);
  background: rgba(1, 18, 31, 0.8);
  outline: none;
}
.form__foot {
  margin-top: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.form__note {
  font-size: var(--text-xs);
  color: rgba(196, 218, 232, 0.55);
  line-height: 1.5;
}
.form__status {
  display: none;
  font-size: var(--text-sm);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  border: 1px solid rgba(18, 217, 239, 0.4);
  background: rgba(18, 217, 239, 0.09);
  color: var(--aqua-300);
}
.form__status.is-visible {
  display: block;
}
.form__status.is-error {
  border-color: rgba(255, 159, 28, 0.5);
  background: rgba(255, 159, 28, 0.1);
  color: var(--sun-400);
}
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--navy-900);
  color: rgba(206, 226, 238, 0.72);
  padding-top: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--line-dark);
}
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  padding-bottom: var(--space-12);
}
.footer__brand .brand {
  margin-bottom: var(--space-6);
}
.footer__brand .brand img {
  height: 58px;
  width: auto;
  display: block;
  max-width: min(260px, 70vw);
}
.footer__brand .brand__name {
  font-size: 1.15rem;
}
.footer__brand .brand__sub {
  font-size: 0.62rem;
}
.footer__brand p {
  font-size: var(--text-sm);
  max-width: 34ch;
}
.footer h4 {
  font-family: var(--font-display);
  font-size: var(--text-2xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--aqua-300);
  margin-bottom: var(--space-4);
}
.footer ul {
  display: grid;
  gap: 0.55rem;
}
.footer li a,
.footer li {
  font-size: var(--text-sm);
  transition: color 0.25s ease;
}
.footer li a:hover {
  color: #fff;
}
.footer__bottom {
  border-top: 1px solid var(--line-dark);
  padding-block: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
  justify-content: space-between;
  font-size: var(--text-xs);
  color: rgba(180, 205, 221, 0.5);
}
.socials {
  display: flex;
  gap: 0.6rem;
}
.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
  display: grid;
  place-items: center;
  transition: all 0.3s var(--ease);
}
.socials a:hover {
  border-color: var(--aqua-400);
  color: var(--aqua-300);
  transform: translateY(-2px);
}
.socials svg {
  width: 17px;
  height: 17px;
}

/* ---------- Floating mobile call bar ---------- */
.callbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: none;
  gap: 1px;
  background: var(--line-dark);
  border-top: 1px solid var(--line-dark);
}
.callbar a {
  flex: 1;
  background: var(--navy-800);
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 0.95rem 0.5rem;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}
.callbar a.is-primary {
  background: var(--aqua-400);
  color: var(--navy-900);
}
.callbar svg {
  width: 16px;
  height: 16px;
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .hero__inner {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .hero__card {
    max-width: 560px;
  }
  .positioning__grid,
  .areas,
  .about,
  .book {
    grid-template-columns: 1fr;
  }
  .positioning__mark {
    display: none;
  }
  .about__photo {
    max-width: 440px;
    aspect-ratio: 4 / 3;
  }
  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .nav,
  .header__cta {
    display: none;
  }
  .burger {
    display: grid;
  }
  .header {
    background: rgba(3, 27, 46, 0.86);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
  .shot,
  .shot--wide,
  .shot--tall,
  .shot--half {
    grid-column: span 6;
    aspect-ratio: 4 / 3;
  }
  .callbar {
    display: flex;
  }
  body {
    padding-bottom: 54px;
  }
  .footer__bottom {
    margin-bottom: 54px;
  }
}

@media (max-width: 600px) {
  html {
    scroll-padding-top: 74px;
  }
  .header__inner {
    height: 70px;
  }
  .brand img {
    height: 40px;
    max-width: min(205px, 58vw);
    object-fit: contain;
  }
  .hero {
    padding-top: 118px;
    min-height: 88svh;
  }
  .hero h1 {
    max-width: none;
  }
  .form__grid {
    grid-template-columns: 1fr;
  }
  .shot,
  .shot--wide,
  .shot--tall,
  .shot--half {
    grid-column: span 12;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .btn {
    width: 100%;
  }
  .hero__actions .btn,
  .band .btn,
  .header .btn {
    width: auto;
  }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__actions .btn {
    width: 100%;
  }
}

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