:root {
  --gold: #c9a227;
  --gold-light: #e8c766;
  --gold-dark: #8c6a12;
  --black: #0b0b0b;
  --dark: #121212;
  --charcoal: #1b1a17;
  --cream: #f8f5ed;
  --white: #ffffff;
  --text: #242424;
  --muted: #76716a;
  --line: rgba(140, 106, 18, 0.22);
  --shadow: 0 24px 70px rgba(15, 13, 8, 0.14);
  --radius: 8px;
  --container: min(1240px, calc(100vw - 40px));
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid rgba(201, 162, 39, 0.6); outline-offset: 3px; }
.container { width: var(--container); margin-inline: auto; }
.skip-link { position: fixed; left: 12px; top: 12px; transform: translateY(-150%); background: var(--gold); color: var(--black); padding: 10px 14px; z-index: 2000; border-radius: 6px; }
.skip-link:focus { transform: translateY(0); }
.scroll-progress { position: fixed; inset: 0 auto auto 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--gold), var(--gold-light)); z-index: 2001; }
.site-header { position: fixed; inset: 0 0 auto; z-index: 1000; transition: background .35s ease, box-shadow .35s ease, border-color .35s ease; border-bottom: 1px solid transparent; }
.site-header.scrolled, body:not([data-page="index"]) .site-header { background: rgba(11, 11, 11, .82); backdrop-filter: blur(18px); border-color: rgba(232, 199, 102, .14); box-shadow: 0 16px 40px rgba(0,0,0,.24); }
.navbar { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--white); flex: 0 0 auto; min-width: 206px; }
.brand-mark { width: 44px; height: 44px; display: grid; place-items: center; color: var(--black); font-weight: 900; letter-spacing: .04em; background: radial-gradient(circle at 30% 30%, var(--gold-light), var(--gold)); border: 1px solid rgba(255,255,255,.25); border-radius: 50%; box-shadow: 0 12px 30px rgba(201,162,39,.25); }
.brand strong { display: block; line-height: 1.05; font-size: 1rem; font-weight: 800; letter-spacing: .01em; white-space: nowrap; }
.brand small { display: block; color: rgba(255,255,255,.7); font-size: .72rem; line-height: 1.25; white-space: nowrap; }
.nav-panel { display: flex; align-items: center; justify-content: flex-end; flex: 1 1 auto; min-width: 0; gap: clamp(10px, 1vw, 16px); color: rgba(255,255,255,.82); }
.nav-panel a { font-size: .88rem; font-weight: 750; line-height: 1.15; position: relative; white-space: nowrap; }
.nav-panel > a:not(.btn):not(.nav-phone)::after { content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.nav-panel > a:hover::after, .nav-panel > a.active::after { transform: scaleX(1); }
.nav-panel > a.active { color: var(--gold-light); }
.nav-phone { display: inline-flex; gap: 8px; align-items: center; color: var(--gold-light); padding-left: 2px; }
.nav-phone i { font-size: 1rem; line-height: 1; }
.nav-phone span { display: grid; line-height: 1.05; }
.nav-phone small { color: rgba(255,255,255,.55); font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.nav-toggle { display: none; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.18); border-radius: 8px; background: rgba(255,255,255,.08); }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); margin: 5px auto; transition: transform .25s ease, opacity .25s ease; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.btn { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; border-radius: 999px; padding: 12px 20px; font-weight: 800; border: 1px solid transparent; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease; }
.btn svg { width: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn-gold { color: #120d04; background: linear-gradient(135deg, var(--gold-light), var(--gold)); box-shadow: 0 14px 35px rgba(201,162,39,.24); }
.btn-gold:hover { box-shadow: 0 18px 42px rgba(201,162,39,.36); }
.btn-ghost { color: var(--white); border-color: rgba(232,199,102,.35); background: rgba(255,255,255,.06); }
.btn-plain { color: var(--gold-dark); background: rgba(201,162,39,.08); border-color: var(--line); }
.btn-small { min-height: 40px; padding: 9px 16px; font-size: .88rem; }
.nav-panel .btn-small { min-height: 46px; padding-inline: 18px; border-radius: 999px; }
.hero { min-height: 100vh; position: relative; display: grid; align-items: center; overflow: hidden; background: var(--black); color: var(--white); padding: 112px 0 90px; }
.hero-bg, .hero-bg::after { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: .82; }
.hero-bg::after { content: ""; background: linear-gradient(90deg, rgba(6,6,6,.98) 0%, rgba(6,6,6,.84) 34%, rgba(6,6,6,.42) 64%, rgba(6,6,6,.2) 100%), radial-gradient(circle at 20% 28%, rgba(201,162,39,.24), transparent 32%); }
.particle-canvas { position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .65; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, .98fr) 340px; gap: 48px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--gold-dark); text-transform: uppercase; letter-spacing: .16em; font-size: .76rem; font-weight: 900; }
.hero-badge { color: var(--gold-light); background: rgba(201,162,39,.1); border: 1px solid rgba(232,199,102,.22); border-radius: 999px; padding: 8px 12px; }
.hero h1, .page-hero h1, .section-heading h2, .copy-block h2, .doorstep-cta h2 { font-family: "Playfair Display", Georgia, serif; letter-spacing: 0; line-height: .98; }
.hero h1 { margin: 18px 0; font-size: clamp(3.35rem, 7.3vw, 6.7rem); max-width: 760px; }
.hero h1 span { color: var(--gold-light); }
.hero p { max-width: 640px; font-size: clamp(1.06rem, 1.6vw, 1.28rem); color: rgba(255,255,255,.78); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-rate-card { align-self: end; padding: 22px; border-radius: var(--radius); background: rgba(14,13,10,.78); border: 1px solid rgba(232,199,102,.24); box-shadow: 0 30px 80px rgba(0,0,0,.34); backdrop-filter: blur(18px); animation: floatCard 4.8s ease-in-out infinite; }
.hero-rate-card h2 { margin: 20px 0 4px; font-size: 1.3rem; }
.hero-rate-card output { display: block; font-size: 3.5rem; font-weight: 900; color: var(--gold-light); line-height: 1; }
.hero-rate-card p { font-size: .9rem; color: rgba(255,255,255,.62); }
.hero-rate-card a { color: var(--gold-light); font-weight: 800; }
.status-pill { display: inline-flex; align-items: center; gap: 8px; border-radius: 999px; padding: 7px 11px; background: rgba(201,162,39,.11); color: var(--gold-dark); font-size: .82rem; font-weight: 800; border: 1px solid rgba(201,162,39,.2); }
.hero .status-pill { color: var(--gold-light); }
.status-pill span { width: 8px; height: 8px; border-radius: 50%; background: #36d06f; box-shadow: 0 0 0 6px rgba(54,208,111,.15); }
.scroll-indicator { position: absolute; z-index: 3; left: 50%; bottom: 26px; width: 30px; height: 48px; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; display: grid; place-items: start center; padding-top: 8px; }
.scroll-indicator span { width: 4px; height: 9px; border-radius: 999px; background: var(--gold-light); animation: scrollDot 1.6s ease-in-out infinite; }
.section { padding: 96px 0; }
.section-heading { text-align: center; margin: 0 auto 42px; max-width: 760px; }
.section-heading.left { text-align: left; margin: 0; }
.section-heading h2, .copy-block h2, .doorstep-cta h2 { margin: 10px 0 12px; font-size: clamp(2.2rem, 4.5vw, 4rem); color: var(--black); }
.section-heading p, .copy-block p { color: var(--muted); margin: 0; }
.rate-section, .services-section, .faq-section { background: var(--white); }
.rate-shell { padding: 26px; border-radius: var(--radius); background: linear-gradient(145deg, #fff, #fbf7ec); border: 1px solid var(--line); box-shadow: var(--shadow); }
.rate-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 18px; margin-bottom: 22px; flex-wrap: wrap; }
.segmented { display: inline-flex; padding: 5px; background: #f0eadb; border: 1px solid var(--line); border-radius: 999px; gap: 4px; flex-wrap: wrap; }
.segmented button, .purity-tabs button { border: 0; border-radius: 999px; background: transparent; color: var(--muted); min-height: 40px; padding: 9px 16px; font-weight: 800; }
.segmented button.active, .purity-tabs button.active { background: var(--black); color: var(--gold-light); }
.rate-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 18px; }
.rate-card { min-height: 220px; border-radius: var(--radius); padding: 24px; border: 1px solid var(--line); background: var(--white); display: flex; flex-direction: column; justify-content: space-between; }
.rate-card.featured { background: linear-gradient(145deg, #15120b, #272018); color: var(--white); }
.rate-card.dark { background: var(--black); color: var(--white); }
.rate-card div:first-child { display: flex; justify-content: space-between; color: inherit; }
.rate-card span, .rate-card small, .rate-card p { color: var(--muted); }
.rate-card.featured span, .rate-card.dark span, .rate-card.featured small, .rate-card.dark p { color: rgba(255,255,255,.64); }
.rate-value { font-size: clamp(2.6rem, 6vw, 4.5rem); font-weight: 900; color: var(--gold-dark); line-height: 1; }
.featured .rate-value { color: var(--gold-light); }
.purity-tabs { display: flex; gap: 7px; flex-wrap: wrap; }
.fine-print { color: var(--muted); margin: 20px 0 0; font-size: .9rem; }
.calc-grid, .split-grid, .contact-grid, .doorstep-grid, .page-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.calculator-card, .contact-card, .enquiry-form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px; }
label { display: grid; gap: 8px; color: var(--black); font-weight: 800; }
input, select, textarea { width: 100%; border: 1px solid #ddd3bd; background: #fffdf8; min-height: 48px; border-radius: 8px; padding: 12px 14px; color: var(--text); }
textarea { resize: vertical; }
.calculator-card { display: grid; gap: 18px; }
.estimate-box { background: linear-gradient(145deg, #121212, #231d12); color: var(--white); border-radius: var(--radius); padding: 22px; }
.estimate-box output { display: block; margin: 6px 0; font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 900; color: var(--gold-light); }
.estimate-box small { color: rgba(255,255,255,.68); }
.form-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.form-message { margin: 0; color: var(--gold-dark); font-weight: 700; }
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.card-grid.six { grid-template-columns: repeat(3, 1fr); }
.feature-card, .service-card, .blog-card, .testimonial { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: 0 16px 50px rgba(21, 18, 10, .08); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.feature-card:hover, .service-card:hover, .blog-card:hover { transform: translateY(-6px); border-color: rgba(201,162,39,.5); box-shadow: var(--shadow); }
.feature-card svg, .service-card svg { width: 34px; height: 34px; color: var(--gold-dark); }
.feature-card h3, .service-card h3, .blog-card h3, .timeline-step h3, .branch-card h3, .testimonial h3 { margin: 16px 0 8px; line-height: 1.22; color: var(--black); }
.feature-card p, .service-card p, .blog-card p, .timeline-step p, .branch-card p { color: var(--muted); margin: 0; }
.service-card a, .blog-card a { margin-top: 18px; display: inline-flex; color: var(--gold-dark); font-weight: 900; }
.timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.timeline::before { content: ""; position: absolute; left: 7%; right: 7%; top: 32px; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.timeline-step { position: relative; padding-top: 70px; }
.timeline-step span { position: absolute; top: 0; left: 0; width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; background: var(--black); color: var(--gold-light); font-weight: 900; border: 1px solid rgba(201,162,39,.4); }
.about-section { background: #f4efe4; }
.image-frame { border-radius: var(--radius); overflow: hidden; min-height: 420px; box-shadow: var(--shadow); }
.image-frame img { width: 100%; height: 100%; object-fit: cover; }
.stat-grid { margin-top: 24px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.stat-grid div { border: 1px solid var(--line); background: rgba(255,255,255,.6); border-radius: var(--radius); padding: 16px; }
.stat-grid strong { display: block; font-size: 1.7rem; color: var(--gold-dark); line-height: 1; }
.stat-grid span { color: var(--muted); font-size: .85rem; font-weight: 700; }
.doorstep-cta { padding: 72px 0; color: var(--white); background: radial-gradient(circle at 75% 20%, rgba(201,162,39,.2), transparent 30%), linear-gradient(135deg, #0b0b0b, #201b12); }
.doorstep-cta h2 { color: var(--white); }
.doorstep-cta p { color: rgba(255,255,255,.72); max-width: 610px; }
.route-visual { height: 220px; border: 1px solid rgba(232,199,102,.2); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; gap: 18px; background: rgba(255,255,255,.05); overflow: hidden; }
.route-visual svg { width: 52px; height: 52px; color: var(--gold-light); }
.route-visual span { width: 96px; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); position: relative; }
.branches-section { background: #f4efe4; }
.branch-tabs { margin: 0 auto 24px; width: max-content; max-width: 100%; }
.branch-grid { display: grid; gap: 18px; }
.branch-card { display: none; grid-template-columns: .95fr 1.05fr; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.branch-card.active { display: grid; }
.map-preview { min-height: 340px; position: relative; }
.map-preview img { width: 100%; height: 100%; object-fit: cover; }
.map-preview span { position: absolute; left: 18px; bottom: 18px; display: inline-flex; gap: 8px; align-items: center; background: rgba(11,11,11,.78); color: var(--gold-light); border: 1px solid rgba(232,199,102,.25); border-radius: 999px; padding: 10px 14px; font-weight: 900; }
.branch-content { padding: 28px; }
.branch-content ul, .contact-card ul { list-style: none; padding: 0; margin: 22px 0; display: grid; gap: 12px; }
.branch-content li, .contact-card li { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); }
.branch-content svg, .contact-card svg { width: 19px; min-width: 19px; color: var(--gold-dark); margin-top: 3px; }
.branch-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.reviews-section { background: var(--black); color: var(--white); }
.reviews-section .section-heading h2 { color: var(--white); }
.reviews-section .section-heading p { color: rgba(255,255,255,.62); }
.review-swiper { padding: 8px 8px 54px; }
.testimonial { height: auto; background: linear-gradient(145deg, #17140f, #0f0f0f); border-color: rgba(232,199,102,.18); color: var(--white); }
.testimonial h3 { color: var(--white); }
.testimonial blockquote { margin: 16px 0; color: rgba(255,255,255,.78); }
.testimonial p strong, .testimonial p span { display: block; }
.testimonial p span { color: rgba(255,255,255,.55); }
.stars { color: var(--gold-light); letter-spacing: .08em; }
.swiper-button-prev, .swiper-button-next { color: var(--gold-light); }
.swiper-pagination-bullet-active { background: var(--gold-light); }
.blog-card { padding: 0; overflow: hidden; }
.blog-card img { aspect-ratio: 16 / 10; width: 100%; object-fit: cover; }
.blog-card div { padding: 22px; }
.blog-card span { color: var(--gold-dark); text-transform: uppercase; font-size: .74rem; font-weight: 900; letter-spacing: .12em; }
.blog-card time { margin-left: 10px; color: var(--muted); font-size: .86rem; }
.blog-extra { margin-top: 12px !important; }
.narrow { max-width: 880px; }
.accordion { display: grid; gap: 12px; }
.accordion-item { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); overflow: hidden; }
.accordion-item button { width: 100%; min-height: 58px; border: 0; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 17px 20px; text-align: left; background: transparent; color: var(--black); font-weight: 900; }
.accordion-item button svg { width: 20px; transition: transform .25s ease; color: var(--gold-dark); }
.accordion-item button[aria-expanded="true"] { border-bottom: 1px solid var(--line); }
.accordion-item button[aria-expanded="true"] svg { transform: rotate(45deg); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.accordion-panel p { margin: 0; padding: 18px 20px; color: var(--muted); }
.contact-section { background: #f4efe4; }
.contact-card { background: linear-gradient(145deg, #15120b, #272018); color: var(--white); }
.contact-card h2 { color: var(--white); font-family: "Playfair Display", Georgia, serif; font-size: clamp(2rem, 4vw, 3.4rem); margin: 10px 0; }
.contact-card p, .contact-card li { color: rgba(255,255,255,.68); }
.contact-card a { color: var(--gold-light); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.enquiry-form { display: grid; gap: 16px; }
.page-hero { min-height: 520px; padding: 130px 0 72px; color: var(--white); background: radial-gradient(circle at 78% 20%, rgba(201,162,39,.18), transparent 30%), linear-gradient(135deg, #090909, #211b12); overflow: hidden; }
.page-hero h1 { font-size: clamp(3rem, 7vw, 6.6rem); margin: 14px 0; color: var(--white); }
.page-hero p { color: rgba(255,255,255,.74); max-width: 640px; }
.page-hero img { border-radius: var(--radius); box-shadow: 0 30px 90px rgba(0,0,0,.4); aspect-ratio: 4 / 3; object-fit: cover; }
.site-footer { color: rgba(255,255,255,.68); background: #080808; padding: 68px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr .8fr 1fr; gap: 34px; }
.footer-grid h3 { color: var(--white); margin: 0 0 14px; }
.footer-grid a, .footer-grid span { display: block; margin: 8px 0; }
.footer-brand { margin-bottom: 18px; }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid rgba(232,199,102,.2); border-radius: 50%; color: var(--gold-light); }
.footer-bottom { margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.floating-actions { position: fixed; right: 20px; bottom: 88px; z-index: 900; display: grid; gap: 12px; }
.floating-actions a { width: 52px; height: 52px; display: grid; place-items: center; color: var(--black); background: linear-gradient(135deg, #f3d96c, var(--gold)); border: 1px solid rgba(255,255,255,.28); border-radius: 50%; font-weight: 900; box-shadow: 0 18px 42px rgba(0,0,0,.22); transition: transform .22s ease, box-shadow .22s ease; }
.floating-actions a:hover { transform: translateY(-4px); box-shadow: 0 22px 48px rgba(0,0,0,.3); }
.floating-actions i { display: grid; place-items: center; font-size: 1.28rem; line-height: 1; }
.floating-actions span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.floating-actions .whatsapp-action { background: linear-gradient(135deg, #35d46b, #1fb154); color: #06130a; }
.floating-actions .call-action { background: linear-gradient(135deg, #f3d96c, var(--gold)); }
.mobile-action-bar { display: none; }
.back-top { position: fixed; right: 20px; bottom: 24px; width: 48px; height: 48px; border: 1px solid rgba(232,199,102,.35); border-radius: 50%; background: var(--black); color: var(--gold-light); display: grid; place-items: center; opacity: 0; visibility: hidden; transform: translateY(12px); transition: .25s ease; z-index: 901; }
.back-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.reveal { opacity: 0; transform: translateY(28px); }
@keyframes floatCard { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes scrollDot { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(20px); opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .particle-canvas { display: none; }
}
