:root {
  --black: #111111;
  --black-2: #191919;
  --gold: #c59a42;
  --gold-dark: #a77a27;
  --cream: #f8f5ef;
  --soft: #f4f1eb;
  --white: #ffffff;
  --text: #252525;
  --muted: #6f6f6f;
  --line: #e5e0d7;
  --shadow: 0 20px 45px rgba(17, 17, 17, .12);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 95px 0; }
.section-soft { background: var(--soft); }
.center { text-align: center; margin-top: 40px; }

.topbar { background: var(--gold); color: #15110a; font-size: 13px; font-weight: 700; }
.topbar-inner { min-height: 35px; display: flex; justify-content: space-between; align-items: center; }
.topbar a { font-weight: 900; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(17,17,17,.97);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
}
.nav-wrap { height: 82px; display: flex; align-items: center; gap: 30px; }
.brand { width: 156px; position: relative; display: grid; color: var(--gold); line-height: 1; }
.brand-crown { position: absolute; top: -15px; left: 68px; font-size: 15px; }
.brand-main { font-family: "Playfair Display", serif; font-size: 22px; letter-spacing: 1px; }
.brand-sub { color: #e7dfce; font-size: 8px; letter-spacing: 4px; margin-top: 6px; }
.main-nav { margin-left: auto; display: flex; align-items: center; gap: 25px; }
.main-nav a { color: #f8f8f8; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
.main-nav a:hover { color: var(--gold); }
.menu-toggle { display: none; margin-left: auto; width: 42px; height: 42px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { width: 27px; height: 2px; margin: 6px auto; display: block; background: white; transition: .25s; }

.btn {
  min-height: 48px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .25s, background .25s, border-color .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: #15110a; }
.btn-gold:hover { background: #d5ae5d; }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: var(--gold-dark); }
.btn-outline { color: var(--black); border-color: var(--black); background: rgba(255,255,255,.3); }
.btn-outline-gold { color: var(--gold); border-color: var(--gold); background: transparent; }
.btn-full { width: 100%; }
.nav-cta { min-height: 42px; padding-inline: 16px; }

.hero {
  min-height: 650px;
  position: relative;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.9) 36%, rgba(255,255,255,.22) 68%, rgba(0,0,0,.2) 100%),
    url("https://images.unsplash.com/photo-1589939705384-5185137a7f0f?auto=format&fit=crop&w=2000&q=88") center/cover no-repeat;
}
.hero-content { position: relative; z-index: 2; padding-block: 70px; }
.eyebrow { margin: 0 0 14px; color: var(--gold-dark); font-size: 11px; font-weight: 900; letter-spacing: 1.1px; text-transform: uppercase; }
.eyebrow.light { color: #f6d98b; }
h1, h2, h3 { line-height: 1.12; margin-top: 0; }
h1 { max-width: 720px; margin-bottom: 24px; font-size: clamp(45px, 6.1vw, 82px); letter-spacing: -2.5px; text-transform: uppercase; font-weight: 900; }
h2 { margin-bottom: 20px; font-size: clamp(30px, 4vw, 48px); letter-spacing: -1.25px; text-transform: uppercase; font-weight: 900; }
.hero-copy { max-width: 610px; margin-bottom: 30px; font-size: 16px; font-weight: 500; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.trust-strip { background: var(--black); color: white; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid article { min-height: 115px; padding: 25px 20px; display: flex; align-items: center; gap: 14px; border-right: 1px solid rgba(255,255,255,.1); }
.trust-grid article:last-child { border-right: 0; }
.trust-icon { color: var(--gold); font-size: 30px; }
.trust-grid h3 { margin-bottom: 5px; font-size: 13px; text-transform: uppercase; }
.trust-grid p { margin: 0; color: #bcbcbc; font-size: 11px; line-height: 1.4; }

.split-grid { display: grid; grid-template-columns: .92fr 1.08fr; align-items: stretch; min-height: 600px; }
.about-copy, .why-copy { padding: 65px 70px 65px 0; align-self: center; }
.about-copy h2 { max-width: 540px; }
.about-copy > p:not(.eyebrow) { color: var(--muted); }
.gold-line { width: 44px; height: 3px; margin: 0 0 26px; background: var(--gold); }
.check-list { margin: 26px 0 32px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 28px; margin: 10px 0; font-weight: 600; font-size: 14px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--gold-dark); font-weight: 900; }
.about-image, .why-image { position: relative; min-height: 600px; overflow: hidden; }
.about-image img, .why-image img { height: 100%; object-fit: cover; }
.experience-card { position: absolute; right: 28px; bottom: 28px; padding: 18px 22px; color: white; background: rgba(17,17,17,.9); border-left: 4px solid var(--gold); display: grid; }
.experience-card strong { color: var(--gold); text-transform: uppercase; }
.experience-card span { font-size: 11px; }

.section-heading { max-width: 750px; margin: 0 auto 42px; text-align: center; }
.section-heading h2 { margin-bottom: 12px; }
.section-heading p:last-child { color: var(--muted); margin: 0; }
.service-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; align-items: stretch; }
.service-card { position: relative; background: white; box-shadow: 0 8px 20px rgba(17,17,17,.07); border-bottom: 3px solid transparent; transition: .25s; }
.service-card:hover { transform: translateY(-7px); border-color: var(--gold); box-shadow: var(--shadow); }
.service-card > img { height: 190px; object-fit: cover; filter: saturate(.78); }
.service-icon { width: 46px; height: 46px; position: absolute; left: 50%; top: 167px; transform: translateX(-50%); display: grid; place-items: center; color: white; background: var(--black); border: 3px solid white; outline: 2px solid var(--gold); border-radius: 50%; font-size: 19px; }
.service-body { padding: 42px 18px 25px; text-align: center; }
.service-body h3 { min-height: 35px; margin-bottom: 10px; font-size: 14px; text-transform: uppercase; }
.service-body p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }

.why .split-grid { grid-template-columns: 1fr 1fr; }
.why-copy { padding: 60px 0 60px 70px; }
.feature-list { margin: 25px 0 32px; display: grid; gap: 20px; }
.feature-list article { display: grid; grid-template-columns: 46px 1fr; gap: 15px; }
.feature-list span { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--gold); color: var(--gold-dark); font-size: 11px; font-weight: 900; }
.feature-list h3 { margin-bottom: 4px; font-size: 14px; text-transform: uppercase; }
.feature-list p { margin: 0; color: var(--muted); font-size: 12px; }

.section-dark { padding: 75px 0; color: white; background: linear-gradient(135deg, #111, #1d1d1d); }
.project-layout { display: grid; grid-template-columns: .85fr 2.15fr; align-items: center; gap: 45px; }
.project-intro h2 { font-size: 36px; }
.project-intro p:not(.eyebrow) { color: #bcbcbc; font-size: 13px; }
.project-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.project-photo { min-height: 230px; padding: 0; border: 1px solid rgba(255,255,255,.14); background: #222; overflow: hidden; cursor: zoom-in; }
.project-photo img { height: 100%; object-fit: cover; transition: transform .45s; }
.project-photo:hover img { transform: scale(1.06); }

.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { position: relative; min-height: 260px; padding: 32px; border: 1px solid var(--line); background: white; box-shadow: 0 12px 30px rgba(17,17,17,.08); }
.quote-mark { color: var(--gold); font-family: Georgia, serif; font-size: 64px; line-height: .65; }
.stars { margin: 15px 0; color: var(--gold); letter-spacing: 3px; }
.review-card p { color: var(--muted); font-size: 14px; }
.review-card strong { font-size: 12px; text-transform: uppercase; }

.quote-section { padding: 90px 0; color: white; background: linear-gradient(120deg, rgba(167,122,39,.96), rgba(197,154,66,.92)), url("https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&w=1800&q=80") center/cover; }
.quote-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.quote-copy h2 { max-width: 600px; }
.quote-copy > p:not(.eyebrow) { color: rgba(255,255,255,.82); }
.contact-details { margin-top: 30px; display: grid; gap: 14px; }
.contact-details > a, .contact-details > div { display: grid; grid-template-columns: 44px 1fr; gap: 12px; align-items: center; }
.contact-details > * > span { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.5); }
.contact-details small { display: block; opacity: .75; text-transform: uppercase; font-size: 9px; letter-spacing: .9px; }
.contact-details strong { font-size: 14px; }
.quote-form { padding: 36px; color: var(--text); background: white; box-shadow: var(--shadow); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.quote-form label { display: grid; gap: 7px; margin-bottom: 15px; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; border: 1px solid #d9d5ce; background: #fbfaf8; padding: 13px 14px; color: #222; outline: none; text-transform: none; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(197,154,66,.12); }
.form-note { margin: 12px 0 0; color: #8a8a8a; font-size: 10px; text-align: center; }
.form-note.success { color: #26713c; font-weight: 700; }

.footer { padding: 60px 0 18px; color: #ccc; background: #101010; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr 1fr 1fr; gap: 45px; }
.footer h3 { margin-bottom: 17px; color: var(--gold); font-size: 12px; text-transform: uppercase; }
.footer p, .footer a, .footer span { display: block; margin: 7px 0; font-size: 12px; }
.footer a:hover { color: var(--gold); }
.footer-brand { margin: 0 0 24px; }
.footer-bottom { margin-top: 45px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 20px; color: #777; }
.footer-bottom span { font-size: 10px; }

.floating-call { width: 54px; height: 54px; position: fixed; right: 22px; bottom: 22px; z-index: 800; display: grid; place-items: center; color: #111; background: var(--gold); border: 3px solid white; border-radius: 50%; box-shadow: 0 12px 30px rgba(0,0,0,.25); font-size: 20px; }
.lightbox { position: fixed; inset: 0; z-index: 2000; padding: 40px; display: none; align-items: center; justify-content: center; background: rgba(0,0,0,.92); }
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1000px, 92vw); max-height: 85vh; width: auto; object-fit: contain; }
.lightbox-close { position: absolute; top: 22px; right: 28px; border: 0; background: transparent; color: white; font-size: 44px; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .nav-cta { display: none; }
  .main-nav { gap: 18px; }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .project-layout { grid-template-columns: 1fr; }
  .project-intro { max-width: 620px; }
  .quote-grid { gap: 40px; }
}

@media (max-width: 820px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 70px 0; }
  .topbar-inner { min-height: 42px; }
  .topbar-inner span { display: none; }
  .topbar-inner { justify-content: center; }
  .nav-wrap { height: 72px; }
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    margin: 0;
    padding: 20px;
    display: grid;
    gap: 0;
    background: #151515;
    border-top: 1px solid rgba(255,255,255,.08);
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    pointer-events: none;
    transition: .25s;
  }
  .main-nav.open { transform: scaleY(1); opacity: 1; pointer-events: auto; }
  .main-nav a { padding: 13px 7px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .hero { min-height: 600px; background-position: 58% center; }
  .hero::after { content: ""; position: absolute; inset: 0; background: rgba(255,255,255,.28); }
  h1 { font-size: clamp(42px, 12vw, 65px); }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid article:nth-child(2) { border-right: 0; }
  .trust-grid article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .split-grid, .why .split-grid { grid-template-columns: 1fr; min-height: auto; }
  .about-copy, .why-copy { padding: 0 0 45px; }
  .why-copy { order: 1; padding: 0 0 45px; }
  .why-image { order: 2; }
  .about-image, .why-image { min-height: 480px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .project-gallery { grid-template-columns: 1fr 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 540px) {
  .brand { width: 145px; }
  .hero { min-height: 560px; background-position: 64% center; }
  .hero-content { padding-block: 55px; }
  h1 { letter-spacing: -1.5px; }
  h2 { font-size: 31px; }
  .hero-copy { font-size: 14px; }
  .hero-actions .btn { width: 100%; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid article { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .service-grid, .project-gallery { grid-template-columns: 1fr; }
  .service-card > img { height: 220px; }
  .service-icon { top: 197px; }
  .project-photo { min-height: 260px; }
  .about-image, .why-image { min-height: 380px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .quote-form { padding: 25px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: grid; }
  .floating-call { width: 50px; height: 50px; right: 15px; bottom: 15px; }
}
