:root {
  color-scheme: dark;
  --bg: #0f0d0b;
  --bg-accent: #171411;
  --surface: rgba(28, 24, 20, 0.88);
  --surface-strong: rgba(20, 17, 14, 0.96);
  --text: #f5efe6;
  --muted: #b7ab9a;
  --line: rgba(212, 180, 113, 0.22);
  --line-strong: rgba(212, 180, 113, 0.42);
  --shadow: rgba(0, 0, 0, 0.42);
  --link-color: #e6c98b;
  --gold: #d4b471;
  --gold-soft: #f1dfb4;
  --hero-glow: rgba(212, 180, 113, 0.12);
  --gradient-hero: linear-gradient(135deg, #1a1510 0%, #241c14 45%, #12100d 100%);
  --gradient-card: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.8;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(212, 180, 113, 0.08), transparent 30%),
    linear-gradient(180deg, var(--bg-accent), var(--bg));
  min-height: 100vh;
  letter-spacing: 0.01em;
}

.page-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(212, 180, 113, 0.07), transparent 22%),
    radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.03), transparent 18%),
    radial-gradient(circle at 70% 80%, rgba(212, 180, 113, 0.05), transparent 24%);
  pointer-events: none;
  z-index: -1;
}

h1,
h2,
h3,
.button,
.eyebrow,
.project-tag,
.hero-stats strong {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0.04em;
}

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

.hero {
  max-width: 1120px;
  margin: 2rem auto 0;
  padding: 1rem;
}

.hero-inner {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 2rem 4rem;
  border-radius: 32px;
  border: 1px solid var(--line);
  background: var(--gradient-hero);
  box-shadow: 0 28px 70px var(--shadow);
  text-align: center;
}

.hero-inner::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.hero-inner::after {
  content: "";
  position: absolute;
  inset: auto 12% -110px;
  height: 180px;
  background: var(--hero-glow);
  filter: blur(80px);
}

.eyebrow {
  margin: 0 0 1.2rem;
  color: var(--gold-soft);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 5.4rem);
  line-height: 0.98;
  margin-bottom: 1rem;
}

.lead {
  max-width: 760px;
  margin: 0 auto 2rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, #f1dfb4, #d4b471);
  color: #1a1612;
  box-shadow: 0 14px 30px rgba(212, 180, 113, 0.18);
}

.button-secondary {
  color: var(--text);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.02);
}

.hero-stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 820px;
  margin: 0 auto;
  padding: 0;
}

.hero-stats li {
  padding: 1.1rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(212, 180, 113, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.hero-stats strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--gold-soft);
  font-size: 1rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.88rem;
}

main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 1.8rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 20px 45px var(--shadow);
  backdrop-filter: blur(10px);
}

.card-highlight {
  background:
    linear-gradient(180deg, rgba(212, 180, 113, 0.06), rgba(255, 255, 255, 0.01)),
    var(--surface);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.section-heading p,
.card p {
  color: var(--muted);
}

.section-heading h2 {
  margin-bottom: 0.35rem;
  font-size: 1.55rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.chips span {
  padding: 0.72rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.luxury-card {
  min-height: 240px;
  padding: 1.5rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.luxury-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 55%);
  pointer-events: none;
}

.luxury-gold {
  background: linear-gradient(135deg, #2b241b, #17120d);
}

.luxury-charcoal {
  background: linear-gradient(135deg, #1d1a18, #11100f);
}

.luxury-navy {
  background: linear-gradient(135deg, #1b2230, #11151d);
}

.project-tag {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.project-card h3 {
  margin-bottom: 0.8rem;
}

.project-card p {
  color: rgba(245, 239, 230, 0.8);
}

.contact-card {
  text-align: center;
  background: var(--surface-strong);
}

a {
  color: var(--link-color);
}

a:hover {
  color: var(--gold-soft);
}

@media (max-width: 720px) {
  .hero-inner {
    padding: 4rem 1.2rem 3rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: flex-start;
  }
}
