:root {
  color-scheme: light;
  --deep: #082c2a;
  --deep-2: #0d3e3d;
  --sea: #0f8a94;
  --surf: #d7f2ef;
  --sand: #f5ead2;
  --sun: #d59d3a;
  --paper: #fbf8ef;
  --chalk: #fffdf7;
  --ink: #16221f;
  --muted: #68746f;
  --line: rgba(8, 44, 42, 0.16);
  --shadow: 0 24px 70px rgba(6, 34, 31, 0.2);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  margin: 0;
  overflow-x: clip;
}

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

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

.site-header {
  align-items: center;
  background: rgba(251, 248, 239, 0.9);
  border-bottom: 1px solid transparent;
  display: flex;
  inset: 0 0 auto;
  justify-content: space-between;
  padding: 14px clamp(20px, 4vw, 56px);
  position: fixed;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
  z-index: 20;
}

.site-header.is-scrolled {
  background: rgba(251, 248, 239, 0.97);
  border-color: var(--line);
  box-shadow: 0 12px 28px rgba(6, 34, 31, 0.08);
}

.brand {
  align-items: center;
  color: var(--deep);
  display: inline-flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  gap: 10px;
  letter-spacing: 0;
  min-width: 0;
}

.brand img {
  background: var(--deep);
  border: 1px solid rgba(8, 44, 42, 0.18);
  border-radius: 50%;
  height: 38px;
  padding: 2px;
  width: 38px;
}

.site-nav {
  align-items: center;
  display: flex;
  font-size: 0.92rem;
  gap: clamp(12px, 2.4vw, 28px);
}

.site-nav a {
  color: var(--deep);
  white-space: nowrap;
}

.nav-action {
  background: var(--deep);
  border-radius: 8px;
  color: var(--chalk) !important;
  padding: 10px 16px;
}

.hero {
  align-items: end;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 390px);
  min-height: 96vh;
  overflow: hidden;
  padding: 126px clamp(20px, 6vw, 84px) 66px;
  position: relative;
}

.hero-media,
.hero-media img,
.hero-shade {
  inset: 0;
  position: absolute;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: 50% 70%;
  width: 100%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 27, 25, 0.88), rgba(5, 27, 25, 0.58) 52%, rgba(5, 27, 25, 0.26)),
    linear-gradient(0deg, rgba(5, 27, 25, 0.56), transparent 42%);
}

.hero-content {
  color: var(--chalk);
  max-width: 880px;
  min-width: 0;
  position: relative;
  z-index: 1;
}

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

.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 8.4vw, 8.6rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.9;
  margin: 0;
  max-width: 860px;
}

.hero-copy {
  color: rgba(255, 253, 247, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.65;
  margin: 26px 0 0;
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-card {
  align-self: end;
  background: rgba(255, 253, 247, 0.93);
  border: 1px solid rgba(255, 253, 247, 0.5);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--deep);
  padding: 24px;
  position: relative;
  z-index: 1;
}

.hero-card > span {
  color: var(--muted);
  display: block;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-card > strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  font-weight: 500;
  line-height: 1;
  margin: 8px 0 22px;
}

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

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--sun);
  box-shadow: 0 14px 32px rgba(213, 157, 58, 0.25);
  color: #fffaf0;
}

.button.secondary {
  background: rgba(255, 253, 247, 0.12);
  border-color: rgba(255, 253, 247, 0.45);
  color: var(--chalk);
}

.button.secondary.dark {
  background: rgba(8, 44, 42, 0.07);
  border-color: var(--line);
  color: var(--deep);
  margin-top: 24px;
}

.fact-strip {
  background: var(--deep);
  color: var(--chalk);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fact-strip div {
  background: rgba(255, 255, 255, 0.05);
  padding: 26px clamp(20px, 4vw, 42px);
}

.fact-strip span,
dt {
  color: rgba(255, 253, 247, 0.68);
  display: block;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.fact-strip strong,
dd {
  display: block;
  font-weight: 900;
  margin-top: 6px;
}

dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

dd {
  color: var(--deep);
  margin-left: 0;
}

.section,
.media-band,
.gallery,
.contact-band,
.site-footer {
  margin: 0 auto;
  max-width: 1180px;
  padding-inline: clamp(20px, 4vw, 48px);
}

.section,
.media-band {
  padding-block: clamp(74px, 9vw, 118px);
}

.section-heading {
  min-width: 0;
  width: min(790px, 100%);
}

.section-heading h2,
.contact-band h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 5vw, 4.35rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
}

.lead-section {
  align-items: start;
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
}

.lead-copy {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 18px;
  padding-top: 22px;
}

.lead-copy p,
article p,
.diligence-panel p,
.diligence-panel li,
.contact-band p,
figcaption {
  color: var(--muted);
  line-height: 1.7;
}

.media-band {
  max-width: none;
}

.media-band > * {
  margin-inline: auto;
  max-width: 1180px;
}

.media-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  margin-top: 42px;
}

.listing-video,
figure {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(6, 34, 31, 0.08);
  overflow: hidden;
}

.listing-video {
  aspect-ratio: 16 / 9;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

figure {
  margin: 0;
}

figure img {
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  width: 100%;
}

figcaption {
  font-size: 0.92rem;
  padding: 14px 16px 18px;
}

.reason-grid,
.use-case-grid {
  display: grid;
  gap: 18px;
  margin-top: 42px;
}

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

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

.reason-grid article,
.use-case-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(6, 34, 31, 0.08);
  padding: 26px;
}

.feature-index {
  color: var(--sea);
  font-weight: 900;
}

h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.52rem;
  font-weight: 500;
  line-height: 1.1;
  margin: 16px 0 12px;
}

.gallery {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-bottom: clamp(74px, 9vw, 118px);
}

.gallery figure:first-child img {
  object-position: 38% 50%;
}

.diligence {
  border-top: 1px solid var(--line);
}

.diligence-panel {
  background: var(--deep);
  border-radius: 8px;
  color: var(--chalk);
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  margin-top: 42px;
  padding: clamp(24px, 5vw, 42px);
}

.diligence-panel h3 {
  color: var(--chalk);
  margin-top: 0;
}

.diligence-panel p,
.diligence-panel li {
  color: rgba(255, 253, 247, 0.76);
}

.diligence-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.diligence-panel li::marker {
  color: var(--sun);
}

.contact-band {
  align-items: start;
  background: var(--chalk);
  border-block: 1px solid var(--line);
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.8fr);
  max-width: none;
  padding-block: clamp(72px, 9vw, 108px);
}

.contact-band > * {
  margin-inline: auto;
  max-width: 520px;
  width: 100%;
}

.lead-form {
  background: var(--deep);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--chalk);
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
}

label {
  color: rgba(255, 253, 247, 0.78);
  display: grid;
  font-size: 0.9rem;
  font-weight: 900;
  gap: 8px;
}

input,
select,
textarea {
  background: rgba(255, 253, 247, 0.96);
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 12px 13px;
  width: 100%;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--sun);
  outline: 3px solid rgba(213, 157, 58, 0.22);
}

.form-status {
  color: var(--surf);
  font-size: 0.92rem;
  margin: 0;
  min-height: 1.4em;
}

.site-footer {
  align-items: center;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  justify-content: space-between;
  padding-block: 28px;
}

.site-footer span {
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    gap: 12px;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero,
  .lead-section,
  .media-grid,
  .diligence-panel,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-card {
    margin-top: 34px;
    max-width: 480px;
  }

  .fact-strip,
  .reason-grid,
  .use-case-grid,
  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header {
    position: absolute;
  }

  .brand span {
    display: none;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-bottom: 42px;
    padding-top: 112px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(5, 27, 25, 0.6), rgba(5, 27, 25, 0.9) 58%, rgba(5, 27, 25, 0.96)),
      linear-gradient(90deg, rgba(5, 27, 25, 0.62), rgba(5, 27, 25, 0.32));
  }

  .hero h1 {
    font-size: clamp(3rem, 13vw, 4.4rem);
  }

  .hero-content,
  .hero-copy {
    max-width: 100%;
    overflow-wrap: break-word;
    width: 100%;
  }

  .fact-strip,
  .reason-grid,
  .use-case-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}
