* { box-sizing: border-box; }

:root {
  --bg: #090a0c;
  --panel: rgba(255, 255, 255, 0.065);
  --panel-strong: rgba(255, 255, 255, 0.11);
  --text: #f5f0e8;
  --muted: #b8b1a8;
  --steel: #b9c2c9;
  --ember: #c47a3c;
  --ember-light: #f0a766;
  --border: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(196, 122, 60, 0.22), transparent 34rem),
    radial-gradient(circle at top right, rgba(185, 194, 201, 0.13), transparent 30rem),
    linear-gradient(135deg, #090a0c 0%, #14171a 48%, #070708 100%);
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.page-shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.hero { min-height: 100vh; padding: 28px 0 72px; }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 88px;
}

.brand img { width: 210px; height: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-weight: 650;
}

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

.nav-cta {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 16px;
  background: var(--panel);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.78fr);
  gap: 56px;
  align-items: center;
}

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

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

h1 {
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
  margin-bottom: 28px;
  max-width: 860px;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.7;
  max-width: 700px;
  margin-bottom: 32px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  min-height: 50px;
  padding: 0 22px;
  font-weight: 850;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.primary {
  background: linear-gradient(135deg, var(--ember), var(--ember-light));
  color: #160c06;
  box-shadow: 0 16px 50px rgba(196, 122, 60, 0.24);
}

.secondary {
  border: 1px solid var(--border);
  background: var(--panel);
}

.redirect-note {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 18px;
}

.hero-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 16px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-card img { border-radius: 24px; width: 100%; }

.hero-card-caption {
  display: grid;
  gap: 4px;
  padding: 18px 8px 4px;
}

.hero-card-caption span { color: var(--muted); }

.section {
  border-top: 1px solid var(--border);
  padding: 86px 0;
}

.about {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}

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

.about p:last-child,
.final-cta p {
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.75;
}

.section-heading { max-width: 740px; margin-bottom: 28px; }

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

.gallery-card {
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--panel);
  padding: 14px;
}

.gallery-card img {
  border-radius: 20px;
  width: 100%;
  margin-bottom: 18px;
}

.gallery-card h3 {
  margin: 0 8px 8px;
  font-size: 1.35rem;
}

.gallery-card p {
  margin: 0 8px 8px;
  color: var(--muted);
  line-height: 1.55;
}

.final-cta {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.center { justify-content: center; }

footer {
  border-top: 1px solid var(--border);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0 44px;
  font-size: 0.94rem;
}

@media (max-width: 860px) {
  .nav { align-items: flex-start; margin-bottom: 58px; }
  .nav-links { display: none; }
  .hero-grid, .about, .gallery { grid-template-columns: 1fr; }
  h1 { font-size: clamp(3.2rem, 17vw, 5.6rem); }
  footer { flex-direction: column; }
}
