:root {
  color-scheme: light;
  --ink: #10202a;
  --muted: #5d6e75;
  --line: #d8e3e1;
  --paper: #fbfdfc;
  --mist: #eef7f4;
  --teal: #007c78;
  --teal-deep: #005c5b;
  --coral: #ee6b57;
  --gold: #c59b35;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(16, 32, 42, 0.14);
  --soft-shadow: 0 18px 50px rgba(16, 32, 42, 0.1);
  --glass: rgba(255, 255, 255, 0.58);
  --glass-strong: rgba(255, 255, 255, 0.78);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 4%, rgba(0, 124, 120, 0.1), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(238, 107, 87, 0.09), transparent 32%),
    var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 12px clamp(12px, 3vw, 36px) 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px clamp(14px, 3vw, 24px);
  background: rgba(6, 29, 33, 0.22);
  color: var(--white);
  backdrop-filter: blur(22px) saturate(160%);
  box-shadow: 0 18px 48px rgba(5, 25, 28, 0.16);
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.24);
  font-weight: 900;
  backdrop-filter: blur(12px);
  border-radius: 8px;
}

.nav-links {
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a {
  opacity: 0.88;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-links a {
  border-radius: 8px;
  padding: 7px 9px;
  transition:
    background 180ms ease,
    opacity 180ms ease;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.13);
}

.hero {
  position: relative;
  min-height: 94svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 96px clamp(18px, 6vw, 72px) 32px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 25, 28, 0.86) 0%, rgba(5, 25, 28, 0.66) 38%, rgba(5, 25, 28, 0.16) 72%),
    linear-gradient(180deg, rgba(5, 25, 28, 0.12) 0%, rgba(5, 25, 28, 0.42) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 840px;
  margin-bottom: 22px;
  font-size: 4.85rem;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: 3.4rem;
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.18rem;
}

.hero-note {
  max-width: 650px;
  margin-bottom: 24px;
  border-left: 4px solid var(--gold);
  padding: 12px 0 12px 16px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 20px;
  font-weight: 850;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(238, 107, 87, 0.26);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  backdrop-filter: blur(16px) saturate(150%);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(680px, 100%);
  margin: 0;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  overflow: hidden;
}

.hero-stats div {
  padding: 14px 16px;
  background: rgba(4, 31, 35, 0.62);
  backdrop-filter: blur(16px) saturate(145%);
}

.hero-stats dt {
  color: var(--gold);
  font-size: 1.35rem;
  font-weight: 950;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
}

.intro,
.benefits,
.services,
.proof,
.photos,
.support,
.process,
.domains,
.contact {
  padding: clamp(54px, 8vw, 104px) clamp(18px, 6vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.78fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: start;
  background: var(--paper);
}

.intro p:last-child,
.support-panel p,
.contact p {
  color: var(--muted);
  font-size: 1.06rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 1fr);
  gap: 28px;
  margin-bottom: 32px;
}

.section-heading .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -12px;
}

.section-heading > p:not(.section-kicker) {
  align-self: end;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.benefits {
  background: var(--mist);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.benefit-card {
  min-height: 245px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  background: var(--glass-strong);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(18px) saturate(140%);
}

.benefit-card span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 34px;
  background: var(--teal-deep);
  color: var(--white);
  font-weight: 950;
  border-radius: 8px;
}

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

.services {
  background: var(--paper);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 8px;
  background: var(--glass);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(18px) saturate(140%);
}

.icon-dot {
  display: block;
  width: 16px;
  height: 16px;
  margin-bottom: 46px;
  background: linear-gradient(135deg, var(--teal), var(--coral));
  border-radius: 50%;
  box-shadow: 22px 0 0 rgba(0, 124, 120, 0.18);
}

.service-card p,
.proof-card p,
.timeline p,
.policy-note {
  color: var(--muted);
}

.proof {
  background: var(--paper);
}

.proof-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: 16px;
}

.proof-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 8px;
  background: var(--glass);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(18px) saturate(140%);
}

.proof-card strong {
  display: block;
  margin-bottom: 42px;
  color: var(--teal-deep);
  font-size: 1.12rem;
}

.source-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.source-strip a {
  border: 1px solid rgba(0, 124, 120, 0.12);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--teal-deep);
  font-size: 0.86rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.photos {
  background: var(--mist);
}

.gallery-controls {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: -6px 0 18px;
}

.gallery-button {
  min-width: 92px;
  border: 1px solid rgba(0, 124, 120, 0.16);
  border-radius: 8px;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--teal-deep);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  backdrop-filter: blur(16px) saturate(140%);
}

.gallery-button:disabled {
  cursor: default;
  opacity: 0.45;
}

.gallery-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 14px;
}

.photo-card {
  position: relative;
  min-height: 230px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--soft-shadow);
}

.photo-card-wide {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 474px;
}

.photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.photo-card-wide img {
  aspect-ratio: 16 / 10;
}

.photo-card figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(5, 25, 28, 0.58);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 850;
  backdrop-filter: blur(16px) saturate(145%);
}

.support {
  background: var(--paper);
}

.support-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.74fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 124, 120, 0.12), rgba(238, 107, 87, 0.08)),
    rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px) saturate(145%);
}

.support-panel .section-kicker {
  margin-bottom: 18px;
}

.support-panel h2 {
  max-width: 780px;
  margin-bottom: 28px;
  font-size: 2.75rem;
  line-height: 1.08;
}

.support-panel p {
  max-width: 850px;
}

.support-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.support-list li {
  position: relative;
  padding: 17px 18px 17px 44px;
  border: 1px solid rgba(0, 124, 120, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  font-weight: 750;
}

.support-list li::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 20px;
  width: 10px;
  height: 10px;
  background: var(--teal);
}

.policy-note {
  max-width: 820px;
  margin: 18px 0 0;
  font-size: 0.92rem;
}

.process {
  background: var(--ink);
  color: var(--white);
}

.process .section-kicker,
.domains .section-kicker {
  color: var(--gold);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.16);
}

.timeline li {
  min-height: 250px;
  padding: 28px;
  background: #152b35;
}

.timeline span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 40px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 950;
}

.timeline h3 {
  color: var(--white);
}

.timeline p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.domains {
  overflow: hidden;
  background: var(--teal-deep);
  color: var(--white);
}

.domain-track {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.domain-track span {
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 820;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(300px, 0.6fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: start;
  background: var(--paper);
}

.contact h2 {
  margin-bottom: 24px;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px) saturate(145%);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 850;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(0, 124, 120, 0.12);
  border-radius: 8px;
  background: rgba(247, 251, 250, 0.82);
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
  outline: none;
}

textarea {
  min-height: 118px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 124, 120, 0.12);
}

.contact .button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.contact .button:disabled {
  cursor: progress;
  opacity: 0.72;
  transform: none;
}

.form-honeypot {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 22px;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.form-status.is-success {
  color: var(--teal-deep);
}

.form-status.is-error {
  color: #a53a2d;
}

.direct-contact {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.direct-contact a {
  display: grid;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(18px) saturate(140%);
}

.direct-contact span {
  color: var(--teal-deep);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 94svh;
    align-items: end;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(5, 25, 28, 0.22) 0%, rgba(5, 25, 28, 0.86) 58%, rgba(5, 25, 28, 0.92) 100%),
      linear-gradient(90deg, rgba(5, 25, 28, 0.48), rgba(5, 25, 28, 0.2));
  }

  .intro,
  .section-heading,
  .support-panel,
  .contact,
  .direct-contact {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .benefit-grid,
  .proof-layout,
  .timeline {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-controls {
    display: flex;
  }

  .photo-grid {
    display: flex;
    gap: 14px;
    margin-inline: calc(clamp(18px, 6vw, 72px) * -1);
    padding: 0 clamp(18px, 6vw, 72px) 18px;
    overflow-x: auto;
    scroll-padding-inline: clamp(18px, 6vw, 72px);
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .photo-grid::-webkit-scrollbar {
    height: 8px;
  }

  .photo-grid::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background: rgba(0, 124, 120, 0.28);
  }

  .photo-card {
    flex: 0 0 min(78vw, 520px);
    scroll-snap-align: center;
  }

  .photo-card-wide {
    min-height: 360px;
  }

  h1 {
    font-size: 4.4rem;
  }

  h2 {
    font-size: 2.6rem;
  }

  .support-panel h2 {
    font-size: 2.25rem;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 92svh;
    padding-top: 92px;
    padding-bottom: 32px;
  }

  h1 {
    font-size: 2.56rem;
    line-height: 1;
  }

  h2 {
    font-size: 2.12rem;
  }

  .support-panel h2 {
    margin-bottom: 20px;
    font-size: 1.9rem;
    line-height: 1.12;
  }

  .hero-copy {
    margin-bottom: 14px;
    font-size: 1rem;
  }

  .hero-note {
    margin-bottom: 22px;
    font-size: 0.88rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .service-grid,
  .benefit-grid,
  .proof-layout,
  .timeline {
    grid-template-columns: 1fr;
  }

  .photo-card,
  .photo-card-wide {
    flex-basis: 86vw;
    min-height: 240px;
  }

  .photo-card img,
  .photo-card-wide img {
    aspect-ratio: 4 / 3;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-stats div,
  .benefit-card,
  .service-card,
  .proof-card,
  .timeline li,
  .contact-form {
    padding: 22px;
  }

  .proof-card {
    min-height: 0;
  }

  .proof-card strong {
    margin-bottom: 22px;
  }

  .hero-stats div {
    padding: 12px 10px;
  }

  .hero-stats dt {
    font-size: 1.02rem;
  }

  .hero-stats dd {
    font-size: 0.72rem;
    line-height: 1.25;
  }
}

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