:root {
  --bg: #09090b;
  --bg-soft: #121215;
  --panel: rgba(255,255,255,0.05);
  --panel-strong: rgba(255,255,255,0.075);
  --line: rgba(255,255,255,0.12);
  --text: #f5efe7;
  --muted: rgba(245,239,231,0.72);
  --gold: #d9b06a;
  --gold-soft: #9a7443;
  --shadow: 0 24px 80px rgba(0,0,0,0.38);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background:
    radial-gradient(circle at top, rgba(116,79,37,0.18) 0%, transparent 32%),
    linear-gradient(180deg, #0a0a0c 0%, #111114 100%);
  color: var(--text);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin: 0; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(8,8,10,0.56);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}
nav {
  display: flex;
  gap: 26px;
}
nav a {
  color: var(--muted);
  font-size: 0.96rem;
}
nav a:hover, .nav-cta:hover { color: var(--text); }
.nav-cta {
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transform: scale(1.03);
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8,8,10,0.84) 0%, rgba(8,8,10,0.55) 42%, rgba(8,8,10,0.74) 100%),
    linear-gradient(180deg, rgba(8,8,10,0.14) 0%, rgba(8,8,10,0.72) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 0 80px;
}
.hero-copy {
  max-width: 690px;
}
.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
h1, h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.94;
}
h1 { font-size: clamp(3.2rem, 8vw, 6.8rem); max-width: 10ch; }
h2 { font-size: clamp(2.3rem, 5vw, 4.4rem); }
h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
}
.lead, .section-head p, .intro-grid p, .service-card p, .about-copy p, .process-card p, .contact-card p {
  color: var(--muted);
  line-height: 1.75;
}
.lead {
  margin-top: 22px;
  font-size: 1.08rem;
  max-width: 580px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 32px 0 42px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: #17120d;
  background: linear-gradient(135deg, #f0cf96 0%, #c99858 52%, #9b6d3e 100%);
  box-shadow: 0 12px 40px rgba(204,152,88,0.22);
}
.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero-stats div {
  min-width: 150px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
}
.hero-stats strong {
  display: block;
  margin-bottom: 7px;
  font-size: 1.28rem;
  color: #fff5e6;
}
.hero-stats span { color: var(--muted); font-size: 0.94rem; }

.section { padding: 108px 0; }
.center { text-align: center; margin-inline: auto; }
.narrow { max-width: 700px; }
.section-head { max-width: 760px; margin-bottom: 40px; }
.section-head p { margin-top: 14px; }

.intro-strip { padding-top: 72px; }
.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: end;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}
.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: #0f0f12;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  min-height: 520px;
}
.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}
.portfolio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.02) 30%, rgba(0,0,0,0.76) 100%);
}
.portfolio-card.wide {
  grid-column: 1 / -1;
  min-height: 430px;
}
.card-copy {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  z-index: 1;
}
.card-copy span {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card,
.process-card,
.contact-card,
.cta-box {
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: var(--shadow);
}
.service-card {
  padding: 28px;
  border-radius: 28px;
}
.service-number {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
}
.service-card h3 { margin-bottom: 12px; }

.about {
  background: linear-gradient(180deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0.015) 100%);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}
.about-copy p { margin-bottom: 26px; }
.bullet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.bullet-grid div {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #f0e5d6;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.process-card {
  padding: 28px;
  border-radius: 28px;
}
.process-card span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(217,176,106,0.12);
  color: var(--gold);
  font-weight: 700;
}
.process-card h3 { margin-bottom: 10px; }

.cta-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  padding: 42px;
  border-radius: 34px;
}
.contact-card {
  padding: 28px;
  border-radius: 26px;
  display: grid;
  gap: 14px;
  align-content: start;
}
.contact-card a:first-child,
.contact-card a:nth-child(2) {
  font-weight: 600;
}
.wide { width: 100%; margin-top: 6px; }

@media (max-width: 1024px) {
  .intro-grid,
  .about-grid,
  .cta-box,
  .services-grid,
  .process-grid,
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }
  .portfolio-card.wide,
  .cta-box > *:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  nav, .nav-cta { display: none; }
  .section { padding: 82px 0; }
  .hero { min-height: auto; }
  .hero-content { padding: 120px 0 60px; }
  .intro-grid,
  .about-grid,
  .cta-box,
  .services-grid,
  .process-grid,
  .portfolio-grid,
  .bullet-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-card,
  .portfolio-card.wide { min-height: 380px; }
  .card-copy { left: 22px; right: 22px; bottom: 22px; }
  .hero-stats div { min-width: calc(50% - 8px); }
  h1 { max-width: none; }
}

@media (max-width: 520px) {
  .container { width: min(1180px, calc(100% - 28px)); }
  .hero-stats { display: grid; grid-template-columns: 1fr; }
  .hero-stats div { min-width: 0; }
  .service-card, .process-card, .contact-card, .cta-box { border-radius: 24px; }
}
