* {
  box-sizing: border-box;
}

:root {
  --black: #0b0b0c;
  --black-soft: #151516;
  --gold: #c7a349;
  --gold-light: #ead9a0;
  --cream: #f6f2e8;
  --white: #ffffff;
  --gray: #717171;
  --line: #ddd7c8;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--black);
  background: var(--cream);
  line-height: 1.65;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 11, 0.94);
  border-bottom: 1px solid rgba(199, 163, 73, 0.24);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: -1px;
}

.brand-mark.small {
  width: 42px;
  height: 42px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  color: var(--white);
  letter-spacing: 2px;
  font-size: 15px;
}

.brand-text small {
  color: var(--gold-light);
  letter-spacing: 3px;
  font-size: 8px;
  margin-top: 6px;
}

.main-nav {
  display: flex;
  gap: 34px;
}

.main-nav a {
  color: #e8e8e8;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.6px;
  transition: 0.2s ease;
}

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

.menu-button {
  display: none;
  color: var(--gold);
  border: 0;
  background: transparent;
  font-size: 28px;
}

.hero {
  min-height: 800px;
  position: relative;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 77% 30%, rgba(199, 163, 73, 0.18), transparent 28%),
    linear-gradient(115deg, #09090a 0%, #151516 62%, #080808 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -170px;
  top: 110px;
  border: 1px solid rgba(199, 163, 73, 0.17);
  border-radius: 50%;
}

.hero::after {
  content: "E";
  position: absolute;
  right: 5%;
  bottom: -190px;
  color: rgba(255,255,255,0.025);
  font-family: "Playfair Display", serif;
  font-size: 680px;
  line-height: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
}

.eyebrow,
.section-label {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 22px;
}

.hero h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(48px, 7vw, 86px);
  line-height: 1.08;
  margin: 0 0 28px;
  max-width: 920px;
}

.hero h1 span {
  color: var(--gold);
}

.hero p {
  color: #c9c9c9;
  max-width: 720px;
  font-size: 17px;
  margin-bottom: 38px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: 0.25s ease;
}

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

.button.primary:hover {
  background: var(--gold-light);
}

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

.button.secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-stat {
  position: absolute;
  right: 55px;
  bottom: 38px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #a7a7a7;
  font-size: 10px;
  letter-spacing: 4px;
}

.stat-line {
  width: 80px;
  height: 1px;
  background: var(--gold);
}

.section {
  padding: 115px 0;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}

h2 {
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.15;
  margin: 0;
}

.lead-copy {
  font-size: 17px;
  color: #454545;
}

.lead-copy p:first-child {
  margin-top: 0;
}

.services {
  background: #ece7da;
}

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

.section-heading > p {
  max-width: 430px;
  color: #555;
}

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

.service-card {
  position: relative;
  min-height: 350px;
  background: var(--white);
  border: 1px solid #dfd8c9;
  padding: 42px 34px;
  transition: 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}

.service-card .number {
  position: absolute;
  right: 25px;
  top: 22px;
  color: #c8c0af;
  font-size: 12px;
  letter-spacing: 2px;
}

.icon {
  color: var(--gold);
  font-size: 26px;
  margin-bottom: 70px;
}

.service-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  margin: 0 0 16px;
}

.service-card p {
  color: #616161;
  font-size: 14px;
}

.values {
  background: var(--black);
  padding: 90px 0;
}

.values-box {
  border: 1px solid rgba(199, 163, 73, 0.4);
  padding: 70px;
}

.section-label.light {
  color: var(--gold-light);
}

.values h2 {
  color: var(--white);
  max-width: 740px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 55px;
  padding-top: 42px;
}

.value-grid strong {
  color: var(--gold-light);
  font-family: "Playfair Display", serif;
  font-size: 22px;
}

.value-grid p {
  color: #aaa;
  font-size: 14px;
}

.contact {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: start;
}

.contact-intro {
  color: #555;
  max-width: 520px;
  font-size: 16px;
}

.contact-card {
  background: var(--white);
  border-top: 4px solid var(--gold);
  padding: 34px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.contact-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid #ece8df;
}

.contact-row span {
  color: #818181;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-row strong {
  font-size: 14px;
}

.contact-row a:hover {
  color: var(--gold);
}

.button.full {
  width: 100%;
  margin-top: 28px;
}

footer {
  background: #050505;
  color: #aaa;
  padding: 36px 0;
  font-size: 12px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.footer-brand strong,
.footer-brand small {
  display: block;
}

.footer-brand strong {
  color: var(--white);
  letter-spacing: 1.5px;
}

.footer-brand small {
  color: #777;
}

.footer-grid > a {
  text-align: right;
  color: var(--gold);
}

@media (max-width: 850px) {
  .menu-button {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 84px;
    left: 0;
    width: 100%;
    flex-direction: column;
    gap: 0;
    background: #101011;
    border-top: 1px solid rgba(199, 163, 73, 0.25);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 18px 20px;
    border-bottom: 1px solid #252525;
  }

  .hero {
    min-height: 720px;
  }

  .hero-stat {
    display: none;
  }

  .split,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .section-heading {
    display: block;
  }

  .service-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .values-box {
    padding: 42px 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-grid > a {
    text-align: center;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .brand-text strong {
    font-size: 12px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero p {
    font-size: 15px;
  }

  .section {
    padding: 80px 0;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}
