:root {
  --ink: #0c1320;
  --ink-2: #111a2a;
  --slate: #1a2333;
  --hairline: #2a3142;
  --putty: #c7b294;
  --putty-light: #dac8ac;
  --parchment: #f4efe3;
  --mist: #e6e2d6;
  --muted: #9aa0b0;
  --ember: #d98a5c;
  --white: #fffaf0;
  --shadow: 0 30px 80px -20px rgba(8, 12, 20, 0.55), 0 8px 24px -8px rgba(8, 12, 20, 0.35);
  --radius-lg: 16px;
  --radius-xl: 22px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--ember);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--parchment);
  color: var(--ink);
  font-weight: 700;
}

.skip-link:focus {
  top: 16px;
}

.concept-bar {
  padding: 10px 20px;
  background: var(--ink);
  color: var(--mist);
  font-size: 13px;
  text-align: center;
  border-bottom: 1px solid var(--hairline);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 48px);
  background: rgba(12, 19, 32, 0.94);
  color: var(--parchment);
  border-bottom: 1px solid rgba(244, 239, 227, 0.1);
}

.brand img {
  width: 190px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  color: var(--mist);
}

.site-nav a:hover {
  color: var(--parchment);
}

.nav-phone {
  padding: 11px 16px;
  border: 1px solid rgba(244, 239, 227, 0.18);
  border-radius: 999px;
}

.menu-button {
  display: none;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(244, 239, 227, 0.18);
  border-radius: 999px;
  color: var(--parchment);
  background: transparent;
  font: inherit;
  font-weight: 700;
}

.menu-button svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.hero {
  position: relative;
  min-height: calc(100vh - 110px);
  display: grid;
  align-items: center;
  isolation: isolate;
  color: var(--parchment);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--ink);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(12, 19, 32, 0.94), rgba(12, 19, 32, 0.68) 48%, rgba(12, 19, 32, 0.35));
}

.hero-inner {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(36px, 7vw, 90px);
  align-items: center;
  padding: 76px 0 90px;
}

.eyebrow,
.card-kicker,
.finder-label {
  margin: 0 0 14px;
  color: var(--ember);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  font-family: "Inter Tight", "Inter", system-ui, sans-serif;
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(44px, 7.4vw, 86px);
  line-height: 0.98;
}

.hero-lede {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--mist);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.58;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.button-primary {
  background: var(--parchment);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(12, 19, 32, 0.08);
}

.button-primary:hover {
  background: var(--white);
}

.button-secondary {
  border: 1px solid rgba(244, 239, 227, 0.26);
  color: var(--parchment);
}

.button-secondary.dark {
  border-color: rgba(12, 19, 32, 0.25);
  color: var(--ink);
}

.trip-finder {
  padding: 22px;
  border: 1px solid rgba(244, 239, 227, 0.13);
  border-radius: var(--radius-xl);
  background: rgba(12, 19, 32, 0.78);
  box-shadow: var(--shadow);
}

.finder-row {
  display: block;
  padding: 18px 0;
  border-top: 1px solid rgba(244, 239, 227, 0.12);
}

.finder-row span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 13px;
}

.finder-row strong {
  display: block;
  color: var(--parchment);
  font-family: "Inter Tight", "Inter", system-ui, sans-serif;
  font-size: 26px;
  line-height: 1.05;
}

.finder-row:hover strong {
  color: var(--ember);
}

.proof-strip {
  width: min(var(--container), calc(100% - 40px));
  margin: -42px auto 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: rgba(244, 239, 227, 0.18);
  box-shadow: var(--shadow);
}

.proof-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-height: 116px;
  padding: 22px;
  background: var(--ink);
  color: var(--mist);
  font-size: 14px;
  line-height: 1.45;
}

.proof-item svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: var(--ember);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 112px) 0;
}

.dark-section {
  width: 100%;
  max-width: none;
  margin-top: clamp(60px, 7vw, 96px);
  padding-left: max(20px, calc((100% - var(--container)) / 2));
  padding-right: max(20px, calc((100% - var(--container)) / 2));
  background: var(--ink);
  color: var(--parchment);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 36px;
}

.section-heading.compact {
  max-width: 640px;
}

.section-heading h2,
.story-copy h2,
.planning-copy h2,
.owner-cta h2 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
}

.section-heading p:not(.eyebrow),
.story-copy p,
.planning-copy p,
.owner-cta p {
  margin: 18px 0 0;
  color: currentColor;
  opacity: 0.76;
  font-size: 17px;
  line-height: 1.62;
}

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

.trip-card {
  overflow: hidden;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-xl);
  background: var(--slate);
  box-shadow: 0 12px 32px -16px rgba(0, 0, 0, 0.55);
}

.trip-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.trip-card-body {
  padding: 24px;
}

.trip-card h3 {
  font-size: 28px;
  line-height: 1.08;
}

.trip-card p:not(.card-kicker) {
  margin: 16px 0 22px;
  color: var(--mist);
  line-height: 1.56;
}

.trip-card a,
.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--ember);
  font-weight: 800;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: clamp(36px, 8vw, 92px);
  align-items: center;
}

.story-copy {
  max-width: 560px;
}

.photo-stack {
  position: relative;
  min-height: 520px;
}

.photo-stack img {
  width: 78%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.photo-main {
  aspect-ratio: 4 / 3;
}

.photo-overlap {
  position: absolute;
  right: 0;
  bottom: 0;
  aspect-ratio: 4 / 3;
  border: 10px solid var(--putty);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 18px;
}

.gallery-grid figure {
  margin: 0;
}

.gallery-grid figure:first-child {
  grid-row: span 2;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.gallery-grid figure:first-child img {
  aspect-ratio: 4 / 5;
}

figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.planning-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.1fr);
  gap: 42px;
}

.planning-copy {
  align-self: start;
}

.planning-list {
  display: grid;
  gap: 16px;
}

.planning-list div,
.contact-panel,
.faq-grid article {
  border: 1px solid rgba(12, 19, 32, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(244, 239, 227, 0.38);
}

.planning-list div {
  padding: 22px;
}

.planning-list span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--ember);
  font-weight: 900;
}

.planning-list h3,
.contact-panel h3,
.faq-grid h3 {
  font-size: 24px;
  line-height: 1.15;
}

.planning-list p,
.contact-panel p,
.faq-grid p {
  margin: 12px 0 0;
  color: rgba(12, 19, 32, 0.78);
  line-height: 1.6;
}

.contact-panel {
  grid-column: 1 / -1;
  padding: 28px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  background: var(--parchment);
}

.contact-panel .contact-actions {
  margin-top: 0;
  flex-shrink: 0;
}

.contact-panel .button-primary {
  background: var(--ink);
  color: var(--parchment);
}

.faq-section {
  padding-top: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.faq-grid article {
  padding: 24px;
}

.owner-cta {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto clamp(60px, 8vw, 100px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: clamp(28px, 5vw, 48px);
  border-radius: var(--radius-xl);
  background: var(--ink);
  color: var(--parchment);
  box-shadow: var(--shadow);
}

.owner-cta > div {
  max-width: 760px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  padding: clamp(36px, 6vw, 60px) max(20px, calc((100% - var(--container)) / 2));
  background: var(--ink);
  color: var(--mist);
  border-top: 1px solid var(--hairline);
}

.site-footer img {
  width: 190px;
  margin-bottom: 18px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.site-footer nav {
  display: grid;
  gap: 12px;
  justify-items: end;
  align-content: start;
  font-weight: 700;
}

.site-footer a:hover {
  color: var(--parchment);
}

.disclaimer {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  font-size: 13px;
}

@media (max-width: 980px) {
  .menu-button {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 95px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    border: 1px solid var(--hairline);
    border-radius: var(--radius-xl);
    background: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 15px 8px;
    border-bottom: 1px solid var(--hairline);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero-inner,
  .story-section,
  .planning-section {
    grid-template-columns: 1fr;
  }

  .trip-finder {
    max-width: 560px;
  }

  .proof-strip,
  .trip-grid,
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-panel,
  .owner-cta {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .gallery-grid figure:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .gallery-grid figure:first-child img {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 640px) {
  .concept-bar {
    font-size: 12px;
  }

  .site-header {
    padding: 14px 18px;
  }

  .brand img,
  .site-footer img {
    width: 155px;
  }

  .hero {
    min-height: auto;
  }

  .hero::after {
    background: rgba(12, 19, 32, 0.78);
  }

  .hero-inner {
    width: min(100% - 32px, var(--container));
    padding: 54px 0 76px;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .proof-strip {
    width: min(100% - 32px, var(--container));
    margin-top: -28px;
    grid-template-columns: 1fr;
  }

  .proof-item {
    min-height: auto;
  }

  .section,
  .owner-cta {
    width: min(100% - 32px, var(--container));
  }

  .dark-section {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .trip-grid,
  .faq-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .photo-stack {
    min-height: 0;
    display: grid;
    gap: 16px;
  }

  .photo-stack img {
    position: static;
    width: 100%;
    border: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-items: start;
  }
}

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