﻿/* ─── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #0f2d4a;
  --navy-light:  #163d63;
  --green:       #1d8a4f;
  --green-light: #28bf6a;
  --gold:        #c9a84c;
  --gold-muted:  rgba(201,168,76,.45);
  --light:       #edf1f7;
  --white:       #ffffff;
  --text:        #1e2d3d;
  --muted:       #5a6a7a;
  --border:      #dce4ed;
  --shadow:      0 4px 24px rgba(15,45,74,.10);
  --shadow-lg:   0 8px 48px rgba(15,45,74,.16);
  --radius:      12px;
  --cream:        #f5f3f0;
  --cream-surface:#ffffff;
  --cream-border: rgba(0,0,0,.09);
  --dark-bg:     #0d0c0b;
  --dark-surface:#161412;
  --dark-border: rgba(255,255,255,.1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--white);
  background: var(--dark-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Cormorant Garamond', serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.container {
  width: min(1160px, 94%);
  margin-inline: auto;
}

/* ─── Utility ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 6px;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
  border: none;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--gold);
  color: #0d0c0b;
  box-shadow: 0 4px 20px rgba(201,168,76,.35);
}
.btn-primary:hover {
  background: #dbbe6a;
  box-shadow: 0 6px 28px rgba(201,168,76,.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.9);
}
.btn-outline:hover { background: rgba(255,255,255,.15); }

.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.section-title {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: -.01em;
}
.section-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.6);
  max-width: 560px;
  margin-inline: auto;
}

/* ─── Light-section text overrides ─────────────────────── */
#services .section-title,
#testimonials .section-title,
#faq .section-title { color: #1a1814; }

#services .section-sub,
#faq .section-sub { color: rgba(26,24,20,.62); }

/* ─── Scroll Progress Bar ───────────────────────────────── */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, rgba(201,168,76,.4), var(--gold));
  z-index: 2001;
  transition: width .1s linear;
  pointer-events: none;
}

/* ─── Navbar ────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: background .35s, box-shadow .35s, padding .35s;
}
#navbar.scrolled {
  background: var(--dark-surface);
  box-shadow: 0 2px 20px rgba(0,0,0,.35);
  padding: .7rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: .9rem;
  line-height: 1;
}
.logo-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .02em;
  white-space: nowrap;
}
.logo-divider {
  display: inline-block;
  width: 1px;
  height: 1.4rem;
  background: rgba(255,255,255,.22);
  flex-shrink: 0;
}
.logo-tagline {
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: rgba(255,255,255,.7);
  white-space: nowrap;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  text-transform: uppercase;
  letter-spacing: .07em;
  transition: color .25s;
}
#navbar.scrolled .nav-links a { color: rgba(255,255,255,.75); }
.nav-links a:hover,
#navbar.scrolled .nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold) !important; }
.nav-cta {
  background: var(--gold) !important;
  color: #0d0c0b !important;
  padding: .55rem 1.3rem;
  border-radius: 6px;
  font-weight: 600 !important;
  box-shadow: 0 2px 12px rgba(201,168,76,.3);
}
.nav-cta:hover { background: #dbbe6a !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background .35s, transform .3s, opacity .3s;
}
#navbar.scrolled .nav-toggle span { background: var(--white); }

/* Hamburger → X animation */
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Focus-visible keyboard ring ───────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) { outline: none; }

/* ─── Hero ──────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  min-height: 100svh;
  background:
    linear-gradient(160deg, rgba(13,12,11,.93) 0%, rgba(13,12,11,.82) 50%, rgba(13,12,11,.95) 100%),
    url('https://images.unsplash.com/photo-1554224154-26032ffc0d07?w=1600&auto=format&fit=crop&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 7rem 0 5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero-content { max-width: 820px; margin: 0 auto; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  padding: .4rem 1rem;
  border-radius: 6px;
  font-size: .8rem;
  color: rgba(255,255,255,.9);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}
.hero-badge .dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
#hero h1 {
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  color: var(--white);
  margin-bottom: 1.25rem;
}
#hero h1 span { color: var(--gold); }
#hero p {
  font-size: 1.12rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 2.5rem;
  max-width: 580px;
  margin-inline: auto;
  text-shadow: 0 1px 8px rgba(0,0,0,.5);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.15);
  justify-content: center;
}
.hero-stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
}
.hero-stat .label {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ─── Services ──────────────────────────────────────────── */
#services {
  padding: 6rem 0;
  background: var(--cream);
}
.services-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}
@media (min-width: 1200px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
}
.service-card {
  background: var(--cream-surface);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,.12); border-color: rgba(201,168,76,.4); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 58px; height: 58px;
  background: rgba(201,168,76,.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.service-icon svg { width: 28px; height: 28px; stroke: var(--gold); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: .6rem; color: #1a1814; }
.service-card p { font-size: .9rem; color: rgba(26,24,20,.62); line-height: 1.7; }

/* ─── Why Us ────────────────────────────────────────────── */
#why {
  padding: 6rem 0;
  background: var(--dark-bg);
  border-top: 1px solid var(--dark-border);
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-visual { position: relative; }
.why-card-main {
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: 20px;
  padding: 2.5rem;
  color: var(--white);
  box-shadow: 0 8px 40px rgba(0,0,0,.3);
}
.why-credential-row {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--dark-border);
}
.why-credential {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
}
.why-credential svg { stroke: var(--gold); flex-shrink: 0; }
.why-owner-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.why-owner-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #a8882e);
  color: #0d0c0b;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-owner-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
}
.why-owner-title {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold);
  margin-top: .15rem;
}
.why-card-main > p { color: rgba(255,255,255,.6); font-size: .9rem; line-height: 1.7; margin-top: 0; }
.why-list { list-style: none; margin-top: 2rem; display: flex; flex-direction: column; gap: 1.1rem; }
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: .95rem;
  color: rgba(255,255,255,.75);
}
.why-list .check-wrap {
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: rgba(201,168,76,.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.why-list .check-wrap svg { width: 13px; stroke: var(--gold); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* ─── Testimonials ──────────────────────────────────────── */
#testimonials {
  padding: 6rem 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
#testimonials::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,.06) 0%, transparent 70%);
  top: -150px; left: -150px;
  border-radius: 50%;
  pointer-events: none;
}
.testimonials-header { text-align: center; margin-bottom: 3.5rem; }
.testimonials-header .section-label { color: var(--gold); }
.testimonials-header .section-title { color: #1a1814; }
.testimonials-header .section-sub { color: rgba(26,24,20,.62); margin-inline: auto; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}.testimonial-card {
  background: var(--cream-surface);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius);
  padding: 2.25rem;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  transition: transform .3s, box-shadow .3s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,.11); }
.quote-mark {
  font-size: 3.5rem;
  line-height: .9;
  color: var(--gold-muted);
  font-family: Georgia, serif;
  display: block;
  margin-bottom: .25rem;
}
.testimonial-card p {
  font-size: 1rem;
  color: rgba(26,24,20,.82);
  line-height: 1.85;
  margin-bottom: 1rem;
}
.review-text {
  position: relative;
  overflow: hidden;
  max-height: 7rem; /* ~4 lines */
  transition: max-height .4s ease;
}
.review-text.expanded {
  max-height: 40rem;
}
.review-text:not(.expanded) {
  -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}
.review-text.expanded {
  -webkit-mask-image: none;
  mask-image: none;
}
.btn-see-more {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: .8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .02em;
  margin-bottom: 1.25rem;
  transition: color .2s;
}
.btn-see-more:hover { color: #d4b86a; }
.testimonial-author { display: flex; align-items: center; gap: .85rem; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.author-name { font-size: .9rem; font-weight: 600; color: #1a1814; }
.author-role { font-size: .78rem; color: rgba(26,24,20,.5); }
.star-row { display: flex; gap: 2px; margin-bottom: .85rem; }
.star-row svg { width: 14px; height: 14px; fill: #e0b84a; stroke: none; }
.testimonials-footer {
  text-align: center;
  margin-top: 2.5rem;
}
.reviews-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: rgba(26,24,20,.7);
  font-size: .88rem;
  font-weight: 500;
  border: 1px solid rgba(0,0,0,.2);
  padding: .6rem 1.25rem;
  border-radius: 50px;
  transition: color .2s, border-color .2s, background .2s;
}
.reviews-link:hover {
  color: #1a1814;
  border-color: var(--gold);
  background: rgba(201,168,76,.06);
}

/* ─── Form privacy note ──────────────────────────────────── */
.form-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  margin-top: .75rem;
}
/* ─── CTA Banner ────────────────────────────────────────── */
#cta-banner {
  background: var(--dark-surface);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
  padding: 4.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
#cta-banner h2 { color: var(--white); font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: .75rem; }
#cta-banner p { color: rgba(255,255,255,.6); font-size: 1rem; margin-bottom: 2rem; }

/* ─── FAQ ───────────────────────────────────────────────── */
#faq { padding: 6rem 0; background: var(--cream); border-top: none; }
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}
.faq-sidebar .section-sub { margin-top: .75rem; }
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  background: var(--cream-surface);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 8px rgba(0,0,0,.05);
  transition: box-shadow .2s, border-color .2s;
}
.faq-item.open { box-shadow: none; border-color: rgba(201,168,76,.3); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-size: .95rem;
  font-weight: 600;
  color: #1a1814;
  font-family: 'Inter', sans-serif;
  text-align: left;
}
.faq-question svg {
  flex-shrink: 0;
  width: 20px; height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .3s;
}
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 1.5rem;
  font-size: .9rem;
  color: rgba(26,24,20,.65);
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 1.5rem 1.25rem; }

/* ─── Contact ───────────────────────────────────────────── */
#contact {
  padding: 6rem 0;
  background: var(--dark-bg);
  border-top: 1px solid var(--dark-border);
}
.contact-title { margin-bottom: .75rem; }
.contact-sub {
  color: rgba(255,255,255,.5);
  margin-bottom: 3.5rem;
  margin-inline: 0;
  text-align: left;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 5rem;
  align-items: start;
}

/* ─── Form ───────────────────────────────────────────────── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.1rem; }
.form-group label {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: rgba(255,255,255,.55);
}
.req { color: var(--gold); }
.form-optional { font-size: .72rem; color: rgba(255,255,255,.3); text-transform: none; letter-spacing: 0; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: .8rem 1rem;
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 6px;
  font-size: .9rem;
  font-family: 'Inter', sans-serif;
  color: var(--white);
  background: rgba(0,0,0,.3);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.22); }
.form-group select option { background: var(--dark-surface); color: var(--white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-mail-submit {
  width: 100%;
  background: var(--gold);
  color: #0d0c0b;
  border: none;
  border-radius: 0;
  padding: 1rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: .25rem;
  transition: background .2s;
}
.btn-mail-submit:hover { background: #d4b86a; }

/* ─── Contact Details sidebar ────────────────────────────── */
.contact-details-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2rem;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon svg { width: 20px; stroke: var(--gold); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-info-label {
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.4);
  margin-bottom: .2rem;
}
.contact-info-item a,
.contact-info-item span { font-size: .95rem; color: rgba(255,255,255,.85); line-height: 1.5; }
.contact-info-item a:hover { color: var(--gold); }
.contact-map {
  margin-top: 2rem;
  border-radius: 8px;
  overflow: hidden;
  height: 220px;
}
.contact-map iframe { width: 100%; height: 100%; border: none; display: block; }

/* ─── Inline link ─────────────────────────────────────────── */
.inline-link { color: var(--gold); text-decoration: underline; }
.inline-link:hover { color: #d4b86a; }
/* ─── Footer ────────────────────────────────────────────── */
#footer {
  background: var(--dark-surface);
  border-top: 1px solid var(--dark-border);
  padding: 3.5rem 0 2rem;
  color: rgba(255,255,255,.7);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-bottom: .75rem;
}
.footer-logo .logo-main,
.footer-logo .logo-sub { display: none; }
.footer-brand p { font-size: .85rem; margin-top: .5rem; line-height: 1.7; max-width: 300px; }
.footer-col h4 { font-family: 'Inter', sans-serif; font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--white); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.footer-col ul li a { font-size: .85rem; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.1); margin-bottom: 1.5rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: .8rem; }

/* ─── Scroll-reveal ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 900px) {
  .why-inner { grid-template-columns: 1fr; }
  .why-visual { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 800px) {
  .faq-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 700px) {
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--dark-surface);
    padding: 1.5rem;
    box-shadow: 0 8px 30px rgba(0,0,0,.4);
    gap: 1rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { color: rgba(255,255,255,.8) !important; }
  .nav-toggle { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .services-header { flex-direction: column; align-items: flex-start; }
  #hero { padding: 5rem 0 3.5rem; }
  #services, #why, #testimonials, #faq, #contact { padding: 4rem 0; }
  #cta-banner { padding: 3rem 0; }
  .contact-grid { gap: 3rem; }
}

/* ─── Small phones (≤ 480px) ───────────────────────────── */
@media (max-width: 480px) {
  #hero { padding: 4rem 0 3rem; }
  #services, #why, #testimonials, #faq, #contact { padding: 3rem 0; }
  #cta-banner { padding: 2.5rem 0; }
  .contact-form { padding: 1.25rem; }
  .hero-badge { font-size: .72rem; padding: .35rem .85rem; }
  .why-card-main { padding: 1.75rem; }
}

/* ─── prefers-reduced-motion ────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; }
  #progress-bar { transition: none; }
}
