
/* ── Reset & base ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  background: #F6F5F1;
  color: #242424;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Typography helpers ────────────────────────────────────────────────── */
.font-display { font-family: 'Playfair Display', Georgia, serif; }
.overline {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #5F6F65;
  font-family: 'Inter', sans-serif;
}

/* ── Layout helpers ───────────────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 1024px) { .container { padding: 0 40px; } }

/* ─────────────────────────────────────────────────────────────────────── */
/* NAVIGATION                                                               */
/* ─────────────────────────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: transform .3s ease, background .3s ease, box-shadow .3s ease;
}
#nav .inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}
@media (min-width: 1024px) { #nav .inner { height: 80px; padding: 0 40px; } }

.nav-logo {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -.015em;
  color: #0A0A0A;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 36px;
  list-style: none;
}
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
  color: #111111;
  transition: color .2s;
}
.nav-links a:hover { color: #5F6F65; }

.nav-right { display: flex; align-items: center; gap: 12px; }
/* .btn-cta removed — phone call CTA only */

.btn-phone-icon {
  display: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid #111111;
  align-items: center;
  justify-content: center;
  color: #111111;
  transition: background .2s, color .2s;
}
.btn-phone-icon:hover { background: #111111; color: #fff; }
@media (min-width: 768px) { .btn-phone-icon { display: flex; } }

/* Nav call button (desktop) */
.btn-nav-call {
  display: none;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: #5F6F65;
  padding: 10px 20px;
  border-radius: 999px;
  transition: background .2s, transform .2s;
}
.btn-nav-call:hover { background: #4A5A50; }
@media (min-width: 640px) { .btn-nav-call { display: inline-flex; } }

.btn-menu {
  display: flex;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  color: #0A0A0A;
  border-radius: 8px;
  transition: background .15s;
}
.btn-menu:hover { background: rgba(0,0,0,0.06); }
@media (min-width: 1024px) { .btn-menu { display: none; } }

/* ── Mobile menu ─────────────────────────────────────────────────────── */
#mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s ease;
}
#mobile-menu.open {
  pointer-events: auto;
  opacity: 1;
}
.mm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.25);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.mm-panel {
  position: absolute;
  top: 64px; left: 0; right: 0;
  background: rgba(246,245,241,.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(227,225,220,.7);
  padding: 8px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transform: translateY(-8px);
  transition: transform .25s ease;
}
#mobile-menu.open .mm-panel { transform: translateY(0); }
.mm-panel a {
  font-size: 16px;
  font-weight: 500;
  color: #111111;
  padding: 14px 8px;
  border-bottom: 1px solid rgba(227,225,220,.5);
  display: flex;
  align-items: center;
  transition: color .2s;
}
.mm-panel a:last-of-type { border-bottom: none; }
.mm-panel a:hover { color: #5F6F65; }
.mm-cta {
  margin-top: 12px;
  background: #5F6F65;
  color: #fff !important;
  font-weight: 600;
  font-size: 14px;
  padding: 14px 20px;
  border-radius: 999px;
  text-align: center;
  justify-content: center;
  border-bottom: none !important;
}
.mm-cta:hover { background: #4A5A50; color: #fff !important; }

/* ─────────────────────────────────────────────────────────────────────── */
/* HERO                                                                     */
/* ─────────────────────────────────────────────────────────────────────── */
#hero {
  position: relative;
  width: 100%;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
}
@media (min-width: 1024px) { #hero { align-items: center; } }

#hero .hero-bg {
  position: absolute;
  inset: 0;
}
#hero .hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
#hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(246,245,241,.82) 0%,
    rgba(246,245,241,.60) 35%,
    rgba(246,245,241,.38) 65%,
    rgba(246,245,241,.88) 100%);
}
#hero .hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 128px 20px 64px;
}
@media (min-width: 1024px) {
  #hero .hero-content { padding: 80px 40px; }
}
#hero .hero-inner { max-width: 640px; }

.hero-eyebrow {
  display: inline-flex;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #1A1A1A;
  background: rgba(246,245,241,0.85);
  border: 1px solid rgba(0,0,0,0.12);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(40px, 6vw, 80px);
  line-height: .95;
  letter-spacing: -.025em;
  color: #0A0A0A;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(246,245,241,0.6);
}
.hero-body {
  font-size: 17px;
  line-height: 1.65;
  color: #111111;
  font-weight: 500;
  max-width: 440px;
  margin-top: 24px;
  text-shadow: 0 1px 4px rgba(246,245,241,0.7);
}
@media (min-width: 1024px) { .hero-body { font-size: 18px; } }

.hero-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
}
@media (min-width: 640px) { .hero-btns { flex-direction: row; } }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 14px;
  background: #5F6F65;
  color: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  transition: background .2s;
  text-align: center;
}
.btn-primary:hover { background: #4A5A50; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 14px;
  border: 1px solid #111111;
  color: #111111;
  padding: 14px 28px;
  border-radius: 999px;
  transition: background .2s, color .2s;
  text-align: center;
}
.btn-outline:hover { background: #111111; color: #fff; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 56px;
}
.hero-stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1;
  color: #111111;
}
.hero-stat-label {
  font-size: 13px;
  color: #4A4A4A;
  margin-top: 4px;
}

/* ─────────────────────────────────────────────────────────────────────── */
/* SECTION SHARED STYLES                                                    */
/* ─────────────────────────────────────────────────────────────────────── */
.section-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #5F6F65;
  margin-bottom: 16px;
}
.section-h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 4vw, 60px);
  line-height: 1;
  letter-spacing: -.02em;
  color: #111111;
  font-weight: 500;
}

/* ─────────────────────────────────────────────────────────────────────── */
/* SERVICES                                                                 */
/* ─────────────────────────────────────────────────────────────────────── */
#services {
  padding: 96px 20px;
  background: #FAFAF7;
}
@media (min-width: 1024px) { #services { padding: 144px 40px; } }

#services .section-head { max-width: 600px; margin-bottom: 64px; }
@media (min-width: 1024px) { #services .section-head { margin-bottom: 96px; } }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px)  { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4,1fr); gap: 24px; } }

.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
  transition: background .4s, box-shadow .4s;
  cursor: default;
}
@media (min-width: 1024px) { .service-card { padding: 32px; } }
.service-card:hover { background: #5F6F65; box-shadow: 0 8px 24px rgba(95,111,101,.18); }

.service-icon {
  width: 36px; height: 36px;
  color: #5F6F65;
  transition: color .4s;
}
.service-card:hover .service-icon { color: #fff; }

.service-title {
  font-weight: 600;
  font-size: 17px;
  color: #111111;
  margin: 24px 0 8px;
  transition: color .4s;
}
.service-card:hover .service-title { color: #fff; }

.service-desc {
  font-size: 14px;
  color: #242424;
  line-height: 1.6;
  transition: color .4s;
}
.service-card:hover .service-desc { color: rgba(255,255,255,.85); }

.service-footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #E3E1DC;
  transition: border-color .4s;
}
.service-card:hover .service-footer { border-color: rgba(255,255,255,.2); }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: 13px;
  color: #5F6F65;
  transition: color .4s;
}
.service-card:hover .service-link { color: #fff; }

/* ─────────────────────────────────────────────────────────────────────── */
/* PROCESS                                                                  */
/* ─────────────────────────────────────────────────────────────────────── */
#process {
  padding: 96px 20px;
  background: #F6F5F1;
}
@media (min-width: 1024px) { #process { padding: 144px 40px; } }

#process .section-head { max-width: 600px; margin-bottom: 64px; }
@media (min-width: 1024px) { #process .section-head { margin-bottom: 96px; } }

.process-steps { display: flex; flex-direction: column; gap: 64px; }
@media (min-width: 1024px) { .process-steps { gap: 96px; } }

.process-step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 1024px) {
  .process-step { grid-template-columns: 1fr 1fr; gap: 64px; }
  .process-step.reverse .step-img  { order: 2; }
  .process-step.reverse .step-text { order: 1; padding-right: 40px; }
  .process-step:not(.reverse) .step-text { padding-left: 40px; }
}

.step-img { border-radius: 16px; overflow: hidden; }
.step-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform .7s ease;
}
.step-img:hover img { transform: scale(1.03); }

.step-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(64px, 8vw, 96px);
  line-height: 1;
  color: #D8CEC2;
  font-weight: 500;
}
.step-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.15;
  color: #111111;
  margin: 8px 0 16px;
  font-weight: 500;
}
.step-desc {
  font-size: 15px;
  color: #242424;
  line-height: 1.7;
  max-width: 400px;
}

/* ─────────────────────────────────────────────────────────────────────── */
/* GALLERY                                                                  */
/* ─────────────────────────────────────────────────────────────────────── */
#gallery {
  padding: 96px 20px;
  background: #FAFAF7;
}
@media (min-width: 1024px) { #gallery { padding: 144px 40px; } }

#gallery .section-head { max-width: 600px; margin-bottom: 64px; }
@media (min-width: 1024px) { #gallery .section-head { margin-bottom: 96px; } }

.gallery-grid {
  columns: 2;
  gap: 12px;
}
@media (min-width: 768px) { .gallery-grid { columns: 3; gap: 16px; } }

.gallery-item {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}
@media (min-width: 768px) { .gallery-item { margin-bottom: 16px; } }
.gallery-item img {
  width: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

/* ── Lightbox ────────────────────────────────────────────────────────── */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(0,0,0,.95);
  display: none;
  align-items: center;
  justify-content: center;
}
#lightbox.open { display: flex; }
#lb-close {
  position: absolute;
  top: 20px; right: 20px;
  color: rgba(255,255,255,.6);
  transition: color .2s;
  z-index: 1;
}
#lb-close:hover { color: #fff; }
#lb-prev, #lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,.4);
  transition: color .2s;
  z-index: 1;
  display: none;
}
@media (min-width: 640px) { #lb-prev, #lb-next { display: block; } }
#lb-prev:hover, #lb-next:hover { color: #fff; }
#lb-prev { left: 16px; }
#lb-next { right: 16px; }
#lb-content { max-width: 90vw; max-height: 88vh; }
#lb-img { max-width: 100%; max-height: 88vh; object-fit: contain; border-radius: 4px; }

/* ─────────────────────────────────────────────────────────────────────── */
/* REFERENCES                                                               */
/* ─────────────────────────────────────────────────────────────────────── */
#references {
  padding: 96px 0;
  background: #F6F5F1;
}
@media (min-width: 1024px) { #references { padding: 144px 0; } }

#references .ref-head {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
@media (min-width: 1024px) {
  #references .ref-head { padding: 0 40px; margin-bottom: 64px; }
}
.ref-nav { display: none; gap: 8px; }
@media (min-width: 1024px) { .ref-nav { display: flex; } }
.ref-nav button {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid #E3E1DC;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4A4A4A;
  cursor: pointer;
  transition: border-color .2s, color .2s;
}
.ref-nav button:hover { border-color: #5F6F65; color: #5F6F65; }

.ref-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-left: 20px;
  padding-right: 20px;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.ref-scroll::-webkit-scrollbar { display: none; }
@media (min-width: 1024px) { .ref-scroll { padding-left: 40px; gap: 20px; } }

.ref-card {
  flex-shrink: 0;
  width: 320px;
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
  border: 1px solid rgba(227,225,220,.6);
  scroll-snap-align: start;
}
@media (min-width: 1024px) { .ref-card { width: 420px; padding: 36px; } }

.ref-stars { display: flex; gap: 2px; }
.ref-stars svg { fill: #f59e0b; color: #f59e0b; }
.ref-text {
  font-size: 15px;
  color: #242424;
  line-height: 1.7;
  margin-top: 24px;
}
@media (min-width: 1024px) { .ref-text { font-size: 16px; } }
.ref-footer {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(227,225,220,.6);
}
.ref-name { font-weight: 600; font-size: 14px; color: #111111; }
.ref-loc  { font-size: 13px; color: #5A5A5A; }

/* ─────────────────────────────────────────────────────────────────────── */
/* PRICING                                                                  */
/* ─────────────────────────────────────────────────────────────────────── */
#pricing {
  padding: 96px 20px;
  background: #FAFAF7;
}
@media (min-width: 1024px) { #pricing { padding: 144px 40px; } }

#pricing .section-head { text-align: center; max-width: 520px; margin: 0 auto 64px; }
@media (min-width: 1024px) { #pricing .section-head { margin-bottom: 96px; } }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 1024px) { .pricing-grid { gap: 24px; } }

.price-card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
@media (min-width: 1024px) { .price-card { padding: 40px; } }
.price-card.featured { outline: 2px solid #5F6F65; }

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #5F6F65;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 4px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.price-icon { color: #5F6F65; margin: 0 auto; }
.price-title {
  font-weight: 600;
  font-size: 18px;
  color: #111111;
  margin-top: 20px;
}
.price-amount {
  margin-top: 16px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.price-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(44px, 4vw, 56px);
  color: #111111;
  line-height: 1;
  font-weight: 500;
}
.price-unit { font-size: 16px; color: #5A5A5A; }
.price-note { font-size: 13px; color: #5A5A5A; margin-top: 4px; }
.price-divider { width: 100%; height: 1px; background: #E3E1DC; margin: 28px 0; }
.price-features {
  list-style: none;
  text-align: left;
  max-width: 240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #242424;
}
.price-check { color: #5F6F65; flex-shrink: 0; margin-top: 2px; }
.price-btn {
  display: block;
  width: 100%;
  margin-top: 32px;
  font-weight: 500;
  font-size: 14px;
  padding: 14px;
  border-radius: 999px;
  transition: background .2s, color .2s;
  text-align: center;
}
.price-btn.dark { background: #1F1F1F; color: #fff; }
.price-btn.dark:hover { background: #000; }
.price-btn.green { background: #5F6F65; color: #fff; }
.price-btn.green:hover { background: #4A5A50; }
.pricing-note { font-size: 14px; color: #5A5A5A; text-align: center; margin-top: 40px; }

/* ─────────────────────────────────────────────────────────────────────── */
/* FAQ                                                                      */
/* ─────────────────────────────────────────────────────────────────────── */
#faq {
  padding: 96px 20px;
  background: #F6F5F1;
}
@media (min-width: 1024px) { #faq { padding: 144px 40px; } }

#faq .section-head { text-align: center; margin-bottom: 48px; }
@media (min-width: 1024px) { #faq .section-head { margin-bottom: 80px; } }
#faq .faq-inner { max-width: 720px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid #E3E1DC; }
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  text-align: left;
  gap: 24px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}
.faq-q {
  font-weight: 600;
  font-size: 16px;
  color: #111111;
  line-height: 1.4;
  transition: color .2s;
}
@media (min-width: 1024px) { .faq-q { font-size: 18px; } }
.faq-btn:hover .faq-q { color: #5F6F65; }
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid #E3E1DC;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5F6F65;
  transition: transform .3s, background .3s, border-color .3s, color .3s;
}
.faq-icon.open {
  transform: rotate(45deg);
  background: #5F6F65;
  border-color: #5F6F65;
  color: #fff;
}
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s ease, padding-bottom .4s ease;
}
.faq-answer p {
  font-size: 15px;
  color: #242424;
  line-height: 1.7;
  padding-bottom: 24px;
}

/* ─────────────────────────────────────────────────────────────────────── */
/* CONTACT                                                                  */
/* ─────────────────────────────────────────────────────────────────────── */
#contact {
  padding: 112px 20px;
  background: #FAFAF7;
}
@media (min-width: 1024px) { #contact { padding: 176px 40px; } }

.contact-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.contact-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #5F6F65;
  margin-bottom: 20px;
}
.contact-h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(40px, 5vw, 68px);
  line-height: .98;
  letter-spacing: -.025em;
  color: #111111;
  font-weight: 500;
}
.contact-body {
  font-size: 16px;
  color: #242424;
  line-height: 1.65;
  max-width: 460px;
  margin: 24px auto 0;
}
@media (min-width: 1024px) { .contact-body { font-size: 18px; } }

.contact-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
}
@media (min-width: 640px) { .contact-btns { flex-direction: row; justify-content: center; } }

.btn-contact-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: center;
  background: #5F6F65;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  padding: 16px 32px;
  border-radius: 999px;
  transition: background .3s, box-shadow .3s, transform .3s;
}
.btn-contact-primary:hover {
  background: #4A5A50;
  box-shadow: 0 8px 24px rgba(95,111,101,.15);
  transform: translateY(-2px);
}
@media (min-width: 640px) { .btn-contact-primary { width: auto; } }

.btn-contact-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: center;
  border: 1px solid #111111;
  color: #111111;
  font-weight: 500;
  font-size: 14px;
  padding: 16px 32px;
  border-radius: 999px;
  transition: background .3s, color .3s, transform .3s;
}
.btn-contact-secondary:hover {
  background: #111111;
  color: #fff;
  transform: translateY(-2px);
}
@media (min-width: 640px) { .btn-contact-secondary { width: auto; } }

.contact-divider { width: 48px; height: 1px; background: #E3E1DC; margin: 56px auto 0; }

.contact-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px 12px;
  margin-top: 40px;
}
.contact-meta-item { text-align: center; }
.contact-meta-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #5A5A5A;
  margin-bottom: 2px;
}
.contact-meta-value { font-size: 13px; color: #111111; }
.contact-meta-sep { width: 1px; height: 24px; background: #E3E1DC; display: none; }
@media (min-width: 640px) { .contact-meta-sep { display: block; } }

.contact-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}
.badge {
  font-size: 12px;
  background: #F6F5F1;
  color: #4A4A4A;
  padding: 6px 14px;
  border-radius: 999px;
}

/* ─────────────────────────────────────────────────────────────────────── */
/* FOOTER                                                                   */
/* ─────────────────────────────────────────────────────────────────────── */
footer {
  padding: 56px 20px;
  background: #1F1F1F;
}
@media (min-width: 1024px) { footer { padding: 80px 40px; } }

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 640px)  { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4,1fr); gap: 32px; } }

.footer-brand { font-weight: 500; font-size: 17px; color: #fff; }
.footer-sub   { font-size: 13px; color: rgba(255,255,255,.6); margin-top: 2px; }
.footer-desc  { font-size: 13px; color: rgba(255,255,255,.55); margin-top: 12px; max-width: 220px; line-height: 1.6; }
.footer-contacts { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.footer-contacts a { font-size: 13px; color: rgba(255,255,255,.7); transition: color .2s; }
.footer-contacts a:hover { color: #fff; }
.footer-col-head { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.5); margin-bottom: 16px; }
.footer-col-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col-links a, .footer-col-links span {
  font-size: 14px;
  color: rgba(255,255,255,.75);
  transition: color .2s;
  cursor: pointer;
}
.footer-col-links a:hover, .footer-col-links span:hover { color: #fff; }
.footer-bottom {
  max-width: 1280px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,.45); }

/* ─────────────────────────────────────────────────────────────────────── */
/* FLOATING CTA                                                             */
/* ─────────────────────────────────────────────────────────────────────── */
#float-mobile {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 40;
  background: rgba(250,250,247,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(225,224,220,.6);
  padding: 12px 16px;
  display: flex;
}
@media (min-width: 1024px) { #float-mobile { display: none; } }
#float-mobile .fm-call {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #5F6F65;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 16px;
  border-radius: 999px;
  transition: background .2s;
}
#float-mobile .fm-call:hover { background: #4A5A50; }

#float-desktop {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 40;
  width: 48px; height: 48px;
  background: #5F6F65;
  color: #fff;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  transition: background .2s, transform .2s;
}
#float-desktop:hover { background: #4A5A50; transform: scale(1.05); }
@media (min-width: 1024px) { #float-desktop { display: flex; } }
