:root {
  --ivory: #f7f4ee;
  --paper: #fffdf8;
  --ink: #15201c;
  --muted: #64716d;
  --green: #0b3b2e;
  --green-soft: #e1ebe4;
  --copper: #b77a48;
  --line: rgba(21, 32, 28, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  align-items: center;
  background: rgba(255, 253, 248, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 18px clamp(20px, 5vw, 72px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
}

.brand-logo {
  display: block;
  height: 54px;
  max-width: min(260px, 60vw);
  width: auto;
}

nav {
  display: flex;
  gap: clamp(16px, 3vw, 32px);
}

.header-actions {
  align-items: center;
  display: flex;
  gap: clamp(16px, 3vw, 32px);
}

nav a {
  color: #31403b;
  font-size: 0.92rem;
  font-weight: 600;
}

.language-switcher {
  align-items: center;
  background: transparent;
  border: 0;
  color: #31403b;
  display: inline-flex;
  gap: 8px;
  min-height: 38px;
  padding: 0;
}

.language-switcher span {
  color: var(--copper);
  display: inline-flex;
}

.language-switcher svg {
  display: block;
  fill: none;
  height: 16px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 16px;
}

.language-switcher select {
  appearance: none;
  background: transparent;
  border: 0;
  color: #31403b;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1;
  min-height: 36px;
  outline: none;
  padding: 0 18px 0 0;
}

.language-switcher::after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--green);
  content: "";
  margin-left: -14px;
  pointer-events: none;
}

.language-switcher:focus-within {
  box-shadow: 0 0 0 3px rgba(183, 122, 72, 0.14);
}

.hero {
  background:
    linear-gradient(90deg, rgba(247, 244, 238, 0.98) 0%, rgba(247, 244, 238, 0.82) 42%, rgba(247, 244, 238, 0.18) 72%),
    url("verdanis-hero.png") right center / cover no-repeat;
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  min-height: 92vh;
  padding: 150px clamp(20px, 5vw, 72px) 54px;
}

.hero-content {
  align-self: center;
  max-width: 740px;
}

.eyebrow,
.section-kicker {
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.95;
  margin-bottom: 28px;
  max-width: 900px;
}

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

h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.hero-copy {
  color: #33413c;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.65;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button,
.contact-form button {
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
}

.primary,
.contact-form button {
  background: var(--green);
  color: white;
}

.secondary {
  background: rgba(255, 253, 248, 0.68);
  border-color: var(--line);
  color: var(--green);
}

.hero-panel {
  align-self: end;
  background: rgba(11, 59, 46, 0.92);
  color: white;
  display: grid;
  gap: 1px;
}

.hero-panel div {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding: 24px;
}

.hero-panel div:last-child {
  border-bottom: 0;
}

.hero-panel span {
  color: var(--copper);
  display: block;
  font-weight: 800;
  margin-bottom: 18px;
}

.hero-panel strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.hero-panel p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  margin-bottom: 0;
}

.section {
  padding: 92px clamp(20px, 5vw, 72px);
}

.two-column,
.method,
.contact {
  display: grid;
  gap: clamp(32px, 6vw, 80px);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
}

.two-column p,
.section-heading p,
.method-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.principles {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 56px;
}

.principles span {
  border-right: 1px solid var(--line);
  color: var(--green);
  font-weight: 800;
  padding: 24px 18px 0 0;
}

.principles span:last-child {
  border-right: 0;
}

.muted {
  background: var(--ivory);
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  margin-bottom: 38px;
}

.area-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
}

.area-card {
  background: var(--paper);
  border: 1px solid var(--line);
  min-height: 300px;
  padding: 28px;
}

.area-card p {
  color: var(--muted);
  line-height: 1.65;
}

.funds-section {
  background: var(--paper);
}

.fund-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}

.fund-card {
  background: var(--green);
  color: white;
  min-height: 260px;
  padding: 30px;
}

.fund-card span {
  color: #d9a36e;
  display: block;
  font-size: clamp(3.8rem, 8vw, 6.5rem);
  font-weight: 800;
  line-height: 0.9;
  margin-bottom: 24px;
}

.fund-card h3 {
  font-size: 1.45rem;
}

.fund-card p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  margin-bottom: 0;
}

.portfolio-strip {
  align-items: center;
  background: var(--green-soft);
  border-left: 5px solid var(--copper);
  color: var(--green);
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 1fr);
  margin-top: 16px;
  padding: 24px 28px;
}

.portfolio-strip strong {
  font-size: 1.05rem;
}

.portfolio-strip span {
  color: #3b4944;
  line-height: 1.55;
}

.method {
  background: var(--green);
  color: white;
}

.method .section-kicker {
  color: #d9a36e;
}

.method-copy p,
.timeline span {
  color: rgba(255, 255, 255, 0.72);
}

.timeline {
  counter-reset: step;
  display: grid;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.timeline li {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  counter-increment: step;
  display: grid;
  gap: 14px;
  grid-template-columns: 70px 1fr;
  padding: 28px 0;
}

.timeline li::before {
  color: #d9a36e;
  content: "0" counter(step);
  font-weight: 800;
}

.timeline strong,
.timeline span {
  grid-column: 2;
}

.timeline strong {
  font-size: 1.15rem;
}

.timeline span {
  line-height: 1.65;
}

.contact {
  background: var(--paper);
  padding: 92px clamp(20px, 5vw, 72px);
}

address {
  color: var(--green);
  display: grid;
  font-style: normal;
  font-weight: 800;
  gap: 8px;
  margin-top: 28px;
}

.contact-form {
  background: var(--ivory);
  border: 1px solid var(--line);
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 40px);
}

.contact-form label {
  color: #3b4944;
  display: grid;
  font-size: 0.9rem;
  font-weight: 800;
  gap: 8px;
}

.contact-form input,
.contact-form textarea {
  background: var(--paper);
  border: 1px solid rgba(21, 32, 28, 0.2);
  color: var(--ink);
  min-height: 48px;
  outline: none;
  padding: 13px 14px;
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(183, 122, 72, 0.16);
}

.form-note {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
  margin-bottom: 0;
}

footer {
  align-items: center;
  background: #101815;
  color: white;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 28px clamp(20px, 5vw, 72px);
}

footer p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
  line-height: 1.5;
  margin-bottom: 0;
  max-width: 620px;
}

.footer-content {
  align-items: center;
  display: flex;
  gap: 22px;
}

.social-link {
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 800;
  gap: 8px;
  white-space: nowrap;
}

.social-link svg {
  display: block;
  fill: currentColor;
  height: 18px;
  width: 18px;
}

.social-link:hover {
  color: white;
}

footer .brand-logo {
  height: 50px;
}

@media (max-width: 980px) {
  .hero,
  .two-column,
  .method,
  .contact,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(247, 244, 238, 0.98) 0%, rgba(247, 244, 238, 0.9) 45%, rgba(247, 244, 238, 0.5) 100%),
      url("verdanis-hero.png") center bottom / cover no-repeat;
  }

  .area-grid,
  .fund-grid,
  .principles {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    position: absolute;
  }

  nav {
    flex: 1;
    gap: 12px;
    justify-content: space-between;
  }

  nav a {
    font-size: 0.84rem;
  }

  .header-actions {
    align-items: center;
    flex-direction: row;
    gap: 12px;
    width: 100%;
  }

  .language-switcher {
    flex-shrink: 0;
    gap: 6px;
  }

  .language-switcher select {
    font-size: 0.8rem;
    max-width: 96px;
  }

  .brand-logo {
    height: 46px;
    max-width: 230px;
  }

  .hero {
    min-height: auto;
    padding-top: 170px;
  }

  .hero-actions,
  .footer-content,
  footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .contact-form button {
    width: 100%;
  }

  .area-grid,
  .fund-grid,
  .principles {
    grid-template-columns: 1fr;
  }

  .principles span {
    border-right: 0;
  }

  .timeline li {
    grid-template-columns: 42px 1fr;
  }
}
