:root {
  --forest: #33451f;
  --olive: #6f962f;
  --lime: #cdd453;
  --wine: #9f1733;
  --ink: #292c24;
  --paper: #faf9f1;
  --cream: #f0eedf;
  --line: rgba(51, 69, 31, 0.2);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 249, 241, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.nav-wrap {
  width: min(1180px, calc(100% - 3rem));
  min-height: 76px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
}
.wordmark {
  display: block;
  width: min(230px, 46vw);
  text-decoration: none;
  line-height: 0;
}
.wordmark img {
  display: block;
  width: 100%;
  height: auto;
}
.language-switch {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: .45rem;
  color: #8d8b7c;
}
.lang-button {
  appearance: none;
  border: 0;
  padding: .35rem .2rem;
  color: #75766c;
  background: transparent;
  font: 700 .84rem/1 var(--sans);
  letter-spacing: .1em;
  cursor: pointer;
}
.lang-button.is-active { color: var(--wine); }
.lang-button:focus-visible { outline: 2px solid var(--wine); outline-offset: 4px; }

.hero {
  min-height: 62vh;
  display: grid;
  place-items: center;
  padding: 5rem 1.5rem 4rem;
  overflow: hidden;
  background: linear-gradient(145deg, var(--paper), var(--cream));
}
.hero-inner {
  width: min(1120px, 100%);
  display: grid;
  justify-items: center;
}
.hero-logo {
  display: block;
  width: min(980px, 100%);
  height: auto;
}
.hero-line {
  width: min(560px, 72%);
  height: 1px;
  margin-top: 3.2rem;
  background: linear-gradient(90deg, transparent, var(--olive), transparent);
  position: relative;
}
.hero-line::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  left: calc(50% - 4px);
  top: -4px;
  border-radius: 50%;
  background: var(--wine);
}

.section {
  width: min(1120px, calc(100% - 3rem));
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 8rem) 0;
}
h2 {
  max-width: 13ch;
  margin: 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(2.45rem, 5vw, 5.2rem);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -.035em;
}
p { margin: 0 0 1.35rem; }
.lead {
  color: #3c432f;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.52;
}
.intro { border-bottom: 1px solid var(--line); }
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}
.intro .lead { margin-bottom: .4rem; }

.feature {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
}
.section-copy {
  grid-column: 2;
  width: min(100%, 760px);
}
.section-copy h2 {
  max-width: 15ch;
  margin-bottom: 2.2rem;
}
.section-copy .lead { margin-bottom: 2rem; }
.section-copy h3 {
  margin: 2.3rem 0 .8rem;
  color: var(--wine);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  font-weight: 400;
  line-height: 1.15;
}
.feature-accent {
  position: relative;
}
.feature-accent::before {
  content: "";
  position: absolute;
  right: calc((100vw - min(1120px, calc(100vw - 3rem))) / -2);
  top: 0;
  width: 38vw;
  height: 5px;
  background: var(--wine);
}
.phytotherapy {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.phytotherapy .section-copy {
  grid-column: 2;
}
.phytotherapy-image {
  grid-column: 1;
}
.consultation {
  grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.consultation .section-copy {
  grid-column: 1;
}
.consultation-image {
  grid-column: 2;
}
.section-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--cream);
  aspect-ratio: 4 / 3;
}
.section-image::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, .6);
  pointer-events: none;
}
.section-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.about {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.about h2 { color: var(--wine); }
.about-image {
  position: relative;
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  background: var(--cream);
}
.about-image::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, .55);
  pointer-events: none;
}
.about-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: 36% center;
}
.about-content {
  position: relative;
  padding: 2rem 0;
}
.about-content::before {
  content: "";
  display: block;
  width: 5rem;
  height: 4px;
  margin-bottom: 2rem;
  background: var(--lime);
}
.about-copy {
  padding-top: 2.4rem;
}
.about-quote {
  margin: 0 0 2.2rem;
  color: #596141;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.55;
}
.about-quote p { margin: 0; }

footer {
  min-height: 210px;
  padding: 4rem max(1.5rem, calc((100% - 1120px) / 2));
  display: grid;
  align-items: center;
  color: white;
  background: var(--forest);
}
.footer-contact {
  position: relative;
  width: 100%;
  padding-top: 2.25rem;
  display: grid;
  grid-template-columns: auto minmax(17rem, auto) minmax(24rem, 1fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 4.5rem);
  border-top: 1px solid rgba(255, 255, 255, .18);
  font-style: normal;
}
.footer-contact::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 5rem;
  height: 3px;
  background: var(--lime);
}
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: #f8f7ef;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  text-decoration: none;
  transition: color .2s ease;
}
.contact-link:hover,
.contact-link:focus-visible {
  color: #e8b4bd;
}
.contact-link:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 6px;
}
.contact-icon {
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(205, 212, 83, .55);
  border-radius: 50%;
  color: var(--lime);
}
.contact-icon svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
}
.opening-hours {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 1rem;
  color: #f8f7ef;
  font-family: var(--serif);
}
.hours-language {
  display: grid;
  gap: .55rem;
  padding-top: .25rem;
}
.hours-language p {
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  line-height: 1.35;
}
.hours-language time {
  white-space: nowrap;
  color: var(--lime);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
[hidden] { display: none !important; }

@media (max-width: 820px) {
  .nav-wrap {
    width: min(100% - 2rem, 1120px);
    min-height: 68px;
    grid-template-columns: 1fr auto;
    gap: 1rem;
  }
  .hero {
    min-height: 46vh;
    padding: 4rem 1.2rem 3rem;
  }
  .hero-line { margin-top: 2rem; }
  .section { width: min(100% - 2.2rem, 1120px); }
  .intro-grid,
  .about {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-image,
  .about-image img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
  .about-image img {
    object-position: 40% center;
  }
  .about-content {
    padding: 0;
  }
  .footer-contact {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }
  .contact-link {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .opening-hours {
    width: 100%;
  }
  .feature {
    grid-template-columns: 1fr;
    gap: 2.8rem;
  }
  .feature .section-copy {
    grid-column: 1;
    width: 100%;
  }
  .consultation {
    grid-template-columns: 1fr;
  }
  .phytotherapy {
    grid-template-columns: 1fr;
  }
  .phytotherapy-image,
  .consultation-image {
    grid-column: 1;
    width: 100%;
  }
  .about-copy { padding-top: 0; }
  footer {
    min-height: 180px;
    align-items: center;
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }
}

@media (max-width: 480px) {
  .wordmark { width: min(190px, 58vw); }
  .hero { min-height: 38vh; }
  h2 { font-size: clamp(2.25rem, 12vw, 3.4rem); }
  .section { padding: 4.3rem 0; }
  .lead { font-size: 1.2rem; }
  .hours-language p {
    grid-template-columns: 1fr;
    gap: .1rem;
  }
}

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