:root {
  --ivory: #f8f3ed;
  --sand: #e7ddd1;
  --stone: #d7c8ba;
  --earth: #645246;
  --charcoal: #2e2824;
  --olive: #6e7764;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(32, 24, 18, 0.10);
  --radius: 24px;
  --max-width: 1440px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--charcoal);
  background: #fbf8f4;
  line-height: 1.65;
}

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

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

.container {
  width: min(calc(100% - 80px), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(248, 243, 237, 0.86);
  border-bottom: 1px solid rgba(100, 82, 70, 0.08);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.95rem;
}

.site-nav a {
  position: relative;
  color: rgba(46, 40, 36, 0.88);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: currentColor;
  transition: transform 0.22s ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.nowrap {
  white-space: nowrap;
}
/* HERO */

.hero {
  position: relative;
}

.hero-image {
  position: relative;
  min-height: 86vh;
  background-image: url("assets/header.webp");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(32, 30, 24, 0.28);
}

.hero-claim {
  position: relative;
  z-index: 2;
  min-height: 86vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 80px 0;
}

.hero-claim h1 {
  margin: 0;
  max-width: 760px;
  color: rgba(255, 248, 241, 0.94);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 4.2vw, 4rem);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.hero-text-band {
  background: #5f6051;
  padding: 110px 0;
}

.hero-text-inner {
  max-width: 760px;
  margin: 0 auto;
}

.hero-text-inner p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.1rem;
  line-height: 1.75;
}

.hero-text-inner p:last-child {
  margin-bottom: 0;
}

/* GENERAL TYPO */

.eyebrow,
.section-kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.light {
  color: rgba(255, 255, 255, 0.86);
}

.feature-copy h2,
.about-intro h2,
.legal-wrap h1 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.05;
  font-weight: 600;
}

/* FEATURE SECTIONS */

.feature-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: #f7f3ee;
}

.alt {
  background: transparent;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-grid.reverse {
  grid-template-columns: 1fr 1.05fr;
}

.feature-image-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-copy h2 {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  margin: 0 0 20px;
}

.feature-copy p {
  font-size: 1.05rem;
  margin: 0;
}

.botanical {
  position: absolute;
  pointer-events: none;
  user-select: none;
}

.botanical-urwissen {
  right: 5%;
  top: 70%;
  transform: translateY(-10%);
  width: 150px;
  opacity: 0.65;
}

.botanical-herstellung {
  left: 5%;
  top: 70%;
  width: 150px;
  opacity: 0.65;
}

.botanical-gesund {
  right: 5%;
  top: 70%;
  transform: translateY(-10%);
  width: 80px;
  opacity: 0.65;
}

/* ABOUT */

.about {
  background: #5b5c4f;
  padding: 110px 0 120px;
}

.about-shell {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.about-intro {
  margin-bottom: 42px;
}

.about-intro h2 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5vw, 4.6rem);
  line-height: 1.05;
  font-weight: 500;
  color: rgba(255, 248, 241, 0.96);
}

.about-intro p {
  margin: 0;
  font-size: 1rem;
  color: rgba(255, 248, 241, 0.88);
}

.about-profile-wrap {
  max-width: 420px;
  margin: 0 auto;
}

.about-portrait {
  width: 200px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 40px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-accordion {
  border-top: 1px solid rgba(255, 248, 241, 0.72);
  border-bottom: 1px solid rgba(255, 248, 241, 0.72);
}

.about-accordion-toggle {
  width: 100%;
  padding: 16px 2px;
  border: 0;
  background: transparent;
  color: rgba(255, 248, 241, 0.96);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  font: inherit;
  font-size: 1rem;
  text-align: left;
}

.accordion-chevron {
  position: relative;
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
}

.accordion-chevron::before,
.accordion-chevron::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 1.5px;
  background: rgba(255, 248, 241, 0.92);
  transition: transform 0.28s ease;
}

.accordion-chevron::before {
  left: 0;
  transform: translateY(-50%) rotate(45deg);
}

.accordion-chevron::after {
  right: 0;
  transform: translateY(-50%) rotate(-45deg);
}

.about-accordion.is-open .accordion-chevron::before {
  transform: translateY(-50%) rotate(-45deg);
}

.about-accordion.is-open .accordion-chevron::after {
  transform: translateY(-50%) rotate(45deg);
}

.about-accordion-panel {
  height: 0;
  overflow: hidden;
  transition: height 0.42s ease;
}

.about-accordion.is-open .about-accordion-panel {
  height: auto;
}

.about-accordion-content {
  padding: 0 2px 18px;
  text-align: left;
}

.about-accordion-content p {
  margin: 0 0 18px;
  color: rgba(255, 248, 241, 0.92);
  font-size: 0.98rem;
  line-height: 1.75;
}

.about-accordion-content p:last-child {
  margin-bottom: 0;
}

/* CONTACT */

.contact-section {
  margin: 0;
}

.contact-hero {
  position: relative;
  height: 75vh;
  background-image: url("assets/footer.webp");
  background-size: cover;
  background-position: center 27%;
  overflow: hidden;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 24, 20, 0.18);
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 0 70px;
  transform: translateY(30px);
}

.contact-hero-content h2 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 1.05;
  font-weight: 500;
  color: #4f4338;
}

.contact-hero-content p {
  margin: 0;
  font-size: 1.2rem;
  color: #5c4f43;
}

.contact-form-band {
  background: #5b5c4f;
  padding: 90px 0 100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: start;
}

.contact-copy {
  padding-top: 28px;
}

.contact-copy h3 {
  margin: 0 0 24px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.7rem, 4vw, 3.5rem);
  line-height: 1.05;
  font-weight: 500;
  color: rgba(255, 248, 241, 0.96);
}

.contact-copy p {
  margin: 0;
  max-width: 320px;
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(255, 248, 241, 0.9);
}

.contact-form {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.98rem;
  color: rgba(255, 248, 241, 0.94);
}

.form-group label span {
  color: rgba(255, 248, 241, 0.72);
  font-size: 0.88rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 248, 241, 0.55);
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 248, 241, 0.96);
  padding: 14px 18px;
  font: inherit;
  outline: none;
  transition: border-color 0.22s ease, background-color 0.22s ease;
}

.contact-form textarea {
  border-radius: 24px;
  min-height: 130px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 248, 241, 0.9);
  background: rgba(255, 255, 255, 0.03);
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  padding: 14px 28px;
  border: 0;
  border-radius: 999px;
  background: #c8ae93;
  color: #4b3f35;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.contact-submit:hover {
  transform: translateY(-1px);
  opacity: 0.96;
}

.form-status-message {
  margin-bottom: 20px;
  font-size: 0.98rem;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.25s ease;
}

.form-status-message.success,
.form-status-message.error {
  opacity: 1;
  transform: translateY(0);
}

.form-status-message.success {
  color: rgba(255, 248, 241, 0.95);
}

.form-status-message.error {
  color: #f3c7c7;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* FOOTER */

/* FOOTER */

.site-footer {
  background: #f3ede4;
  padding: 58px 0 42px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 38px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #2f2a26;
}

.footer-brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.footer-info {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.footer-info-block h4 {
  margin: 0 0 12px;
  font-size: 1rem;
  font-weight: 600;
  color: #2f2a26;
}

.footer-info-block p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(47, 42, 38, 0.88);
}

.footer-info-block a {
  color: inherit;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 8px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.96rem;
  color: rgba(47, 42, 38, 0.88);
}

.footer-links {
  display: flex;
  gap: 34px;
}

.footer-links a {
  font-size: 0.96rem;
  color: rgba(47, 42, 38, 0.88);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* LEGAL */

.legal-page {
  padding: 110px 0 80px;
}

.legal-wrap {
  max-width: 860px;
  background: #fff;
  border-radius: 28px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.legal-wrap h1 {
  margin-top: 0;
  font-size: 3rem;
}

.legal-wrap h2 {
  margin-top: 26px;
  font-size: 1.15rem;
}

.legal-wrap p {
  margin: 0 0 14px;
}

/* RESPONSIVE */

@media (max-width: 960px) {
  .site-nav {
    display: none;
  }

  .hero-image,
  .hero-claim {
    min-height: 68vh;
  }

  .hero-claim {
    align-items: flex-end;
    padding: 80px 0 70px;
  }

  .hero-claim h1 {
    max-width: 520px;
    font-size: clamp(2.6rem, 8vw, 4.2rem);
    line-height: 1.02;
  }

  .hero-text-band {
    padding: 72px 0;
  }

  .hero-text-inner p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .feature-grid,
  .feature-grid.reverse {
    grid-template-columns: 1fr;
  }

  .feature-section {
    padding: 82px 0;
  }

  .about {
    padding: 90px 0;
  }

  .about-intro {
    margin-bottom: 50px;
  }

  .about-profile-wrap {
    max-width: 100%;
  }

  .botanical {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .contact-copy {
    padding-top: 0;
  }

  .contact-copy p {
    max-width: none;
  }

  .contact-hero {
    height: 44vh;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .hero-image,
  .hero-claim {
    min-height: 58vh;
  }

  .hero-claim {
    padding: 70px 0 55px;
  }

  .hero-claim h1 {
    max-width: 100%;
  }

  .hero-text-band {
    padding: 56px 0;
  }

  .feature-copy p,
  .about-intro p,
  .about-accordion-content p {
    font-size: 0.98rem;
  }

  .about {
    padding: 84px 0 92px;
  }

  .about-intro h2 {
    font-size: clamp(2.4rem, 10vw, 3.3rem);
  }

  .about-portrait {
    width: 160px;
    margin-bottom: 32px;
  }

  .about-accordion-content p {
    font-size: 0.95rem;
  }

  .contact-hero-content {
    padding: 70px 0 54px;
  }

  .contact-form-band {
    padding: 68px 0 76px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-hero-content h2 {
    font-size: clamp(2.4rem, 10vw, 3.4rem);
  }

  .contact-hero-content p {
    font-size: 1.05rem;
  }

  .brand span {
    font-size: 1.2rem;
  }

  .legal-wrap {
    padding: 28px 22px;
  }

@media (max-width: 960px) {
  .footer-top {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 28px;
  }

  .footer-info {
    gap: 42px;
    flex-wrap: wrap;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .footer-brand {
    font-size: 1.45rem;
  }

  .footer-info {
    flex-direction: column;
    gap: 24px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}
}