:root {
  --red: #b91c1c;
  --red-dark: #991b1b;
  --stone: #1c1917;
  --muted: #57534e;
  --light: #fafaf9;
  --border: #e7e5e4;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--stone);
  background: var(--light);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}
.brand strong { display: block; font-size: 18px; line-height: 1.1; }
.brand small { display: block; margin-top: 3px; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; font-size: 11px; font-weight: 700; }
nav { display: flex; gap: 28px; font-weight: 800; color: #44403c; }
nav a:hover { color: var(--red); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--red); color: white; }
.btn-primary:hover { background: var(--red-dark); }
.btn-outline { border-color: rgba(255,255,255,.35); color: white; background: rgba(255,255,255,.1); }
.btn-outline:hover { background: white; color: var(--stone); }

.hero {
  position: relative;
  color: white;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(28,25,23,.98), rgba(28,25,23,.82), rgba(28,25,23,.3)),
    url("https://images.unsplash.com/photo-1600880292089-90a7e086ee0c?auto=format&fit=crop&w=1800&q=80") center/cover;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 56px;
  align-items: center;
  min-height: 720px;
  padding: 86px 0;
}
.eyebrow {
  display: inline-flex;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  font-weight: 800;
}
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(48px, 7vw, 86px); line-height: .95; margin-bottom: 24px; letter-spacing: -.06em; }
.lead { max-width: 690px; font-size: 20px; line-height: 1.7; color: #e7e5e4; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; color: #e7e5e4; font-weight: 800; }
.trust-row span::before { content: "✓"; color: #fca5a5; margin-right: 8px; }

.quote-card {
  background: white;
  color: var(--stone);
  padding: 32px;
  border-radius: 32px;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}
.section-kicker {
  color: var(--red);
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 950;
  margin-bottom: 10px;
}
.section-kicker.light { color: #fee2e2; }
.quote-card h2, .section h2, .athens-band h2, .final-cta h2 { font-size: clamp(34px, 4vw, 54px); line-height: 1; letter-spacing: -.04em; }
form { display: grid; gap: 14px; margin-top: 22px; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px 16px;
  font: inherit;
  outline: none;
}
textarea { min-height: 116px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--red); }
.fine-print { text-align: center; color: var(--muted); font-size: 13px; margin-top: 14px; margin-bottom: 0; }

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: 52px 0 22px;
}
.features article, .gallery-grid article {
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 14px 35px rgba(28,25,23,.06);
}
.features h3 { font-size: 22px; margin-bottom: 8px; }
.features p, .muted { color: var(--muted); line-height: 1.7; }

.section { padding: 82px 0; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}
.service-grid div {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  font-weight: 900;
}
.service-grid div::before { content: "✓"; color: var(--red); margin-right: 10px; }

.athens-band {
  background: var(--red);
  color: white;
  padding: 58px 0;
}
.band-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 50px;
  align-items: center;
}
.band-grid p:last-child { color: #fff1f2; font-size: 19px; line-height: 1.75; margin-bottom: 0; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 28px;
}
.gallery-grid article { padding: 0; overflow: hidden; }
.gallery-grid img { width: 100%; height: 250px; object-fit: cover; }
.gallery-grid h3 { padding: 20px 22px 24px; margin: 0; }

.final-cta {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 82px;
  padding: 44px;
  border-radius: 34px;
  background: var(--stone);
  color: white;
}
.final-cta p { color: #d6d3d1; line-height: 1.7; }
.final-cta strong { display: block; margin-top: 14px; }

footer {
  background: white;
  border-top: 1px solid var(--border);
  padding: 34px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}
.footer-inner p { color: var(--muted); font-weight: 700; margin: 0; }

@media (max-width: 860px) {
  nav, .desktop-btn { display: none; }
  .hero-grid, .features, .service-grid, .band-grid, .gallery-grid, .final-cta {
    grid-template-columns: 1fr;
  }
  .hero-grid { min-height: auto; padding: 60px 0; }
  .final-cta { padding: 30px; }
}

.hidden { display: none; }

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: #fafaf9;
}
.thank-you-card {
  margin-bottom: 0;
}
.thank-you-card h1 {
  font-size: clamp(48px, 7vw, 86px);
  line-height: .95;
  margin-bottom: 18px;
  letter-spacing: -.06em;
}
