* { box-sizing: border-box; }

:root {
  --gold: #cda545;
  --gold-dark: #ae862e;
  --black: #101010;
  --muted: #6e6e6e;
  --paper: #f7f6f2;
  --white: #fff;
  --line: rgba(16,16,16,.12);
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--black);
  font-family: "DM Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.page { min-height: 100vh; overflow: hidden; }

.nav {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  width: 180px;
  height: auto;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
}

.nav-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .03em;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--black);
}

.nav-link span { margin-left: 8px; }

.hero {
  width: min(1180px, calc(100% - 56px));
  min-height: 690px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 40px;
  position: relative;
}

.hero-copy { padding: 50px 0 90px; position: relative; z-index: 2; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 10px;
  font-weight: 600;
  margin: 0 0 25px;
  color: #505050;
}

.eyebrow span {
  width: 24px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

h1, h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: .98;
  margin: 0;
}

h1 { font-size: clamp(52px, 7vw, 94px); max-width: 760px; }
h1 em, h2 em { color: var(--gold-dark); font-style: normal; }

.intro {
  max-width: 530px;
  margin: 30px 0 38px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.intro strong { color: var(--black); font-weight: 600; }

.button, .contact-button {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  background: var(--black);
  color: var(--white);
  padding: 17px 21px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  transition: transform .2s ease, background .2s ease;
}

.button:hover, .contact-button:hover {
  transform: translateY(-2px);
  background: #242424;
}

.button span, .contact-button span { font-size: 18px; line-height: 0; }

.hero-mark {
  height: 430px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 14px;
  padding-bottom: 18px;
}

.hero-mark::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 3%;
  bottom: 0;
  height: 1px;
  background: var(--line);
}

.gold-block, .black-block {
  width: 78px;
  transform: skewY(0deg);
  position: relative;
}

.gold-block {
  height: 385px;
  background: var(--gold);
  clip-path: polygon(0 0, 100% 7%, 100% 100%, 0 100%);
}

.gold-block::before {
  content: "";
  position: absolute;
  left: -92px;
  bottom: 0;
  width: 76px;
  height: 300px;
  background: var(--gold);
  clip-path: polygon(0 0, 100% 12%, 100% 100%, 0 100%);
}

.gold-block::after {
  content: "";
  position: absolute;
  left: 92px;
  bottom: 0;
  width: 76px;
  height: 325px;
  background: var(--gold);
  clip-path: polygon(0 0, 100% 12%, 100% 100%, 0 100%);
}

.black-block {
  height: 300px;
  background: var(--black);
  clip-path: polygon(0 9%, 100% 0, 100% 100%, 0 100%);
  margin-right: 4px;
}

.black-block::before,
.black-block::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 68px;
  background: var(--black);
}

.black-block::before { left: -82px; height: 240px; }
.black-block::after { right: -82px; height: 265px; }

.line {
  position: absolute;
  bottom: -1px;
  left: 30%;
  width: 220px;
  height: 14px;
  background: var(--black);
  z-index: 3;
}

.services {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
  padding: 105px 0 120px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 80px;
}

h2 { font-size: clamp(42px, 5vw, 65px); }

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

.service-grid article {
  border-top: 2px solid var(--gold);
  padding-top: 18px;
}

.number {
  font-size: 11px;
  color: var(--gold-dark);
  letter-spacing: .12em;
  margin-bottom: 42px;
}

h3 {
  margin: 0 0 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 23px;
  font-weight: 500;
}

.service-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 13px;
}

.contact {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
  padding: 100px 0 115px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-card {
  align-self: end;
  max-width: 430px;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
}

.contact-card p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 25px;
  font-size: 14px;
}

.contact-details {
  display: grid;
  gap: 14px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: transform .2s ease, border-color .2s ease;
}

.contact-detail:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
}

.contact-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  background: var(--gold);
  color: var(--white);
  font-size: 19px;
}

.contact-detail small {
  display: block;
  color: #929292;
  margin: 0 0 3px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.contact-detail strong {
  display: block;
  color: var(--black);
  font-size: 14px;
  font-weight: 600;
}

.contact-note {
  display: block;
  color: #929292;
  margin-top: 16px;
  line-height: 1.5;
  font-size: 11px;
}

code { font-family: monospace; }

footer {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
  padding: 26px 0 32px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #858585;
  font-size: 10px;
  letter-spacing: .05em;
}

.footer-brand {
  color: var(--black);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .1em;
}

.footer-brand span {
  color: var(--gold-dark);
  font-size: 9px;
  margin-left: 7px;
  letter-spacing: .18em;
}

@media (max-width: 850px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 40px;
  }

  .hero-copy { padding: 30px 0 20px; }

  .hero-mark {
    height: 270px;
    transform: scale(.72);
    transform-origin: center top;
    margin-bottom: -55px;
  }

  .services, .contact {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .service-grid { grid-template-columns: 1fr; gap: 34px; }

  .number { margin-bottom: 18px; }

  .contact { padding-top: 75px; padding-bottom: 80px; }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .nav, .hero, .services, .contact, footer { width: min(100% - 36px, 1180px); }
  .brand img { width: 145px; height: auto; }
  .nav { padding: 18px 0; }
  .nav-link { font-size: 11px; }
  h1 { font-size: clamp(46px, 15vw, 67px); }
  .intro { font-size: 14px; }
  .contact-card { padding: 25px; }
}
