:root {
  --brand: #8b4311;
  --brand-dark: #6f3209;
  --brand-soft: #bd733b;
  --ink: #171512;
  --muted: #625e58;
  --cream: #f6f2e9;
  --cream-dark: #e8dfd1;
  --paper: #fffefa;
  --white: #ffffff;
  --line: #d9d1c6;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 24px 70px rgba(45, 31, 20, .16);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-underline-offset: .2em; }
button, input, textarea, select { font: inherit; }
:focus-visible { outline: 3px solid #e7a16c; outline-offset: 4px; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 6px;
  background: var(--white);
  color: var(--brand-dark);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid rgba(217,209,198,.85);
  transition: box-shadow .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 8px 30px rgba(45,31,20,.1); }
.header-inner {
  width: min(calc(100% - 48px), var(--max));
  min-height: 96px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(270px, 1fr) auto minmax(290px, 1fr);
  align-items: center;
  gap: 34px;
}
.brand, .footer-brand { display: inline-block; width: min(330px, 100%); }
.brand img, .footer-brand img { width: 100%; height: auto; }
.desktop-nav { display: flex; gap: 32px; align-items: center; }
.desktop-nav a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  color: #39352f;
  font-size: .92rem;
  font-weight: 750;
  text-decoration: none;
}
.desktop-nav a:hover { color: var(--brand); }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 16px; }
.header-phone { min-height: 48px; display: inline-flex; align-items: center; color: var(--brand-dark); font-weight: 800; text-decoration: none; }
.button {
  min-height: 54px;
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--brand);
  border-radius: 5px;
  background: var(--brand);
  color: var(--white);
  font-size: .9rem;
  font-weight: 850;
  letter-spacing: .02em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-2px); background: var(--brand-dark); border-color: var(--brand-dark); }
.button-small { min-height: 46px; padding: 11px 18px; font-size: .8rem; }
.button-outline { background: transparent; color: var(--brand); }
.button-outline:hover { color: var(--white); }
.menu-toggle, .mobile-menu { display: none; }

.hero {
  position: relative;
  min-height: min(850px, calc(100svh - 96px));
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #2b2119 url("/assets/hero.jpeg") center 60% / cover no-repeat;
  color: var(--white);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12,10,8,.55), rgba(28,17,10,.46) 48%, rgba(14,11,9,.72)),
    linear-gradient(90deg, rgba(18,12,7,.18), rgba(18,12,7,.1));
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), 990px);
  padding: 88px 0 112px;
  text-align: center;
}
.eyebrow {
  margin: 0 0 20px;
  color: var(--brand);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .2em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow-light { color: #efb778; }
.hero h1, .section h2, .booking-band h2, .legal-main h1, .error-page h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.04;
}
.hero h1 { margin-inline: auto; max-width: 970px; font-size: clamp(3.8rem, 7vw, 6.4rem); text-wrap: balance; }
.hero-lede { margin: 28px auto 0; max-width: 780px; color: rgba(255,255,255,.92); font-size: clamp(1.15rem, 2vw, 1.48rem); }
.hero-actions { width: min(100%, 760px); margin: 42px auto 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.button-hero, .button-hero-outline { min-height: 64px; padding: 17px 28px; font-size: .95rem; }
.button-hero { background: var(--brand); border-color: var(--brand); }
.button-hero-outline { background: rgba(10,8,6,.18); border-color: rgba(255,255,255,.92); color: var(--white); backdrop-filter: blur(5px); }
.button-hero-outline:hover { background: var(--white); border-color: var(--white); color: var(--brand-dark); }
.hero-scroll {
  position: absolute;
  z-index: 2;
  bottom: 22px;
  left: 50%;
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.75);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.section-inner, .footer-inner { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; }
.quick-facts { background: var(--cream); border-bottom: 1px solid var(--line); }
.quick-facts-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.quick-facts-grid > div {
  min-height: 148px;
  padding: 34px 30px;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 15px;
  align-content: center;
  border-left: 1px solid var(--line);
}
.quick-facts-grid > div:last-child { border-right: 1px solid var(--line); }
.quick-facts-grid > div > span { color: var(--brand); font-family: var(--serif); font-size: .86rem; font-weight: 700; }
.quick-facts-grid p { margin: 0; color: var(--muted); font-size: .8rem; line-height: 1.55; }
.quick-facts-grid strong { display: block; margin-bottom: 4px; color: var(--ink); font-family: var(--serif); font-size: 1.2rem; line-height: 1.3; }

.section { padding: 122px 0; }
.about { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(60px, 8vw, 110px); align-items: center; }
.about-copy h2, .section-heading h2, .contact-copy h2 { color: var(--ink); font-size: clamp(2.8rem, 5vw, 4.8rem); }
.about-lede { margin: 28px 0 16px; color: #342e28; font-family: var(--serif); font-size: 1.3rem; font-weight: 600; line-height: 1.5; }
.about-copy > p:not(.eyebrow):not(.about-lede) { color: var(--muted); }
.mobility-list {
  margin: 30px 0;
  padding: 24px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 26px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}
.mobility-list li { position: relative; padding-left: 24px; font-size: .92rem; font-weight: 750; }
.mobility-list li::before {
  content: "";
  position: absolute;
  top: .58em;
  left: 0;
  width: 10px;
  height: 10px;
  border: 2px solid var(--brand);
  border-radius: 50%;
}
.text-link { min-height: 48px; display: inline-flex; align-items: center; gap: 10px; color: var(--brand-dark); font-weight: 850; text-decoration-thickness: 1px; }
.about-photo { position: relative; margin: 0 0 0 12px; }
.about-photo::before {
  content: "";
  position: absolute;
  inset: 22px 22px -22px -22px;
  border: 1px solid #c9b9a7;
  border-radius: 8px;
}
.about-photo img { position: relative; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center; border-radius: 8px; box-shadow: var(--shadow); }
.about-photo figcaption {
  position: absolute;
  left: -34px;
  right: 34px;
  bottom: 28px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  border-left: 5px solid var(--brand);
  background: rgba(255,255,255,.95);
  box-shadow: 0 12px 34px rgba(45,31,20,.14);
}
.about-photo figcaption strong { color: var(--brand-dark); font-family: var(--serif); font-size: 1.08rem; }
.about-photo figcaption span { color: var(--muted); font-size: .82rem; }

.services { background: var(--cream); }
.section-heading { max-width: 780px; margin: 0 auto 60px; text-align: center; }
.section-heading > p:last-child { max-width: 620px; margin: 24px auto 0; color: var(--muted); }
.service-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid #cabfb1; }
.service-card {
  min-height: 152px;
  padding: 30px 34px 30px 0;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: start;
  border-bottom: 1px solid #cabfb1;
}
.service-card:nth-child(odd) { padding-right: 54px; border-right: 1px solid #cabfb1; }
.service-card:nth-child(even) { padding-left: 54px; }
.service-card > span { color: var(--brand); font-family: var(--serif); font-size: .82rem; font-weight: 700; }
.service-card h3 { margin: 0; color: var(--ink); font-family: var(--serif); font-size: 1.55rem; line-height: 1.25; }
.service-card p { margin: 8px 0 0; color: var(--muted); font-size: .9rem; }

.booking-band {
  position: relative;
  min-height: 650px;
  padding: 110px 24px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #2b2119 url("/assets/hero.jpeg") center 54% / cover no-repeat;
  color: var(--white);
}
.booking-background { position: absolute; inset: 0; background: rgba(29,17,9,.75); }
.booking-content { position: relative; z-index: 1; width: min(100%, 820px); text-align: center; }
.booking-band h2 { font-size: clamp(3.1rem, 6vw, 5.6rem); text-wrap: balance; }
.booking-band p:not(.eyebrow) { max-width: 610px; margin: 24px auto 0; color: rgba(255,255,255,.82); font-size: 1.1rem; }
.booking-actions { width: min(100%, 700px); margin: 38px auto 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.button-light { background: var(--white); border-color: var(--white); color: var(--brand-dark); }
.button-light:hover { background: var(--cream); border-color: var(--cream); color: var(--brand-dark); }
.button-light-outline { background: transparent; border-color: rgba(255,255,255,.9); color: var(--white); }
.button-light-outline:hover { background: var(--white); border-color: var(--white); color: var(--brand-dark); }

.contact { background: var(--paper); }
.contact-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(60px, 9vw, 125px); align-items: start; }
.contact-copy > p:not(.eyebrow) { max-width: 540px; margin: 26px 0 0; color: var(--muted); font-size: 1.06rem; }
.contact-actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; }
.contact-details { margin: 0; border-top: 1px solid var(--line); font-style: normal; }
.contact-details div { padding: 23px 0; display: grid; grid-template-columns: 115px 1fr; gap: 16px; border-bottom: 1px solid var(--line); }
.contact-details span { color: var(--brand); font-size: .74rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.contact-details a, .contact-details p { margin: 0; color: var(--ink); font-family: var(--serif); font-size: 1.18rem; font-weight: 700; line-height: 1.45; overflow-wrap: anywhere; text-decoration-thickness: 1px; }

.site-footer { padding: 76px 0 30px; background: #15120f; color: var(--white); }
.footer-top { padding-bottom: 52px; display: flex; align-items: end; justify-content: space-between; gap: 60px; }
.footer-brand { width: min(330px, 100%); filter: brightness(0) invert(1); }
.footer-summary { max-width: 420px; text-align: right; }
.footer-summary p { margin: 0 0 12px; color: rgba(255,255,255,.62); }
.footer-summary a { font-family: var(--serif); font-size: 1.35rem; font-weight: 700; }
.footer-bottom { padding-top: 26px; display: flex; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.54); font-size: .75rem; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 20px; }
.footer-links a:hover { color: var(--white); }
.mobile-cta { display: none; }

.header-contact { display: flex; justify-content: center; gap: 18px; font-size: .84rem; font-weight: 750; color: var(--brand-dark); }
.header-contact a { min-height: 44px; display: inline-flex; align-items: center; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px; padding-bottom: 50px; }
.footer-grid h2 { margin: 0 0 8px; font-family: var(--serif); font-size: 1.25rem; }
.footer-grid p { margin: 0; color: rgba(255,255,255,.65); }

.legal-main, .error-page > div { width: min(calc(100% - 48px), 840px); margin: 0 auto; }
.legal-main { padding: 90px 0 120px; }
.legal-main h1, .error-page h1 { color: var(--ink); font-size: clamp(3rem, 7vw, 5.6rem); }
.legal-main h2 { margin: 44px 0 10px; color: var(--brand-dark); font-family: var(--serif); font-size: 1.6rem; }
.legal-main p, .legal-main li { color: #4d4842; }
.legal-kicker { color: var(--brand) !important; font-size: .76rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.error-page { min-height: calc(100vh - 96px); padding: 70px 0; display: grid; align-items: center; background: var(--cream); }
.error-page p { max-width: 560px; color: var(--muted); font-size: 1.08rem; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .header-inner { grid-template-columns: minmax(250px, 1fr) auto; }
  .desktop-nav { display: none; }
  .hero { min-height: min(810px, calc(100svh - 96px)); }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 78px; }
  body { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }
  .site-header { position: sticky; }
  .header-inner { width: min(calc(100% - 30px), var(--max)); min-height: 78px; grid-template-columns: 1fr auto; gap: 14px; }
  .brand { width: min(245px, 72vw); }
  .header-actions, .header-contact, .site-header .header-inner > .button { display: none; }
  .menu-toggle {
    width: 50px;
    height: 50px;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
  }
  .menu-toggle span:not(.sr-only) { width: 23px; height: 2px; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-menu {
    padding: 16px 20px 24px;
    display: grid;
    gap: 2px;
    border-top: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 18px 34px rgba(45,31,20,.14);
  }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu > a:not(.button) { min-height: 50px; display: flex; align-items: center; border-bottom: 1px solid #ebe5dc; font-weight: 750; text-decoration: none; }
  .mobile-menu .button { margin-top: 12px; }

  .hero { min-height: calc(100svh - 78px); max-height: 860px; background-position: 56% center; }
  .hero-content { width: min(calc(100% - 32px), 680px); padding: 64px 0 96px; }
  .hero h1 { max-width: 680px; font-size: clamp(3rem, 9vw, 4.2rem); line-height: 1.02; }
  .hero-lede { margin-top: 24px; font-size: 1.05rem; line-height: 1.55; }
  .hero-actions { margin-top: 34px; grid-template-columns: 1fr; gap: 12px; }
  .button-hero, .button-hero-outline { min-height: 60px; width: 100%; }
  .hero-scroll { display: none; }

  .section-inner, .footer-inner { width: min(calc(100% - 36px), var(--max)); }
  .quick-facts-grid { grid-template-columns: 1fr; }
  .quick-facts-grid > div { min-height: 112px; padding: 24px 12px; border-left: 0; border-bottom: 1px solid var(--line); }
  .quick-facts-grid > div:last-child { border-right: 0; border-bottom: 0; }
  .section { padding: 84px 0; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 64px; }
  .about-copy h2, .section-heading h2, .contact-copy h2 { font-size: clamp(2.55rem, 11vw, 4.25rem); }
  .about-lede { font-size: 1.18rem; }
  .about-photo { margin: 0 14px 14px 0; }
  .about-photo::before { inset: 14px -14px -14px 14px; }
  .about-photo figcaption { left: 18px; right: -6px; bottom: 18px; }
  .mobility-list { grid-template-columns: 1fr; }
  .section-heading { margin-bottom: 44px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card,
  .service-card:nth-child(odd),
  .service-card:nth-child(even) { min-height: auto; padding: 26px 0; border-right: 0; }
  .service-card h3 { font-size: 1.42rem; }
  .booking-band { min-height: 600px; padding: 86px 18px; background-position: 56% center; }
  .booking-band h2 { font-size: clamp(3rem, 12vw, 4.5rem); }
  .booking-actions { grid-template-columns: 1fr; }
  .contact-details div { grid-template-columns: 90px 1fr; }
  .footer-top { align-items: start; flex-direction: column; gap: 28px; }
  .footer-summary { text-align: left; }
  .footer-bottom { flex-direction: column; }
  .footer-links { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  .mobile-cta {
    position: fixed;
    z-index: 120;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 70px;
    padding: 9px 10px calc(9px + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 8px;
    border-top: 1px solid rgba(44,31,20,.12);
    background: rgba(255,255,255,.97);
    box-shadow: 0 -8px 28px rgba(45,31,20,.14);
    backdrop-filter: blur(14px);
  }
  .mobile-cta a { min-height: 50px; display: grid; place-items: center; border: 2px solid var(--brand); border-radius: 5px; color: var(--brand-dark); font-size: .86rem; font-weight: 850; text-decoration: none; text-transform: uppercase; }
  .mobile-cta .mobile-cta-primary { background: var(--brand); color: var(--white); }
}

@media (max-width: 430px) {
  .brand { width: min(215px, 68vw); }
  .header-inner { min-height: 74px; }
  .hero { min-height: calc(100svh - 74px); }
  .hero-content { padding-top: 52px; }
  .hero h1 { font-size: clamp(2.75rem, 11vw, 3.35rem); }
  .hero-lede { font-size: 1rem; }
  .eyebrow { letter-spacing: .16em; }
  .button { padding-inline: 18px; }
  .about-photo figcaption { position: relative; left: 0; right: auto; bottom: auto; width: calc(100% - 18px); margin: -22px 0 0 auto; }
  .contact-details div { grid-template-columns: 1fr; gap: 6px; }
  .booking-band { min-height: 560px; }
  .footer-brand { width: min(280px, 84vw); }
}

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

@media (forced-colors: active) {
  .button, .mobile-cta a { border: 2px solid ButtonText; }
}
