@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --green: #17372d;
  --green-2: #224a3c;
  --gold: #d8b45a;
  --cream: #f4efe6;
  --paper: #fffdf8;
  --ink: #171916;
  --muted: #64675f;
  --line: rgba(23, 55, 45, .15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}
a { color: inherit; }
img { max-width: 100%; display: block; }

.site-header {
  height: 88px;
  padding: 0 clamp(20px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: rgba(255, 253, 248, .96);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
}

.brand {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-main {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(24px, 2vw, 31px);
  font-weight: 700;
  color: var(--green);
}
.brand-sub {
  margin-top: 7px;
  font-size: 11px;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
}
.nav a { text-decoration: none; }
.nav a:hover { color: var(--green-2); }
.nav-cta {
  padding: 11px 18px;
  border: 1px solid var(--green);
  border-radius: 100px;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 28px;
}

.hero {
  min-height: calc(100vh - 88px);
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #1a1a1a;
}
.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,18,14,.82) 0%, rgba(8,18,14,.56) 50%, rgba(8,18,14,.22) 100%),
    linear-gradient(0deg, rgba(8,18,14,.55), transparent 55%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(960px, 100%);
  padding: clamp(70px, 10vw, 150px) clamp(24px, 7vw, 110px);
  color: white;
}
.eyebrow, .section-kicker {
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
}
.hero h1 {
  margin: 12px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(64px, 10vw, 145px);
  line-height: .88;
  letter-spacing: -.045em;
}
.hero-tagline {
  margin: 24px 0 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(23px, 3.2vw, 44px);
}
.hero-copy {
  max-width: 650px;
  font-size: clamp(16px, 1.5vw, 20px);
  color: rgba(255,255,255,.88);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  padding: 14px 22px;
  border-radius: 100px;
  transition: .2s ease;
}
.button.primary {
  background: var(--gold);
  color: #171916;
}
.button.primary:hover { transform: translateY(-2px); filter: brightness(1.04); }
.button.secondary {
  color: white;
  border: 1px solid rgba(255,255,255,.7);
}
.button.full { width: 100%; }

.section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(80px, 10vw, 150px) 0;
}
.section.compact { padding: 65px 0; }

.intro {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  column-gap: clamp(40px, 8vw, 120px);
  align-items: start;
}
.intro .section-kicker { grid-column: 1; }
.intro h2 {
  grid-column: 1;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--green);
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.05;
  margin: 12px 0 0;
}
.intro .lead {
  grid-column: 2;
  grid-row: 1 / span 2;
  font-size: clamp(21px, 2.3vw, 31px);
  line-height: 1.45;
  margin: 0;
}
.intro > p:last-child {
  grid-column: 2;
  margin-top: 28px;
  color: var(--muted);
  font-size: 17px;
}

.features {
  background: var(--green);
  color: white;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.features article {
  padding: clamp(45px, 6vw, 85px);
  border-right: 1px solid rgba(255,255,255,.16);
}
.features article:last-child { border-right: 0; }
.feature-number {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: .13em;
}
.features h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 3vw, 40px);
  margin: 30px 0 15px;
}
.features p { color: rgba(255,255,255,.76); }

.quote-band {
  background: var(--cream);
  text-align: center;
  padding: clamp(80px, 10vw, 145px) 24px;
}
.quote-band p {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 1.05;
  max-width: 1000px;
  margin: 0 auto 20px;
  color: var(--green);
}
.quote-band span {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: start;
}
.contact h2, .social h2 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--green);
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.05;
  margin: 12px 0 20px;
}
.contact-card {
  border: 1px solid var(--line);
  padding: clamp(28px, 4vw, 48px);
  border-radius: 4px;
  background: white;
  box-shadow: 0 18px 50px rgba(23,55,45,.07);
}
.contact-card dl { margin: 0 0 28px; }
.contact-card dl > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.contact-card dt {
  font-weight: 700;
  color: var(--green);
}
.contact-card dd { margin: 0; }
.contact-card a:not(.button) { text-decoration-thickness: 1px; text-underline-offset: 3px; }

.social {
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.social h2 { margin: 0; font-size: 38px; }
.social-links { display: flex; gap: 14px; }
.social-links a {
  border: 1px solid var(--green);
  border-radius: 100px;
  padding: 11px 18px;
  text-decoration: none;
  font-weight: 700;
}

footer {
  background: #101f1a;
  color: white;
  padding: 50px clamp(24px, 6vw, 90px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
}
footer > div:first-child {
  display: flex;
  flex-direction: column;
}
footer strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 27px;
}
footer span { color: rgba(255,255,255,.6); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: white; }
.copyright {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.13);
  color: rgba(255,255,255,.55);
  font-size: 13px;
}

.legal {
  width: min(850px, calc(100% - 48px));
  margin: 0 auto;
  padding: 90px 0 120px;
}
.legal h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(48px, 6vw, 74px);
  color: var(--green);
}
.legal h2 {
  margin-top: 45px;
  color: var(--green);
}
.back-link {
  display: inline-block;
  margin-top: 30px;
  color: var(--green);
}

@media (max-width: 820px) {
  .site-header { height: 74px; }
  .brand-sub { display: none; }
  .menu-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    padding: 20px 24px 26px;
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 1px solid var(--line);
  }
  .nav.open { display: flex; }
  .hero { min-height: calc(100vh - 74px); }
  .hero > img { object-position: 54% center; }
  .intro, .contact { grid-template-columns: 1fr; }
  .intro .section-kicker, .intro h2, .intro .lead, .intro > p:last-child {
    grid-column: 1;
    grid-row: auto;
  }
  .intro .lead { margin-top: 38px; }
  .features { grid-template-columns: 1fr; }
  .features article { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .social { align-items: flex-start; flex-direction: column; gap: 30px; }
  footer { grid-template-columns: 1fr; }
  .copyright { grid-column: 1; }
}


/* Mobile Hero Fix – 11.08.2026 */
@media (max-width: 700px) {
  .hero {
    min-height: auto;
    overflow: hidden;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    padding-left: 28px;
    padding-right: 28px;
    box-sizing: border-box;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 14vw, 4.7rem);
    line-height: 0.94;
    letter-spacing: -0.04em;
    overflow-wrap: anywhere;
  }

  .hero h2,
  .hero .subtitle {
    font-size: clamp(1.45rem, 6vw, 2rem);
    line-height: 1.15;
    max-width: 100%;
  }

  .hero p {
    max-width: 100%;
  }

  .hero-actions,
  .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero-actions a,
  .hero-buttons a {
    max-width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 700px) {
  .hero h1 {
    font-size: 2.2rem !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    letter-spacing: -0.03em !important;
  }
}
