:root {
  --paper: #f4efe7;
  --cream: #fff9ef;
  --ink: #17201d;
  --muted: #65706b;
  --line: rgba(23, 32, 29, 0.14);
  --green: #2f6b56;
  --wine: #8b3f4c;
  --sea: #26717a;
  --gold: #d5a63f;
  --shadow: 0 22px 70px rgba(23, 32, 29, 0.16);
}

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

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 20;
  transform: translateY(-150%);
  background: var(--ink);
  color: #fff;
  padding: .75rem 1rem;
  border-radius: 6px;
}
.skip-link:focus { transform: translateY(0); }

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: .85rem clamp(1rem, 4vw, 3rem);
  background: rgba(244, 239, 231, .9);
  border-bottom: 1px solid rgba(255,255,255,.55);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  min-width: 0;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 900;
}
.brand strong, .brand small { display: block; line-height: 1.1; }
.brand small { color: var(--muted); font-size: .78rem; margin-top: .18rem; }
.nav {
  display: flex;
  justify-content: center;
  gap: clamp(.8rem, 2vw, 1.7rem);
  font-size: .92rem;
}
.nav a { color: var(--muted); text-decoration: none; }
.nav a:hover { color: var(--ink); }
.lang-switch {
  display: flex;
  gap: .25rem;
  padding: .2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.58);
}
.lang-btn {
  min-width: 2.55rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  padding: .42rem .68rem;
  cursor: pointer;
}
.lang-btn.active { background: var(--ink); color: #fff; }

.hero {
  min-height: 94vh;
  display: grid;
  grid-template-columns: minmax(17rem, .55fr) minmax(0, .9fr) minmax(18rem, .38fr);
  align-items: end;
  gap: clamp(1rem, 3vw, 2rem);
  padding: clamp(6rem, 11vw, 9rem) clamp(1rem, 4vw, 4rem) 4rem;
}
.hero-image {
  min-height: 68vh;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 68vh;
  display: block;
  object-fit: cover;
}
.hero-content {
  align-self: center;
  padding: clamp(1rem, 3vw, 2.5rem);
}
.eyebrow {
  margin: 0 0 .85rem;
  color: var(--wine);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(3.4rem, 8.6vw, 7.4rem);
  line-height: .9;
  letter-spacing: 0;
}
.hero p:not(.eyebrow) {
  max-width: 42rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.5rem;
}
.btn {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  padding: .85rem 1.05rem;
  text-decoration: none;
  font-weight: 900;
}
.primary { background: var(--green); color: #fff; }
.secondary { border: 1px solid var(--line); background: #fff; color: var(--ink); }
.hero-stats {
  display: grid;
  gap: .8rem;
  align-self: end;
}
.hero-stats div {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: 0 12px 35px rgba(23,32,29,.08);
}
.hero-stats span, .contact-card span {
  display: block;
  color: var(--muted);
  font-size: .83rem;
}
.hero-stats strong, .contact-card strong {
  display: block;
  margin-top: .18rem;
  font-size: 1.08rem;
}

.audit-strip {
  background: var(--ink);
  color: rgba(255,255,255,.83);
  padding: 1rem clamp(1rem, 4vw, 4rem);
}
.audit-strip strong { color: var(--gold); }

.section {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.section-heading h2, .planner h2, .contact h2, .map-section h2, .sources h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}
.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.fact-grid article {
  min-height: 17rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
}
.fact-grid span {
  color: var(--gold);
  font-weight: 900;
}
.fact-grid h3 {
  margin: 1.3rem 0 .65rem;
  font-size: 1.35rem;
}
.fact-grid p, .contact p, .map-section p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(17rem, .75fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}
.photo-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.photo-card img {
  width: 100%;
  height: 37rem;
  object-fit: cover;
  display: block;
}
.planner {
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: var(--shadow);
}
.segments {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .3rem;
  margin: 1.2rem 0;
  padding: .25rem;
  border-radius: 8px;
  background: #e9dfcf;
}
.plan-btn {
  min-height: 2.7rem;
  border: 0;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
}
.plan-btn.active { background: var(--sea); color: #fff; font-weight: 900; }
.planner label {
  display: block;
  margin: .8rem 0 .35rem;
  color: var(--muted);
}
.planner input, .planner textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  padding: .78rem .85rem;
}
.planner-output {
  margin-top: 1rem;
  padding: .9rem;
  border-radius: 6px;
  background: #edf5f2;
  color: #174a3a;
  font-weight: 800;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(18rem, .78fr);
  gap: clamp(1.5rem, 5vw, 4rem);
}
.contact-grid { display: grid; gap: .75rem; }
.contact-card {
  min-width: 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  text-decoration: none;
}
.contact-card.route { background: var(--green); color: #fff; }
.contact-card.route span, .contact-card.route small { color: rgba(255,255,255,.78); }
.contact-card small {
  display: block;
  margin-top: .25rem;
  color: var(--muted);
}
.map-section {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(20rem, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
}
.map-section iframe {
  width: 100%;
  min-height: 27rem;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.sources {
  border-top: 1px solid var(--line);
}
.sources ul {
  display: grid;
  gap: .75rem;
  max-width: 54rem;
  margin: 1.3rem 0 0;
  padding: 0;
  list-style: none;
}
.sources li {
  padding: .9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,249,239,.7);
}
.sources a { color: var(--green); font-weight: 900; }
.sources span { display: block; color: var(--muted); }

.footer {
  padding: 2.5rem clamp(1rem, 4vw, 4rem) 6rem;
  background: var(--ink);
  color: rgba(255,255,255,.8);
}
.footer p { margin: .35rem 0; }
.mobile-quick {
  position: fixed;
  left: .8rem;
  right: .8rem;
  bottom: .8rem;
  z-index: 12;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .4rem;
  padding: .4rem;
  border-radius: 8px;
  background: rgba(23,32,29,.92);
  box-shadow: var(--shadow);
  transform: translateY(140%);
  transition: transform 180ms ease;
}
.mobile-quick a {
  display: grid;
  min-height: 2.8rem;
  place-items: center;
  border-radius: 6px;
  background: #fff;
  text-decoration: none;
  font-weight: 900;
}
.mobile-quick[data-visible="true"] { transform: translateY(0); }

@media (max-width: 980px) {
  .topbar { grid-template-columns: 1fr auto; }
  .nav { display: none; }
  .hero, .split, .contact, .map-section { grid-template-columns: 1fr; }
  .hero { padding-top: 6.8rem; }
  .hero-image, .hero-image img { min-height: 42vh; }
  .fact-grid { grid-template-columns: 1fr; }
  .fact-grid article { min-height: auto; }
  .mobile-quick { display: grid; }
}

@media (max-width: 560px) {
  .topbar { padding: .65rem .75rem; gap: .75rem; }
  .brand-mark { width: 2.25rem; height: 2.25rem; font-size: .86rem; }
  .brand small { display: none; }
  .lang-btn { min-width: 2.25rem; padding: .35rem .5rem; }
  .hero { padding: 6rem .75rem 2.5rem; }
  .hero-content { padding: .4rem 0; }
  .hero h1 { font-size: clamp(3rem, 14vw, 4.7rem); }
  .hero-actions .btn { flex: 1 1 100%; }
  .section { width: min(100% - 1.5rem, 1120px); }
  .section-heading h2, .planner h2, .contact h2, .map-section h2, .sources h2 {
    max-width: 11ch;
    font-size: clamp(2.15rem, 11vw, 3.2rem);
  }
  .segments { grid-template-columns: 1fr; }
  .photo-card img { height: 30rem; }
}

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

