@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url('/fonts/source-sans-3-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'Source Serif 4';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/source-serif-4-latin.woff2') format('woff2');
}

:root {
  color-scheme: light;
  --paper: #f8f7f2;
  --white: #fff;
  --ink: #203c30;
  --muted: #526058;
  --line: #cbd2c9;
  --soft: #ebeee6;
  --sand: #eadab6;
  --serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --sans: 'Source Sans 3', 'Segoe UI', sans-serif;
  --gutter: clamp(1.125rem, 4.5vw, 4.5rem);
}

* { box-sizing: border-box; }
html { scroll-padding-top: 1rem; }
body { margin: 0; background: var(--paper); color: var(--ink); font: 400 1.0625rem/1.65 var(--sans); }
img { display: block; max-width: 100%; height: auto; }
figure, dl, dd { margin: 0; }
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }
address { font-style: normal; }
h1, h2, h3 { margin: 0; text-wrap: balance; overflow-wrap: anywhere; }
h1, h2 { font-family: var(--serif); font-weight: 400; letter-spacing: -.035em; }
h1 { font-size: clamp(2.4rem, 5vw, 4.65rem); line-height: 1.12; }
h2 { font-size: clamp(2.125rem, 3.35vw, 3.25rem); line-height: 1.16; }
h3 { font-size: 1.25rem; line-height: 1.35; font-weight: 600; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .25em; overflow-wrap: anywhere; }
a:hover { text-decoration-thickness: 2px; }
a:focus-visible { outline: 3px solid currentColor; outline-offset: 5px; }
main:focus { outline: none; }
section[id] { scroll-margin-top: 1.5rem; }
.page-width { width: 100%; max-width: 1440px; margin-inline: auto; padding-inline: var(--gutter); }
.section-space { padding-block: clamp(3.5rem, 7.5vw, 7rem); }
.eyebrow { margin: 0 0 1rem; font-size: .8125rem; font-weight: 600; letter-spacing: .14em; line-height: 1.6; text-transform: uppercase; }
.intro { margin-top: 1.5rem; font-size: 1.1875rem; line-height: 1.7; color: var(--muted); }

.skip-link {
  position: absolute;
  top: .5rem;
  left: var(--gutter);
  z-index: 20;
  min-height: 44px;
  padding: .75rem 1rem;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-200%);
}
.skip-link:focus { transform: none; }
.preparation-notice { padding: .75rem var(--gutter); background: var(--sand); color: #39351f; text-align: center; font-size: .9375rem; line-height: 1.6; }
.preparation-notice p { max-width: 78rem; margin-inline: auto; }
.preparation-notice strong { font-weight: 700; }
.site-header { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; column-gap: 1.5rem; row-gap: .25rem; padding-block: .85rem; }
.brand { display: inline-flex; align-items: center; gap: .7rem; min-height: 64px; text-decoration: none; flex-shrink: 0; }
.brand img { width: 64px; height: 64px; object-fit: cover; clip-path: circle(47% at 50% 49%); }
.brand > span { font-size: .875rem; letter-spacing: .11em; line-height: 1.4; white-space: nowrap; }
.brand strong { display: block; font-size: 1.125rem; letter-spacing: .16em; }
.main-nav ul, .site-footer ul { display: flex; flex-wrap: wrap; align-items: center; gap: .25rem 1.4rem; list-style: none; padding: 0; margin: 0; }
.main-nav a { display: inline-flex; align-items: center; min-height: 44px; text-decoration: none; font-size: 1rem; }
.main-nav a:hover { text-decoration: underline; }
.language-nav { display: flex; flex-wrap: wrap; gap: .125rem; }
.language-nav a { display: inline-flex; align-items: center; justify-content: center; padding: .45rem .65rem; min-height: 44px; font-size: .9375rem; text-decoration: none; border: 1px solid transparent; }
.language-nav a[aria-current] { border-color: var(--line); background: var(--white); font-weight: 600; }
.language-nav a:hover { border-color: var(--ink); }

.hero { position: relative; isolation: isolate; display: grid; grid-template-columns: minmax(0, 1fr); background: var(--ink); color: var(--white); }
.hero-image, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -1; }
.hero-image { object-fit: cover; object-position: 62% center; }
.hero-shade { background: linear-gradient(90deg, rgba(12, 26, 19, .94), rgba(12, 26, 19, .85) 28%, rgba(12, 26, 19, .59) 47%, rgba(12, 26, 19, .08) 75%); }
.hero-inner { display: flex; align-items: center; min-height: clamp(36rem, 49vw, 44rem); padding-block: 4rem; }
.hero-copy { max-width: 33rem; min-width: 0; }
.hero h1 { max-width: 11.8ch; }
.hero .eyebrow { color: #eee3c9; }
.hero-description { max-width: 34ch; margin: 1.75rem 0 1.8rem; font-size: 1.1875rem; line-height: 1.6; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 1.25rem; min-height: 48px; max-width: 100%; padding: .85rem 1.25rem; background: var(--ink); border: 1px solid var(--ink); color: var(--white); font-weight: 600; line-height: 1.5; text-decoration: none; text-align: center; }
.button:hover { background: #314f40; text-decoration: underline; }
.button > span { flex-shrink: 0; }
.button-light { color: var(--ink); background: var(--paper); border-color: var(--paper); }
.button-light:hover { background: var(--sand); }
.hero-note { max-width: 34ch; margin-top: 1.25rem; color: #f1eee6; font-size: .875rem; }
.facts-strip { background: var(--soft); border-bottom: 1px solid var(--line); }
.facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); padding-block: 1.6rem; }
.facts > div { padding-inline: 2.5rem; border-left: 1px solid #bcc7bc; }
.facts > div:first-child { padding-left: 0; border-left: 0; }
.facts > div:last-child { padding-right: 0; }
.facts dt { font-size: 1.1875rem; font-weight: 600; }
.facts dd { margin-top: .15rem; font-size: .9375rem; color: var(--muted); }

.split-section { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: center; gap: clamp(2rem, 5.5vw, 5.5rem); }
.section-copy { min-width: 0; }
.service-notes { margin-top: 2rem; border-top: 1px solid var(--line); }
.service-notes article { padding-block: 1.15rem; border-bottom: 1px solid var(--line); }
.service-notes p { margin-top: .5rem; color: var(--muted); }
.editorial-image { min-width: 0; }
.editorial-image img { width: 100%; aspect-ratio: 1 / 1.07; object-fit: cover; }
.hotel-image img { object-position: 77% center; }
.road-image img { object-position: 30% center; }
figcaption { padding-top: .75rem; color: var(--muted); font-size: .8125rem; line-height: 1.6; }
.company-section { background: var(--soft); }
.company-section .service-notes, .company-section .service-notes article { border-color: #bdc9bd; }
.section-heading { display: grid; grid-template-columns: 1.1fr 1fr; align-items: end; gap: clamp(2rem, 6vw, 6rem); }
.section-heading .intro { margin: 0; }
.tour-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; margin-block: 2.5rem; }
.tour-list article { border-top: 1px solid var(--line); padding-top: 1.5rem; }
.tour-list h3 { font: 400 1.6875rem/1.25 var(--serif); letter-spacing: -.025em; }
.tour-list p { margin-top: .85rem; color: var(--muted); }
.landscape-image img { width: 100%; max-height: 32rem; aspect-ratio: 2.4 / 1; object-fit: cover; object-position: center; }
.corporate-section { display: grid; grid-template-columns: 1fr 2fr; gap: 2rem; padding-top: 2rem; padding-bottom: clamp(3.5rem, 7.5vw, 7rem); }
.corporate-section > div { border-top: 1px solid var(--line); padding-top: 1.5rem; }
.corporate-section > .eyebrow { padding-top: 1.75rem; }
.corporate-section h2 { max-width: 23ch; font-size: clamp(1.875rem, 2.6vw, 2.5rem); }
.corporate-section p:not(.eyebrow) { margin-top: 1rem; max-width: 55ch; color: var(--muted); }
.contact-section { padding-block: clamp(3rem, 6vw, 5.5rem); background: var(--ink); color: var(--white); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 7vw, 7rem); align-items: center; }
.contact-inner h2 { max-width: 17ch; }
.contact-inner .eyebrow { color: var(--sand); }
.contact-copy { min-width: 0; }
.contact-copy > p:first-child { max-width: 42ch; font-size: 1.125rem; }
.email-link { display: inline-flex; align-items: center; min-height: 44px; max-width: 100%; }
.contact-copy > .email-link { display: inline-block; padding-block: .5rem; margin-bottom: .75rem; font-size: clamp(1.1875rem, 2vw, 1.75rem); }
.contact-note { max-width: 50ch; color: #dce5dc; font-size: .9375rem; }
.site-footer { padding-block: 2.5rem 2rem; }
.footer-top { display: flex; align-items: start; justify-content: space-between; gap: 2rem; }
.footer-brand { margin-bottom: .5rem; letter-spacing: .09em; }
.footer-top p:not(.footer-brand) { font-size: 1rem; color: var(--muted); }
.site-footer ul { align-items: flex-start; flex-direction: column; gap: 0; }
.site-footer li > a { display: inline-flex; align-items: center; min-height: 44px; font-size: .9375rem; }
.footer-bottom { padding-top: 2rem; font-size: .875rem; color: var(--muted); }
.footer-bottom > p { margin-bottom: .35rem; }
.footer-bottom .footer-status { margin: 1rem 0 0; }

.document-heading { max-width: 51rem; margin-bottom: 3rem; }
.document-heading h1 { max-width: 18ch; }
.document-layout { display: grid; grid-template-columns: minmax(0, 1.8fr) minmax(0, 1fr); gap: clamp(2rem, 6vw, 6rem); align-items: start; margin-bottom: 2.5rem; }
.document-sections section { border-top: 1px solid var(--line); padding-block: 1.5rem; }
.document-sections h2 { font-size: 1.625rem; line-height: 1.3; letter-spacing: -.02em; }
.document-sections p { margin-top: .85rem; max-width: 65ch; color: var(--muted); }
.identity-panel { background: var(--soft); padding: clamp(1.25rem, 2.5vw, 2rem); border-top: 3px solid var(--ink); }
.identity-panel h2 { font-size: 1.625rem; line-height: 1.3; }
.identity-panel dl { margin-top: 1.5rem; }
.identity-panel dl > div + div { margin-top: 1.25rem; }
.identity-panel dt { font-size: .8125rem; font-weight: 600; letter-spacing: .04em; color: var(--muted); }
.identity-panel dd { margin-top: .3rem; overflow-wrap: anywhere; }
.page-information .site-footer, .page-not-found .site-footer { border-top: 1px solid var(--line); }
.not-found-page { min-height: 50vh; }
.not-found-page h1 { max-width: 17ch; }
.not-found-page .intro { max-width: 44ch; margin-bottom: 2rem; }

@media (max-width: 1100px) {
  .site-header { column-gap: 1rem; }
  .main-nav { order: 3; flex-basis: 100%; }
  .main-nav ul { justify-content: center; }
  .hero-copy { max-width: 29rem; }
  .hero-inner { min-height: 35rem; }
  .hero-shade { background: linear-gradient(90deg, rgba(12, 26, 19, .94), rgba(12, 26, 19, .83) 30%, rgba(12, 26, 19, .58) 50%, rgba(12, 26, 19, .12) 85%); }
  .facts > div { padding-inline: 1.5rem; }
}

@media (max-width: 760px) {
  .hero-image { position: relative; z-index: auto; aspect-ratio: 1.75 / 1; height: auto; object-position: 67% center; }
  .hero-shade { display: none; }
  .hero-inner { min-height: 0; padding-block: 2.25rem 2.75rem; }
  .hero-copy { max-width: 36rem; }
  .hero h1 { max-width: 17ch; font-size: clamp(2.5rem, 7vw, 3.6rem); }
  .hero-description { max-width: 42ch; margin-top: 1.25rem; }
  .hero-note { max-width: 45ch; }
  .facts { padding-block: 1.25rem; }
  .facts > div { padding-inline: 1rem; }
  .facts dt { font-size: 1.0625rem; }
  .split-section, .section-heading, .contact-inner, .document-layout { grid-template-columns: minmax(0, 1fr); }
  .split-section { gap: 2rem; }
  .editorial-image img { aspect-ratio: 1.65 / 1; }
  .company-layout .editorial-image { order: 2; }
  .section-heading { gap: 1.5rem; }
  .tour-list { grid-template-columns: minmax(0, 1fr); gap: 1.25rem; margin-block: 2rem; }
  .tour-list article { padding-top: 1.25rem; }
  .tour-list p { max-width: 58ch; }
  .landscape-image img { aspect-ratio: 1.6 / 1; }
  .corporate-section { grid-template-columns: minmax(0, 1fr); gap: 0; padding-top: 0; }
  .corporate-section > .eyebrow { padding-top: 0; }
  .contact-inner { gap: 1.75rem; }
  .footer-top { flex-direction: column; gap: 1rem; }
  .document-heading { margin-bottom: 2rem; }
  .document-layout { gap: 1.5rem; }
  .identity-panel { max-width: 40rem; }
}

@media (max-width: 480px) {
  .site-header { padding-block: .75rem .4rem; gap: .35rem .65rem; }
  .brand { gap: .5rem; min-height: 52px; }
  .brand img { width: 52px; height: 52px; }
  .brand > span { font-size: .75rem; }
  .brand strong { font-size: 1rem; }
  .language-nav { margin-left: auto; }
  .language-nav a { font-size: .875rem; padding-inline: .45rem; }
  .main-nav ul { column-gap: 1.15rem; row-gap: 0; justify-content: flex-start; }
  .main-nav a { font-size: .9375rem; }
  .hero-image { aspect-ratio: 1.6 / 1; }
  .facts { grid-template-columns: minmax(0, 1fr); padding-block: .25rem; }
  .facts > div { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); align-items: baseline; gap: .75rem; padding: .9rem 0; border: 0; border-top: 1px solid #bcc7bc; }
  .facts > div:first-child { border-top: 0; }
  .facts dd { margin-top: 0; }
  .editorial-image img { aspect-ratio: 1.2 / 1; }
  .landscape-image img { aspect-ratio: 1.25 / 1; }
}

@media (forced-colors: active) {
  .hero-shade { display: none; }
  .hero-copy { padding: 1rem; background: Canvas; color: CanvasText; }
  .button, .language-nav a[aria-current] { border: 1px solid ButtonText; }
}
