:root {
  --navy: #101828;
  --navy-2: #1b2436;
  --gold: #c9a227;
  --gold-bright: #e0bf5a;
  --silver: #c5c8ce;
  --ink: #1c2433;
  --muted: #5c6473;
  --paper: #f6f4ef;
  --white: #fff;
  --serif: "Cinzel", "Times New Roman", serif;
  --sans: "Montserrat", Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.topbar {
  background: linear-gradient(90deg, #0b0d12, var(--navy));
  color: #e8e6df;
  font-size: 12px;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; min-height: 38px; gap: 16px; }
.topbar-tag { margin: 0; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-bright); font-size: 10px; }
.topbar-links { display: flex; align-items: center; gap: 18px; }
.topbar-links a { display: inline-flex; align-items: center; gap: 7px; }
.topbar-links svg { width: 14px; height: 14px; color: var(--gold); }
.social { display: flex; gap: 8px; }
.social a { width: 22px; height: 22px; display: grid; place-items: center; font-size: 9px; text-transform: uppercase;
}
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: #fff;
  box-shadow: 0 8px 24px rgba(16,24,40,.08);
}
.header-inner { display: flex; align-items: center; gap: 24px; min-height: 86px; }
.logo { display: flex; align-items: center; gap: 12px; min-width: 200px; }
.logo img {
  width: 78px; height: 78px; object-fit: cover; object-position: center top;
  border-radius: 4px; background: #0b0d12;
  box-shadow: 0 0 0 1px rgba(201,162,39,.45);
}
.logo strong {
  display: block; font-family: var(--serif); font-size: 26px; letter-spacing: .12em;
  color: var(--navy);
}
.logo small { display: block; color: var(--gold); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; margin-top: 2px; }
.main-nav { display: flex; align-items: center; gap: 26px; margin-left: auto; font-size: 13px; font-weight: 600; }
.main-nav a { color: #2c3340; }
.main-nav a.active, .main-nav a:hover { color: var(--gold); }
.has-sub { position: relative; }
.submenu {
  display: none; position: absolute; top: 100%; left: 0; min-width: 280px;
  background: #fff; padding: 10px 0; box-shadow: 0 16px 40px rgba(0,0,0,.12);
}
.has-sub:hover .submenu, .has-sub:focus-within .submenu { display: grid; }
.submenu a { padding: 9px 16px; font-size: 12px; font-weight: 500; }
.submenu a:hover { background: #f8f4ea; }
.header-phone {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--navy); font-weight: 700; white-space: nowrap;
}
.header-phone svg { width: 22px; height: 22px; color: var(--gold); }
.nav-toggle { display: none; background: 0; border: 0; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 5px 0; }

.hero { position: relative; min-height: 78vh; overflow: hidden; background: #08090c; color: #fff; }
.hero-slide {
  min-height: 78vh; display: none; align-items: center;
  background: linear-gradient(90deg, rgba(8,9,12,.82) 8%, rgba(8,9,12,.35) 55%, rgba(8,9,12,.2)), var(--hero) center/cover no-repeat;
}
.hero-slide.is-active { display: flex; }
.hero h1 {
  max-width: 720px; margin: 0 0 16px;
  font-size: clamp(32px, 4.6vw, 56px); line-height: 1.15; font-weight: 800;
}
.hero p { max-width: 480px; margin: 0 0 28px; font-size: 17px; color: #e8e6df; }
.hero-dots { position: absolute; left: 0; right: 0; bottom: 22px; display: flex; justify-content: center; gap: 8px; }
.hero-dots button {
  width: 10px; height: 10px; border-radius: 50%; border: 0; background: rgba(255,255,255,.4); cursor: pointer;
}
.hero-dots button.is-active { background: var(--gold); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 22px; border: 0; cursor: pointer;
  font: 700 12px/1 var(--sans); letter-spacing: .08em; text-transform: uppercase;
}
.btn-gold { background: var(--gold); color: #111; }
.btn-gold:hover { background: var(--gold-bright); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: #000; }

.section { padding: 88px 0; }
.section.alt { background: var(--paper); }
.eyebrow {
  margin: 0 0 10px; color: var(--gold); font-size: 12px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
}
.center { text-align: center; }
h1, h2, h3 { font-family: var(--serif); line-height: 1.2; }
h2 { font-size: clamp(28px, 3.4vw, 40px); margin: 0 0 16px; }
.lede { max-width: 720px; margin: 0 auto 40px; color: var(--muted); }
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.about-photo { position: relative; }
.about-photo img { width: 100%; height: 520px; object-fit: cover; }
.years-badge {
  position: absolute; left: -18px; bottom: 28px; width: 140px; height: 140px;
  background: var(--gold); color: #111; display: grid; place-content: center; text-align: center;
}
.years-badge strong { font-size: 42px; font-family: var(--serif); line-height: 1; }
.years-badge span { font-size: 11px; font-weight: 700; text-transform: uppercase; }

.stats { background: var(--navy); color: #fff; padding: 48px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stats strong { display: block; font-size: 46px; color: var(--gold); font-family: var(--serif); }
.stats span { color: var(--silver); font-size: 13px; }

.service-grid, .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.why-grid { grid-template-columns: repeat(4, 1fr); }
.service-card, .why-grid article {
  padding: 28px 24px; border: 1px solid #ece7db; background: #fff;
  box-shadow: 0 10px 30px rgba(16,24,40,.04); transition: transform .2s, border-color .2s;
}
.service-card:hover, .why-grid article:hover { transform: translateY(-4px); border-color: var(--gold); }
.icon-wrap {
  width: 52px; height: 52px; display: grid; place-items: center;
  color: var(--gold); margin-bottom: 14px;
}
.icon-wrap svg { width: 42px; height: 42px; }
.service-card h3, .why-grid h3 { margin: 0 0 10px; font-size: 18px; }
.service-card p, .why-grid p { color: var(--muted); font-size: 14px; }
.service-card .service-count { color: var(--gold); font-size: 12px; font-weight: 700; margin: 14px 0 8px; }
.service-card a { color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.service-items { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; padding: 0; margin: 20px 0 28px; list-style: none; }
.service-items li { position: relative; padding-left: 18px; color: var(--muted); font-size: 14px; }
.service-items li::before { content: ""; position: absolute; left: 0; top: .7em; width: 6px; height: 6px; background: var(--gold); }
.service-notice { border-left: 3px solid var(--gold); padding: 12px 16px; background: var(--paper); color: var(--muted); font-size: 13px; }

.cta-band {
  background: linear-gradient(90deg, #0b0d12, var(--navy-2));
  color: #fff; text-align: center; padding: 72px 0;
}
.cta-band p { max-width: 680px; margin: 0 auto 24px; color: var(--silver); }
.process { list-style: none; padding: 0; counter-reset: step; }
.process li { position: relative; padding: 0 0 22px 56px; color: var(--muted); }
.process li::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; left: 0; top: 0; color: var(--gold); font-family: var(--serif); font-weight: 700;
}
.process strong { display: block; color: var(--navy); font-family: var(--serif); }
.process-img { width: 100%; height: 420px; object-fit: cover; }

.faq-list { max-width: 860px; margin: 32px auto 0; }
.faq-list details { border-bottom: 1px solid #e6e0d2; padding: 16px 0; }
.faq-list summary { cursor: pointer; font-weight: 700; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list p { color: var(--muted); margin: 10px 0 0; }

.contact-form { display: grid; gap: 16px; }
.contact-form label { display: grid; gap: 6px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
input, select, textarea {
  width: 100%; border: 1px solid #d9d3c6; padding: 12px 14px;
  font: 15px var(--sans); background: #fff; color: var(--ink);
}
input:focus, select:focus, textarea:focus { outline: 2px solid rgba(201,162,39,.35); border-color: var(--gold); }
.form-note { font-size: 12px; color: var(--muted); }
.form-ok { background: #eaf6ea; color: #1c5c28; padding: 10px 12px; }
.form-error { background: #fdecec; color: #8a1f1f; padding: 10px 12px; }
.address-card { background: var(--navy); color: #fff; padding: 36px 28px; }
.address-card a { color: var(--gold-bright); }
.ticks { padding: 0; list-style: none; }
.ticks li { padding: 8px 0 8px 22px; position: relative; }
.ticks li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

.page-hero {
  background: linear-gradient(90deg, rgba(11,13,18,.85), rgba(11,13,18,.55)), url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1800&q=70") center/cover;
  color: #fff; padding: 90px 0 70px;
}

.site-footer { background: #0b0d12; color: #c9ccd3; padding-top: 56px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .9fr 1fr; gap: 30px; padding-bottom: 40px; }
.site-footer h4 { color: var(--gold); font-family: var(--serif); margin: 0 0 14px; }
.site-footer a, .site-footer p { display: block; margin: 0 0 8px; font-size: 14px; }
.logo-light strong { color: #eee; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 16px 0; font-size: 13px; }

.enquiry-fab, .whatsapp-fab {
  position: fixed; z-index: 50; right: 18px; border: 0; cursor: pointer;
  font: 700 11px/1 var(--sans); letter-spacing: .06em; text-transform: uppercase;
  padding: 14px 16px; box-shadow: 0 10px 24px rgba(0,0,0,.2);
}
.enquiry-fab { bottom: 78px; background: var(--gold); color: #111; }
.whatsapp-fab { bottom: 22px; background: #128c7e; color: #fff; }
.enquiry-modal {
  position: fixed; inset: 0; background: rgba(8,9,12,.62);
  display: grid; place-items: center; z-index: 80; padding: 20px;
}
.enquiry-modal[hidden] { display: none; }
.enquiry-card { width: min(420px, 100%); background: #fff; padding: 28px; position: relative; }
.enquiry-close { position: absolute; right: 12px; top: 8px; border: 0; background: 0; font-size: 28px; cursor: pointer; }
.enquiry-form { display: grid; gap: 12px; }

@media (max-width: 1100px) {
  .header-inner { gap: 16px; }
  .logo { min-width: 170px; }
  .logo strong { font-size: 23px; }
  .logo img { width: 66px; height: 66px; }
  .main-nav { gap: 16px; font-size: 12px; }
  .header-phone span { display: none; }
}

@media (max-width: 980px) {
  .split, .stats-grid, .service-grid, .why-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .topbar-tag { display: none; }
}
@media (max-width: 800px) {
  .container { width: min(100% - 32px, 680px); }
  .topbar-inner { min-height: 34px; }
  .topbar-links { justify-content: center; gap: 10px; width: 100%; }
  .topbar-links > a { min-width: 0; font-size: 10px; }
  .topbar-links > a:first-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .social { display: none; }
  .header-inner { min-height: 72px; }
  .logo { min-width: 0; gap: 8px; }
  .logo img { width: 54px; height: 54px; }
  .logo strong { font-size: 20px; }
  .logo small { font-size: 8px; letter-spacing: .1em; }
  .header-phone { display: inline-flex; margin-left: auto; }
  .header-phone svg { width: 20px; height: 20px; }
  .nav-toggle { display: block; margin-left: auto; }
  .main-nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    max-height: calc(100vh - 72px); overflow-y: auto;
    background: #fff; flex-direction: column; align-items: stretch; padding: 12px 20px 20px; gap: 0;
  }
  .main-nav.open { display: flex; }
  .main-nav > a, .has-sub > a { padding: 12px 0; border-bottom: 1px solid #eee; }
  .submenu { position: static; display: grid; box-shadow: none; }
  .split, .stats-grid, .service-grid, .why-grid, .footer-grid { grid-template-columns: 1fr; display: grid; }
  .section { padding: 58px 0; }
  .section h2 { margin-bottom: 12px; }
  .lede { margin-bottom: 28px; }
  .hero, .hero-slide { min-height: 70vh; }
  .hero-slide { padding: 72px 0 86px; }
  .hero p { font-size: 15px; }
  .btn { width: 100%; max-width: 360px; text-align: center; }
  .about-photo img { height: min(520px, 100vw); }
  .years-badge { left: 12px; }
  .process-img { height: auto; max-height: 360px; }
  .service-items { grid-template-columns: 1fr; }
  .page-hero { padding: 58px 0 44px; }
  .page-hero h1 { font-size: clamp(28px, 8vw, 40px); }
  .footer-grid { gap: 24px; }
  .enquiry-fab, .whatsapp-fab { right: 12px; max-width: calc(100% - 24px); }
  .enquiry-fab { bottom: 70px; }
  .whatsapp-fab { bottom: 14px; }
}

@media (max-width: 420px) {
  .container { width: min(100% - 24px, 680px); }
  .topbar-links > a { font-size: 9px; }
  .header-inner { gap: 8px; }
  .header-phone { padding: 6px; }
  .nav-toggle { padding: 6px; }
  .logo small { max-width: 145px; }
  .hero, .hero-slide { min-height: 74vh; }
  .stats { padding: 34px 0; }
  .stats-grid { gap: 24px; }
  .stats strong { font-size: 38px; }
  .service-card, .why-grid article { padding: 22px 18px; }
  .address-card { padding: 28px 20px; }
  .enquiry-fab, .whatsapp-fab { font-size: 10px; padding: 12px 13px; }
}
