:root {
  --black: #0d0d0d;
  --soft-black: #161616;
  --ivory: #f4efe7;
  --white: #ffffff;
  --gray: #b9b9b9;
  --gold: #c5a46d;
  --border: rgba(255, 255, 255, 0.14);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6%;
  background: rgba(13, 13, 13, 0.55);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  letter-spacing: 0.18em;
}

.logo span {
  display: block;
  margin-top: 3px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
  transition: 0.3s ease;
}

.nav a:hover {
  color: var(--gold);
}

.nav-button {
  padding: 12px 18px;
  border: 1px solid var(--gold);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 6% 80px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=90")
      center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(197, 164, 109, 0.12), transparent 30%),
    linear-gradient(to top, rgba(13, 13, 13, 0.85), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.eyebrow {
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 850px;
  font-family: "Playfair Display", serif;
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero h1 span {
  display: block;
  color: var(--ivory);
}

.hero-text {
  max-width: 620px;
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: 0.35s ease;
}

.button-primary {
  background: var(--gold);
  color: var(--black);
}

.button-primary:hover {
  background: var(--ivory);
  transform: translateY(-3px);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.button-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.hero-stat {
  position: absolute;
  right: 6%;
  bottom: 60px;
  z-index: 2;
  padding-left: 20px;
  border-left: 1px solid var(--gold);
}

.hero-stat strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
}

.hero-stat span {
  color: var(--gray);
  font-size: 0.8rem;
}

.intro,
.services,
.process,
.cta {
  padding: 120px 6%;
}

.intro {
  background: var(--ivory);
  color: var(--black);
}

.section-label {
  margin-bottom: 45px;
  color: #706652;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}

.intro h2,
.section-heading h2,
.cta h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  font-weight: 500;
  line-height: 1.05;
}

.intro-grid p {
  color: #4b4b4b;
  font-size: 1.08rem;
}

.text-link {
  display: inline-block;
  margin-top: 26px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--black);
  font-weight: 600;
}

.services {
  background: var(--soft-black);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 60px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.service-card {
  min-height: 310px;
  padding: 44px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: 0.4s ease;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-5px);
}

.service-card span,
.process-grid span {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
}

.service-card h3,
.process-grid h3 {
  margin-top: 58px;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 500;
}

.service-card p,
.process-grid p {
  margin-top: 16px;
  color: var(--gray);
}

.process {
  background: var(--black);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.process-grid div {
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.cta {
  text-align: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.78)),
    url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=1800&q=90")
      center/cover no-repeat;
}

.cta h2 {
  max-width: 850px;
  margin: 0 auto 40px;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 30px;
  align-items: end;
  padding: 50px 6%;
  background: #080808;
  border-top: 1px solid var(--border);
  color: var(--gray);
  font-size: 0.85rem;
}

footer a:hover {
  color: var(--gold);
}

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 14vw, 6rem);
  }

  .hero-stat {
    display: none;
  }

  .intro-grid,
  .service-grid,
  .process-grid,
  footer {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    gap: 35px;
  }

  .service-card h3 {
    margin-top: 40px;
  }

  footer {
    align-items: start;
  }
}

@media (max-width: 600px) {
  .site-header {
    padding: 20px 5%;
  }

  .hero,
  .intro,
  .services,
  .process,
  .cta {
    padding-left: 5%;
    padding-right: 5%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .service-card {
    min-height: auto;
    padding: 34px 26px;
  }
}