:root {
  --bg: #f8f6f1;
  --surface: #ffffff;
  --surface-soft: #f1efe7;
  --text: #16303b;
  --muted: #586874;
  --accent: #ea6f3c;
  --accent-dark: #cc5727;
  --teal: #0f8f8f;
  --gold: #f3c76a;
  --line: rgba(22, 48, 59, 0.1);
  --shadow: 0 24px 60px rgba(24, 41, 49, 0.12);
  --radius: 26px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 246, 241, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(22, 48, 59, 0.06);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--accent), var(--teal));
}

.brand-text { letter-spacing: 0.14em; font-size: 14px; }

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
}

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

.nav-btn {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--text);
  color: white !important;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(14, 31, 39, 0.80) 0%, rgba(14, 31, 39, 0.56) 45%, rgba(14, 31, 39, 0.34) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.10), rgba(0,0,0,0.12));
}

.hero-content {
  position: relative;
  z-index: 1;
  color: white;
  padding: 88px 0;
  max-width: 760px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 800;
}

.eyebrow.accent { color: var(--accent); }
.eyebrow.light { color: rgba(255,255,255,0.76); }

h1 {
  font-size: clamp(40px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.hero-text,
.lead,
.focus-card p,
.info-card p,
.contact-card span,
.contact-form label,
.footer-wrap p {
  font-size: 17px;
}

.hero-text {
  color: rgba(255,255,255,0.88);
  max-width: 640px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 32px 0 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #f5a24d);
  color: white;
  box-shadow: 0 18px 35px rgba(234, 111, 60, 0.28);
}

.btn-secondary {
  color: white;
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.10);
}

.btn-light {
  background: white;
  color: var(--text);
}

.full { width: 100%; }

.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-pill-row span {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.14);
}

.section {
  padding: 104px 0;
}

.split-grid,
.band-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.lead {
  color: var(--muted);
}

.lead.center {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.info-card,
.focus-card,
.contact-form,
.contact-card {
  background: var(--surface);
  border: 1px solid rgba(22, 48, 59, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.info-card,
.focus-card {
  padding: 24px;
}

.image-stack {
  position: relative;
  min-height: 620px;
}

.stack-main {
  width: 82%;
  margin-left: auto;
  border-radius: 30px;
  height: 520px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.stack-float {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 54%;
  height: 280px;
  object-fit: cover;
  border-radius: 28px;
  border: 8px solid var(--bg);
  box-shadow: var(--shadow);
}

.section-heading {
  text-align: center;
  margin-bottom: 46px;
}

.focus {
  background: linear-gradient(180deg, rgba(15,143,143,0.05), transparent);
}

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

.focus-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  font-size: 26px;
  background: var(--surface-soft);
}

.visual-band {
  background: #fff;
}

.band-image {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.check-list {
  list-style: none;
  margin-top: 24px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--muted);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
  font-weight: 800;
}

.gallery {
  background: linear-gradient(180deg, transparent, rgba(15,143,143,0.05));
}

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

.gallery-item {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 280px;
}

.gallery-item.large {
  grid-column: span 2;
  min-height: 360px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-section {
  padding-top: 40px;
}

.cta-card {
  background: linear-gradient(135deg, var(--text), #214754);
  color: white;
  border-radius: 34px;
  padding: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: var(--shadow);
}

.contact-grid {
  align-items: start;
}

.contact-card {
  padding: 22px 24px;
  margin-top: 18px;
}

.contact-card span {
  display: block;
  color: var(--muted);
  margin-bottom: 6px;
}

.contact-card a,
.contact-card strong {
  font-size: 22px;
  font-weight: 700;
}

.contact-form {
  padding: 28px;
}

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

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(22, 48, 59, 0.14);
  border-radius: 18px;
  background: #fff;
  color: var(--text);
  padding: 15px 16px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(15,143,143,0.48);
  box-shadow: 0 0 0 4px rgba(15,143,143,0.09);
}

.form-message {
  margin-top: 14px;
  color: var(--teal);
  font-weight: 600;
  min-height: 24px;
}

.site-footer {
  border-top: 1px solid rgba(22, 48, 59, 0.08);
  padding: 24px 0 34px;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

@media (max-width: 1080px) {
  .focus-grid,
  .info-cards,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.large {
    grid-column: span 2;
  }
}

@media (max-width: 920px) {
  .split-grid,
  .band-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .image-stack {
    min-height: auto;
  }

  .stack-main {
    width: 100%;
    height: 420px;
  }

  .stack-float {
    position: static;
    width: 70%;
    margin-top: -70px;
  }

  .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-toggle { display: block; }

  .nav {
    position: absolute;
    right: 20px;
    top: 72px;
    width: min(320px, calc(100% - 40px));
    padding: 20px;
    border-radius: 22px;
    border: 1px solid rgba(22, 48, 59, 0.1);
    background: rgba(255,255,255,0.98);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .nav.active { display: flex; }
}

@media (max-width: 640px) {
  .section { padding: 82px 0; }
  .hero { min-height: 100svh; }
  .hero-content { padding: 74px 0; }
  .hero-text, .lead { font-size: 16px; }
  .focus-grid,
  .info-cards,
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: span 1; }
  .band-image { height: 360px; }
  .stack-main { height: 340px; }
  .stack-float { width: 82%; }
  .contact-card a, .contact-card strong { font-size: 18px; word-break: break-word; }
  .footer-wrap { flex-direction: column; align-items: flex-start; }
}
