:root {
  --ivory: #f6f1e8;
  --sand: #e9ddcb;
  --stone: #d5c8b7;
  --terracotta: #b7755c;
  --espresso: #2e241f;
  --bronze: #8e6b4d;
  --line: #c9bba8;
  --max: 1140px;
  --space: clamp(1rem, 2.2vw, 2rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
  background: var(--ivory);
  color: var(--espresso);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(92%, var(--max));
  margin: 0 auto;
}

.narrow {
  width: min(92%, 760px);
}

.section {
  padding: clamp(3rem, 6vw, 6rem) 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--ivory) 94%, white 6%);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease;
}

.site-header.scrolled {
  box-shadow: 0 8px 24px rgba(46, 36, 31, 0.08);
}

.nav-wrap {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}

.brand span {
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--bronze);
  letter-spacing: 0.14em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.main-nav a {
  font-size: 0.94rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--espresso) 86%, var(--bronze) 14%);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--terracotta);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  padding: 0.55rem 0.8rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--espresso);
}

.btn {
  display: inline-block;
  border: 1px solid var(--bronze);
  padding: 0.82rem 1.25rem;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--ivory);
  background: var(--bronze);
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--terracotta);
}

.btn-small {
  padding: 0.62rem 0.95rem;
  font-size: 0.72rem;
}

.text-link {
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.15rem;
  font-size: 0.95rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--bronze);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.2;
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  font-size: clamp(2rem, 5.2vw, 4rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

.hero-copy p {
  max-width: 62ch;
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.hero-visual {
  border: 1px solid var(--line);
  padding: 1.4rem;
  background: #f0e6d8;
}

.hero-visual img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  filter: sepia(20%) saturate(70%);
}

.pricing-bands .band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem 2rem;
  align-items: end;
  border-top: 1px solid var(--line);
  padding: 1.2rem 0;
}

.pricing-bands .band:last-child {
  border-bottom: 1px solid var(--line);
}

.price {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.4rem;
  color: var(--terracotta);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.2rem, 3vw, 3rem);
  align-items: center;
}

.split img {
  width: 100%;
  border: 1px solid var(--line);
  min-height: 260px;
  object-fit: cover;
  background: var(--sand);
}

.timeline-list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.timeline-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 1rem;
}

.timeline-list span {
  min-width: 42px;
  color: var(--terracotta);
  font-family: "Georgia", "Times New Roman", serif;
}

.feature-lines {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
}

.feature-lines li {
  border-top: 1px solid var(--line);
  padding: 0.9rem 0;
}

.feature-lines li:last-child {
  border-bottom: 1px solid var(--line);
}

.strip {
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2rem 0;
}

blockquote {
  margin: 0;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
}

.page-main .page-hero {
  padding-bottom: 1rem;
}

.route-block {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.route-block.alt,
.region-story.alt {
  background: #f1e8db;
}

.route-grid p {
  margin: 0.4rem 0;
}

.editorial-stack article {
  border-top: 1px solid var(--line);
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}

.editorial-stack article:last-child {
  border-bottom: 1px solid var(--line);
}

.columns-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.columns-3 article {
  border: 1px solid var(--line);
  padding: 1.4rem;
  background: #fbf7f0;
}

.faq-list details {
  border-top: 1px solid var(--line);
  padding: 0.95rem 0;
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  cursor: pointer;
  font-family: "Georgia", "Times New Roman", serif;
}

.contact-layout .split {
  align-items: start;
}

.inquiry-form {
  border: 1px solid var(--line);
  padding: clamp(1rem, 3vw, 2rem);
  display: grid;
  gap: 0.6rem;
  background: #fbf7f0;
}

label {
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bronze);
}

input,
select,
textarea {
  border: 1px solid var(--line);
  background: #fffefb;
  padding: 0.72rem;
  font: inherit;
  color: var(--espresso);
}

.contact-card {
  border: 1px solid var(--line);
  padding: clamp(1rem, 3vw, 2rem);
  background: #efe3d3;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.2rem 0;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.legal-links a {
  border-bottom: 1px solid var(--line);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (max-width: 900px) {
  .hero-layout,
  .split,
  .columns-3 {
    grid-template-columns: 1fr;
  }

  .hero-visual img {
    height: 300px;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 80px;
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
    padding: 1rem 4%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-block;
  }
}
