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

:root {
  --earth: #2C2416;
  --bark: #4A3728;
  --moss: #5C6B3A;
  --sage: #8A9B6A;
  --stone: #A89880;
  --cream: #F4EFE6;
  --sand: #E8DDD0;
  --gold: #C9A84C;
  --bright-gold: #FFD040;
  --white: #FDFAF6;
  --text: #1E1A14;
}

html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; background: var(--white); color: var(--text); overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: flex-start; gap: 32px;
  padding: 18px 48px;
  background: rgba(44,36,22,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.nav-logo { display: flex; flex-direction: column; line-height: 1; text-decoration: none; }
.nav-logo span:first-child { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: var(--gold); letter-spacing: 0.02em; }
.nav-logo span:last-child { font-family: 'Barlow Condensed', sans-serif; font-size: 0.7rem; color: rgba(220,205,185,0.95); letter-spacing: 0.18em; text-transform: uppercase; margin-top: 2px; }
.nav-links { display: flex; gap: 32px; list-style: none; margin: 0 0 0 auto; padding: 0; align-items: center; }
.nav-links a { color: rgba(244,235,218,0.97); text-decoration: none; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; transition: color 0.2s; text-shadow: 0 1px 4px rgba(0,0,0,0.3); }
.nav-links a:hover { color: var(--gold); }
.nav-cta { background: var(--gold) !important; color: var(--earth) !important; padding: 9px 22px; border-radius: 2px; font-weight: 600 !important; }
.nav-cta:hover { background: #e0bc5a !important; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--gold); color: var(--earth); padding: 15px 34px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none;
  border-radius: 2px; transition: background 0.2s, transform 0.15s; display: inline-block;
}
.btn-primary:hover { background: #e0bc5a; transform: translateY(-2px); }
.btn-outline {
  border: 1.5px solid rgba(255,248,235,0.85); color: #ffffff; padding: 14px 34px; text-shadow: 0 1px 4px rgba(0,0,0,0.3);
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none;
  border-radius: 2px; transition: border-color 0.2s, background 0.2s; display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(201,168,76,0.12); }

/* ── SECTION SHARED ── */
section { padding: 96px 48px; }
.section-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--sage); margin-bottom: 12px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.15; color: var(--earth); margin-bottom: 20px; }
.section-body { font-size: 1.05rem; font-weight: 300; line-height: 1.75; color: #4A4035; max-width: 580px; }

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

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--earth); padding: 20px 48px;
  display: flex; justify-content: center; gap: 60px; flex-wrap: wrap;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.trust-item { display: flex; align-items: center; gap: 10px; color: rgba(244,235,218,0.97); }
.trust-item .icon { color: var(--gold); font-size: 1.1rem; }
.trust-item span { font-family: 'Barlow Condensed', sans-serif; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* ── SERVICE PAGE HERO ── */
.service-hero {
  min-height: 55vh;
  display: flex; align-items: flex-end;
  padding: 120px 48px 64px;
  position: relative;
  background-size: cover; background-position: center;
}
.service-hero-content { position: relative; z-index: 1; max-width: 700px; }
.service-hero .breadcrumb {
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,248,235,0.88); text-shadow: 0 1px 6px rgba(0,0,0,0.45); margin-bottom: 16px;
}
.service-hero .breadcrumb a { color: var(--gold); text-decoration: none; }
.service-hero .breadcrumb a:hover { text-decoration: underline; }
.service-hero h1 {
  font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1; color: #ffffff; text-shadow: 0 2px 14px rgba(0,0,0,0.55); margin-bottom: 18px;
}
.service-hero h1 em { font-style: italic; color: var(--bright-gold); text-shadow: 0 2px 28px rgba(255,208,64,0.55), 0 2px 10px rgba(0,0,0,0.4); }
.service-hero p { font-size: 1.1rem; font-weight: 300; color: rgba(255,252,245,0.97); text-shadow: 0 1px 8px rgba(0,0,0,0.5); line-height: 1.65; max-width: 560px; margin-bottom: 32px; }

/* ── SERVICE CONTENT ── */
.service-content { background: var(--white); }
.service-content-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
  max-width: 1200px; margin: 0 auto;
}
.service-content-grid.reverse { direction: rtl; }
.service-content-grid.reverse > * { direction: ltr; }

.service-detail-img {
  position: relative;
}
.service-detail-img::before {
  content: ''; position: absolute; top: -16px; left: -16px;
  width: 60%; height: 60%; border: 2px solid var(--gold); z-index: 0;
}
.service-detail-img img {
  width: 100%; height: 420px; object-fit: cover;
  position: relative; z-index: 1;
}

.service-detail-text .section-body { margin-bottom: 20px; }

.service-features { list-style: none; margin: 28px 0 32px; }
.service-features li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid rgba(74,55,40,0.08);
  font-size: 0.95rem; line-height: 1.6; color: #4A4035;
}
.service-features li:last-child { border-bottom: none; }
.service-features .check { color: var(--moss); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }

/* ── RELATED SERVICES ── */
.related-services { background: var(--sand); }
.related-services .section-title { text-align: center; margin-bottom: 8px; }
.related-services .section-label { text-align: center; }
.related-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px; background: rgba(74,55,40,0.12); margin-top: 48px;
}
.related-card {
  background: var(--white); padding: 32px 28px; text-decoration: none;
  transition: background 0.2s; position: relative; overflow: hidden;
}
.related-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 3px; background: var(--gold); transition: width 0.3s;
}
.related-card:hover { background: var(--cream); }
.related-card:hover::after { width: 100%; }
.related-card .r-icon { display: none; }
.related-card h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--earth); margin-bottom: 6px; }
.related-card p { font-size: 0.82rem; color: #6A5A48; line-height: 1.5; font-weight: 300; }

/* ── INLINE CTA ── */
.inline-cta {
  background: var(--earth);
  padding: 80px 48px;
  text-align: center;
}
.inline-cta .section-label { color: var(--bright-gold); text-shadow: 0 1px 8px rgba(0,0,0,0.35); }
.inline-cta .section-title { color: #ffffff; text-shadow: 0 2px 10px rgba(0,0,0,0.35); margin: 0 auto 16px; }
.inline-cta .section-body { color: rgba(255,248,235,0.92); margin: 0 auto 36px; text-align: center; text-shadow: 0 1px 6px rgba(0,0,0,0.3); }
.inline-cta .cta-phone {
  font-family: 'Playfair Display', serif; font-size: 2.4rem;
  color: var(--bright-gold); display: block; margin-bottom: 8px; text-decoration: none; text-shadow: 0 2px 14px rgba(0,0,0,0.4);
}
.inline-cta .cta-phone:hover { opacity: 0.85; }
.inline-cta .cta-note { font-size: 0.8rem; color: rgba(220,205,185,0.9); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 32px; text-shadow: 0 1px 4px rgba(0,0,0,0.3); }

/* ── FOOTER ── */
footer { background: #1A1410; padding: 60px 48px 32px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand span:first-child { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--gold); display: block; margin-bottom: 4px; }
.footer-brand span:last-child { font-family: 'Barlow Condensed', sans-serif; font-size: 0.68rem; color: rgba(200,180,155,0.9); letter-spacing: 0.2em; text-transform: uppercase; }
.footer-brand p { margin-top: 16px; font-size: 0.88rem; font-weight: 300; line-height: 1.7; color: rgba(232,221,208,0.78); max-width: 280px; }
.footer-col h5 { font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a, .footer-col ul li span { color: rgba(232,221,208,0.82); text-decoration: none; font-size: 0.88rem; font-weight: 300; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.78rem; color: rgba(232,221,208,0.55); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }

/* ── MOBILE ── */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  section { padding: 64px 24px; }
  .service-content-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-content-grid.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .service-hero { padding: 100px 24px 48px; min-height: 45vh; }
  .trust-bar { gap: 24px; padding: 16px 24px; }
  .inline-cta { padding: 60px 24px; }
}

.nav-social{display:flex;align-items:center;gap:8px;}
.nav-social a{display:flex;align-items:center;justify-content:center;text-decoration:none;width:36px;height:36px;border-radius:50%;border:1.5px solid rgba(201,168,76,0.45);color:rgba(244,235,218,0.9);transition:background 0.2s,color 0.2s,border-color 0.2s,transform 0.15s;}
.nav-social a svg{width:16px;height:16px;fill:currentColor;}
.nav-social a.nav-fb:hover{background:#1877F2;color:#fff;border-color:#1877F2;transform:translateY(-1px);}
.nav-social a.nav-em:hover{background:var(--gold);color:var(--earth);border-color:var(--gold);transform:translateY(-1px);}
.nav-social-divider{display:none;}
@media(max-width:900px){.nav-social{display:flex!important;}}
