:root {
  --bg: #f3f1eb;
  --paper: #fffdfa;
  --ink: #151515;
  --muted: #68645d;
  --line: #ddd8cf;
  --orange: #de6c13;
  --orange-dark: #b94f07;
  --charcoal: #232321;
  --shadow: 0 24px 70px rgba(32, 28, 22, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #b9b5b0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

img,
svg {
  display: block;
}

svg {
  fill: currentColor;
}

.site-header,
main,
.footer {
  width: min(100%, 1180px);
  margin: 0 auto;
  background: var(--bg);
}

.site-header {
  padding: 28px 48px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
}

.nav-links a,
.footer-links a {
  color: #1b1b1b;
  transition: color 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--orange);
  transform: translateY(-1px);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.nav-cta,
.button-secondary {
  background: var(--paper);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.button-primary {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 12px 24px rgba(222, 108, 19, 0.24);
}

.nav-cta:hover,
.button:hover,
.contact-card:hover {
  transform: translateY(-3px);
}

.button-primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 18px 32px rgba(222, 108, 19, 0.32);
}

.button-secondary:hover,
.nav-cta:hover {
  background: #fff;
  color: var(--orange);
}

.hero {
  padding: 88px 48px 46px;
}

.hero-copy {
  max-width: 820px;
  margin: 0 auto 58px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 16px;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  font-size: 21px;
  line-height: 1.15;
}

.hero-text {
  max-width: 720px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-media > img {
  width: 100%;
  aspect-ratio: 2.12 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.privacy-hero > img {
  object-position: center 48%;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 34px 48px 74px;
}

.metrics article {
  padding: 0 44px;
  border-right: 1px solid var(--line);
}

.metrics article:first-child {
  padding-left: 0;
}

.metrics article:last-child {
  padding-right: 0;
  border-right: 0;
}

.metrics strong {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1;
}

.metrics span,
.section-heading p:not(.eyebrow),
.service-card p,
.showcase-copy p,
.contact p,
.story-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.feature-band,
.services,
.testimonials,
.contact {
  padding: 0 48px 82px;
}

.section-heading {
  max-width: 660px;
  margin-bottom: 28px;
}

.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.destination-card {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.destination-card img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  transition: transform 420ms ease;
}

.privacy-about img {
  object-position: center 58%;
}

.destination-card:hover img {
  transform: scale(1.035);
}

.destination-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(10, 10, 9, 0.78), rgba(10, 10, 9, 0.1) 68%);
}

.destination-overlay {
  position: absolute;
  z-index: 1;
  left: 48px;
  bottom: 42px;
  max-width: 470px;
  color: #fff;
}

.destination-overlay span,
.story-grid span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.destination-overlay h3 {
  margin: 10px 0 12px;
  font-size: clamp(28px, 4vw, 48px);
}

.destination-overlay p {
  color: rgba(255, 255, 255, 0.84);
}

.section-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-title-row > div {
  max-width: 650px;
}

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

.service-card {
  min-height: 230px;
  padding: 34px 28px;
  border-radius: 16px;
  background: var(--paper);
  box-shadow: 0 1px 0 rgba(24, 24, 20, 0.04);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.service-card:hover,
.story-grid article:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
  background: #fff;
}

.icon-badge {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 38px;
  color: #fff;
  border-radius: 50%;
  background: var(--orange);
}

.icon-badge svg {
  width: 23px;
}

.dark-showcase {
  padding: 78px 48px;
  background: var(--charcoal);
}

.showcase-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) 1.1fr;
  align-items: stretch;
  overflow: hidden;
  border-radius: 24px;
  background: var(--bg);
}

.showcase-copy {
  padding: 50px 46px;
  background: var(--bg);
}

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

.showcase-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 58px;
  font-weight: 750;
  transition: color 180ms ease, padding-left 180ms ease;
}

.showcase-list li:hover {
  color: var(--orange);
  padding-left: 8px;
}

.showcase-list li span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.showcase-list li strong {
  font-size: 16px;
}

.showcase-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.privacy-showcase img {
  object-position: center 52%;
}

.testimonials {
  padding-top: 82px;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.story-grid article {
  min-height: 250px;
  padding: 30px;
  border-radius: 16px;
  background: var(--paper);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.story-grid span {
  color: #8c887f;
}

.story-grid p {
  margin: 22px 0 34px;
  color: #222;
}

.contact {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 440px);
  gap: 32px;
  align-items: center;
}

.contact-card {
  position: relative;
  display: block;
  padding: 34px 78px 34px 34px;
  border-radius: 18px;
  background: var(--paper);
  box-shadow: 0 1px 0 rgba(24, 24, 20, 0.04);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-card:hover {
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card strong {
  display: block;
  margin-top: 12px;
  overflow-wrap: anywhere;
  font-size: 22px;
}

.contact-card svg {
  position: absolute;
  right: 30px;
  top: 50%;
  width: 26px;
  color: var(--orange);
  transform: translateY(-50%);
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 48px;
}

.footer-links {
  display: flex;
  gap: 28px;
  font-size: 13px;
}

.footer p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

@media (max-width: 860px) {
  .site-header,
  .hero,
  .feature-band,
  .services,
  .testimonials,
  .contact,
  .dark-showcase,
  .footer {
    padding-right: 22px;
    padding-left: 22px;
  }

  .nav {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-media > img {
    aspect-ratio: 1.25 / 1;
  }

  .metrics,
  .service-grid,
  .showcase-card,
  .story-grid,
  .contact,
  .footer {
    grid-template-columns: 1fr;
  }

  .metrics {
    gap: 24px;
    padding-top: 44px;
  }

  .metrics article,
  .metrics article:first-child,
  .metrics article:last-child {
    padding: 0 0 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section-title-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .destination-overlay {
    left: 24px;
    right: 24px;
    bottom: 24px;
  }

  .showcase-copy {
    padding: 34px 26px;
  }

  .footer {
    justify-items: start;
  }

  .footer p {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .nav-cta {
    display: none;
  }

  .hero-copy {
    text-align: left;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  h1 {
    font-size: clamp(44px, 16vw, 68px);
  }

  .button {
    width: 100%;
  }
}
