:root {
  --bg: #f7f4ef;
  --paper: #ffffff;
  --ink: #1e1e1c;
  --muted: #6b6258;
  --green: #3f5f4a;
  --green-dark: #284333;
  --brass: #b79b6c;
  --stone: #e1dad0;
  --error: #9c4a3e;
  --shadow: 0 18px 60px rgba(54, 48, 40, .12);
  --radius: 8px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(63, 95, 74, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(63, 95, 74, .025) 1px, transparent 1px);
  background-size: 34px 34px;
  z-index: -1;
}

a { color: inherit; }

img { max-width: 100%; }

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

h1 {
  max-width: 850px;
  font-size: clamp(3rem, 8vw, 7.2rem);
}

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

h3 {
  font-size: 1.45rem;
}

p {
  margin: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--ink);
  color: var(--paper);
  padding: .75rem 1rem;
  z-index: 10;
}

.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 76px;
  padding: 0 clamp(1rem, 4vw, 3rem);
  background: rgba(247, 244, 239, .92);
  border-bottom: 1px solid var(--stone);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  color: var(--muted);
  font-size: .94rem;
}

.site-nav a {
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus,
.site-nav a.active {
  color: var(--ink);
}

.lang-link {
  padding-left: 1rem;
  border-left: 1px solid var(--stone);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .78rem 1.15rem;
  border: 1px solid var(--green);
  border-radius: var(--radius);
  background: var(--green);
  color: white;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
}

.button:hover,
.button:focus {
  background: var(--green-dark);
}

.button.secondary {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .55);
}

.button.small {
  min-height: 38px;
  padding: .55rem .9rem;
  color: white;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  background: var(--paper);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 76px);
  padding: clamp(2rem, 7vw, 6rem);
  overflow: hidden;
  background: #1c241e;
  color: white;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 26, 21, .86) 0%, rgba(18, 26, 21, .64) 38%, rgba(18, 26, 21, .18) 72%),
    linear-gradient(0deg, rgba(18, 26, 21, .55), rgba(18, 26, 21, 0) 48%),
    url("../img/hero-entrance.png") center / cover no-repeat;
}

.hero-content {
  position: relative;
  align-self: end;
  max-width: 880px;
  padding-bottom: 5vh;
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--brass);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
  font-weight: 800;
}

.lead {
  max-width: 740px;
  margin-top: 1.4rem;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: currentColor;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2rem;
}

.trust-line {
  margin-top: 1.4rem;
  color: rgba(255, 255, 255, .78);
}

.section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.intro-grid,
.split,
.local-section,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.large-text {
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.card-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card,
.package-card,
.notice,
.cta-panel,
.contact-form,
.contact-aside,
.faq-list details {
  background: var(--paper);
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card,
.package-card,
.notice,
.cta-panel,
.contact-aside,
.faq-list details {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.card h3,
.package-card h3 {
  margin-bottom: .75rem;
}

.card p,
.package-card p,
.notice p,
.contact-aside p {
  color: var(--muted);
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  background: #eef1ec;
  color: var(--green);
  font-weight: 800;
}

.band {
  width: 100%;
  max-width: none;
  padding-inline: max(1rem, calc((100vw - 1180px) / 2));
  background: #ede8df;
  border-block: 1px solid var(--stone);
}

.journey {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.journey li {
  min-height: 120px;
  padding: 1rem;
  border-left: 2px solid var(--green);
  background: rgba(255, 255, 255, .55);
}

.journey span {
  display: block;
  margin-bottom: .8rem;
  color: var(--green);
  font-weight: 800;
}

.material-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--stone);
  background: var(--stone);
}

.material-panel div {
  min-height: 150px;
  padding: 1.25rem;
  background: linear-gradient(135deg, #fff, #e9e1d3);
}

.material-panel strong {
  display: block;
  color: var(--brass);
}

.material-panel span {
  display: block;
  margin-top: 3.5rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
}

.package-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.package-card.featured {
  border-color: var(--green);
}

.price-label {
  margin-bottom: 1rem;
  color: var(--green) !important;
  font-size: .85rem;
  font-weight: 800;
  text-transform: uppercase;
}

.package-card ul,
.check-list {
  display: grid;
  gap: .7rem;
  margin: 1.3rem 0;
  padding: 0;
  list-style: none;
}

.package-card li,
.check-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--muted);
}

.package-card li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.package-card a,
.text-link {
  margin-top: auto;
  color: var(--green);
  font-weight: 800;
}

.split-cta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.split-cta article {
  padding: clamp(1.5rem, 4vw, 3rem);
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
}

.local-section {
  width: 100%;
  max-width: none;
  padding-inline: max(1rem, calc((100vw - 1180px) / 2));
  background: var(--green-dark);
  color: white;
}

.local-section p {
  color: rgba(255, 255, 255, .78);
}

.cta-panel {
  color: var(--ink);
}

.cta-panel p {
  margin: 1rem 0 1.5rem;
}

.page-hero {
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.6rem);
}

.notice {
  max-width: 920px;
}

.notice h3 {
  margin-top: 2rem;
}

.process {
  display: grid;
  gap: 1rem;
  counter-reset: step;
}

.process article {
  display: grid;
  grid-template-columns: 72px minmax(0, 340px) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--stone);
}

.process h2 {
  font-size: clamp(2rem, 3vw, 3.25rem);
  overflow-wrap: anywhere;
  hyphens: auto;
}

.process p {
  max-width: 680px;
}

.process span {
  color: var(--brass);
  font-size: 2rem;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: .8rem;
  max-width: 900px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  margin-top: 1rem;
}

.material-photo {
  min-height: 440px;
  border-radius: var(--radius);
  background:
    linear-gradient(0deg, rgba(30, 30, 28, .18), rgba(30, 30, 28, 0)),
    url("../img/hero-entrance.png") center / cover no-repeat;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.contact-form label {
  display: grid;
  gap: .35rem;
  color: var(--ink);
  font-weight: 700;
}

.contact-form .full,
.contact-form button,
.form-message {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  padding: .75rem .85rem;
  background: #fbfaf7;
  color: var(--ink);
  font: inherit;
}

textarea { resize: vertical; }

input:focus,
select:focus,
textarea:focus,
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(183, 155, 108, .65);
  outline-offset: 2px;
}

.honeypot { display: none; }

.form-message {
  padding: .8rem 1rem;
  border-radius: var(--radius);
}

.form-message.error {
  background: #f4e6e2;
  color: var(--error);
}

.form-message.success {
  background: #e8f0e8;
  color: var(--green-dark);
}

.narrow {
  max-width: 820px;
}

.site-footer {
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 4vw, 3rem);
  background: var(--ink);
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 2rem;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, .72);
}

.site-footer nav {
  display: grid;
  gap: .6rem;
}

.footer-brand {
  margin-bottom: 1rem;
  color: white;
}

.footer-label {
  margin-bottom: .6rem;
  font-weight: 800;
}

@media (max-width: 1040px) {
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + .5rem);
    display: none;
    align-items: stretch;
    padding: 1rem;
    background: var(--paper);
    border: 1px solid var(--stone);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: grid; }
  .lang-link {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 860px) {
  .hero {
    min-height: 720px;
    padding: 2rem 1rem;
  }
  .hero-content {
    align-self: end;
    padding-bottom: 2rem;
  }
  .intro-grid,
  .split,
  .local-section,
  .contact-grid,
  .split-cta,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .card-grid.two,
  .card-grid.three,
  .card-grid.four,
  .journey {
    grid-template-columns: 1fr;
  }
  .process article {
    grid-template-columns: 1fr;
    gap: .5rem;
  }
  .contact-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .site-header {
    min-height: 68px;
  }
  .brand span:last-child {
    max-width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .actions,
  .button {
    width: 100%;
  }
  h1 {
    font-size: 3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
