:root {
  --bg: #0d0d0d;
  --panel: #151515;
  --panel-2: #1c1b19;
  --text: #f2eee7;
  --muted: #b9b1a5;
  --accent: #b78a4c;
  --accent-soft: #7c633e;
  --line: rgba(255,255,255,.10);
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.6;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  min-height: 74px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(8,8,8,.92), rgba(8,8,8,.55), transparent);
  backdrop-filter: blur(3px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: .02em;
}

.brand-mark {
  width: 54px;
  height: 36px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: screen;
}

nav { display: flex; gap: 28px; }

nav a {
  color: #e4ddd2;
  font-size: 14px;
  transition: color .2s ease;
}

nav a:hover { color: var(--accent); }

.hero {
  min-height: 94vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 140px 7vw 10vh;
  background:
    radial-gradient(circle at 78% 35%, rgba(183,138,76,.22), transparent 27%),
    linear-gradient(125deg, #27231e 0%, #131313 42%, #070707 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 48vw;
  height: 48vw;
  max-width: 720px;
  max-height: 720px;
  right: -8vw;
  top: 10vh;
  border: 1px solid rgba(183,138,76,.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(183,138,76,.025),
    0 0 0 140px rgba(183,138,76,.018);
}

.hero::after {
  content: none;
}

.hero-symbol {
  position: absolute;
  z-index: 1;
  right: 4vw;
  top: 18vh;
  width: min(42vw, 620px);
  max-height: 48vh;
  object-fit: contain;
  opacity: .16;
  mix-blend-mode: screen;
  filter: sepia(.65) saturate(.65);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  letter-spacing: .22em;
  font-size: 12px;
  font-weight: 600;
}

h1, h2, h3, blockquote {
  font-family: "Cormorant Garamond", Georgia, serif;
}

h1 {
  margin: 0;
  font-size: clamp(66px, 10vw, 148px);
  line-height: .82;
  letter-spacing: -.04em;
  font-weight: 600;
}

.hero-copy {
  max-width: 620px;
  margin: 28px 0 34px;
  color: #d8d0c5;
  font-size: clamp(18px, 2vw, 24px);
}

.button {
  display: inline-block;
  padding: 13px 22px;
  border: 1px solid var(--accent);
  color: #f6efe5;
  font-size: 14px;
  transition: all .2s ease;
}

.button:hover {
  background: var(--accent);
  color: #111;
}

.hero-note {
  position: absolute;
  right: 4vw;
  bottom: 24px;
  max-width: 290px;
  color: #7f786f;
  font-size: 11px;
  text-align: right;
}

.section {
  width: min(var(--max), 90vw);
  margin: 0 auto;
}

.intro {
  padding: 120px 0 90px;
  max-width: 900px;
  margin-left: max(5vw, calc((100vw - var(--max))/2));
}

h2 {
  margin: 0;
  font-size: clamp(48px, 7vw, 86px);
  line-height: .95;
  font-weight: 600;
}

.lead {
  max-width: 760px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 19px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding-bottom: 120px;
}

.feature-card {
  min-height: 460px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .86;
  transition: transform .45s ease, opacity .45s ease;
}

.feature-card:hover::before {
  transform: scale(1.03);
  opacity: 1;
}

.family-card::before {
  background:
    linear-gradient(to top, rgba(0,0,0,.90), rgba(0,0,0,.08)),
    radial-gradient(circle at 25% 20%, #6f523a, #1b1714 60%);
}

.adventures-card::before {
  background:
    linear-gradient(to top, rgba(0,0,0,.90), rgba(0,0,0,.08)),
    radial-gradient(circle at 70% 25%, #334652, #151819 60%);
}

.home-card::before {
  background:
    linear-gradient(to top, rgba(0,0,0,.90), rgba(0,0,0,.08)),
    radial-gradient(circle at 35% 30%, #4a4936, #181815 60%);
}

.favorites-card::before {
  background:
    linear-gradient(to top, rgba(0,0,0,.90), rgba(0,0,0,.08)),
    radial-gradient(circle at 65% 30%, #583737, #181313 60%);
}

.card-content {
  position: relative;
  z-index: 2;
  max-width: 460px;
}

.card-content h3 {
  margin: 0 0 8px;
  font-size: 48px;
  line-height: 1;
}

.card-content p:not(.eyebrow) {
  margin: 0 0 22px;
  color: #c7bfb4;
}

.coming {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.quote-band {
  padding: 110px 5vw;
  background: var(--panel-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quote-band > div {
  width: min(var(--max), 90vw);
  margin: 0 auto;
}

blockquote {
  max-width: 950px;
  margin: 0;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1.05;
  color: #e7dfd4;
}

.closing {
  padding: 110px 0;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 70px;
  align-items: end;
}

.closing p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

footer {
  min-height: 90px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #777067;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

@media (max-width: 760px) {
  .site-header {
    position: absolute;
    padding-top: 10px;
  }

  nav { display: none; }

  .hero {
    min-height: 88vh;
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .hero-note { display: none; }

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

  .feature-card { min-height: 390px; }

  .closing {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  footer {
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }
}

@media (max-width: 760px) {
  .hero-symbol {
    width: 72vw;
    right: -12vw;
    top: 18vh;
    opacity: .11;
  }

  .brand-mark {
    width: 46px;
    height: 30px;
  }
}


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

.story-image {
  width: 100%;
  overflow: hidden;
  background: #111;
}

.story-image-wide {
  height: min(70vw, 760px);
}

.story-image img,
.portrait-image img,
.adventure-feature > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.story-image-wide img {
  object-position: center 42%;
}

.story-copy {
  padding: 80px 0 110px;
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 80px;
  align-items: start;
}

.story-text {
  padding-top: 12px;
  color: var(--muted);
  font-size: 18px;
}

.story-text p { margin-top: 0; }

.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--accent);
  font-size: 14px;
  letter-spacing: .04em;
}

.portrait-section {
  padding: 30px 0 130px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.portrait-copy p:not(.eyebrow) {
  max-width: 500px;
  color: var(--muted);
  font-size: 18px;
}

.portrait-image {
  min-height: 650px;
  background: #111;
  overflow: hidden;
  border: 1px solid var(--line);
}

.adventure-feature {
  min-height: 82vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.adventure-feature > img {
  position: absolute;
  inset: 0;
  object-position: center center;
}

.adventure-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,.90) 0%, rgba(0,0,0,.32) 50%, rgba(0,0,0,.18) 100%),
    linear-gradient(to right, rgba(0,0,0,.44), transparent 55%);
}

.adventure-copy {
  position: relative;
  z-index: 2;
  width: min(var(--max), 90vw);
  margin: 0 auto;
  padding: 0 0 9vh;
}

.adventure-copy h2 { max-width: 800px; }

.adventure-copy p:not(.eyebrow) {
  max-width: 650px;
  color: #ded7ce;
  font-size: 19px;
}

#adventures + .feature-grid {
  padding-top: 110px;
}

@media (max-width: 760px) {
  .story-image-wide { height: 70vh; }
  .story-image-wide img { object-position: 54% center; }

  .story-copy {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 60px 0 85px;
  }

  .portrait-section {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-bottom: 90px;
  }

  .portrait-image {
    min-height: 540px;
    order: -1;
  }

  .adventure-feature { min-height: 72vh; }
  .adventure-feature > img { object-position: 56% center; }

  #adventures + .feature-grid { padding-top: 75px; }
}


/* V3.1 large-screen layout refinements — palette intentionally unchanged */

:root {
  --content-wide: 1320px;
  --content-reading: 1120px;
}

.site-header {
  padding-left: max(4vw, calc((100vw - var(--content-wide)) / 2));
  padding-right: max(4vw, calc((100vw - var(--content-wide)) / 2));
}

.hero-content,
.quote-band > div,
.section,
.adventure-copy {
  width: min(var(--content-reading), 90vw);
}

.hero {
  padding-left: max(5vw, calc((100vw - var(--content-wide)) / 2));
  padding-right: max(5vw, calc((100vw - var(--content-wide)) / 2));
}

.intro {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--content-reading);
}

.story-section {
  padding: 72px 0 0;
}

.story-image-wide {
  width: min(var(--content-wide), 92vw);
  height: auto;
  margin: 0 auto;
  aspect-ratio: 3 / 2;
  border: 1px solid var(--line);
  background: #111;
}

.story-image-wide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: #111;
}

.story-copy {
  width: min(var(--content-reading), 90vw);
  padding-top: 72px;
}

.portrait-section {
  width: min(var(--content-reading), 90vw);
}

.feature-grid {
  width: min(var(--content-reading), 90vw);
}

.adventure-feature {
  max-width: 100vw;
}

@media (min-width: 1500px) {
  .hero {
    min-height: 88vh;
  }

  .hero-content {
    max-width: 980px;
  }

  h1 {
    font-size: clamp(84px, 7.2vw, 132px);
  }

  .story-section {
    padding-top: 96px;
  }

  .story-image-wide {
    width: min(1380px, 88vw);
  }

  .portrait-image {
    min-height: 620px;
  }
}

@media (min-width: 1900px) {
  .story-image-wide {
    width: min(1440px, 76vw);
  }

  .story-copy,
  .portrait-section,
  .feature-grid,
  .quote-band > div,
  .closing,
  .adventure-copy {
    width: min(1180px, 74vw);
  }
}

@media (max-width: 760px) {
  .story-section {
    padding-top: 36px;
  }

  .story-image-wide {
    width: 92vw;
    aspect-ratio: 4 / 5;
    height: auto;
  }

  .story-image-wide img {
    object-fit: cover;
    object-position: 52% center;
  }

  .story-copy {
    width: 90vw;
  }
}


/* V4 — Adventures */
.adventure-button {
  margin-top: 18px;
}

.solid-header {
  background: rgba(8,8,8,.94);
  border-bottom: 1px solid var(--line);
}

.trip-hero {
  min-height: 88vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.trip-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trip-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,.86) 0%, rgba(0,0,0,.25) 55%, rgba(0,0,0,.18) 100%),
    linear-gradient(to right, rgba(0,0,0,.50), transparent 62%);
}

.trip-hero-copy {
  position: relative;
  z-index: 2;
  width: min(1180px, 90vw);
  margin: 0 auto;
  padding: 0 0 9vh;
}

.trip-hero h1 {
  font-size: clamp(72px, 10vw, 150px);
  margin-bottom: 24px;
}

.trip-hero-copy > p:not(.eyebrow) {
  margin: 4px 0;
  font-size: clamp(18px, 2vw, 24px);
  color: #e6ded3;
}

.trip-route {
  color: var(--accent) !important;
  letter-spacing: .05em;
}

.trip-intro {
  padding: 110px 0 80px;
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 80px;
  align-items: end;
}

.trip-intro .lead {
  margin: 0;
}

.trip-gallery {
  padding-bottom: 120px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.gallery-item {
  grid-column: span 4;
  margin: 0;
  background: #111;
  border: 1px solid var(--line);
  overflow: hidden;
}

.gallery-item.gallery-wide {
  grid-column: span 8;
}

.gallery-item.gallery-tall {
  grid-column: span 4;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  max-height: 620px;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

.gallery-item:hover img {
  transform: scale(1.015);
}

.gallery-item figcaption {
  padding: 12px 14px 14px;
  color: #8f867b;
  background: #111;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.gallery-item.gallery-tall img {
  min-height: 620px;
}

.trip-closing {
  padding: 30px 0 120px;
  max-width: 860px;
}

.trip-closing > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  margin: 28px 0 32px;
}

@media (min-width: 1900px) {
  .trip-hero-copy,
  .trip-intro,
  .trip-gallery,
  .trip-closing {
    width: min(1180px, 74vw);
  }
}

@media (max-width: 900px) {
  .trip-intro {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 85px;
  }

  .gallery-item,
  .gallery-item.gallery-wide,
  .gallery-item.gallery-tall {
    grid-column: span 6;
  }

  .gallery-item.gallery-tall img {
    min-height: 520px;
  }
}

@media (max-width: 760px) {
  .trip-hero {
    min-height: 78vh;
  }

  .trip-hero > img {
    object-position: center center;
  }

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

  .gallery-item,
  .gallery-item.gallery-wide,
  .gallery-item.gallery-tall {
    grid-column: auto;
  }

  .gallery-item img,
  .gallery-item.gallery-tall img {
    min-height: 0;
    max-height: none;
    aspect-ratio: 4 / 3;
  }

  .gallery-item.gallery-tall img {
    aspect-ratio: 3 / 4;
  }

  .trip-hero h1 {
    font-size: clamp(64px, 20vw, 92px);
  }
}
