:root {
  --bg: #f7f3ed;
  --surface: #fffdf9;
  --ink: #1f2e26;
  --muted: #4f5f56;
  --primary: #3a5a48;
  --primary-dark: #2a4336;
  --accent: #c49a6c;
  --accent-soft: #e8d5c0;
  --line: #d9cfc2;
  --focus: #2f6847;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(31, 46, 38, 0.08);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --max: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1.05rem;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-dark); }
a:hover { color: var(--accent); }
:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--primary);
  color: #fff;
  padding: .75rem 1rem;
  z-index: 9999;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 243, 237, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner, .shell, .footer-inner {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  color: var(--ink);
}
.logo-img {
  height: 2.75rem;
  width: auto;
  display: block;
}
.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a {
  text-decoration: none;
  font-weight: 500;
  padding: .35rem 0;
  border-bottom: 2px solid transparent;
}
.site-nav a[aria-current="page"],
.site-nav a:hover {
  border-bottom-color: var(--accent);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 2.5rem;
  align-items: center;
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}
.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.08;
  margin: 0 0 1rem;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 .75rem;
}
.lead { font-size: 1.15rem; color: var(--muted); max-width: 38rem; }
.hero-photo, .page-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .85rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; }
.btn-secondary {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary-dark);
}

.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.25rem 0 2.5rem;
}
.strip div {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.1rem;
}
.strip span {
  display: block;
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.strip strong { display: block; margin-top: .35rem; }

.section { padding: 3rem 0; }
.section-head {
  max-width: 42rem;
  margin-bottom: 2rem;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin: 0 0 .75rem;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow);
}
.card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 0 0 .65rem;
}
.card p { margin: 0; color: var(--muted); }

.prose { max-width: 46rem; }
.prose h1, .prose h2 {
  font-family: var(--font-display);
}
.prose p { margin: 0 0 1rem; }

.page-hero {
  padding: clamp(2.5rem, 5vw, 4rem) 0 1.5rem;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 .75rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2rem 0 3rem;
}
.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.form-field { margin-bottom: 1rem; }
.form-field label {
  display: block;
  font-weight: 600;
  margin-bottom: .35rem;
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: .75rem .85rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  background: #fff;
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-check {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  margin: 1rem 0;
}
.form-check input { margin-top: .25rem; }
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.alert {
  padding: .85rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
}
.alert-success {
  background: #e7f4ea;
  border: 1px solid #9bc9a6;
  color: #1d4d2c;
}
.alert-error {
  background: #fdeeee;
  border: 1px solid #e4a5a5;
  color: #6d1f1f;
}
.map-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--surface);
}
.map-card iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
}
.map-caption {
  padding: .75rem 1rem;
  margin: 0;
  font-size: .95rem;
  background: var(--surface);
}

.site-footer {
  margin-top: 3rem;
  background: var(--primary-dark);
  color: #eef3ef;
  padding: 2.5rem 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 1.5rem 2rem;
}
.footer-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 .35rem;
}
.footer-tagline, .footer-note, .footer-copy { color: #c8d5cd; }
.footer-contact address { font-style: normal; line-height: 1.7; }
.footer-contact a { color: #fff; }
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.footer-legal a { color: #fff; text-decoration: none; }
.footer-note, .footer-copy {
  grid-column: 1 / -1;
  margin: 0;
  font-size: .92rem;
}

.cookie-banner {
  position: fixed;
  inset: auto 1rem 1rem 1rem;
  max-width: 34rem;
  margin-left: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem 1.1rem;
  z-index: 200;
}
.cookie-banner:not([hidden]) { display: block; }
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .75rem;
}
.cookie-actions button,
.cookie-panel button {
  font: inherit;
  padding: .55rem .85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}
#cookie-accept, #cookie-save { background: var(--primary); color: #fff; border-color: var(--primary); }
.cookie-panel label {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: .45rem 0;
}

.not-found {
  min-height: 50vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 3rem 0;
}

.section-alt {
  background: var(--surface);
  border-block: 1px solid var(--line);
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.split-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 1rem;
}
.split-copy p { color: var(--muted); margin: 0 0 1rem; }
.split-visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 2.25rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin: 0 0 .5rem;
}
.cta-band p { margin: 0; color: #d8e4dc; max-width: 36rem; }
.cta-band .btn-primary {
  background: var(--accent);
  color: var(--ink);
  flex-shrink: 0;
}
.cta-band .btn-primary:hover { background: var(--accent-soft); color: var(--ink); }
.btn-outline {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary-dark);
}
.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.timeline-step {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  align-items: start;
}
.timeline-marker {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.1rem;
}
.timeline-body h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 .4rem;
}
.timeline-body p { margin: 0; color: var(--muted); }
.quote-block {
  padding: 2rem 2.25rem;
  border-left: 4px solid var(--accent);
  background: var(--surface);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow);
}
.quote-block p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--muted);
  line-height: 1.55;
}
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.value-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.value-item h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: .75rem 0 .5rem;
}
.value-item p { margin: 0; color: var(--muted); font-size: .98rem; }
.card-icon { font-size: 1.75rem; line-height: 1; }

@media (max-width: 960px) {
  .hero, .contact-grid, .cards, .strip, .footer-inner, .split, .values { grid-template-columns: 1fr; }
  .site-nav ul { justify-content: flex-end; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
