*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --dark: #2c2c2c;
  --darker: #1a1a1a;
  --grey: #878b93;
  --light: #f5f5f3;
  --white: #fff;
  --gold: #f5b41c;
  --gold-dark: #d49a10;
  --maroon: #7c1639;
  --text: #444;
  --muted: #777;
  --border: #e0e0e0;
  --sans: 'Open Sans', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--text); line-height: 1.6; background: var(--white); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

.wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ── TOP BAR ── */
.topbar {
  background: var(--darker); color: #ccc; font-size: 13px;
  padding: 8px 0;
}
.topbar-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.topbar a { color: var(--gold); transition: color 0.2s; }
.topbar a:hover { color: #fff; }
.footer-social { display: flex; gap: 16px; margin-top: 16px; }
.footer-social a { display: inline-flex; }
.footer-social svg { width: 24px; height: 24px; fill: #999; transition: fill 0.2s; }
.footer-social a:hover svg { fill: var(--gold); }
.social-icons { display: inline-flex; gap: 16px; align-items: center; }
.social-icons a { display: inline-flex; }
.social-icons svg { width: 28px; height: 28px; fill: var(--dark); transition: fill 0.2s; }
.social-icons a:hover svg { fill: var(--gold); }
.footer-col .icon { width: 14px; height: 14px; fill: var(--gold); vertical-align: middle; margin-right: 6px; flex-shrink: 0; }

/* ── NAV ── */
nav {
  background: var(--white); padding: 16px 0;
  border-bottom: 3px solid var(--gold);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.nav-inner {
  display: flex; justify-content: space-between; align-items: center;
}
.logo img { height: 60px; }
.logo-text { font-size: 20px; font-weight: 700; color: var(--dark); }
.logo-text span { color: var(--gold); }

.nav-links { display: flex; gap: 0; align-items: center; }
.nav-links a {
  padding: 10px 18px; font-size: 13px; font-weight: 600;
  color: var(--dark); text-transform: uppercase; letter-spacing: 0.5px;
  transition: background 0.2s, color 0.2s; border-radius: 3px;
}
.nav-links a:hover { background: var(--light); color: var(--dark); }
.nav-links a.active { background: var(--gold); color: var(--white); }
.nav-links .nav-cta {
  background: var(--gold); color: var(--white); margin-left: 8px;
  padding: 10px 20px;
}
.nav-links .nav-cta:hover { background: var(--gold-dark); }

.menu-btn {
  display: none; background: none; border: none; cursor: pointer;
  width: 30px; height: 24px; position: relative; z-index: 300;
}
.menu-btn span {
  display: block; width: 100%; height: 3px; background: var(--dark);
  border-radius: 2px; position: absolute; left: 0;
  transition: transform 0.3s, opacity 0.3s, top 0.3s;
}
.menu-btn span:nth-child(1) { top: 0; }
.menu-btn span:nth-child(2) { top: 10px; }
.menu-btn span:nth-child(3) { top: 20px; }
.menu-btn.active span:nth-child(1) { top: 10px; transform: rotate(45deg); }
.menu-btn.active span:nth-child(2) { opacity: 0; }
.menu-btn.active span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

.nav-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 200; opacity: 0; transition: opacity 0.35s;
}
.nav-overlay.active { display: block; opacity: 1; }

/* ── HERO ── */
.hero {
  position: relative; min-height: 460px;
  background-size: cover; background-position: center;
  display: flex; align-items: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(28,28,28,0.85), rgba(28,28,28,0.5));
}
.hero-content { position: relative; z-index: 1; color: var(--white); padding: 80px 0; }
.hero h1 { font-size: clamp(28px, 4vw, 44px); font-weight: 700; margin-bottom: 16px; }
.hero h1 span { color: var(--gold); }
.hero p { font-size: 17px; max-width: 560px; line-height: 1.7; color: #ccc; margin-bottom: 28px; }

.btn {
  display: inline-block; padding: 14px 32px; font-size: 14px;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.2s;
}
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-dark); transform: scale(1.03); }
.btn-outline { border: 2px solid var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--dark); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--gold); }

/* ── FEATURES STRIP ── */
.features {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  background: var(--grey);
}
.feature {
  padding: 32px 24px; text-align: center; color: var(--white);
  border-right: 1px solid rgba(255,255,255,0.15);
}
.feature:last-child { border-right: none; }
.feature h3 { font-size: 15px; color: var(--gold); margin-bottom: 8px; }
.feature p { font-size: 13px; line-height: 1.6; color: #ddd; }

/* ── SECTIONS ── */
section { padding: 72px 0; }
.section-grey { background: var(--grey); color: var(--white); }
.section-light { background: var(--light); }

.section-head { margin-bottom: 40px; }
.section-head h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.section-grey .section-head h2 { color: var(--gold); }
.section-head p { font-size: 15px; color: var(--muted); max-width: 600px; }
.section-grey .section-head p { color: #ddd; }
.section-head.center { text-align: center; }
.section-head.center p { margin: 0 auto; }

.gold-line { width: 50px; height: 3px; background: var(--gold); margin-bottom: 16px; }
.center .gold-line { margin: 0 auto 16px; }

/* ── TWO COL ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.two-col img { border-radius: 4px; width: 100%; transition: transform 0.5s; }
.two-col img:hover { transform: scale(1.03); }
.two-col .img-wrap { border-radius: 4px; overflow: hidden; }
.two-col h2 { font-size: 28px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.two-col .gold-line { margin-bottom: 16px; }
.two-col p { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 16px; }
.two-col ul { margin-bottom: 20px; }
.two-col ul li { font-size: 14px; padding: 5px 0; padding-left: 18px; position: relative; }
.two-col ul li::before { content: '\2713'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* ── SERVICES LIST ── */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-card {
  background: var(--white); border: 1px solid var(--border);
  overflow: hidden; transition: border-color 0.2s, box-shadow 0.3s, transform 0.3s;
  display: block;
}
.svc-card:hover { border-color: var(--gold); box-shadow: 0 8px 24px rgba(0,0,0,0.1); transform: translateY(-4px); }
.svc-card-img {
  aspect-ratio: 16/10; overflow: hidden; background: var(--light);
}
.svc-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.svc-card:hover .svc-card-img img { transform: scale(1.08); }
.svc-card-body { padding: 24px; }
.svc-card h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.svc-card p { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 10px; }
.svc-card .svc-link { font-size: 13px; font-weight: 700; color: var(--gold); }
.svc-card:hover .svc-link { color: var(--gold-dark); }

/* ── GALLERY ── */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.gallery-item {
  aspect-ratio: 4/3; overflow: hidden; border-radius: 4px;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.06); }

/* ── ETHOS / VALUES ── */
.values-list { display: grid; grid-template-columns: 1fr; gap: 20px; }
.value-item { display: flex; gap: 16px; align-items: start; }
.value-dot {
  flex-shrink: 0; width: 40px; height: 40px; background: var(--gold);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--maroon); font-weight: 700; font-size: 16px;
}
.value-item h4 { font-size: 16px; font-weight: 700; color: var(--gold); margin-bottom: 4px; }
.value-item p { font-size: 14px; color: #ddd; line-height: 1.6; }

/* ── CTA BAND ── */
.cta-band { padding: 56px 0; background: var(--gold); color: var(--white); }
.cta-band-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
}
.cta-band h2 { font-size: clamp(20px, 3vw, 28px); font-weight: 700; }
.cta-band .btn { background: var(--dark); }
.cta-band .btn:hover { background: var(--maroon); }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin-top: 24px; margin-bottom: 6px; }
.contact-info h3:first-child { margin-top: 0; }
.contact-info p { font-size: 15px; color: var(--text); }
.contact-info a { color: var(--gold); font-weight: 600; }
.contact-info a:hover { color: var(--gold-dark); }

.contact-form label { display: block; font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 4px; margin-top: 16px; }
.contact-form label:first-child { margin-top: 0; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 11px 14px; border: 1px solid var(--border);
  font-size: 14px; font-family: var(--sans); color: var(--dark);
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form button {
  margin-top: 20px; border: none; cursor: pointer;
  font-family: var(--sans);
}

/* ── NEWS ── */
.news-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.news-card { background: var(--white); border: 1px solid var(--border); overflow: hidden; }
.news-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.news-card-body { padding: 24px; }
.news-card h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.news-card p { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 12px; }
.news-card .date { font-size: 12px; color: var(--muted); }

/* ── FOOTER ── */
footer { background: var(--darker); color: #aaa; padding: 48px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.footer-brand p { font-size: 13px; line-height: 1.7; margin-top: 12px; }
.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); margin-bottom: 14px; }
.footer-col a { display: flex; align-items: center; font-size: 13px; color: #aaa; margin-bottom: 8px; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-col p { font-size: 13px; line-height: 1.6; }
.footer-copy { padding-top: 24px; border-top: 1px solid #333; font-size: 12px; color: #666; }

/* ── PAGE HERO ── */
.page-hero {
  background-size: cover; background-position: center; background-repeat: no-repeat;
  position: relative; height: 220px;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(28,28,28,0.75), rgba(28,28,28,0.45));
}

/* ── PAGE HEADING (below hero) ── */
.page-heading {
  background: var(--white); padding: 28px 0 24px; border-bottom: 1px solid var(--border);
  position: relative; z-index: 1;
}
.page-heading h1 { font-size: clamp(24px, 3.5vw, 36px); font-weight: 700; color: var(--dark); margin-top: 4px; }
.page-heading p { font-size: 15px; color: var(--text); margin-top: 6px; }

/* ── SERVICE DETAIL ── */
.svc-detail { padding: 60px 0; }
.svc-detail-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.svc-detail-img { border-radius: 4px; overflow: hidden; }
.svc-detail-img img { width: 100%; transition: transform 0.5s; }
.svc-detail-img:hover img { transform: scale(1.04); }
.svc-detail-text h2 { font-size: 24px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.svc-detail-text p { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 16px; }
.svc-detail-text ul { margin-bottom: 20px; }
.svc-detail-text ul li { font-size: 14px; padding: 6px 0; padding-left: 20px; position: relative; border-bottom: 1px solid var(--border); }
.svc-detail-text ul li:last-child { border-bottom: none; }
.svc-detail-text ul li::before { content: '\2713'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* ── RESPONSIVE ── */
@media (max-width: 800px) {
  .features { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-detail-inner { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  nav { position: sticky; top: 0; z-index: 9999; }
  .nav-links {
    display: flex !important;
    flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--darker);
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
    z-index: 9999;
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
  }
  .nav-links.open { max-height: 600px; padding: 8px 0; }
  .nav-links a {
    display: block; padding: 0 24px; font-size: 15px; font-weight: 600;
    color: #ccc !important; border-bottom: none; border-radius: 0;
    background: none !important; text-decoration: none;
    pointer-events: auto !important; cursor: pointer !important;
    line-height: 0; opacity: 0; overflow: hidden;
    transition: line-height 0.3s, padding 0.3s, opacity 0.3s, background 0.2s;
    letter-spacing: 0.5px; text-transform: uppercase;
  }
  .nav-links.open a {
    line-height: 52px; padding: 0 24px; opacity: 1;
    border-bottom: 1px solid #333;
  }
  .nav-links.open a:last-child { border-bottom: none; }
  .nav-links a:hover { background: rgba(245,180,28,0.12) !important; color: var(--gold) !important; }
  .nav-links a.active { color: var(--gold) !important; }
  .nav-links .nav-cta {
    margin: 12px 24px !important; text-align: center; border-radius: 4px;
    background: var(--gold) !important; color: var(--white) !important;
    line-height: 48px; border-bottom: none !important;
  }
  .nav-links.open .nav-cta { opacity: 1; line-height: 48px; padding: 0 24px; }
  .nav-links .nav-cta:hover { background: var(--gold-dark) !important; }
  .menu-btn { display: flex; flex-direction: column; justify-content: space-between; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .topbar-inner { justify-content: center; text-align: center; }
}
/* ── LOCATION GRID ── */
.location-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; margin-top: 30px; }
.location-card { background: var(--white); border: 1px solid #eee; border-radius: 8px; padding: 24px; text-align: center; transition: box-shadow 0.3s, border-color 0.3s; }
.location-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); border-color: var(--gold); }
.location-card h3 { margin: 0 0 8px; font-size: 1.1rem; }
.location-card a { color: var(--dark); text-decoration: none; }
.location-card a:hover { color: var(--gold); }

/* ── FLOATING CALL BUTTON ── */
.float-call {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--gold); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: transform 0.3s, background 0.3s;
  text-decoration: none;
  animation: pulse-ring 2s ease-out infinite;
}
.float-call:hover { transform: scale(1.1); background: var(--gold-dark); }
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(245,180,28,0.5); }
  70% { box-shadow: 0 0 0 16px rgba(245,180,28,0); }
  100% { box-shadow: 0 0 0 0 rgba(245,180,28,0); }
}

@media (max-width: 500px) {
  .features { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── SERVICE CARD HOVER ── */
.home-svc-card .card-img img { transition: transform 0.4s ease; }
.home-svc-card:hover .card-img img { transform: scale(1.05); }
.home-svc-card .card-img { overflow: hidden; }
.location-card { transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s; }
.location-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); border-color: var(--gold); }

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed; bottom: 96px; right: 24px; z-index: 998;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--dark); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}
.back-to-top.show { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--gold); transform: scale(1.1); }

/* ── STICKY MOBILE QUOTE BAR ── */
.sticky-quote {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 997;
  background: var(--gold); padding: 12px 16px;
  text-align: center; transform: translateY(100%);
  transition: transform 0.3s; box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
}
.sticky-quote.show { transform: translateY(0); }
.sticky-quote a { color: var(--dark); font-weight: 700; font-size: 15px; text-decoration: none; }
@media (max-width: 800px) {
  .sticky-quote { display: block; }
  .float-call { bottom: 72px; }
  .back-to-top { bottom: 144px; }
}

/* ── BREADCRUMBS ── */
.breadcrumbs {
  padding: 12px 0; font-size: 13px; color: #999;
  position: static; background: none; border-bottom: none;
  box-shadow: none; z-index: auto;
}
.breadcrumbs a { color: var(--gold); text-decoration: none; }
.breadcrumbs a:hover { color: var(--dark); }
.breadcrumbs span { margin: 0 6px; }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; margin-top: 30px; }
.blog-card { background: #fff; border: 1px solid #eee; border-radius: 8px; overflow: hidden; transition: box-shadow 0.3s, transform 0.3s; }
.blog-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); transform: translateY(-4px); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 20px; }
.blog-card-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.blog-card-body h3 a { color: var(--dark); text-decoration: none; }
.blog-card-body h3 a:hover { color: var(--gold); }
.blog-card-body .blog-date { font-size: 12px; color: #999; margin-bottom: 8px; }
.blog-card-body p { font-size: 14px; color: #666; line-height: 1.6; }
.blog-post { max-width: 780px; margin: 0 auto; }
.blog-post h2 { margin: 30px 0 12px; }
.blog-post p { margin-bottom: 16px; line-height: 1.8; }
.blog-post ul, .blog-post ol { margin: 16px 0; padding-left: 24px; }
.blog-post li { margin-bottom: 8px; line-height: 1.6; }
