/* CSS Variables */
:root {
  --dark-charcoal: #1f1f1f;
  --warm-brown: #6b3f24;
  --sand-tan: #d7b98e;
  --accent-gold: #d99022;
  --light-bg: #f8f5ef;
  --white: #ffffff;
  --text-color: #333333;
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
}

/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-main); color: var(--text-color); background-color: var(--white); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* Typography */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--dark-charcoal); margin-bottom: 1rem; }
h1 { font-size: 3rem; font-weight: 700; line-height: 1.2; }
h2 { font-size: 2.5rem; text-align: center; }
p { margin-bottom: 1rem; }

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 20px); }
.section { padding: 80px 0; }
.bg-light { background-color: var(--light-bg); }
.bg-dark { background-color: var(--dark-charcoal); color: var(--white); }
.bg-dark h2, .bg-dark h3 { color: var(--white); }

/* Buttons */
.btn { display: inline-block; padding: 12px 24px; border-radius: 4px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; text-align: center; border: 2px solid transparent; min-height: 44px; }
.btn-primary { background-color: var(--accent-gold); color: var(--white); }
.btn-primary:hover { background-color: #be7e1d; }
.btn-outline { background-color: transparent; border-color: var(--accent-gold); color: var(--accent-gold); }
.btn-outline:hover { background-color: var(--accent-gold); color: var(--white); }

/* Header */
header { background-color: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; }
.header-inner { display: flex; justify-content: space-between; align-items: center; min-height: 96px; }
.logo { display: flex; align-items: center; flex: 0 0 auto; }
.logo a { display: flex; align-items: center; }
.site-logo { display: block; width: clamp(130px, 14vw, 180px); max-height: 82px; object-fit: contain; }
.nav-menu { display: flex; gap: clamp(16px, 2.2vw, 30px); align-items: center; }
.nav-menu a { font-weight: 500; transition: color 0.3s; }
.nav-menu a:hover { color: var(--accent-gold); }
.header-right { display: flex; align-items: center; gap: 20px; }
.phone-link { font-weight: 600; color: var(--warm-brown); display: flex; align-items: center; gap: 8px; }
.mobile-menu-btn { display: none; min-width: 44px; min-height: 44px; font-size: 1.5rem; cursor: pointer; background: none; border: none; }

/* Hero */
.hero { position: relative; height: 80vh; min-height: 600px; display: flex; align-items: center; justify-content: center; text-align: center; color: var(--white); background-size: cover; background-position: center; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; z-index: 1; background: rgba(31, 31, 31, 0.6); }
.hero-slide { position: absolute; inset: 0; opacity: 0; background-size: cover; background-position: center; transform: scale(1.04); transition: opacity 1s ease, transform 6s ease; }
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-content { position: relative; z-index: 1; max-width: 800px; padding: 0 20px; }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero p { font-size: 1.25rem; margin-bottom: 30px; }
.hero-btns { display: flex; gap: 15px; justify-content: center; }
.hero-dots { display: flex; justify-content: center; gap: 10px; margin-top: 28px; }
.hero-dot { width: 12px; height: 12px; border: 2px solid var(--white); border-radius: 999px; background: transparent; cursor: pointer; }
.hero-dot.active { background: var(--white); }

/* Grid System */
.grid { display: grid; gap: 30px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Services */
.service-card { background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08); transition: transform 0.3s; }
.service-card:hover { transform: translateY(-5px); }
.service-img { height: 240px; background-size: cover; background-position: center; }
.service-content { padding: 25px; text-align: center; }
.service-content h3 { margin-bottom: 10px; }
.service-content p { color: #666; margin-bottom: 20px; }

/* About Preview */
.about-preview { display: flex; align-items: center; gap: 50px; }
.about-img { flex: 1; border-radius: 8px; overflow: hidden; }
.about-img img { width: 100%; max-height: 520px; object-fit: cover; }
.home-about-img { aspect-ratio: 1 / 1; }
.home-about-img img { width: 100%; height: 100%; max-height: none; object-fit: cover; }
.about-content { flex: 1; }
.section-kicker { display: block; color: var(--accent-gold); font-weight: 700; text-transform: uppercase; letter-spacing: 0; margin-bottom: 10px; text-align: center; }
.about-page { background: var(--white); }
.about-intro { max-width: 820px; margin: 0 auto 48px; text-align: center; }
.about-intro h2 { margin-bottom: 18px; }
.about-intro p { font-size: 1.12rem; color: #555; margin: 0; }
.about-story { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr); gap: 48px; align-items: center; }
.about-story-image { border-radius: 8px; overflow: hidden; box-shadow: 0 16px 45px rgba(0,0,0,0.12); }
.about-story-image img { width: 100%; height: min(520px, 44vw); min-height: 360px; object-fit: cover; }
.about-story-copy h3 { font-size: 2rem; margin-bottom: 18px; }
.about-story-copy p { color: #555; }
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 42px; }
.about-value { padding: 26px; border-radius: 8px; background: var(--light-bg); border-top: 4px solid var(--accent-gold); }
.about-value h3 { font-size: 1.25rem; margin-bottom: 10px; }
.about-value p { color: #555; margin-bottom: 0; }
.about-proof { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr); gap: 36px; align-items: start; margin-top: 56px; padding-top: 44px; border-top: 1px solid #eee8df; }
.about-proof h2 { text-align: left; margin-bottom: 14px; }
.about-proof p { color: #555; margin-bottom: 0; }
.about-checklist { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 24px; margin-top: 6px; }
.about-checklist li { margin-bottom: 0; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr)); gap: 15px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 8px; aspect-ratio: 4/3; cursor: pointer; border: 0; background: var(--dark-charcoal); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item .overlay { position: absolute; inset: 0; background: rgba(107, 63, 36, 0.8); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
.gallery-item:focus-visible { outline: 3px solid var(--accent-gold); outline-offset: 4px; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay span { color: var(--white); font-weight: 600; font-size: 1.2rem; transform: translateY(20px); transition: transform 0.3s; }
.gallery-item:hover .overlay span { transform: translateY(0); }
.lightbox-open { overflow: hidden; }
.lightbox { position: fixed; inset: 0; z-index: 2000; display: none; align-items: center; justify-content: center; padding: 32px 72px; background: rgba(10, 10, 10, 0.9); }
.lightbox.active { display: flex; }
.lightbox-content { width: min(100%, 1100px); margin: 0; text-align: center; color: var(--white); }
.lightbox-content img { width: 100%; max-height: 82vh; object-fit: contain; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,0.45); background: #111; }
.lightbox-content figcaption { margin-top: 14px; font-weight: 600; color: var(--white); }
.lightbox-close, .lightbox-nav { position: absolute; border: 0; border-radius: 999px; background: rgba(255,255,255,0.92); color: var(--dark-charcoal); cursor: pointer; display: flex; align-items: center; justify-content: center; line-height: 1; transition: background 0.2s, transform 0.2s; }
.lightbox-close:hover, .lightbox-nav:hover { background: var(--white); transform: scale(1.04); }
.lightbox-close:focus-visible, .lightbox-nav:focus-visible { outline: 3px solid var(--accent-gold); outline-offset: 3px; }
.lightbox-close { top: 24px; right: 24px; width: 44px; height: 44px; font-size: 2rem; }
.lightbox-nav { top: 50%; width: 54px; height: 54px; font-size: 3rem; transform: translateY(-50%); }
.lightbox-nav:hover { transform: translateY(-50%) scale(1.04); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* Testimonials */
.testimonials-carousel { overflow: hidden; position: relative; }
.testimonials-track { display: flex; transition: transform 0.45s ease; }
.testimonials-track .testimonial-card { flex: 0 0 calc(33.333% - 20px); margin-right: 30px; }
.testimonial-card { background: var(--white); padding: 30px; border-radius: 8px; text-align: center; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.stars { color: var(--accent-gold); font-size: 1.2rem; margin-bottom: 15px; }
.testimonial-card p { font-style: italic; color: #555; margin-bottom: 20px; }
.testimonials-controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 28px; }
.testimonial-prev, .testimonial-next { width: 42px; height: 42px; border: 0; border-radius: 999px; background: var(--dark-charcoal); color: var(--white); font-size: 2rem; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s, transform 0.2s; }
.testimonial-prev:hover, .testimonial-next:hover { background: var(--accent-gold); transform: translateY(-2px); }
.testimonial-dots { display: flex; gap: 8px; }
.testimonial-dot { width: 10px; height: 10px; border: 0; border-radius: 999px; background: #d7d1c7; cursor: pointer; }
.testimonial-dot.active { background: var(--accent-gold); }

/* Service Area Map */
.service-area-section { display: grid; grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr); gap: 40px; align-items: center; }
.service-area-copy .section-kicker { text-align: left; }
.service-area-copy h2 { text-align: left; margin-bottom: 18px; }
.service-area-copy p { color: #555; max-width: 520px; }
.service-area-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.service-area-tags span { display: inline-flex; align-items: center; min-height: 34px; padding: 7px 12px; border-radius: 999px; background: var(--white); color: var(--dark-charcoal); font-weight: 600; font-size: 0.92rem; box-shadow: 0 3px 12px rgba(0,0,0,0.04); }
.service-area-map { min-height: 430px; }

/* Features List */
.features-list { list-style: none; margin-top: 20px; }
.features-list li { padding-left: 30px; position: relative; margin-bottom: 15px; font-weight: 500; }
.features-list li::before { content: '✓'; position: absolute; left: 0; color: var(--accent-gold); font-weight: bold; }

/* CTA Banner */
.cta-banner { text-align: center; padding: 60px 20px; background-color: var(--warm-brown); color: var(--white); }
.cta-banner h2 { color: var(--white); margin-bottom: 20px; }

/* Footer */
footer { background-color: var(--dark-charcoal); color: #ccc; padding: 60px 0 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-bottom: 40px; }
.footer-col h4 { color: var(--white); margin-bottom: 20px; font-size: 1.2rem; }
.footer-logo { display: inline-flex; align-items: center; margin-bottom: 34px; padding-bottom: 12px; }
.footer-logo img { display: block; width: min(100%, 230px); max-height: 110px; object-fit: contain; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { transition: color 0.3s; }
.footer-col a:hover { color: var(--accent-gold); }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; }

/* Service Page specific */
.service-header { height: 40vh; min-height: 300px; display: flex; align-items: center; justify-content: center; background-color: var(--dark-charcoal); color: var(--white); text-align: center; }
.service-header h1 { color: var(--white); margin: 0; }
.service-header[style*="background-image"] { background-position: center; }
.service-header-overlay { position: absolute; inset: 0; background: rgba(31, 31, 31, 0.58); }
.contact-cover { background-color: var(--dark-charcoal); }
.gallery-cover { background-color: var(--dark-charcoal); }
.services-cover { background-color: var(--dark-charcoal); }
.about-cover { background-color: var(--dark-charcoal); }
.section .grid-2 > div > img { width: 100%; max-height: 520px; object-fit: cover; }

/* Premium Service Pages */
.service-hero { position: relative; min-height: 620px; display: flex; align-items: center; color: var(--white); background-size: cover; background-position: center; overflow: hidden; }
.service-hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(31,31,31,0.82), rgba(31,31,31,0.48), rgba(31,31,31,0.28)); }
.service-hero-content { position: relative; z-index: 1; max-width: 760px; margin-left: max(20px, calc((100vw - 1200px) / 2)); margin-right: auto; }
.service-eyebrow { display: inline-flex; align-items: center; min-height: 34px; padding: 7px 14px; border-radius: 999px; background: rgba(217,144,34,0.94); color: var(--white); font-weight: 700; margin-bottom: 18px; }
.service-hero h1 { color: var(--white); font-size: clamp(2.5rem, 5vw, 5rem); margin-bottom: 18px; max-width: 760px; }
.service-hero p { font-size: 1.22rem; max-width: 720px; color: rgba(255,255,255,0.9); }
.service-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.service-hero-link { color: var(--white); border-color: var(--white); }
.service-hero-link:hover { border-color: var(--accent-gold); }
.service-detail-section { background: var(--white); }
.service-detail-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 48px; align-items: center; }
.service-detail-copy .section-kicker, .service-process-intro .section-kicker, .service-section-heading .section-kicker, .service-area-band .section-kicker { text-align: left; }
.service-detail-copy h2, .service-process-intro h2, .service-area-band h2 { text-align: left; margin-bottom: 18px; }
.service-detail-copy p, .service-process-intro p, .service-area-band p { color: #555; }
.service-detail-media { position: relative; border-radius: 8px; overflow: hidden; box-shadow: 0 18px 48px rgba(0,0,0,0.14); }
.service-detail-media::after { content: ''; position: absolute; inset: auto 20px 20px auto; width: 92px; height: 92px; border-right: 5px solid var(--accent-gold); border-bottom: 5px solid var(--accent-gold); opacity: 0.9; }
.service-detail-media img { width: 100%; height: 560px; object-fit: cover; }
.service-feature-panel { margin-top: 30px; padding: 28px; border-radius: 8px; background: var(--light-bg); }
.service-feature-panel h3 { margin-bottom: 16px; }
.service-feature-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 18px; margin-top: 0; }
.service-feature-list li { margin-bottom: 0; }
.service-section-heading { max-width: 760px; margin: 0 auto 34px; text-align: center; }
.service-section-heading .section-kicker, .service-section-heading h2 { text-align: center; }
.service-benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-benefit { min-height: 160px; padding: 26px; border-radius: 8px; background: var(--white); box-shadow: 0 8px 28px rgba(0,0,0,0.06); border-bottom: 4px solid transparent; transition: transform 0.25s ease, border-color 0.25s ease; }
.service-benefit:hover { transform: translateY(-5px); border-color: var(--accent-gold); }
.service-benefit span { display: block; color: var(--accent-gold); font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; }
.service-benefit p { margin: 0; font-weight: 600; color: var(--dark-charcoal); }
.service-process-grid { display: grid; grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr); gap: 46px; align-items: start; }
.process-steps { display: grid; gap: 16px; }
.process-step { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 22px; border-radius: 8px; background: var(--light-bg); }
.process-step > span { width: 54px; height: 54px; border-radius: 999px; background: var(--dark-charcoal); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 1.35rem; font-weight: 700; }
.process-step h3 { font-size: 1.15rem; margin-bottom: 6px; }
.process-step p { color: #555; margin: 0; }
.service-area-band { padding: 58px 0; background: var(--dark-charcoal); color: var(--white); }
.service-area-band h2 { color: var(--white); }
.service-area-band p { color: rgba(255,255,255,0.78); margin-bottom: 0; }
.service-area-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.service-final-cta p { color: rgba(255,255,255,0.82); margin-bottom: 0; }
.reveal-item, .reveal-section { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-item.is-visible, .reveal-section.is-visible { opacity: 1; transform: translateY(0); }
.reveal-item:nth-child(2) { transition-delay: 0.08s; }
.reveal-item:nth-child(3) { transition-delay: 0.14s; }
.reveal-item:nth-child(4) { transition-delay: 0.2s; }

/* Contact Form */
.contact-form { background: var(--white); padding: 40px; border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; }
.form-control { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px; font-family: inherit; font-size: 1rem; }
.form-control:focus { outline: none; border-color: var(--accent-gold); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-message { padding: 15px; border-radius: 4px; margin-top: 20px; display: none; }
.form-message.success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.form-message.error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.map-embed { width: 100%; height: 380px; min-height: 340px; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.05); background: #e0e0e0; }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-embed .leaflet-container { width: 100%; height: 100%; }
.map-fallback { width: 100%; height: 100%; min-height: inherit; display: flex; align-items: center; justify-content: center; padding: 24px; color: #555; text-align: center; background: #eee8df; }
.leaflet-popup-content { font-family: var(--font-main); }

/* Responsive */
@media (max-width: 1100px) {
  .header-right .btn { display: none; }
  .nav-menu { gap: 16px; }
  .site-logo { width: clamp(125px, 14vw, 165px); max-height: 76px; }
}

@media (max-width: 992px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .about-preview { flex-direction: column; }
  .about-story, .about-proof { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .about-story-image img { height: 420px; }
  .service-area-section { grid-template-columns: 1fr; }
  .testimonials-track .testimonial-card { flex-basis: calc(50% - 15px); }
  .service-hero { min-height: 560px; }
  .service-detail-grid, .service-process-grid { grid-template-columns: 1fr; }
  .service-detail-media img { height: 460px; }
  .service-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .service-area-band-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header-inner { min-height: 86px; }
  .site-logo { width: min(46vw, 170px); max-height: 78px; }
  .header-right .btn, .header-right .phone-link { display: none; }
  .mobile-menu-btn { display: block; }
  .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; align-items: stretch; gap: 0; padding: 10px 20px 18px; box-shadow: 0 10px 10px rgba(0,0,0,0.1); }
  .nav-menu a { display: block; min-height: 44px; padding: 11px 0; border-bottom: 1px solid #eee8df; }
  .nav-menu a:last-child { border-bottom: 0; }
  .nav-menu.active { display: flex; }
  .grid-2 { grid-template-columns: 1fr; }
  .hero { min-height: 560px; }
  .hero h1 { font-size: 2.35rem; }
  .hero p { font-size: 1.05rem; }
  .home-about-img { width: 100%; }
  .service-area-copy .section-kicker, .service-area-copy h2 { text-align: center; }
  .service-area-copy p { text-align: center; margin-left: auto; margin-right: auto; }
  .service-area-tags { justify-content: center; }
  .service-area-map, .map-embed { min-height: 320px; height: 340px; }
  .testimonials-track .testimonial-card { flex-basis: 100%; margin-right: 0; }
  .about-proof h2 { text-align: center; }
  .about-checklist { grid-template-columns: 1fr; }
  .about-story-image img { height: 320px; min-height: 0; }
  .service-hero { min-height: 520px; text-align: center; }
  .service-hero-overlay { background: rgba(31,31,31,0.66); }
  .service-hero-content { margin-left: auto; margin-right: auto; }
  .service-hero-actions { justify-content: center; }
  .service-detail-copy .section-kicker, .service-process-intro .section-kicker, .service-area-band .section-kicker { text-align: center; }
  .service-detail-copy h2, .service-process-intro h2, .service-area-band h2 { text-align: center; }
  .service-detail-copy p, .service-process-intro p, .service-area-band p { text-align: center; }
  .service-detail-media img { height: 340px; }
  .service-feature-list, .service-benefits-grid { grid-template-columns: 1fr; }
  .process-step { grid-template-columns: 1fr; text-align: center; }
  .process-step > span { margin: 0 auto; }
  .service-area-band-inner { align-items: center; text-align: center; }
  .lightbox { padding: 56px 16px 28px; }
  .lightbox-close { top: 14px; right: 14px; }
  .lightbox-nav { width: 42px; height: 42px; font-size: 2.4rem; background: rgba(255,255,255,0.86); }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 2rem; }
  .hero-btns { flex-direction: column; }
}
@media (max-width: 480px) {
  .section { padding: 56px 0; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 520px; }
  .service-hero { min-height: 500px; }
  .service-hero h1 { font-size: 2.25rem; }
  .contact-form { padding: 24px; }
  .service-area-tags span { width: 100%; justify-content: center; }
  .footer-logo { margin-bottom: 28px; padding-bottom: 10px; }
  .footer-logo img { width: min(100%, 210px); max-height: 96px; }
}
