:root {
  --paper: #f7f4ee;
  --paper-soft: #ece8dd;
  --ink: #24231f;
  --muted: #6e6a61;
  --sage: #7e9177;
  --clay: #b66b4f;
  --moss: #394537;
  --line: rgba(36, 35, 31, 0.16);
  --shadow: 0 24px 70px rgba(36, 35, 31, 0.18);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #24231f;
  color: var(--ink);
  background: #f7f4ee;
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 18px 54px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: #fffaf2;
  transition: background 240ms ease, color 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: #24231f;
  color: var(--ink);
  background: rgba(247, 244, 238, 0.92);
  box-shadow: 0 1px 0 rgba(36, 35, 31, 0.16);
  box-shadow: 0 1px 0 var(--line);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.brand {
  font-family: var(--serif);
  font-size: 2rem;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  gap: clamp(10px, 1.5vw, 22px);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  text-decoration: none;
  white-space: nowrap;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 2px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.lang-option {
  min-width: 36px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  color: inherit;
  background: transparent;
  font: inherit;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.lang-option.is-active {
  color: #24231f;
  background: #fffaf2;
}

.site-header.is-scrolled .lang-option.is-active,
.site-header.is-open .lang-option.is-active {
  color: #fffaf2;
  background: #394537;
  background: var(--moss);
}

.nav-pill {
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 7px 12px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 200ms ease;
}

.site-header.is-open .nav-toggle span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.site-header.is-open .nav-toggle span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.hero,
.image-panel {
  min-height: 92vh;
  min-height: 92svh;
  position: relative;
  display: grid;
  align-items: end;
  padding: 120px 88px 72px;
  padding: 120px clamp(20px, 6vw, 88px) 72px;
  color: #fffaf2;
  overflow: hidden;
  background-image: linear-gradient(rgba(19, 24, 19, 0.18), rgba(19, 24, 19, 0.58)), var(--panel-image);
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}

.hero-copy,
.panel-copy {
  max-width: 760px;
}

.hero h1 {
  max-width: 900px;
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: 8rem;
  font-size: clamp(4.25rem, 13vw, 11.5rem);
  line-height: 0.86;
  font-weight: 400;
}

.hero p:not(.eyebrow),
.panel-copy p {
  max-width: 680px;
  font-size: 1.25rem;
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.image-panel .eyebrow,
.hero .eyebrow {
  color: #f0d7bd;
}

h2,
h3,
blockquote {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.06;
}

h2 {
  margin: 0 0 24px;
  font-size: 4rem;
  font-size: clamp(2.2rem, 6vw, 5.6rem);
}

h3 {
  margin: 0 0 14px;
  font-size: 1.8rem;
  font-size: clamp(1.35rem, 2.2vw, 2.25rem);
}

p {
  margin: 0 0 16px;
  overflow-wrap: anywhere;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 72px;
  gap: clamp(28px, 6vw, 92px);
  align-items: center;
  padding: 120px 88px;
  padding: clamp(72px, 10vw, 140px) clamp(20px, 6vw, 88px);
}

.section-media {
  position: relative;
  min-height: 60vh;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(36, 35, 31, 0.18);
  box-shadow: var(--shadow);
}

.section-media img {
  width: 100%;
  height: 100%;
  min-height: 60vh;
  object-fit: cover;
}

.section-copy {
  max-width: 760px;
}

.section-copy p,
.section-heading p,
.quiet-section p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.03rem;
}

.quote-band {
  padding: clamp(82px, 12vw, 170px) clamp(20px, 8vw, 110px);
  background: var(--moss);
  color: #fffaf2;
}

.quote-band blockquote {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(3rem, 8.2vw, 8.5rem);
  text-align: center;
  overflow-wrap: anywhere;
}

.quote-band-long blockquote {
  max-width: 1180px;
  font-size: clamp(2.15rem, 5.2vw, 6.3rem);
}

.mobile-origins-quote {
  display: none;
}

.content-section {
  padding: 120px 88px;
  padding: clamp(72px, 10vw, 140px) clamp(20px, 6vw, 88px);
}

.section-heading {
  max-width: 960px;
  margin: 0 0 72px;
  margin: 0 0 clamp(34px, 6vw, 82px);
}

.offering-grid {
  display: flex;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(36, 35, 31, 0.16);
  background: var(--line);
  border: 1px solid rgba(36, 35, 31, 0.16);
  border: 1px solid var(--line);
}

.offering {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  flex: 1 1 280px;
  position: relative;
  clear: both;
  background: #f7f4ee;
  background: var(--paper);
  min-width: 0;
  overflow: hidden;
}

.offering img {
  display: block;
  position: static;
  float: none;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  clear: both;
}

.offering div {
  display: block;
  position: static;
  float: none;
  clear: both;
  padding: 32px;
  padding: clamp(22px, 3vw, 36px);
  min-width: 0;
  width: 100%;
}

.offering p,
.guide-list p {
  color: var(--muted);
}

.invitation {
  min-height: 82vh;
  min-height: 82svh;
  align-items: center;
  background-position: center 45%;
}

.guides-section {
  background: #ece8dd;
  background: var(--paper-soft);
}

.guides-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: 56px;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.guides-image {
  position: sticky;
  top: 112px;
  width: 100%;
  max-height: 78vh;
  object-fit: cover;
  box-shadow: 0 24px 70px rgba(36, 35, 31, 0.18);
  box-shadow: var(--shadow);
}

.guide-list {
  display: block;
  display: grid;
  gap: 1px;
  background: rgba(36, 35, 31, 0.16);
  background: var(--line);
  border: 1px solid rgba(36, 35, 31, 0.16);
  border: 1px solid var(--line);
}

.guide-list article {
  background: #f7f4ee;
  background: var(--paper);
}

.guide-card {
  display: flex;
  display: grid;
  grid-template-columns: clamp(116px, 14vw, 178px) minmax(0, 1fr);
  gap: 32px;
  gap: clamp(20px, 3.2vw, 38px);
  align-items: start;
  padding: 36px;
  padding: clamp(20px, 3.4vw, 42px);
}

.guide-portrait {
  width: 160px;
  max-width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  background: #ece8dd;
  background: var(--paper-soft);
  filter: saturate(0.9) contrast(1.02);
}

.guide-copy {
  min-width: 0;
  overflow-wrap: anywhere;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.origins {
  background: #fbfaf6;
}

.signature {
  margin-top: 28px;
  color: var(--ink) !important;
  font-family: var(--serif);
  font-size: 1.35rem !important;
}

.quiet-section,
.contact-section,
.booking-section {
  padding: 110px 88px;
  padding: clamp(72px, 10vw, 130px) clamp(20px, 6vw, 88px);
}

.quiet-section {
  max-width: 980px;
}

.text-link,
.email-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--clay);
  font-weight: 700;
}

.contact-section {
  background: #394537;
  background: var(--moss);
  color: #fffaf2;
}

.contact-copy {
  max-width: 780px;
}

.contact-copy p {
  color: rgba(255, 250, 242, 0.78);
}

.email-link {
  color: #f0d7bd;
  font-size: 3rem;
  font-size: clamp(1.8rem, 5vw, 4.2rem);
  font-family: var(--serif);
  font-weight: 400;
  word-break: break-word;
  margin-bottom: 0;
}

.booking-section {
  background: #fbfaf6;
}

.booking-section h2 {
  max-width: 780px;
}

.calendly-inline-widget {
  margin-top: 28px;
  background: #fff;
  border: 1px solid var(--line);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 88px;
  padding: 28px clamp(20px, 6vw, 88px);
  border-top: 1px solid rgba(36, 35, 31, 0.16);
  border-top: 1px solid var(--line);
  color: #6e6a61;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .site-header {
    display: flex;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .header-actions {
    margin-left: 0;
  }

  .site-header > .language-switch {
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    display: block;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 16px;
    color: #24231f;
    color: var(--ink);
    background: rgba(247, 244, 238, 0.98);
    border: 1px solid rgba(36, 35, 31, 0.16);
    border: 1px solid var(--line);
    box-shadow: 0 24px 70px rgba(36, 35, 31, 0.18);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 200ms ease, transform 200ms ease;
  }

  .site-header.is-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 12px;
  }

  .nav-pill {
    border-radius: 0;
    border-color: rgba(36, 35, 31, 0.16);
    border-color: var(--line);
  }

  .offering-grid {
    display: block;
    grid-template-columns: 1fr;
  }

  .offering {
    display: block;
    width: 100%;
    min-height: 0;
    margin-bottom: 1px;
  }

  .offering img {
    display: block;
    position: static;
    float: none;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    clear: both;
  }

  .offering div {
    display: block;
    position: static;
    float: none;
    clear: both;
    width: 100%;
  }
}

@media (max-width: 780px) {
  .hero,
  .image-panel {
    min-height: 84vh;
    min-height: 84svh;
    padding: 106px 20px 48px;
    background-attachment: scroll;
  }

  .split-section,
  .guides-layout,
  .offering {
    grid-template-columns: 1fr;
  }

  .split-section {
    padding-right: 20px;
    padding-left: 20px;
    padding-inline: 20px;
  }

  .section-media,
  .section-media img {
    min-height: 420px;
  }

  .origins .section-media {
    display: grid;
    align-items: end;
    color: #fffaf2;
  }

  .origins .section-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(19, 24, 19, 0.08), rgba(19, 24, 19, 0.68));
    pointer-events: none;
  }

  .mobile-origins-quote {
    position: relative;
    z-index: 1;
    display: block;
    margin: 0;
    padding: 28px 22px;
    font-size: clamp(1.9rem, 10vw, 3.4rem);
  }

  .origins .section-media img {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
  }

  .quote-band-long {
    display: none;
  }

  .guide-card {
    grid-template-columns: minmax(92px, 128px) minmax(0, 1fr);
  }

  .guides-image {
    display: none;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 14px 16px;
  }

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

  .brand {
    font-size: 1.25rem;
  }

  .hero h1 {
    font-size: 4.4rem;
    font-size: clamp(4rem, 21vw, 6.2rem);
  }

  h2 {
    font-size: 2.4rem;
    font-size: clamp(2.05rem, 12vw, 3.6rem);
  }

  .quote-band blockquote {
    font-size: clamp(2.5rem, 14vw, 4.5rem);
  }

  .content-section,
  .quiet-section,
  .contact-section,
  .booking-section {
    padding-right: 20px;
    padding-left: 20px;
    padding-inline: 20px;
  }

  .guide-card {
    grid-template-columns: 1fr;
  }

  .guide-portrait {
    width: 180px;
    width: min(58vw, 180px);
  }
}

@media (max-width: 600px) {
  .offering-grid,
  .offering,
  .offering img,
  .offering div {
    display: block !important;
    position: static !important;
    float: none !important;
    clear: both !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .offering {
    min-height: 0 !important;
    overflow: hidden;
  }

  .offering img {
    height: auto !important;
    margin: 0 !important;
  }
}

.is-ios .offering-grid,
.is-ios .offering,
.is-ios .offering img,
.is-ios .offering div,
.is-chrome-ios .offering-grid,
.is-chrome-ios .offering,
.is-chrome-ios .offering img,
.is-chrome-ios .offering div {
  display: block !important;
  position: static !important;
  float: none !important;
  clear: both !important;
  width: 100% !important;
  max-width: 100% !important;
}

.is-ios .offering,
.is-chrome-ios .offering {
  min-height: 0 !important;
  overflow: hidden;
}

.is-ios .offering img,
.is-chrome-ios .offering img {
  height: auto !important;
  margin: 0 !important;
}

@supports not (display: grid) {
  .split-section,
  .guides-layout {
    display: block;
  }

  .section-media,
  .guides-layout {
    margin-bottom: 36px;
  }

  .offering {
    margin-bottom: 1px;
  }

  .guide-card {
    display: flex;
  }
}

@supports not (aspect-ratio: 1) {
  .offering img {
    height: auto;
  }

  .guide-portrait {
    height: auto;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
