:root {
  --ink: #12302f;
  --muted: #5d706d;
  --paper: #f8f6ef;
  --white: #ffffff;
  --green: #2f6f5e;
  --green-dark: #17453d;
  --sun: #f2a541;
  --sand: #efe6d0;
  --line: rgba(18, 48, 47, 0.12);
  --shadow: 0 22px 70px rgba(18, 48, 47, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  background: rgba(248, 246, 239, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(18, 48, 47, 0.08);
}

.logo {
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 1.25rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.92rem;
  color: var(--muted);
}

.nav a:hover { color: var(--ink); }

.language-switch {
  display: flex;
  gap: 6px;
  padding: 4px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  cursor: pointer;
  border-radius: 999px;
  padding: 7px 10px;
}

.lang-btn.active {
  background: var(--green-dark);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 130px clamp(20px, 5vw, 64px) 72px;
  background:
    linear-gradient(120deg, rgba(18,48,47,0.78), rgba(18,48,47,0.18)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=2200&q=80") center/cover;
}

.hero-overlay {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(transparent, rgba(248,246,239,0.95));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 980px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--sun);
  font-size: 0.78rem;
  font-weight: 800;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 950px;
  font-size: clamp(2.8rem, 7vw, 6.7rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
  margin-bottom: 28px;
}

.hero-text {
  max-width: 720px;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
}
.primary { background: var(--sun); color: #2b2112; }
.secondary { background: rgba(255,255,255,0.18); color: var(--white); border: 1px solid rgba(255,255,255,0.36); }

.section { padding: clamp(72px, 9vw, 128px) clamp(20px, 5vw, 64px); }
.intro-grid, .two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.35fr);
  gap: clamp(36px, 7vw, 96px);
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.055em;
  margin-bottom: 22px;
}

.focus-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.focus-list article, .card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 12px 34px rgba(18, 48, 47, 0.06);
}

.focus-list span {
  display: block;
  color: var(--sun);
  font-weight: 800;
  margin-bottom: 28px;
}

.focus-list strong { font-size: 1.08rem; line-height: 1.35; }

.image-band {
  margin: 0 clamp(20px, 5vw, 64px);
  min-height: 460px;
  border-radius: 40px;
  overflow: hidden;
  display: flex;
  align-items: end;
  background:
    linear-gradient(180deg, rgba(18,48,47,0.05), rgba(18,48,47,0.76)),
    url("https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=2200&q=80") center/cover;
  box-shadow: var(--shadow);
}

.band-card {
  max-width: 760px;
  margin: 28px;
  padding: clamp(26px, 4vw, 44px);
  color: var(--white);
  border-radius: 30px;
  background: rgba(18,48,47,0.56);
  backdrop-filter: blur(12px);
}

.band-card p, .copy p, .contact-section p {
  font-size: 1.06rem;
  line-height: 1.75;
  color: var(--muted);
}
.band-card p { color: rgba(255,255,255,0.88); }
.copy p { margin-bottom: 18px; }

.section-heading { max-width: 780px; margin-bottom: 34px; }
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.card h3 { font-size: 1.35rem; letter-spacing: -0.03em; margin-bottom: 14px; }
.card p { color: var(--muted); line-height: 1.65; }
.card:hover { transform: translateY(-3px); transition: transform 160ms ease; }

.experience { background: var(--sand); }

.contact-section {
  margin: clamp(34px, 5vw, 64px);
  padding: clamp(44px, 8vw, 96px);
  border-radius: 44px;
  background: var(--green-dark);
  color: var(--white);
  background-image:
    radial-gradient(circle at 15% 20%, rgba(242,165,65,0.22), transparent 28%),
    radial-gradient(circle at 80% 0%, rgba(255,255,255,0.14), transparent 30%);
}
.contact-section p { color: rgba(255,255,255,0.78); max-width: 760px; }
.contact-link {
  display: inline-block;
  margin-top: 12px;
  font-size: clamp(1.5rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--sun);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 32px clamp(20px, 5vw, 64px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.site-footer p { margin: 0; }

@media (max-width: 900px) {
  .nav { display: none; }
  .intro-grid, .two-col, .cards { grid-template-columns: 1fr; }
  .focus-list { grid-template-columns: 1fr; }
  .hero { min-height: 84vh; }
}

@media (max-width: 560px) {
  .site-header { padding: 14px 18px; }
  .hero { padding: 110px 20px 56px; }
  .hero-actions .btn { width: 100%; }
  .image-band { margin-inline: 20px; border-radius: 28px; }
  .band-card { margin: 16px; }
  .contact-section { margin: 20px; border-radius: 30px; }
  .site-footer { flex-direction: column; }
}
