:root {
  --black: #0a0a0a;
  --surface: #141414;
  --surface-2: #1c1c1c;
  --white: #ffffff;
  --muted: #b3b0a8;
  --border: rgba(212, 175, 55, 0.18);
  --gold: #d4af37;
  --gold-deep: #b8860b;
  --gradient-gold: linear-gradient(135deg, #d4af37 0%, #e6c860 45%, #b8860b 100%);
  --shadow-lift: 0 30px 60px -20px rgba(0, 0, 0, 0.9);
  --shadow-gold: 0 18px 40px -14px rgba(212, 175, 55, 0.45);
  --max: 1200px;
  --cut: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: "Poppins", sans-serif; font-weight: 800; letter-spacing: -0.02em; margin: 0; line-height: 1.15; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 860px; margin: 0 auto;}
.section { padding: 72px 0; }
.text-center { text-align: center; }
.muted { color: var(--muted); }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; } .mt-5 { margin-top: 48px; }

/* ---------- Motifs ---------- */
.text-gold { color: var(--gold); }
.text-gradient-gold {
  background-image: var(--gradient-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.label-caps {
  text-transform: uppercase; letter-spacing: 0.32em; font-size: 0.9rem;
  font-weight: 600; color: var(--gold);
}
.label-caps .dash { display: inline-block; width: 32px; height: 1px; background: var(--gold); vertical-align: middle; margin-right: 12px; }

.cut-frame {
  clip-path: polygon(var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut));
}
.cut-frame-gold {
  clip-path: polygon(var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut));
  background: var(--gradient-gold); padding: 1px;
}
.glass-panel {
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015));
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lift);
}
.hairline-gold {
  height: 1px; background: linear-gradient(90deg, transparent, rgba(212,175,55,0.7), transparent);
}
.spotlight { position: relative; }
.spotlight::before {
  content: ""; position: absolute; left: -10%; right: -10%; height: 90%;
  background: radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.22) 0%, rgba(212,175,55,0.06) 35%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.spotlight > * { position: relative; z-index: 1; }
.border-y { border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
.border-t { border-top: 1px solid rgba(255,255,255,0.08); }

/* ---------- Buttons ---------- */
.btn-gold, .btn-outline-gold {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.8rem;
  cursor: pointer; border: 0;
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease, background .2s ease;
}
.btn-gold {
  background: var(--gradient-gold); color: #0a0a0a; padding: 15px 30px;
  box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(255,255,255,0.55), inset 0 -2px 0 rgba(0,0,0,0.25);
}
.btn-gold:hover { transform: translateY(-2px); filter: brightness(1.06); }
.btn-gold:active { transform: translateY(1px) scale(0.99); box-shadow: inset 0 3px 6px rgba(0,0,0,0.35); }
.btn-outline-gold {
  border: 1px solid rgba(212,175,55,0.5); color: var(--gold); padding: 14px 27px; font-weight: 600; background: transparent;
}
.btn-outline-gold:hover { background: rgba(212,175,55,0.12); transform: translateY(-2px); }
.btn-full { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,10,10,0.88); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 0; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand img { width: 46px; height: 46px; object-fit: cover; border-radius: 3px; flex: 0 0 auto; }
.brand span { font-weight: 800; text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.95rem; white-space: nowrap; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-phone { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; }
.nav-toggle { display: none; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,0.15); background: transparent; color: var(--gold); font-size: 1.3rem; line-height: 1; cursor: pointer; }
.main-nav ul { display: flex; flex-wrap: wrap; gap: 8px 22px; padding-bottom: 10px; }
.main-nav a { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); transition: color .2s ease; }
.main-nav a:hover, .main-nav a.active { color: var(--gold); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 130%; object-fit: cover; opacity: 0.45; will-change: transform; }
.hero-bg .veil { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.82) 60%, var(--black)); }
.lens-flare {
  position: absolute; top: 40px; left: 22%; width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle at 30% 40%, rgba(255,236,180,0.35), transparent 60%);
  filter: blur(40px); animation: flare 9s ease-in-out infinite; pointer-events: none;
}
@keyframes flare {
  0%,100% { opacity: .35; transform: translate3d(0,0,0) scale(1); }
  50% { opacity: .6; transform: translate3d(2%,-2%,0) scale(1.06); }
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; padding: 72px 0 104px; }
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); margin-top: 22px; }
.hero-sub { margin-top: 22px; max-width: 34rem; color: var(--muted); }
.hero-cta { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 16px; }
.hero-logo { max-width: 360px; margin-left: auto; box-shadow: 0 40px 80px -30px rgba(0,0,0,0.95); }
.hero-logo .inner { background: var(--black); padding: 24px; }

/* ---------- Section heading ---------- */
.section-heading h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); margin-top: 18px; }
.section-heading p { margin-top: 18px; color: var(--gold); }
.section-heading.center { text-align: center; }
.section-heading.center p { max-width: 42rem; margin-left: auto; margin-right: auto; }

/* ---------- Grids / cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.service-card { display: block; height: 100%; }
.tilt-card {
  padding: 24px; height: 100%;
  transform-style: preserve-3d; will-change: transform;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.tilt-card:hover { border-color: rgba(212,175,55,0.5); }
.tilt-card .thumb { overflow: hidden; }
.tilt-card .thumb img { height: 165px; width: 100%; object-fit: cover; transition: transform .5s ease; }
.tilt-card:hover .thumb img { transform: scale(1.05); }
.tilt-card h3 { margin-top: 22px; font-size: 1.1rem; }
.tilt-card p { margin-top: 12px; color: var(--muted); font-size: 0.9rem; }
.card-link { margin-top: 18px; display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.card-note { margin-top: 18px; display: inline-block; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.gallery figure { margin: 0; position: relative; overflow: hidden; }
.gallery img { height: 250px; width: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figcaption {
  position: absolute; inset: auto 0 0 0; padding: 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.92), transparent);
}
.gallery figcaption strong { display: block; font-weight: 800; font-size: 0.95rem; }
.gallery figcaption span { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: yellow; }

/* ---------- Clients / timeline / stats ---------- */
.client {
  display: grid; place-items: center; text-align: center; padding: 15px 14px;
  border: 1px solid rgba(212,175,55,0.25); background: rgba(255,255,255,0.03);
  transition: border-color .2s ease, background .2s ease;
}
.client:hover { border-color: rgba(212,175,55,0.6); background: rgba(255,255,255,0.06); }

.client img {
  max-width: 100%;
  max-height: 80px;
  width: auto;
  height: auto;
  transition: filter .25s ease, transform .25s ease;
}
.client:hover img {
  filter: grayscale(0%) brightness(1) opacity(1);
  transform: scale(1.05);
}

.timeline { border-left: 1px solid rgba(212,175,55,0.3); padding-left: 26px; display: grid; gap: 16px; }
.timeline li { position: relative; }
.timeline li::before { content: ""; position: absolute; left: -31px; top: 22px; width: 10px; height: 10px; border-radius: 50%; background: var(--gold); }
.timeline .row { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; align-items: center; padding: 18px 24px; }
.timeline .row strong { font-size: 0.92rem; font-weight: 800; }
.timeline .row em { font-style: normal; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }

.stat { text-align: center; padding: 28px 18px; }
.stat .num { font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 900; line-height: 1; }
.stat .lbl { margin-top: 12px; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }

/* ---------- Testimonials ---------- */
.testimonial { padding: 28px; }
.testimonial .quote-mark { font-family: Georgia, serif; font-size: 3rem; line-height: .6; color: var(--gold); }
.testimonial p { margin-top: 16px; color: var(--muted); font-size: 0.92rem; }
.testimonial .who { margin-top: 22px; font-weight: 800; font-size: 0.9rem; }
.testimonial .role { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }

/* ---------- Service page ---------- */
.service-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.service-hero h1 { font-size: clamp(1.9rem, 4.4vw, 3rem); margin-top: 22px; }
.service-hero .frame img { height: 380px; width: 100%; object-fit: cover; }
.service-body { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; }
.service-body article p { margin-top: 18px; color: var(--muted); font-size: 0.92rem; }
.includes { padding: 30px; }
.includes li { display: flex; gap: 12px; margin-top: 16px; color: var(--muted); font-size: 0.9rem; }
.includes li::before { content: "✓"; color: var(--gold); font-weight: 700; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: start; }
.reach { padding: 30px; }
.reach li {
  display: flex;
  gap: 14px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.92rem;
  align-items: center;
}
.reach .ico {
  color: var(--muted);
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.reach li:hover .ico {
  color: var(--gold);
  border-color: rgba(212,175,55,0.4);
  background: rgba(212,175,55,0.08);
}
.socials { margin-top: 30px; display: flex; gap: 12px; }
.socials a {
  display: grid; place-items: center; width: 44px; height: 44px;
  border: 1px solid rgba(212,175,55,0.4); color: var(--gold);
  transition: background .2s ease, transform .2s ease;
}
.socials a:hover { background: rgba(212,175,55,0.12); transform: translateY(-2px); }

form.enquiry { padding: 28px; display: grid; gap: 20px; }
form.enquiry .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
form.enquiry label.label-caps { display: block; margin-bottom: 10px; }
form.enquiry input[type="text"], form.enquiry input[type="email"], form.enquiry input[type="tel"],
form.enquiry select, form.enquiry textarea {
  width: 100%; padding: 13px 15px; font: inherit; font-size: 0.9rem; color: var(--white);
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.16); outline: none;
  transition: border-color .2s ease;
}
form.enquiry textarea { resize: vertical; min-height: 130px; }
form.enquiry :focus { border-color: var(--gold); }
form.enquiry option { background: #0a0a0a; }
.consent { display: flex; gap: 12px; align-items: flex-start; font-size: 0.78rem; color: var(--muted); }
.consent input { accent-color: var(--gold); width: 16px; height: 16px; margin-top: 3px; flex: 0 0 auto; }
.field-error { color: #ff8a80; font-size: 0.75rem; margin-top: 6px; }
.alert { padding: 16px 18px; font-size: 0.88rem; border: 1px solid; }
.alert-ok { border-color: rgba(212,175,55,0.6); background: rgba(212,175,55,0.1); color: var(--gold); }
.alert-err { border-color: rgba(255,138,128,0.5); background: rgba(255,138,128,0.08); color: #ff8a80; }

/* ---------- Footer / WhatsApp ---------- */
.site-footer { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.9fr 1fr; gap: 40px; padding: 56px 0; }
.footer-grid .label-caps { display: block; margin-bottom: 20px; }
.footer-grid li {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-grid .ico {
  color: var(--muted);
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.footer-grid li:hover .ico {
  color: var(--gold);
  border-color: rgba(212,175,55,0.4);
  background: rgba(212,175,55,0.08);
}
.footer-grid a:hover { color: var(--gold); }
.footer-note { padding: 22px 0; font-size: 0.75rem; color: var(--muted); }

.whatsapp-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff; box-shadow: 0 14px 30px -8px rgba(37,211,102,0.6);
  transition: transform .2s ease;
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1.05); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .nav-toggle { display: grid; place-items: center; }
  .main-nav { display: none; }
  .main-nav.open { display: block; border-top: 1px solid rgba(255,255,255,0.08); }
  .main-nav.open ul { display: block; padding: 8px 0 16px; }
  .main-nav.open li a { display: block; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.07); font-size: 0.82rem; }
}
@media (max-width: 900px) {
  .grid-3, .gallery, .service-hero, .service-body, .contact-grid, .footer-grid, .hero-inner { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .hero-logo { margin: 0 auto; }
  .hero-inner { padding: 48px 0 72px; }
  .section { padding: 56px 0; }
}
@media (max-width: 560px) {
  .grid-2, .grid-4, form.enquiry .row2 { grid-template-columns: 1fr; }
  .header-phone { display: none; }
  .service-hero .frame img { height: 260px; }
}
