/* ============================================================
   ARTISAN COAT — Stylesheet v1.0
   Surface Design – Interior & Exterior | GTA
   ============================================================ */

/* ── VARIABLES ─────────────────────────────────────────────── */
:root {
  --dark:       #141414;
  --charcoal:   #1C1C1C;
  --gold:       #C4972A;
  --gold-light: #D4A93A;
  --off-white:  #F8F7F4;
  --light-gray: #ECEAE6;
  --mid-gray:   #8A8A8A;
  --white:      #FFFFFF;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --ease:       0.22s ease;
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.07);
  --shadow:     0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 48px rgba(0,0,0,0.16);
  --radius:     3px;
  --container:  1160px;
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--charcoal);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--ease); }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ── LAYOUT ────────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section     { padding: 80px 0; background: var(--off-white); }
.section-alt { padding: 80px 0; background: var(--white); }
.section-dark{ padding: 80px 0; background: var(--dark); }

.section-header { text-align: center; margin-bottom: 56px; }
.eyebrow {
  display: inline-block;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600; line-height: 1.15; color: var(--charcoal);
}
.section-title.white { color: var(--white); }
.section-sub {
  margin-top: 16px; font-size: 1.02rem; color: var(--mid-gray);
  max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.7;
}
.section-sub.white { color: rgba(255,255,255,0.68); }

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; font-family: var(--font-body);
  font-size: 0.88rem; font-weight: 600; letter-spacing: 0.05em;
  border-radius: var(--radius); transition: all var(--ease);
  cursor: pointer; white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(196,151,42,0.35); }
.btn-outline-white { border: 2px solid rgba(255,255,255,0.65); color: var(--white); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-outline-gold { border: 2px solid var(--gold); color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--dark); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: #2a2a2a; transform: translateY(-2px); }

/* ── NAV ───────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--dark);
  border-bottom: 1px solid rgba(196,151,42,0.18);
  transition: box-shadow var(--ease);
}
.nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.5); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; max-width: var(--container); margin: 0 auto; padding: 0 24px;
}
.nav-logo img { height: 46px; width: auto; }
.nav-logo-text {
  font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700;
  color: var(--white); letter-spacing: 0.06em;
}
.nav-logo-text span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.72);
  padding-bottom: 3px; border-bottom: 2px solid transparent;
  transition: all var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); border-bottom-color: var(--gold); }
.nav-cta { margin-left: 12px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: all var(--ease); border-radius: 2px; }
.nav-mobile {
  display: none; background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 12px 24px 20px;
}
.nav-mobile a {
  display: block; padding: 13px 0; font-size: 0.88rem; font-weight: 500;
  color: rgba(255,255,255,0.75); border-bottom: 1px solid rgba(255,255,255,0.05);
  letter-spacing: 0.05em; text-transform: uppercase;
}
.nav-mobile a:last-of-type { border-bottom: none; }
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile .btn { width: 100%; justify-content: center; margin-top: 14px; }

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background-color: var(--dark);
  background-size: cover; background-position: center;
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 780px; padding: 130px 24px 80px; margin: 0 auto;
}
.hero-eyebrow {
  display: inline-block; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 600; line-height: 1.08; color: var(--white); margin-bottom: 24px;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: rgba(255,255,255,0.82); max-width: 580px; margin-bottom: 40px; line-height: 1.75;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-sub-page { min-height: 58vh; }
.hero-sub-page .hero-content { padding: 148px 24px 60px; }
.hero-sub-page h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }

/* ── TRUST BAR ─────────────────────────────────────────────── */
.trust-bar { background: #1A1A1A; border-bottom: 1px solid rgba(196,151,42,0.2); }
.trust-bar-inner {
  display: flex; align-items: stretch; justify-content: center;
  flex-wrap: wrap; max-width: var(--container); margin: 0 auto;
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
  padding: 20px 32px; border-right: 1px solid rgba(255,255,255,0.07);
}
.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 1.4rem; color: var(--gold); flex-shrink: 0; }
.trust-label { font-size: 0.82rem; font-weight: 700; color: var(--white); }
.trust-sub { font-size: 0.71rem; color: var(--mid-gray); margin-top: 2px; }

/* ── SLOGAN STRIP ──────────────────────────────────────────── */
.slogan-strip { background: var(--gold); padding: 18px 24px; text-align: center; }
.slogan-strip p {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 3vw, 1.7rem);
  font-weight: 600; font-style: italic; color: var(--dark);
}

/* ── SERVICE CARDS ─────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-card-img {
  width: 100%; height: 220px; object-fit: cover;
  background: linear-gradient(135deg, #252525, #333);
}
.service-card-body { padding: 28px; }
.service-card h3 {
  font-family: var(--font-heading); font-size: 1.55rem;
  font-weight: 600; color: var(--charcoal); margin-bottom: 10px;
}
.service-card p { font-size: 0.9rem; color: var(--mid-gray); margin-bottom: 20px; line-height: 1.65; }
.service-link {
  font-size: 0.82rem; font-weight: 700; color: var(--gold);
  letter-spacing: 0.06em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px; transition: gap var(--ease);
}
.service-link:hover { gap: 12px; color: var(--gold-light); }

/* ── WHY CHOOSE ────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 48px; }
.why-item { display: flex; gap: 18px; align-items: flex-start; }
.why-icon {
  flex-shrink: 0; width: 50px; height: 50px;
  background: rgba(196,151,42,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--gold);
}
.why-text h4 {
  font-family: var(--font-heading); font-size: 1.15rem;
  font-weight: 600; color: var(--charcoal); margin-bottom: 6px;
}
.why-text p { font-size: 0.88rem; color: var(--mid-gray); line-height: 1.65; }

/* ── PROCESS ───────────────────────────────────────────────── */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 27px;
  left: calc(12.5% + 14px); right: calc(12.5% + 14px);
  height: 2px; background: linear-gradient(90deg, var(--gold) 0%, rgba(196,151,42,0.15) 100%);
}
.step { text-align: center; }
.step-number {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--gold); color: var(--dark);
  font-weight: 700; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; position: relative; z-index: 1;
  box-shadow: 0 4px 16px rgba(196,151,42,0.4);
}
.step h4 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; color: var(--charcoal); margin-bottom: 8px; }
.step p { font-size: 0.87rem; color: var(--mid-gray); line-height: 1.6; }

/* ── BEFORE / AFTER ────────────────────────────────────────── */
.ba-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.ba-pair {
  position: relative; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
}
.ba-pair img { width: 100%; height: 320px; object-fit: cover; }
.ba-label {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold); color: var(--dark);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 2px;
}
.ba-label.after { background: var(--dark); color: var(--gold); border: 1px solid var(--gold); }
.ba-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px; background: linear-gradient(transparent, rgba(0,0,0,0.72));
  color: var(--white); font-size: 0.82rem; font-weight: 500;
}

/* ── TESTIMONIALS ──────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--gold);
}
.stars { color: #F5A623; font-size: 0.95rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-text {
  font-size: 0.9rem; color: var(--charcoal);
  line-height: 1.7; margin-bottom: 18px; font-style: italic;
}
.testimonial-footer { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(196,151,42,0.12); display: flex;
  align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.88rem; color: var(--gold); flex-shrink: 0;
  overflow: hidden; border: 2px solid rgba(196,151,42,0.25);
}
.testimonial-avatar img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
}
.testimonial-name { font-weight: 600; font-size: 0.88rem; color: var(--charcoal); }
.testimonial-meta { font-size: 0.74rem; color: var(--mid-gray); margin-top: 2px; }

/* ── CTA BANNER ────────────────────────────────────────────── */
.cta-banner {
  background: var(--dark); text-align: center;
  padding: 80px 24px; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(196,151,42,0.07) 0%, transparent 70%);
}
.cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-banner h2 {
  font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600; color: var(--white); margin-bottom: 16px;
}
.cta-banner p { font-size: 1.02rem; color: rgba(255,255,255,0.68); margin-bottom: 36px; line-height: 1.7; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ── SERVICE AREAS ─────────────────────────────────────────── */
.areas-wrap { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.area-tag {
  padding: 9px 22px; border: 1.5px solid var(--light-gray);
  border-radius: 100px; font-size: 0.85rem; color: var(--charcoal);
  background: var(--white); transition: all var(--ease);
}
.area-tag:hover { border-color: var(--gold); color: var(--gold); }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--light-gray); }
.faq-item:first-child { border-top: 1px solid var(--light-gray); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 4px; cursor: pointer; user-select: none;
}
.faq-q-text {
  font-family: var(--font-heading); font-size: 1.15rem;
  font-weight: 600; color: var(--charcoal); padding-right: 20px;
}
.faq-icon {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: var(--light-gray); display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem; color: var(--gold);
  transition: transform var(--ease), background var(--ease);
}
.faq-item.open .faq-icon { background: var(--gold); color: var(--dark); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.38s ease, padding 0.3s ease; padding: 0 4px; }
.faq-item.open .faq-answer { max-height: 400px; padding: 0 4px 20px; }
.faq-answer p { font-size: 0.9rem; color: var(--mid-gray); line-height: 1.75; }

/* ── GALLERY ───────────────────────────────────────────────── */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.filter-btn {
  padding: 8px 22px; border-radius: 100px; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.05em; border: 2px solid var(--light-gray); color: var(--mid-gray);
  background: var(--white); transition: all var(--ease); cursor: pointer;
}
.filter-btn.active, .filter-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(196,151,42,0.05); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item {
  position: relative; overflow: hidden; border-radius: var(--radius);
  cursor: pointer; background: var(--light-gray);
}
.gallery-item img { width: 100%; height: 280px; object-fit: cover; transition: transform 0.45s ease; display: block; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent 50%, rgba(0,0,0,0.7));
  opacity: 0; transition: opacity var(--ease);
  display: flex; align-items: flex-end; padding: 14px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-label { font-size: 0.76rem; font-weight: 700; color: var(--white); letter-spacing: 0.06em; text-transform: uppercase; }
.gallery-ba-label {
  position: absolute; top: 12px; left: 12px;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 2px;
}
.gallery-ba-label.before { background: rgba(0,0,0,0.6); color: #fff; }
.gallery-ba-label.after { background: var(--gold); color: var(--dark); }

/* ── LIGHTBOX ──────────────────────────────────────────────── */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.93); align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 86vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  font-size: 2.2rem; color: var(--white); cursor: pointer; opacity: 0.7; transition: opacity var(--ease);
}
.lightbox-close:hover { opacity: 1; }

/* ── CONTACT FORM ──────────────────────────────────────────── */
.contact-wrap { display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: start; }
.contact-info h3 {
  font-family: var(--font-heading); font-size: 1.9rem;
  font-weight: 600; color: var(--charcoal); margin-bottom: 10px;
}
.contact-info > p { font-size: 0.93rem; color: var(--mid-gray); margin-bottom: 36px; line-height: 1.7; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.contact-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(196,151,42,0.1); display: flex;
  align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--gold); flex-shrink: 0;
}
.contact-detail-text strong {
  display: block; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--charcoal); margin-bottom: 3px;
}
.contact-detail-text a, .contact-detail-text span { font-size: 0.93rem; color: var(--mid-gray); transition: color var(--ease); }
.contact-detail-text a:hover { color: var(--gold); }
.form-card { background: var(--white); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); }
.form-card-title { font-family: var(--font-heading); font-size: 1.7rem; font-weight: 600; color: var(--charcoal); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 7px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--light-gray); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.92rem; color: var(--charcoal);
  background: var(--off-white); transition: border-color var(--ease); appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--gold); background: var(--white); }
.form-textarea { height: 120px; resize: vertical; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A8A8A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px;
}
.form-submit { width: 100%; padding: 16px; font-size: 0.95rem; margin-top: 8px; }
.form-note { font-size: 0.76rem; color: var(--mid-gray); text-align: center; margin-top: 10px; }

/* ── ABOUT ─────────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img img { width: 100%; height: 500px; object-fit: cover; }
.about-content h2 {
  font-family: var(--font-heading); font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 600; color: var(--charcoal); margin-bottom: 20px; line-height: 1.2;
}
.about-content p { font-size: 0.93rem; color: var(--mid-gray); margin-bottom: 16px; line-height: 1.78; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; }
.stat-box { text-align: center; padding: 24px 16px; background: var(--off-white); border-radius: var(--radius); }
.stat-num { font-family: var(--font-heading); font-size: 2.6rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-lbl { font-size: 0.78rem; color: var(--mid-gray); margin-top: 6px; line-height: 1.4; }

/* ── PROPERTIES GRID ───────────────────────────────────────── */
.props-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.prop-card {
  text-align: center; padding: 28px 16px;
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm);
  border-bottom: 3px solid var(--gold);
}
.prop-icon { font-size: 2rem; color: var(--gold); margin-bottom: 12px; }
.prop-name { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--charcoal); }

/* ── LAYERS DIAGRAM ────────────────────────────────────────── */
.layers-list { max-width: 700px; margin: 0 auto; }
.layer-item { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 20px; }
.layer-num {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
  background: var(--gold); color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem;
}
.layer-text strong { font-size: 0.92rem; color: var(--charcoal); display: block; margin-bottom: 4px; }
.layer-text p { font-size: 0.84rem; color: var(--mid-gray); line-height: 1.55; }

/* ── FOOTER ────────────────────────────────────────────────── */
.footer { background: var(--dark); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-logo img { height: 42px; margin-bottom: 14px; }
.footer-brand-text { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 14px; }
.footer-brand-text span { color: var(--gold); }
.footer-tagline { font-size: 0.84rem; color: rgba(255,255,255,0.4); line-height: 1.65; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45); font-size: 0.85rem; transition: all var(--ease);
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.footer-heading { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.86rem; color: rgba(255,255,255,0.5); transition: color var(--ease); }
.footer-links a:hover { color: var(--white); }
.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; font-size: 0.86rem; color: rgba(255,255,255,0.5); }
.footer-contact-item .fi { color: var(--gold); flex-shrink: 0; margin-top: 1px; }
.footer-contact-item a { color: inherit; transition: color var(--ease); }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom { text-align: center; padding: 18px; font-size: 0.74rem; color: rgba(255,255,255,0.24); }

/* ── FLOATING BUTTONS ──────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; right: 24px; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform var(--ease), box-shadow var(--ease);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
.wa-float svg { width: 28px; height: 28px; fill: white; }
.mobile-cta-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 890; background: var(--dark);
  border-top: 1px solid rgba(196,151,42,0.25);
  padding: 10px 16px; gap: 10px;
}
.mobile-cta-bar a {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 7px; padding: 13px; border-radius: var(--radius);
  font-size: 0.86rem; font-weight: 700; letter-spacing: 0.04em;
}
.mcb-call { background: var(--gold); color: var(--dark); }
.mcb-wa { background: #25D366; color: white; }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .props-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .section, .section-alt, .section-dark { padding: 56px 0; }
  .section-header { margin-bottom: 40px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero-content { padding: 110px 24px 100px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 28px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .ba-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 24px; }
  .about-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); width: 100%; }
  .trust-item:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .props-grid { grid-template-columns: repeat(2, 1fr); }
  .mobile-cta-bar { display: flex; }
  .wa-float { display: none; }
  .scroll-top { bottom: 90px; right: 28px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.3rem; }
  .props-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats { grid-template-columns: 1fr; }
}

/* ── SCROLL TO TOP ───────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 32px;
  width: 40px;
  height: 40px;
  background: var(--dark);
  border: 1px solid rgba(196,151,42,0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, border-color 0.2s ease, background 0.2s ease;
  z-index: 999;
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.scroll-top svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.2s ease;
}
.scroll-top:hover svg {
  stroke: var(--dark);
}
