:root {
  --ink: #172123;
  --ink-soft: #263638;
  --paper: #f7f5f0;
  --paper-warm: #eeeae1;
  --white: #fffefa;
  --slate: #536166;
  --slate-light: #a5b0ad;
  --line: #d3d1ca;
  --line-dark: #445154;
  --copper: #8e5038;
  --copper-dark: #713b2b;
  --moss: #5f716b;
  --shadow: 0 12px 24px rgba(17, 28, 30, 0.12);
  --max-width: 1200px;
  --radius: 4px;
  color: var(--ink);
  background: var(--paper);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

img, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
button, input, textarea { font: inherit; }
button, a, input, textarea { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid var(--copper); outline-offset: 3px; }

.skip-link {
  position: fixed; left: 1rem; top: -5rem; z-index: 100;
  padding: .7rem 1rem; background: var(--copper); color: var(--white); font-weight: 800;
}
.skip-link:focus { top: 1rem; }

.utility-bar { background: var(--ink); color: #e9eeea; font-size: .78rem; letter-spacing: .02em; }
.utility-inner, .site-header-inner, .section-inner, .footer-inner {
  width: min(var(--max-width), calc(100% - 3rem)); margin: 0 auto;
}
.utility-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.utility-inner p { margin: 0; color: #d5dfda; }
.utility-links, .utility-links a { display: flex; align-items: center; gap: 1rem; }
.utility-links a { color: var(--white); font-weight: 700; text-decoration: none; white-space: nowrap; }
.utility-links a:hover { color: #f0c1a4; }

.site-header { position: sticky; top: 0; z-index: 40; background: rgba(247,245,240,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.site-header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: .8rem; color: var(--ink); text-decoration: none; flex-shrink: 0; }
.brand-mark { position: relative; display: grid; place-items: center; width: 40px; height: 40px; overflow: hidden; background: var(--ink); color: #f5c2a2; }
.brand-mark::before, .brand-mark::after { content: ""; position: absolute; width: 31px; height: 1px; background: currentColor; transform: rotate(-34deg); }
.brand-mark::after { width: 19px; transform: rotate(34deg) translate(4px, 5px); }
.brand-mark span { position: relative; z-index: 1; margin-top: 9px; font-size: .6rem; font-weight: 900; letter-spacing: .05em; }
.brand-copy { display: grid; gap: .05rem; line-height: 1.1; }
.brand-copy strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.1rem; font-weight: 700; letter-spacing: .02em; }
.brand-copy span { color: var(--slate); font-size: .72rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.primary-nav { display: block; }
.nav-list { display: flex; align-items: center; gap: 1.3rem; padding: 0; margin: 0; list-style: none; }
.nav-link { position: relative; display: inline-block; padding: .45rem 0; color: var(--slate); font-size: .78rem; font-weight: 800; text-decoration: none; text-transform: uppercase; letter-spacing: .07em; }
.nav-link::after { position: absolute; right: 0; bottom: 0; left: 0; height: 2px; background: var(--copper); content: ""; transform: scaleX(0); transform-origin: right; transition: transform 180ms ease; }
.nav-link:hover, .nav-link[aria-current="page"] { color: var(--ink); }
.nav-link:hover::after, .nav-link[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.mobile-nav-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: var(--radius); background: transparent; color: var(--ink); }

.hero { min-height: 680px; display: grid; grid-template-columns: minmax(0,.84fr) minmax(0,1.16fr); background: var(--ink); color: var(--white); }
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(3rem,4.5vw,5rem) max(1.5rem,calc((100vw - var(--max-width))/2)); padding-right: clamp(1.5rem,3vw,3rem); }
.button svg, .text-link svg, .rail-control svg { flex: 0 0 auto; }
.hero h1, .page-hero h1 { max-width: 12ch; margin: 1.2rem 0 1.35rem; color: var(--white); font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.7rem,3.5vw,3.8rem); font-weight: 500; letter-spacing: 0; line-height: .98; }
.hero-intro { max-width: 48ch; margin: 0; color: #d3ddda; font-size: 1.05rem; }
.hero-actions, .action-row { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem; margin-top: 2rem; }
.button { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; gap: .55rem; padding: .75rem 1rem; border: 1px solid transparent; border-radius: var(--radius); font-size: .76rem; font-weight: 900; letter-spacing: .06em; line-height: 1.25; text-align: center; text-decoration: none; text-transform: uppercase; transition: background 180ms ease,border-color 180ms ease,color 180ms ease,transform 180ms ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--copper); color: var(--white); }
.button-primary:hover { background: #a45a37; }
.button-quiet { border-color: rgba(255,255,255,.34); color: var(--white); }
.button-quiet:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.button-dark { background: var(--ink); color: var(--white); }
.button-dark:hover { background: var(--ink-soft); }
.hero-meta { display: flex; flex-wrap: wrap; gap: .8rem 1.4rem; margin: 2.6rem 0 0; padding-top: 1rem; border-top: 1px solid var(--line-dark); color: #b9c5c0; font-size: .74rem; font-weight: 700; }
.hero-media { position: relative; min-height: 680px; overflow: hidden; background: var(--ink-soft); }
.hero-media img { width: 100%; height: 100%; min-height: 680px; object-fit: cover; object-position: center; filter: saturate(.82) contrast(1.04); }
.hero-media::after { position: absolute; inset: auto 0 0; height: 45%; background: rgba(15,23,24,.2); content: ""; pointer-events: none; }
.image-note { position: absolute; right: clamp(1rem,4vw,4rem); bottom: clamp(1rem,4vw,4rem); z-index: 1; width: min(260px,calc(100% - 2rem)); padding: .85rem 1rem; border-left: 2px solid var(--copper); background: rgba(23,33,35,.82); color: var(--white); font-size: .77rem; line-height: 1.45; overflow-wrap: anywhere; }
.image-note strong { display: block; margin-bottom: .25rem; color: #f4c2a5; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }

.section { padding: clamp(4.5rem,8vw,8rem) 0; }
.section-dark { background: var(--ink); color: var(--white); }
.section-paper { background: var(--paper); }
.section-warm { background: var(--paper-warm); }
.section-heading { display: grid; grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr); align-items: end; gap: 2rem; margin-bottom: 2.75rem; }
.section-heading h2, .section-heading h1, .content-title { margin: .5rem 0 0; color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem,4vw,4rem); font-weight: 500; letter-spacing: 0; line-height: 1.05; }
.section-dark .section-heading h2, .section-dark .section-heading h1, .section-dark .content-title { color: var(--white); }
.section-heading p, .section-lead { max-width: 54ch; margin: 0; color: var(--slate); font-size: 1rem; }
.section-dark .section-heading p, .section-dark .section-lead { color: #bdc9c4; }

.surface-rail { overflow: hidden; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.surface-rail-header { display: flex; align-items: end; justify-content: space-between; gap: 1.5rem; margin-bottom: 1.7rem; }
.surface-rail-header h2 { margin: .45rem 0 0; color: var(--white); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.9rem,3.6vw,3.3rem); font-weight: 500; line-height: 1.05; }
.rail-controls { display: flex; gap: .45rem; }
.rail-control { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid var(--line-dark); border-radius: var(--radius); background: transparent; color: var(--white); transition: background 160ms ease,border-color 160ms ease; }
.rail-control:hover { border-color: var(--copper); background: var(--copper); }
.rail-track { display: flex; gap: 1rem; overflow-x: auto; padding: .25rem 0 1.2rem; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-color: var(--copper) var(--ink-soft); scrollbar-width: thin; touch-action: pan-y pinch-zoom; }
.rail-track:focus-visible { outline-color: var(--copper); }
.rail-item { position: relative; flex: 0 0 clamp(260px,31vw,370px); min-height: 360px; display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line-dark); background: var(--ink-soft); scroll-snap-align: start; }
.rail-item-media { position: relative; height: 190px; overflow: hidden; }
.rail-item-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.74); transition: transform 350ms ease,filter 350ms ease; }
.rail-item:hover img { transform: scale(1.035); filter: saturate(1); }
.rail-item-index { position: absolute; top: .75rem; left: .75rem; padding: .25rem .45rem; background: var(--copper); color: var(--white); font-size: .72rem; font-weight: 900; letter-spacing: .08em; }
.rail-item-copy { display: flex; flex: 1; flex-direction: column; align-items: flex-start; padding: 1.25rem; }
.rail-item-copy h3 { margin: 0; color: var(--white); font-family: Georgia, "Times New Roman", serif; font-size: 1.5rem; font-weight: 500; line-height: 1.1; }
.rail-item-copy p { margin: .7rem 0 1.1rem; color: #c4d0cb; font-size: .88rem; }
.text-link { margin-top: auto; color: #f0b18e; font-size: .74rem; font-weight: 900; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.text-link:hover { color: var(--white); }

.service-layout, .split-layout, .contact-layout { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: clamp(2rem,6vw,6rem); align-items: center; }
.service-layout.reverse, .split-layout.reverse { grid-template-columns: minmax(0,1.1fr) minmax(0,.9fr); }
.service-layout h2, .split-layout h2 { margin: .45rem 0 1rem; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem,4vw,3.7rem); font-weight: 500; line-height: 1.04; }
.service-layout p, .split-layout p { color: var(--slate); font-size: 1rem; }
.service-layout img, .split-layout img { width: 100%; max-height: 620px; object-fit: cover; }
.image-frame { position: relative; padding: 0 .75rem .75rem 0; }
.image-frame::before { position: absolute; top: .75rem; right: 0; bottom: 0; left: .75rem; border: 1px solid var(--copper); content: ""; pointer-events: none; }
.image-frame img { position: relative; }
.service-list, .plain-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: .7rem 2rem; padding: 0; margin: 1.7rem 0 0; list-style: none; }
.service-list li, .plain-list li { position: relative; padding: .65rem 0 .65rem 1.2rem; border-top: 1px solid var(--line); font-size: .92rem; font-weight: 800; }
.service-list li::before, .plain-list li::before { position: absolute; top: 1.1rem; left: 0; width: 7px; height: 7px; background: var(--copper); content: ""; }
.fact-strip { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1px; margin-top: 2.5rem; background: var(--line); border: 1px solid var(--line); }
.fact { min-height: 145px; padding: 1.4rem; background: var(--paper); }
.fact strong { display: block; margin-bottom: .5rem; color: var(--copper-dark); font-family: Georgia, "Times New Roman", serif; font-size: 2.1rem; font-weight: 500; line-height: 1; }
.fact span { color: var(--slate); font-size: .8rem; font-weight: 800; }

.media-block { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(260px,.85fr); gap: 2rem; align-items: stretch; }
.video-shell { overflow: hidden; border: 1px solid var(--line-dark); background: #0d1415; }
.video-shell iframe { width: 100%; aspect-ratio: 16/9; border: 0; }
.video-fallback { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .9rem 1rem; color: #c4d0cb; font-size: .82rem; }
.video-fallback a { color: #f0b18e; font-weight: 800; }
.media-image { width: 100%; height: 100%; min-height: 240px; object-fit: cover; }

.page-hero { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); align-items: stretch; gap: 0; background: var(--ink); color: var(--white); }
.page-hero-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(3.5rem,7vw,7rem) max(1.5rem,calc((100vw - var(--max-width))/2)); padding-right: clamp(2rem,5vw,5rem); }
.page-hero h1 { max-width: 11ch; font-size: clamp(2.8rem,5vw,5.4rem); }
.page-hero-copy p { max-width: 48ch; color: #c4d0cb; }
.page-hero-media, .page-hero-media img { min-height: 520px; }
.page-hero-media { overflow: hidden; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }

.copy-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.copy-panel { padding: clamp(1.5rem,3vw,3rem); background: var(--white); }
.copy-panel h2, .copy-panel h3 { margin: 0 0 .9rem; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.65rem,3vw,2.4rem); font-weight: 500; line-height: 1.1; }
.copy-panel h3 { font-size: 1.35rem; }
.copy-panel p { margin: 0 0 1rem; color: var(--slate); }
.copy-panel p:last-child { margin-bottom: 0; }
.route-image-band { display: grid; grid-template-columns: 1.3fr .7fr; gap: 1rem; align-items: stretch; }
.route-image-band figure { position: relative; min-height: 260px; margin: 0; overflow: hidden; background: var(--ink-soft); }
.route-image-band figure:first-child { min-height: 360px; }
.route-image-band img { width: 100%; height: 100%; object-fit: cover; }
.route-image-band figcaption { position: absolute; right: 0; bottom: 0; left: 0; padding: 1rem; background: rgba(23,33,35,.82); color: var(--white); font-size: .8rem; font-weight: 800; }

.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 0; list-style: none; cursor: pointer; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.15rem,2.2vw,1.6rem); font-weight: 500; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { flex: 0 0 auto; color: var(--copper); content: "+"; font-family: ui-sans-serif, sans-serif; font-size: 1.5rem; font-weight: 400; }
.faq-item[open] summary::after { content: "-"; }
.faq-answer { max-width: 70ch; padding: 0 2rem 1.35rem 0; color: var(--slate); }

.review-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); }
.review-item { min-height: 100%; display: flex; flex-direction: column; justify-content: space-between; padding: clamp(1.4rem,3vw,2.5rem); background: var(--ink-soft); color: var(--white); }
.review-item blockquote { margin: 0; color: #d9e2dd; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.1rem,2vw,1.45rem); line-height: 1.4; }
.review-item cite { display: block; margin-top: 2rem; color: #f0b18e; font-size: .75rem; font-style: normal; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.review-item-wide { grid-column: 1/-1; }
.review-note { max-width: 70ch; margin: 0 0 2rem; padding: 1rem 1.2rem; border-left: 2px solid var(--copper); background: var(--paper-warm); color: var(--slate); font-size: .88rem; }

.contact-layout { align-items: start; }
.contact-layout > * { min-width: 0; }
.contact-layout h1 { margin: .45rem 0 1rem; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.2rem,4.6vw,4.6rem); font-weight: 500; line-height: 1.02; }
.contact-intro { max-width: 50ch; color: var(--slate); }
.contact-details { display: grid; gap: .8rem; padding: 0; margin: 2rem 0 0; list-style: none; }
.contact-details li { padding: 1rem 0; border-top: 1px solid var(--line); }
.contact-details strong { display: block; margin-bottom: .25rem; color: var(--copper-dark); font-size: .72rem; letter-spacing: .13em; text-transform: uppercase; }
.contact-details a, .contact-details span { overflow-wrap: anywhere; }
.contact-details a { font-size: 1.1rem; font-weight: 800; text-decoration: none; }
.contact-form { padding: clamp(1.4rem,3vw,2.6rem); border: 1px solid var(--line); background: var(--white); }
.contact-form h2 { margin: 0 0 .55rem; font-family: Georgia, "Times New Roman", serif; font-size: 2rem; font-weight: 500; }
.contact-form > p { margin: 0 0 1.6rem; color: var(--slate); font-size: .88rem; }
.form-field { display: grid; gap: .4rem; margin-top: 1rem; }
.form-field label { color: var(--ink); font-size: .76rem; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
.form-field input, .form-field textarea { width: 100%; border: 1px solid var(--line); border-radius: 0; background: var(--paper); color: var(--ink); padding: .8rem; }
.form-field textarea { min-height: 140px; resize: vertical; }
.form-submit { width: 100%; margin-top: 1.3rem; }
.form-status { margin: 1rem 0 0; color: var(--moss); font-size: .83rem; font-weight: 700; }

.site-footer { position: relative; overflow: hidden; padding: 4rem 0 1.2rem; background: var(--ink); color: #c4d0cb; }
.site-footer::before { position: absolute; inset: 0; background: url("assets/heritage_footer2.jpg") center/cover no-repeat; opacity: .08; content: ""; pointer-events: none; }
.footer-inner { position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.15fr .85fr .85fr; gap: 3rem; padding-bottom: 3rem; }
.footer-grid h2, .footer-grid h3 { margin: 0 0 .8rem; color: var(--white); font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; font-weight: 500; }
.footer-grid p { max-width: 38ch; margin: 0; font-size: .82rem; line-height: 1.65; }
.footer-links { display: grid; gap: .45rem; padding: 0; margin: 0; list-style: none; font-size: .82rem; }
.footer-links a { color: #c4d0cb; text-decoration: none; }
.footer-links a:hover { color: #f0b18e; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding-top: 1rem; border-top: 1px solid var(--line-dark); color: #91a09a; font-size: .7rem; }
.footer-bottom span { text-align: right; }
.route-cta { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 1.5rem; border-top: 1px solid var(--copper); border-bottom: 1px solid var(--copper); }
.route-cta h2 { max-width: 20ch; margin: 0; color: var(--white); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.4rem,2.5vw,2.2rem); font-weight: 500; line-height: 1.1; }
.muted { color: var(--slate); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

@media (max-width: 1020px) {
  .site-header-inner { gap: 1rem; }
  .nav-list { gap: .8rem; }
  .nav-link { font-size: .7rem; }
  .hero, .page-hero { grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
  .hero-copy, .page-hero-copy { padding-left: 1.5rem; }
}

@media (max-width: 780px) {
  .utility-inner, .site-header-inner, .section-inner, .footer-inner { width: min(var(--max-width), calc(100% - 2rem)); }
  .utility-inner { min-height: 44px; }
  .utility-inner p { max-width: 16ch; line-height: 1.25; }
  .utility-links { gap: .6rem; }
  .utility-links a { font-size: .72rem; gap: .25rem; }
  .site-header-inner { min-height: 68px; }
  .mobile-nav-toggle { display: grid; place-items: center; }
  .primary-nav { position: absolute; top: 100%; right: 1rem; left: 1rem; display: none; border: 1px solid var(--line); background: var(--paper); }
  .primary-nav[data-open="true"] { display: block; }
  .nav-list { display: grid; gap: 0; padding: .6rem 1rem; }
  .nav-link { display: block; padding: .8rem 0; border-bottom: 1px solid var(--line); }
  .nav-list li:last-child .nav-link { border-bottom: 0; }
  .hero, .page-hero, .service-layout, .service-layout.reverse, .split-layout, .split-layout.reverse, .contact-layout { grid-template-columns: 1fr; }
  .hero { min-height: 0; }
  .hero-copy { order: 1; min-height: 0; padding: 3.4rem 1rem 3.2rem; }
  .hero-media { order: 2; min-height: 390px; }
  .hero-media img { min-height: 390px; }
  .page-hero-copy { min-height: 420px; padding: 3.5rem 1rem; }
  .page-hero-media, .page-hero-media img { min-height: 340px; }
  .section-heading { grid-template-columns: 1fr; gap: .8rem; }
  .surface-rail-header { align-items: start; flex-direction: column; }
  .rail-item { flex-basis: min(82vw,330px); }
  .service-layout img, .split-layout img { max-height: 480px; }
  .copy-grid, .review-list, .media-block, .route-image-band { grid-template-columns: 1fr; }
  .review-item-wide { grid-column: auto; }
  .route-image-band figure, .route-image-band figure:first-child { min-height: 240px; }
  .fact-strip { grid-template-columns: 1fr; }
  .service-list, .plain-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
  .footer-grid > :first-child { grid-column: 1/-1; }
  .footer-bottom { flex-direction: column; }
  .footer-bottom span { text-align: left; }
  .route-cta { align-items: start; flex-direction: column; }
}

@media (max-width: 430px) {
  .brand-copy strong { font-size: .95rem; }
  .brand-copy span { font-size: .7rem; }
  .hero h1, .page-hero h1 { max-width: none; font-size: clamp(2.5rem,12vw,3.4rem); }
  .hero-actions, .action-row { align-items: stretch; flex-direction: column; }
  .hero-actions .button, .action-row .button { width: 100%; }
  .video-fallback { align-items: start; flex-direction: column; }
}

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