:root {
  --paper: #f6f1e7;
  --paper-dark: #e9e0d0;
  --ink: #1f2723;
  --muted: #5d675f;
  --forest: #26362f;
  --forest-light: #344b40;
  --copper: #a8643b;
  --gold: #c59b55;
  --white: #fffdf8;
  --line: rgba(31, 39, 35, 0.16);
  --shadow: 0 22px 55px rgba(26, 31, 28, 0.12);
  --radius: 1.25rem;
  --shell: min(1180px, calc(100% - 2rem));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
body, button, a { -webkit-font-smoothing: antialiased; }
a { color: inherit; }
img { max-width: 100%; }
button { font: inherit; }

h1, h2, h3, .brand strong {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  letter-spacing: -0.025em;
}
h1 { margin: 0 0 1.4rem; font-size: clamp(2.8rem, 7vw, 5.8rem); max-width: 12ch; }
h2 { margin: 0 0 1rem; font-size: clamp(2.1rem, 4vw, 3.7rem); }
h3 { margin: 0 0 .8rem; font-size: 1.55rem; }
p { margin: 0 0 1.1rem; }

.shell { width: var(--shell); margin-inline: auto; }
.narrow { max-width: 850px; }
.center { text-align: center; }
.section { padding: clamp(4.5rem, 8vw, 8rem) 0; }
.section-tinted { background: var(--paper-dark); }
.eyebrow {
  margin-bottom: .9rem;
  color: var(--copper);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.lead, .hero-lead { font-size: clamp(1.15rem, 2vw, 1.45rem); line-height: 1.5; }
.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;
}
.skip-link {
  position: fixed; top: .75rem; left: .75rem; z-index: 1000;
  transform: translateY(-180%); background: var(--white); padding: .75rem 1rem;
}
.skip-link:focus { transform: none; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: rgba(38,54,47,.96);
  color: var(--white);
  backdrop-filter: blur(14px);
}
.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; text-decoration: none; }
.brand-mark {
  width: 42px; height: 42px; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.45); border-radius: 50%;
  font-family: Georgia, serif; font-size: .86rem;
}
.brand strong { display: block; font-size: 1.25rem; }
.brand small { display: block; color: rgba(255,255,255,.68); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 1.35rem; }
.site-nav > a { text-decoration: none; font-size: .94rem; font-weight: 650; }
.site-nav > a:not(.button):hover { color: #e8c986; }
.nav-toggle { display: none; background: none; border: 0; padding: .5rem; }
.nav-toggle span:not(.sr-only) { display: block; width: 25px; height: 2px; margin: 5px 0; background: var(--white); }

.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: .75rem 1.2rem; border: 1px solid var(--copper);
  border-radius: 999px; background: var(--copper); color: var(--white);
  font-weight: 750; text-decoration: none; transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); background: #925432; }
.button-small { min-height: 42px; padding: .6rem 1rem; }
.button-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.button-ghost:hover { background: var(--ink); color: var(--white); }

.hero { position: relative; overflow: hidden; padding: clamp(4.5rem, 8vw, 8rem) 0; }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 75% 25%, rgba(197,155,85,.22), transparent 27%),
              linear-gradient(135deg, transparent 0 64%, rgba(38,54,47,.06) 64% 65%, transparent 65%);
}
.hero-pattern {
  position: absolute; width: 480px; height: 480px; right: -150px; top: -145px;
  border: 1px solid rgba(168,100,59,.22); border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(168,100,59,.06), 0 0 0 90px rgba(168,100,59,.035);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.2fr .72fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.hero-copy > p:not(.eyebrow) { max-width: 65ch; color: var(--muted); }
.hero-copy .hero-lead { color: var(--ink) !important; font-family: Georgia, serif; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 2rem 0 2.4rem; }
.facts { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem; list-style: none; margin: 0; padding: 0; }
.facts li { padding-top: 1rem; border-top: 1px solid var(--line); }
.facts strong, .facts span { display: block; }
.facts strong { font-size: .95rem; }
.facts span { color: var(--muted); font-size: .82rem; }
.hero-card { overflow: hidden; background: var(--forest); color: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); transform: rotate(1deg); }
.portrait-placeholder, .image-placeholder {
  display: grid; place-items: center; min-height: 360px;
  background: linear-gradient(145deg, #6a7b71, #26362f);
  color: rgba(255,255,255,.65); font-size: .75rem; letter-spacing: .16em; text-transform: uppercase;
}
.portrait-placeholder::before, .image-placeholder::before {
  content: ""; position: absolute; width: 46%; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.22); border-radius: 50%;
}
.portrait-placeholder, .image-placeholder { position: relative; }
.hero-card-copy { padding: 1.5rem 1.6rem 1.8rem; }
.hero-card-copy .eyebrow { color: #e6c987; }
.hero-card-copy h2 { font-size: 2rem; }
.hero-card-copy p:last-child { color: rgba(255,255,255,.7); margin-bottom: 0; }

.intro-section { border-top: 1px solid var(--line); }
.district-list { display: flex; flex-wrap: wrap; justify-content: center; gap: .7rem; margin-top: 2rem; }
.district-list span { padding: .55rem .9rem; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.35); font-weight: 700; }

.section-heading { display: grid; grid-template-columns: 1fr .65fr; align-items: end; gap: 3rem; margin-bottom: 2.5rem; }
.section-heading > p { color: var(--muted); }
.tour-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; }
.tour-card { position: relative; min-height: 285px; padding: 1.6rem; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,253,248,.58); }
.tour-card.featured { background: var(--forest); color: var(--white); }
.tour-card.featured p { color: rgba(255,255,255,.72); }
.tour-number { position: absolute; right: 1.35rem; top: 1.2rem; color: rgba(168,100,59,.55); font-family: Georgia, serif; font-size: 2.6rem; }
.featured .tour-number { color: rgba(255,255,255,.2); }
.tour-type { color: var(--copper); font-size: .74rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.tour-card h3 { max-width: 80%; }
.tour-card > p:not(.tour-type) { color: var(--muted); }
.tour-meta { position: absolute; bottom: 1.4rem; left: 1.6rem; font-size: .8rem; font-weight: 800; }

.seasonal-section { background: var(--forest); color: var(--white); }
.seasonal-grid { display: grid; grid-template-columns: .7fr 1.2fr; gap: clamp(2.5rem, 8vw, 7rem); }
.seasonal-grid > div:first-child p:last-child { color: rgba(255,255,255,.7); }
.season-list article { display: grid; grid-template-columns: 110px 1fr; gap: 1.2rem; padding: 1.1rem 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.season-list span { color: #e6c987; font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.season-list h3 { margin: 0; font-size: 1.35rem; }

.about-grid { display: grid; grid-template-columns: .9fr 1fr; gap: clamp(2rem, 7vw, 6rem); align-items: center; }
.image-placeholder.landscape { min-height: 520px; border-radius: var(--radius); background: linear-gradient(145deg, #87968c, #334a3e); box-shadow: var(--shadow); }
.profile-data { margin: 2rem 0 0; }
.profile-data > div { display: grid; grid-template-columns: 130px 1fr; gap: 1rem; padding: .8rem 0; border-top: 1px solid var(--line); }
.profile-data dt { font-weight: 800; }
.profile-data dd { margin: 0; color: var(--muted); }

.price-section { padding-top: 0; }
.price-card { display: grid; grid-template-columns: 1.2fr .65fr; gap: 3rem; align-items: center; padding: clamp(2rem, 5vw, 4rem); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.price-card > div:first-child p:last-child { color: var(--muted); }
.price-box { padding: 1.6rem; border-left: 1px solid var(--line); }
.price-box span, .price-box small, .price-box strong { display: block; }
.price-box span { font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.price-box strong { margin: .3rem 0; font-family: Georgia, serif; font-size: 3.1rem; }
.price-box small { margin-bottom: 1.2rem; color: var(--muted); }

.contact-section { background: var(--copper); color: var(--white); }
.contact-section .eyebrow { color: #ffe1b1; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.contact-actions { display: grid; gap: .8rem; }
.contact-link { display: block; padding: 1.25rem 1.4rem; border: 1px solid rgba(255,255,255,.35); border-radius: 1rem; text-decoration: none; background: rgba(255,255,255,.08); }
.contact-link:hover { background: rgba(255,255,255,.15); }
.contact-link span, .contact-link strong { display: block; }
.contact-link span { opacity: .75; font-size: .75rem; text-transform: uppercase; letter-spacing: .13em; }
.contact-link strong { font-size: 1.2rem; overflow-wrap: anywhere; }

.site-footer { padding: 2.5rem 0; background: #18201c; color: var(--white); }
.footer-inner { display: grid; grid-template-columns: 1fr auto; gap: 1.2rem 3rem; align-items: center; }
.footer-inner p { margin: .25rem 0 0; color: rgba(255,255,255,.58); font-size: .85rem; }
.footer-inner nav { display: flex; gap: 1.2rem; }
.footer-inner nav a { color: rgba(255,255,255,.8); }
.footer-inner small { color: rgba(255,255,255,.48); }

.legal-page { min-height: 100vh; }
.legal-content { max-width: 850px; padding: 4rem 0 7rem; }
.legal-content h1 { font-size: clamp(2.5rem, 7vw, 4.8rem); }
.back-link { display: inline-block; margin-bottom: 3rem; font-weight: 750; }
.legal-placeholder { padding: 2rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.notice { margin-top: 1.3rem; padding: 1rem 1.2rem; border-left: 4px solid var(--copper); background: rgba(168,100,59,.08); }

@media (max-width: 900px) {
  .hero-grid, .section-heading, .seasonal-grid, .about-grid, .price-card, .contact-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 560px; transform: none; }
  .price-box { border-left: 0; border-top: 1px solid var(--line); }
  .facts { grid-template-columns: 1fr; }
  .tour-grid { grid-template-columns: 1fr; }
  .tour-card { min-height: 260px; }
  .section-heading { gap: .5rem; }
}

@media (max-width: 760px) {
  .site-header { backdrop-filter: none; }
  .nav-toggle { display: block; }
  .site-nav {
    display: none; position: absolute; left: 1rem; right: 1rem; top: calc(100% + .5rem);
    flex-direction: column; align-items: stretch; gap: 0; padding: .7rem;
    border: 1px solid rgba(255,255,255,.12); border-radius: 1rem; background: var(--forest); box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav > a { padding: .8rem; }
  .site-nav .button { margin-top: .3rem; }
  .brand small { display: none; }
  .hero { padding-top: 3.5rem; }
  .hero-actions .button { width: 100%; }
  .season-list article { grid-template-columns: 1fr; gap: .25rem; }
  .profile-data > div { grid-template-columns: 1fr; gap: .2rem; }
  .footer-inner { grid-template-columns: 1fr; }
}

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