:root {
  --black: #171517;
  --charcoal: #2b2b2b;
  --gold: #c7a15b;
  --bronze: #6d4c2f;
  --ivory: #f8f6f2;
  --stone: #e7e4df;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(23, 21, 23, 0.18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--black);
  background: var(--ivory);
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  background: rgba(248, 246, 242, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(23, 21, 23, 0.08);
}

.brand img {
  width: 135px;
  mix-blend-mode: multiply;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav a:hover, .footer a:hover { color: var(--gold); }

.nav-cta {
  border: 1px solid var(--black);
  padding: 12px 18px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
}

.menu-btn { display: none; }

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-media, .hero-media img, .hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.06);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(23,21,23,0.82), rgba(23,21,23,0.35), rgba(23,21,23,0.7)),
    radial-gradient(circle at 65% 45%, rgba(199,161,91,0.22), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1120px, 90vw);
  padding-top: 80px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 700;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.95;
  margin: 0;
}

h1 {
  font-size: clamp(4rem, 10vw, 9.5rem);
  max-width: 920px;
  letter-spacing: -0.06em;
}

h2 {
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  letter-spacing: -0.045em;
}

h3 { font-size: 2rem; }

.hero-text {
  max-width: 620px;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.84);
}

.hero-actions, .social-strip div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

.button.primary {
  background: var(--gold);
  color: var(--black);
}

.button.secondary {
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
}

.section {
  padding: clamp(70px, 9vw, 130px) clamp(20px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: end;
}

.intro p:last-child, .feature-copy p, .about p, .muted {
  color: rgba(23,21,23,0.66);
  line-height: 1.8;
  font-size: 1.05rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(23,21,23,0.1);
  border-bottom: 1px solid rgba(23,21,23,0.1);
}

.stats div {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid rgba(23,21,23,0.1);
}

.stats div:last-child { border-right: 0; }

.stats strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.1rem;
}

.stats span {
  color: var(--bronze);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 42px;
}

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

.service-grid article {
  background: var(--white);
  padding: 34px;
  min-height: 310px;
  box-shadow: var(--shadow);
}

.service-grid span {
  color: var(--gold);
  font-weight: 800;
}

.service-grid p {
  color: rgba(23,21,23,0.64);
  line-height: 1.75;
}

.feature {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 680px;
  background: var(--black);
  color: var(--white);
}

.feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-copy {
  padding: clamp(40px, 6vw, 86px);
  align-self: center;
}

.feature-copy p {
  color: rgba(255,255,255,0.72);
}

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

.gallery img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.gallery img:nth-child(1), .gallery img:nth-child(6) { grid-column: span 6; }
.gallery img:nth-child(2), .gallery img:nth-child(3), .gallery img:nth-child(4), .gallery img:nth-child(5) { grid-column: span 3; }

.about {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 70px;
  align-items: start;
  background: var(--white);
}

.about-card {
  background: var(--black);
  color: var(--white);
  padding: 38px;
  position: sticky;
  top: 120px;
}

.about-card ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.about-card li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}

.social-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 30px clamp(20px, 5vw, 72px);
  background: var(--gold);
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
}

.social-strip a {
  border-bottom: 1px solid var(--black);
}

.contact {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 70px;
}

.quote-form {
  display: grid;
  gap: 18px;
  background: var(--white);
  padding: clamp(24px, 4vw, 48px);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  font-size: 0.86rem;
}

input, select, textarea {
  width: 100%;
  border: 1px solid rgba(23,21,23,0.16);
  background: var(--ivory);
  padding: 14px 14px;
  font: inherit;
  color: var(--black);
}

textarea { resize: vertical; }

.footer {
  padding: 58px 24px;
  text-align: center;
  background: var(--black);
  color: var(--white);
}

.footer img {
  width: 160px;
  margin: 0 auto 20px;
  filter: invert(1);
  opacity: 0.95;
}

.footer div {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin: 22px 0;
}

.footer small {
  color: rgba(255,255,255,0.55);
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 120px 1fr;
  }
  .nav, .nav-cta { display: none; }
  .menu-btn {
    display: inline-flex;
    justify-self: end;
    border: 1px solid var(--black);
    background: transparent;
    padding: 10px 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
  .nav.is-open {
    display: grid;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ivory);
    padding: 24px;
    border-bottom: 1px solid rgba(23,21,23,0.1);
  }
  .intro, .feature, .about, .contact { grid-template-columns: 1fr; }
  .stats, .service-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery img, .gallery img:nth-child(n) { grid-column: span 6; }
  .feature img { min-height: 420px; }
}

@media (max-width: 560px) {
  .stats, .service-grid, .form-row { grid-template-columns: 1fr; }
  .gallery img, .gallery img:nth-child(n) { grid-column: span 12; height: 320px; }
  .social-strip { align-items: flex-start; flex-direction: column; }
  h1 { font-size: 4rem; }
}
