@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --ink: #0b0c0e;
  --slate: #141618;
  --char: #1c1e21;
  --hairline: #23262a;
  --bone: #f4f1ea;
  --mist: #c6cad0;
  --fog: #9aa0a6;
  --lichen: #a7e0c2;
  --moss: #4d6b5b;
  --veil: rgba(11, 12, 14, 0.76);
  --container: 1240px;
  --gutter: 32px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
}

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

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

a:hover {
  color: var(--lichen);
}

:focus-visible {
  outline: 1px solid var(--lichen);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--bone);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 999px;
}

.skip-link:focus {
  transform: translateY(0);
}

.concept-bar {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--hairline);
  background: var(--char);
  color: var(--mist);
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
  padding: 9px 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 19;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px max(20px, calc((100vw - var(--container)) / 2 + var(--gutter)));
  border-bottom: 1px solid var(--hairline);
  background: rgba(11, 12, 14, 0.9);
  backdrop-filter: blur(14px);
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--mist);
  font-size: 13px;
  font-weight: 600;
}

.site-nav a:hover {
  border-color: var(--hairline);
  color: var(--bone);
  background: var(--char);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: transparent;
  color: var(--bone);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: calc(100vh - 118px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--hairline);
  padding: 110px 20px 150px;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.05) brightness(0.78);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(11, 12, 14, 0.5), rgba(11, 12, 14, 0.88)),
    radial-gradient(circle at 50% 42%, rgba(77, 107, 91, 0.28), transparent 44%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 920px;
  text-align: center;
}

.kicker {
  margin: 0 0 14px;
  color: var(--lichen);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: 88px;
  line-height: 0.98;
}

h2 {
  margin-bottom: 0;
  font-size: 56px;
  line-height: 1.05;
}

h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.08;
}

.hero-copy {
  max-width: 760px;
  margin: 0 auto;
  color: var(--mist);
  font-size: 18px;
  line-height: 1.7;
}

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

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  line-height: 1.2;
}

.button.primary {
  background: var(--bone);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 16px 34px -20px #000;
}

.button.primary:hover {
  background: #fff;
  color: var(--ink);
}

.button.secondary {
  border: 1px solid rgba(244, 241, 234, 0.24);
  background: rgba(20, 22, 24, 0.64);
  color: var(--bone);
}

.button.secondary:hover {
  border-color: var(--lichen);
  color: var(--bone);
}

.trip-log {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 2;
  width: min(1120px, calc(100% - 40px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--hairline);
  background: rgba(11, 12, 14, 0.86);
  backdrop-filter: blur(14px);
}

.trip-log div,
.fact {
  padding: 22px;
  border-right: 1px solid var(--hairline);
}

.trip-log div:last-child,
.fact:last-child {
  border-right: 0;
}

.trip-log span,
.fact span,
dt,
time {
  display: block;
  margin-bottom: 6px;
  color: var(--fog);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.trip-log strong,
.fact strong {
  display: block;
  color: var(--bone);
  font-size: 18px;
  line-height: 1.25;
}

.trust-strip {
  max-width: var(--container);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  border-right: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}

.section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 96px var(--gutter);
  border-bottom: 1px solid var(--hairline);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 56px;
  align-items: end;
}

.intro .section-heading {
  margin: 0;
}

.intro-copy {
  color: var(--mist);
  font-size: 17px;
}

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

.trip-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid var(--hairline);
  background: var(--slate);
}

.trip-card.featured {
  border-color: rgba(167, 224, 194, 0.5);
}

.trip-card img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.04);
}

.trip-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 20px;
  padding: 28px;
}

.trip-card-body p {
  color: var(--mist);
}

dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: auto 0 0;
  border: 1px solid var(--hairline);
}

dl div {
  min-width: 0;
  padding: 16px;
  border-right: 1px solid var(--hairline);
}

dl div:last-child {
  border-right: 0;
}

dd {
  margin: 0;
  color: var(--bone);
  font-weight: 700;
  line-height: 1.25;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  color: var(--lichen);
  font-weight: 700;
}

.text-link::after {
  content: "→";
  margin-left: 8px;
}

.text-link.centered {
  margin: 30px auto 0;
}

.story {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.story-media {
  border: 1px solid var(--hairline);
  background: var(--slate);
  padding: 12px;
}

.story-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.story-copy p {
  color: var(--mist);
  font-size: 16px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--mist);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lichen);
}

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

.report-grid article {
  border: 1px solid var(--hairline);
  background: var(--slate);
  padding: 24px;
}

.report-grid h3 {
  margin: 10px 0 14px;
  font-size: 28px;
}

.report-grid p {
  color: var(--fog);
}

.gallery {
  max-width: var(--container);
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 18px;
  margin: 0 auto;
  padding: 0 var(--gutter) 96px;
  border-bottom: 1px solid var(--hairline);
}

.gallery figure {
  margin: 0;
  border: 1px solid var(--hairline);
  background: var(--slate);
}

.gallery img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04);
}

.gallery-large {
  grid-row: span 2;
}

.gallery-large img {
  min-height: 560px;
}

figcaption {
  padding: 18px 20px;
  color: var(--mist);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  gap: 48px;
  align-items: center;
  background:
    linear-gradient(120deg, rgba(77, 107, 91, 0.14), transparent 48%),
    var(--ink);
}

.contact-panel p,
.owner-cta p {
  color: var(--mist);
  font-size: 16px;
}

.contact-actions {
  display: grid;
  gap: 12px;
  border: 1px solid var(--hairline);
  background: var(--slate);
  padding: 24px;
}

.contact-actions .button {
  width: 100%;
}

.contact-actions p {
  margin: 6px 0 0;
  color: var(--fog);
  font-size: 13px;
}

.owner-cta {
  max-width: var(--container);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin: 0 auto;
  padding: 64px var(--gutter);
  border-bottom: 1px solid var(--hairline);
}

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

.owner-cta h2 {
  font-size: 44px;
}

.site-footer {
  max-width: var(--container);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin: 0 auto;
  padding: 42px var(--gutter) 56px;
  color: var(--fog);
}

.site-footer img {
  width: 112px;
  margin-bottom: 16px;
}

.site-footer p {
  max-width: 620px;
  margin: 0;
  font-size: 13px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 940px) {
  .site-header {
    padding-inline: 20px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--hairline);
    background: var(--slate);
  }

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

  .site-nav a {
    justify-content: flex-start;
  }

  h1 {
    font-size: 62px;
  }

  h2 {
    font-size: 42px;
  }

  .trip-log,
  .trust-strip,
  .trip-grid,
  .story,
  .report-grid,
  .contact-panel,
  .intro,
  .gallery {
    grid-template-columns: 1fr;
  }

  .trip-log {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(100%, 640px);
    margin-top: 56px;
    transform: none;
  }

  .hero {
    padding-bottom: 64px;
  }

  .trust-strip {
    border-top: 1px solid var(--hairline);
  }

  .fact,
  .trip-log div {
    border-right: 0;
    border-bottom: 1px solid var(--hairline);
  }

  .fact:last-child,
  .trip-log div:last-child {
    border-bottom: 0;
  }

  .section,
  .gallery {
    padding: 72px 20px;
  }

  .gallery-large img {
    min-height: 340px;
  }

  .owner-cta,
  .site-footer {
    flex-direction: column;
    padding-inline: 20px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

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

  .brand img {
    width: 118px;
  }

  .hero {
    min-height: auto;
    padding-top: 74px;
  }

  h1 {
    font-size: 45px;
    line-height: 1.02;
  }

  h2,
  .owner-cta h2 {
    font-size: 34px;
  }

  h3 {
    font-size: 29px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions,
  .owner-cta {
    align-items: stretch;
  }

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

  .trip-card img {
    height: 230px;
  }

  .trip-card-body,
  .report-grid article,
  .contact-actions {
    padding: 20px;
  }

  dl {
    grid-template-columns: 1fr;
  }

  dl div {
    border-right: 0;
    border-bottom: 1px solid var(--hairline);
  }

  dl div:last-child {
    border-bottom: 0;
  }
}

@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;
  }
}
