/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --cream:      #f7f5f0;
  --white:      #ffffff;
  --pale:       #eeebe4;
  --navy:       #1c2231;
  --navy-mid:   #2e3a52;
  --text:       #2c2a25;
  --muted:      #6b6660;
  --gold:       #c9a52a;
  --gold-light: #dbb83a;
  --gold-pale:  #fdf5dc;
  --gold-border:#e8c96a;
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --nav-h:      84px;
  --max-w:      1180px;
  --shadow-sm:  0 1px 4px rgba(0,0,0,.07);
  --shadow-md:  0 4px 20px rgba(0,0,0,.1);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.13);
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── LAYOUT ─────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}
.section { padding: 96px 0; }
.section-alt { background: var(--white); }

/* ── PAGE SWITCHER ──────────────────────────────────────── */
.page { display: none; }
.page.active {
  display: block;
  animation: pageFade .45s ease;
}
@keyframes pageFade {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* inner pages (everything except home/hero) clear the fixed header */
.section-page { padding-top: calc(var(--nav-h) + 72px); min-height: 100vh; }
.page h1:focus, .page h2:focus { outline: none; }

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
.label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 46px);
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 20px;
}
h2 em { color: var(--gold-light); font-style: italic; }
h3 { font-size: 18px; font-weight: 700; color: var(--navy); }
.section-head { text-align: center; margin-bottom: 52px; }
.section-sub { color: var(--muted); font-size: 15px; max-width: 520px; margin: 10px auto 0; }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .3px;
  transition: background .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(184,146,30,.32); }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255,255,255,.7);
  color: #fff;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.btn-outline-white svg { color: #25d366; }
.btn-outline-white:hover { background: rgba(255,255,255,.12); transform: translateY(-1px); }

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--navy);
  color: var(--navy);
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.btn-outline-dark:hover { background: var(--navy); color: #fff; transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--gold-border);
  color: var(--gold);
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.btn-ghost:hover { background: var(--gold-pale); transform: translateY(-1px); }

/* ── NAVBAR ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(15,17,23,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201,165,42,0.32);
  box-shadow: 0 2px 22px rgba(0,0,0,0.40);
  transition: background .3s, box-shadow .3s;
}
.site-header.scrolled {
  background: rgba(11,13,18,0.99);
  box-shadow: 0 2px 26px rgba(0,0,0,0.55);
}
.navbar {
  max-width: var(--max-w);
  margin: 0 auto;
  height: var(--nav-h);
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 70px; height: 70px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; }
.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.05;
  white-space: nowrap;
}
.brand-sub {
  font-size: 13px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 13.5px;
  font-weight: 600;
  color: #e9eaee;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 6px 8px;
  border-radius: 40px;
}
.nav-links a:not(.nav-cta) {
  padding: 7px 13px;
  border-radius: 28px;
  transition: background .18s, color .18s;
}
.nav-links a:not(.nav-cta):hover,
.nav-links a.active:not(.nav-cta) {
  background: rgba(201,165,42,0.15);
  color: var(--gold);
}
.nav-links a.active:not(.nav-cta) {
  font-weight: 700;
}
.nav-email {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 28px;
  color: var(--gold) !important;
  font-size: 12.5px;
  white-space: nowrap;
  transition: background .18s, color .18s;
}
.nav-email svg { flex: none; }
.nav-email:hover { background: rgba(201,165,42,0.15); color: var(--gold-light) !important; }

.nav-cta {
  background: var(--gold);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 28px;
  font-size: 13px;
  white-space: nowrap;
  margin-left: 6px;
  transition: background .2s, box-shadow .2s;
}
.nav-cta:hover { background: var(--gold-light) !important; box-shadow: 0 4px 14px rgba(201,165,42,.35); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1600047509807-ba8f99d2cdde?auto=format&fit=crop&w=1920&q=90');
  background-size: cover;
  background-position: center 50%;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(18,24,38,0.65) 0%, rgba(18,24,38,0.42) 55%, rgba(18,24,38,0.18) 100%);
}
.hero-body {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 60px) 28px 80px;
}
.hero-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-border);
  margin-bottom: 18px;
}
.hero-body h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 7vw, 80px);
  color: #fff;
  line-height: 1.06;
  margin-bottom: 22px;
  max-width: 740px;
}
.hero-body h1 em { color: var(--gold-border); font-style: italic; }
.hero-sub {
  color: #fff;
  font-size: 19px;
  font-weight: 600;
  max-width: 560px;
  margin-bottom: 38px;
  line-height: 1.7;
  padding-left: 18px;
  border-left: 3px solid var(--gold-border);
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.5);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ── TRUST BAR ──────────────────────────────────────────── */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background: var(--navy);
  padding: 28px 28px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 48px;
}
.trust-item strong {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--gold-border);
  line-height: 1;
}
.trust-item span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.trust-sep {
  width: 1px; height: 40px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}

/* ── HOME GALLERY ───────────────────────────────────────── */
.home-gallery {
  background: var(--white);
  padding: 56px 0 64px;
}
.home-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.hg-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.hg-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.hg-item:hover img { transform: scale(1.04); }
.hg-item span {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(28,34,49,0.80) 0%, transparent 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 28px 16px 14px;
  letter-spacing: .3px;
}

/* ── ABOUT ──────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 72px;
  align-items: start;
}
.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.ap-main {
  grid-column: 1 / -1;
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.ap-sm {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
}
.ap-sm:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }
.about-content p { color: var(--muted); font-size: 15.5px; line-height: 1.82; }
.about-content p + p { margin-top: 14px; }
.about-pillars {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}
.about-pillars li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--pale);
  border-radius: var(--radius-sm);
  padding: 14px 14px;
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
}
.about-pillars li strong { display: block; color: var(--navy); font-size: 13px; margin-bottom: 2px; }
.pillar-icon { font-size: 22px; flex-shrink: 0; }

/* ── SERVICES ───────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.service-card {
  background: var(--cream);
  border: 1.5px solid var(--pale);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: border-color .25s, box-shadow .25s, transform .2s;
}
.service-card:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card--accent {
  background: var(--gold-pale);
  border-color: var(--gold-border);
}
.service-card--accent:hover { border-color: var(--gold); }
.sc-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--pale);
}
.service-card--accent .sc-header { border-bottom-color: var(--gold-border); }
.sc-icon { font-size: 30px; }
.service-card h3 { font-size: 21px; color: var(--navy); }
.sc-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 10px;
  color: var(--text);
  font-size: 14px;
}
.sc-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sc-list li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.services-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 44px;
}
.services-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
}
.services-gallery img:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }

.services-footer {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ── QUOTE FORM ─────────────────────────────────────────── */
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 72px;
  align-items: start;
}
.quote-info p { color: var(--muted); font-size: 15px; line-height: 1.8; margin-top: 18px; }
.quote-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}
.qcl-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: var(--pale);
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  color: var(--text);
  transition: background .2s;
}
a.qcl-row:hover { background: var(--gold-pale); color: var(--gold); }
.qcl-icon { font-size: 20px; flex-shrink: 0; }
.qcl-row strong { display: block; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--navy); margin-bottom: 2px; }
.qcl-row span { color: var(--muted); }

.form-card {
  background: var(--white);
  border: 1px solid var(--pale);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
}
form { display: flex; flex-direction: column; gap: 18px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { display: flex; flex-direction: column; gap: 6px; }
.fg label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
}
.req { color: var(--gold); }
.fg input,
.fg select,
.fg textarea {
  background: var(--cream);
  border: 1.5px solid var(--pale);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
}
.fg input::placeholder,
.fg textarea::placeholder { color: rgba(107,102,96,.5); }
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,146,30,.12);
  background: #fff;
}
.fg select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23b8921e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: var(--cream);
  padding-right: 40px;
  cursor: pointer;
}
.fg textarea { resize: vertical; min-height: 104px; }
.radio-row { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 2px; }
.rl { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text); font-weight: 500; cursor: pointer; }
.rl input[type="radio"] { accent-color: var(--gold); width: 16px; height: 16px; cursor: pointer; }
.btn-full { width: 100%; justify-content: center; padding: 15px; font-size: 15px; }

.form-error {
  background: #fbeaea;
  border: 1px solid #e3b4b0;
  color: #a32b22;
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 16px;
}

.form-success { text-align: center; padding: 32px 16px; }
.fs-icon { font-size: 44px; margin-bottom: 14px; }
.form-success h3 { color: var(--navy); font-size: 22px; margin-bottom: 10px; }
.form-success p { color: var(--muted); font-size: 14.5px; line-height: 1.7; }

/* ── CTA BAND ───────────────────────────────────────────── */
.cta-band {
  background: var(--navy);
  padding: 56px 0;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h3 {
  color: #fff;
  font-size: clamp(18px, 2.5vw, 24px);
  margin-bottom: 6px;
}
.cta-band p { color: rgba(255,255,255,.55); font-size: 14px; }
.cta-band-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── CONTACT ────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.contact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  background: var(--cream);
  border: 1.5px solid var(--pale);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  color: var(--text);
}
a.contact-card:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  color: var(--navy);
}
.cc-icon { font-size: 28px; }
.contact-card strong {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-card span { font-size: 14px; color: var(--muted); line-height: 1.5; }

/* ── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--navy);
  border-top: 3px solid var(--gold);
  padding: 48px 0 32px;
  color: rgba(255,255,255,.55);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 48px; height: 48px; object-fit: contain; }
.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--gold-border);
  font-weight: 800;
  line-height: 1;
}
.footer-sub { font-size: 11.5px; color: rgba(255,255,255,.45); margin-top: 3px; }
.footer-nav { display: flex; gap: 28px; font-size: 13px; font-weight: 600; }
.footer-nav a { color: rgba(255,255,255,.6); transition: color .2s; }
.footer-nav a:hover { color: var(--gold-border); }
.footer-copy { font-size: 11.5px; text-align: center; }
.footer-imprint { font-size: 12px; text-align: center; color: rgba(255,255,255,.5); margin-top: -12px; }
.footer-imprint a { color: var(--gold-border); font-weight: 600; transition: color .2s; }
.footer-imprint a:hover { color: var(--gold); text-decoration: underline; }

/* ── MOBILE ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .menu-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(15,17,23,0.99);
    flex-direction: column;
    gap: 0;
    border: none;
    border-bottom: 1px solid rgba(201,165,42,0.32);
    border-radius: 0;
    padding: 8px 0 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.5);
  }
  .nav-links.active { display: flex; }
  .nav-links a:not(.nav-cta) {
    padding: 13px 28px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    width: 100%;
    font-size: 15px;
  }
  .nav-cta { margin: 12px 28px 0; display: block; text-align: center; }

  .hero-body { text-align: center; }
  .hero-btns { justify-content: center; }

  .trust-item { padding: 10px 20px; }
  .trust-sep { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-wrap { max-width: 340px; margin: 0 auto; }
  .about-pillars { grid-template-columns: 1fr 1fr; }

  .services-grid { grid-template-columns: 1fr; }
  .sc-list { grid-template-columns: 1fr 1fr; }

  .quote-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row-2 { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr 1fr; }

  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-btns { justify-content: center; }
}

@media (max-width: 560px) {
  .about-pillars { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .sc-list { grid-template-columns: 1fr; }
  .footer-nav { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .form-card { padding: 24px 18px; }
  .brand img { width: 54px; height: 54px; }
  .brand-name { font-size: 15px; white-space: normal; }
  .brand-sub { font-size: 11px; letter-spacing: 2px; }
}

/* ── HOME: FEATURE SPLIT ─────────────────────────────── */
.home-feature { padding: 90px 0; background: var(--cream); }
.hf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hf-img img { width: 100%; border-radius: var(--radius-lg); object-fit: cover; box-shadow: 0 20px 50px rgba(28,34,49,0.18); }
.hf-text h2 { margin: 10px 0 18px; }
.hf-text p { color: var(--muted); line-height: 1.8; margin-bottom: 14px; }

/* ── HOME: WHY CHOOSE US ─────────────────────────────── */
.home-why { padding: 90px 0; background: var(--navy); }
.home-why .label { color: var(--gold-border); }
.home-why h2 { color: #fff; }
.home-why .section-sub { color: rgba(255,255,255,.7); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(232,201,106,0.22);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
}
.why-num { font-family: 'Playfair Display', serif; font-size: 34px; color: var(--gold-border); margin-bottom: 16px; }
.why-card strong { display: block; color: #fff; font-size: 18px; margin-bottom: 10px; }
.why-card p { color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.7; }

/* ── HOME: PROCESS ───────────────────────────────────── */
.home-process { padding: 90px 0; background: var(--cream); }
.hp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hp-img img { width: 100%; border-radius: var(--radius-lg); object-fit: cover; box-shadow: 0 20px 50px rgba(28,34,49,0.18); }
.hp-steps h2 { margin: 10px 0 26px; }
.step-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.step-list li { display: flex; gap: 18px; align-items: flex-start; }
.step-list li span {
  flex: 0 0 auto;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #fff; font-weight: 700; font-size: 15px;
}
.step-list li strong { color: var(--navy); font-size: 15px; }
.step-list li div { color: var(--muted); font-size: 14px; line-height: 1.6; }

/* ── HOME: CTA BAND ──────────────────────────────────── */
.home-cta { padding: 84px 0; background: var(--navy-mid); text-align: center; }
.home-cta h2 { color: #fff; margin-bottom: 14px; }
.home-cta p { color: rgba(255,255,255,.78); max-width: 560px; margin: 0 auto 30px; line-height: 1.7; }
.home-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.home-cta .btn-outline-dark { border-color: rgba(255,255,255,.6); color: #fff; }
.home-cta .btn-outline-dark:hover { background: #fff; color: var(--navy); }

/* ── FLOATING WHATSAPP CHAT ──────────────────────────── */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 88px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  gap: 0;
  height: 60px;
  padding: 0 17px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37,211,102,.42);
  transition: transform .2s ease, box-shadow .2s ease, gap .25s ease, padding .25s ease;
  overflow: hidden;
}
.wa-float svg { flex: none; }
.wa-float-label {
  max-width: 0;
  opacity: 0;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 600;
  transition: max-width .25s ease, opacity .2s ease;
}
.wa-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37,211,102,.5);
  gap: 10px;
}
.wa-float:hover .wa-float-label {
  max-width: 160px;
  opacity: 1;
}
@media (max-width: 600px) {
  .wa-float { right: 16px; bottom: 80px; height: 56px; padding: 0 15px; }
}

/* ── HOME SECTIONS: RESPONSIVE ───────────────────────── */
@media (max-width: 960px) {
  .hf-grid, .hp-grid { grid-template-columns: 1fr; gap: 36px; }
  .hf-img img, .hp-img img { max-height: 360px; }
  .why-grid { grid-template-columns: 1fr; }
}
