:root {
  --black: #0d0d0d;
  --soft-black: #151515;
  --white: #fff;
  --cream: #f7f3ec;
  --muted: #6f6a61;
  --line: #e5ded2;
  --gold: #b98a43;
  --gold2: #d3ad69;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.14);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Aptos,
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;
  color: var(--black);
  background: var(--cream);
  line-height: 1.6;
  letter-spacing: -0.01em;
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  line-height: 1.04;
  letter-spacing: -0.055em;
  font-weight: 760;
}
h1 {
  font-size: clamp(2rem, 3vw, 5rem);
  margin-bottom: 1.2rem;
}
h2 {
  font-size: clamp(2rem, 3.5vw, 4rem);
  margin-bottom: 1rem;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 0.55rem;
}
p {
  color: var(--muted);
}
.container {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.nav {
  height: 94px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand img {
  width: 215px;
}
.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 30px;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #fff;
  padding: 14px 20px;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}
.menu-toggle {
  display: none;
}
.hero {
  display: grid;
  grid-template-columns: 46% 54%;
  min-height: 660px;
  background: #f8f6f2;
}
.hero-copy {
  padding: 88px 0 80px max(48px, calc((100vw - 1240px) / 2));
  align-self: center;
}
.hero-copy h1 span {
  color: var(--gold);
}
.hero-copy p:not(.eyebrow) {
  max-width: 520px;
  font-size: 1.08rem;
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0-05em;
  font-weight: 400;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.gold-line {
  width: 72px;
  height: 1px;
  background: var(--gold);
  margin: 0 0 28px;
}
.actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #fff;
  border: 1px solid transparent;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-light {
  background: transparent;
  color: var(--black);
  border-color: var(--gold);
}
.proofs {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.proof-grid article {
  padding: 34px 28px;
  border-right: 1px solid var(--line);
}
.proof-grid article:last-child {
  border-right: 0;
}
.icon {
  color: var(--gold);
  font-size: 2rem;
}
.proof-grid h2 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0.6rem 0;
}
.proof-grid p {
  font-size: 0.92rem;
  margin: 0;
}
.section {
  padding: 92px 0;
}
.section-title {
  max-width: 820px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 28px;
}
.service-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: #000;
  color: #fff;
  box-shadow: var(--shadow);
}
.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transition: 0.35s ease;
}
.service-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.05));
}
.service-card div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
}
.service-card p {
  color: #eee;
  margin-bottom: 14px;
}
.service-card span {
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 900;
}
.service-card:hover img {
  transform: scale(1.04);
}
.contact-band {
  display: grid;
  grid-template-columns: 56% 44%;
  background: var(--soft-black);
  color: #fff;
}
.contact-content {
  padding: 78px max(48px, calc((100vw - 1240px) / 2)) 78px 48px;
  margin-left: auto;
  width: min(100%, 700px);
}
.contact-band h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
}
.contact-band p {
  color: #ddd;
}
.contact-band ul {
  list-style: none;
  padding: 0;
  margin: 26px 0;
  display: grid;
  gap: 12px;
}
.contact-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.66;
}
.page-hero {
  padding: 88px 0;
  background: var(--white);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 70px;
  align-items: center;
}
.page-hero p.breadcrumb {
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0-05em;
  margin-bottom: 22px;
}
.page-hero h1 {
  font-size: clamp(2.8rem, 4.8vw, 5.2rem);
}
.page-hero p {
  font-size: 1.05rem;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 32px;
  color: var(--muted);
}
.check-list li {
  margin: 8px 0;
}
.check-list li:before {
  content: "✓";
  color: var(--gold);
  font-weight: 900;
  margin-right: 10px;
}
.mosaic {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 12px;
}
.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 190px;
  box-shadow: var(--shadow);
}
.mosaic img:first-child {
  grid-row: span 2;
  min-height: 390px;
}
.text-columns {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
}
.text-columns p {
  font-size: 1.13rem;
}
.page-title {
  padding: 86px 0;
  background: var(--white);
}
.narrow {
  max-width: 860px;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery img {
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.wide-img img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.contact-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.contact-big {
  display: grid;
  gap: 14px;
  margin-top: 30px;
  font-size: 1.35rem;
  font-weight: 850;
}
.contact-big a:first-child {
  color: var(--gold);
}
.legal h2 {
  font-size: 1.5rem;
  margin-top: 32px;
}
.footer {
  background: #080808;
  color: #fff;
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr 1fr;
  gap: 42px;
}
.footer-logo {
  width: 220px;
  background: #fff;
  padding: 8px;
  margin-bottom: 16px;
}
.footer h3 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--gold);
}
.footer p,
.footer a {
  color: #d7d0c7;
}
.footer a {
  display: block;
  margin: 0.32rem 0;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 36px;
  padding-top: 20px;
  color: #aaa;
}
@media (max-width: 1050px) {
  .nav {
    height: 82px;
  }
  .brand img {
    width: 180px;
  }
  .menu-toggle {
    display: block;
    margin-left: auto;
    background: #fff;
    border: 1px solid var(--line);
    padding: 10px 14px;
    font-weight: 900;
    text-transform: uppercase;
  }
  .nav-cta {
    display: none;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 82px;
    left: 24px;
    right: 24px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .nav-links.is-open {
    display: flex;
  }
  .hero,
  .contact-band,
  .page-hero-grid,
  .text-columns,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    padding: 60px 24px;
  }
  .hero-img {
    min-height: 420px;
  }
  .proof-grid,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-content {
    margin: 0;
    width: auto;
    padding: 60px 24px;
  }
}
@media (max-width: 640px) {
  .container {
    width: min(100% - 30px, 1240px);
  }
  .hero {
    min-height: auto;
  }
  .hero-img {
    min-height: 320px;
  }
  .proof-grid,
  .service-grid,
  .gallery,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .proof-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .mosaic {
    grid-template-columns: 1fr;
  }
  .mosaic img:first-child {
    grid-row: auto;
    min-height: 240px;
  }
  .actions {
    flex-direction: column;
  }
  .btn {
    width: 100%;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
  .section {
    padding: 68px 0;
  }
}
