/* ===========================
   MG Interior Studio — Styles
   =========================== */

:root {
  --cream: #f8f4ee;
  --cream-dark: #efe8dc;
  --ink: #131b3a;
  --ink-soft: #565f82;
  --gold: #c9973f;
  --gold-light: #f0c66b;
  --sage: #1c2c5c;
  --sage-dark: #0a1230;
  --navy: #101b3f;
  --navy-deep: #0a1128;
  --white: #ffffff;
  --border: rgba(19, 27, 58, 0.1);
  --shadow: 0 20px 50px rgba(10, 17, 40, 0.12);
  --radius: 4px;
  --serif: "Playfair Display", "Georgia", serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;
  --container: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 14px;
  position: relative;
  padding-left: 36px;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 26px;
  height: 1px;
  background: var(--gold);
}
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
}
.section-head p { margin-top: 14px; color: var(--ink-soft); font-size: 17px; }
.section-head.light h2, .section-head.light p { color: var(--white); }

section { padding: 100px 0; position: relative; }
@media (max-width: 768px) { section { padding: 64px 0; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.35s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(201, 151, 63, 0.35);
}
.btn-primary:hover { background: var(--sage-dark); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(10,17,40,0.35); }
.btn-outline {
  border: 1px solid rgba(255,255,255,0.6);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-dark {
  border: 1px solid var(--ink);
  color: var(--ink);
}
.btn-dark:hover { background: var(--ink); color: var(--white); }
.btn-block { width: 100%; justify-content: center; }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ---------- Top Bar ---------- */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { color: var(--gold-light); }
.topbar-links { display: flex; gap: 22px; }
.topbar-links span { opacity: 0.6; margin-right: 6px; }

/* ---------- Header ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(248, 244, 238, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}
header.site-header.scrolled { box-shadow: 0 6px 24px rgba(0,0,0,0.06); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}
.logo-mark { height: 40px; width: auto; flex-shrink: 0; }
.logo-text {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--ink);
  line-height: 1.2;
}
.logo-text small {
  display: block;
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: 1.6px;
  color: var(--gold);
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 2px;
}
/* ---------- Footer brand lockup (real logo artwork) ---------- */
.footer-logo { display: inline-block; }
.footer-logo img { width: 260px; height: auto; }

.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-phone { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; white-space: nowrap; }
.nav-phone svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

.hamburger { display: none; flex-direction: column; gap: 5px; width: 26px; padding: 6px 0; z-index: 600; flex-shrink: 0; }
.hamburger span { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: 0.3s; }

@media (max-width: 1300px) {
  .nav-phone { display: none; }
}

@media (max-width: 640px) {
  .nav-cta .btn-primary { display: none; }
  .logo { font-size: 18px; }
  .topbar .container { font-size: 12px; }
}

@media (max-width: 980px) {
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ---------- Mobile nav overlay (kept outside header so backdrop-filter's
   containing block doesn't break position:fixed) ---------- */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0 0 0 30%;
  background: var(--ink);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 40px;
  gap: 26px;
  z-index: 550;
  overflow-y: auto;
}
.mobile-nav.show { display: flex; }
.mobile-nav a { color: var(--cream); font-size: 20px; font-family: var(--serif); }
.mobile-nav-phone { color: var(--gold-light) !important; font-family: var(--sans) !important; font-size: 15px !important; margin-top: 10px; }
@media (min-width: 981px) { .mobile-nav { display: none !important; } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url("https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(8,14,36,0.85) 10%, rgba(8,14,36,0.5) 60%, rgba(8,14,36,0.25) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 660px; }
.hero-content .eyebrow { color: var(--gold-light); }
.hero-content h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 5.4vw, 64px);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 22px;
}
.hero-content h1 em { color: var(--gold-light); font-style: normal; }
.hero-content p { font-size: 18px; color: rgba(255,255,255,0.85); max-width: 520px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 46px; }

.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stats div strong { display: block; font-family: var(--serif); font-size: 30px; color: var(--gold-light); }
.hero-stats div span { font-size: 13px; letter-spacing: 0.5px; color: rgba(255,255,255,0.75); }

.hero-scroll {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.8);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll .line { width: 1px; height: 34px; background: rgba(255,255,255,0.5); position: relative; overflow: hidden; }
.hero-scroll .line::after {
  content: ""; position: absolute; top: -34px; left: 0; width: 100%; height: 34px; background: var(--gold-light);
  animation: scrollLine 2s infinite ease-in-out;
}
@keyframes scrollLine { 0% { top: -34px; } 60% { top: 34px; } 100% { top: 34px; } }

/* ---------- Marquee trust bar ---------- */
.trustbar { background: var(--ink); padding: 20px 0; overflow: hidden; }
.trustbar .track { display: flex; gap: 60px; white-space: nowrap; animation: marquee 22s linear infinite; width: max-content; }
.trustbar span { color: rgba(255,255,255,0.65); font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase; display: flex; align-items: center; gap: 12px; }
.trustbar span::before { content: "✦"; color: var(--gold); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Reveal Animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Why Us ---------- */
.why { background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.why-card {
  padding: 40px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.35s ease;
  background: var(--cream);
}
.why-card:hover { background: var(--ink); transform: translateY(-6px); box-shadow: var(--shadow); }
.why-card:hover h3, .why-card:hover p { color: var(--white); }
.why-card:hover .icon { background: var(--gold); color: var(--white); }
.why-card .icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: rgba(182,138,78,0.12);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: all 0.35s ease;
}
.why-card .icon svg { width: 26px; height: 26px; }
.why-card h3 { font-family: var(--serif); font-size: 21px; margin-bottom: 10px; transition: color 0.35s ease; }
.why-card p { color: var(--ink-soft); font-size: 15px; transition: color 0.35s ease; }
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

/* ---------- Experience Center ---------- */
.experience { background: var(--cream-dark); }
.experience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.experience-media { position: relative; }
.experience-media .main-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.experience-media .float-img {
  position: absolute;
  bottom: -40px; right: -40px;
  width: 55%;
  border: 8px solid var(--cream-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.experience-media .badge {
  position: absolute; top: -20px; left: -20px;
  background: var(--gold);
  color: var(--white);
  width: 110px; height: 110px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.3;
  box-shadow: var(--shadow);
}
.experience-copy .eyebrow { color: var(--gold); }
.experience-copy h2 { font-family: var(--serif); font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 20px; }
.experience-copy p { color: var(--ink-soft); margin-bottom: 26px; }
.experience-list { display: grid; gap: 16px; margin-bottom: 32px; }
.experience-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; }
.experience-list svg { width: 20px; height: 20px; color: var(--sage); flex-shrink: 0; margin-top: 2px; }
.experience-actions { display: flex; gap: 16px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .experience-grid { grid-template-columns: 1fr; gap: 80px 0; }
  .experience-media { margin-bottom: 20px; }
  .experience-media .float-img { width: 50%; bottom: -30px; right: -16px; }
}

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 380px;
  box-shadow: var(--shadow);
}
.service-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-card:hover img { transform: scale(1.08); }
.service-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,14,36,0.92) 10%, rgba(8,14,36,0.05) 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px;
}
.service-card h3 { font-family: var(--serif); color: var(--white); font-size: 22px; margin-bottom: 6px; }
.service-card p { color: rgba(255,255,255,0.75); font-size: 14px; margin-bottom: 14px; }
.service-card a { color: var(--gold-light); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; display: inline-flex; align-items: center; gap: 6px; }
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

/* ---------- Process ---------- */
.process { background: var(--ink); color: var(--white); }
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; counter-reset: step; }
.process-step { text-align: center; position: relative; padding: 0 10px; }
.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--serif);
  font-size: 42px;
  color: var(--gold);
  margin-bottom: 14px;
}
.process-step h3 { font-family: var(--serif); font-size: 18px; margin-bottom: 10px; }
.process-step p { font-size: 14px; color: rgba(255,255,255,0.65); }
.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 26px; right: -12%;
  width: 24%;
  border-top: 1px dashed rgba(255,255,255,0.25);
}
@media (max-width: 900px) {
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step::after { display: none; }
}
@media (max-width: 560px) { .process-steps { grid-template-columns: 1fr; } }

/* ---------- Consultation Banner ---------- */
.consult-banner {
  background: linear-gradient(120deg, var(--sage-dark), var(--sage));
  color: var(--white);
  border-radius: var(--radius);
  padding: 60px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  box-shadow: var(--shadow);
}
.consult-copy .eyebrow { color: var(--gold-light); }
.consult-copy h2 { font-family: var(--serif); font-size: clamp(26px, 3.4vw, 36px); margin-bottom: 16px; }
.consult-copy p { color: rgba(255,255,255,0.85); margin-bottom: 22px; }
.consult-points { display: flex; gap: 26px; flex-wrap: wrap; }
.consult-points div { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.consult-points svg { width: 20px; height: 20px; color: var(--gold-light); }

.consult-form {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 34px;
}
.consult-form h3 { font-family: var(--serif); font-size: 20px; margin-bottom: 4px; }
.consult-form .sub { font-size: 13px; color: var(--ink-soft); margin-bottom: 20px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 12px; letter-spacing: 0.5px; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 6px; }
.field input, .field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 14px;
  background: var(--cream);
  color: var(--ink);
}
.field input:focus, .field select:focus { outline: none; border-color: var(--gold); background: var(--white); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { font-size: 12px; color: var(--ink-soft); margin-top: 12px; text-align: center; }
.form-success {
  display: none;
  text-align: center;
  padding: 20px 0;
}
.form-success.show { display: block; }
.form-success svg { width: 46px; height: 46px; color: var(--sage); margin: 0 auto 12px; }
.form-success h4 { font-family: var(--serif); font-size: 20px; margin-bottom: 8px; }
.form-success p { font-size: 14px; color: var(--ink-soft); }

@media (max-width: 900px) {
  .consult-banner { grid-template-columns: 1fr; padding: 36px 24px; }
  .field-row { grid-template-columns: 1fr; }
}

/* ---------- Gallery ---------- */
.gallery-filters { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.gallery-filters button {
  padding: 10px 22px;
  border: 1px solid var(--border);
  border-radius: 30px;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.gallery-filters button.active, .gallery-filters button:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 18px; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.gallery-item:nth-child(4n+1) { grid-column: span 2; grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item .tag {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(255,255,255,0.92);
  padding: 6px 14px;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 30px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
}
.gallery-item:hover .tag { opacity: 1; transform: translateY(0); }
.gallery-item.hide { display: none; }
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(4n+1) { grid-column: span 2; grid-row: span 1; }
}

/* ---------- Testimonials ---------- */
.testimonials { background: var(--ink); color: var(--white); }
.testi-track-wrap { overflow: hidden; }
.testi-track { display: flex; gap: 28px; transition: transform 0.6s ease; }
.testi-card {
  flex: 0 0 calc(33.333% - 19px);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 34px;
}
.testi-stars { color: var(--gold); font-size: 15px; margin-bottom: 16px; letter-spacing: 2px; }
.testi-card p { font-size: 15px; color: rgba(255,255,255,0.85); margin-bottom: 24px; min-height: 96px; }
.testi-person { display: flex; align-items: center; gap: 14px; }
.testi-person img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testi-person strong { display: block; font-family: var(--serif); font-size: 15px; }
.testi-person span { font-size: 12px; color: rgba(255,255,255,0.55); }
.testi-nav { display: flex; justify-content: center; gap: 14px; margin-top: 40px; }
.testi-nav button {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
}
.testi-nav button:hover { background: var(--gold); border-color: var(--gold); }
.testi-nav svg { width: 18px; height: 18px; }
@media (max-width: 900px) { .testi-card { flex: 0 0 100%; } }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  text-align: left;
  font-family: var(--serif);
  font-size: 18px;
}
.faq-q .plus { font-size: 22px; color: var(--gold); transition: transform 0.3s ease; flex-shrink: 0; margin-left: 20px; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a p { padding-bottom: 22px; color: var(--ink-soft); font-size: 15px; max-width: 680px; }

/* ---------- Final CTA ---------- */
.final-cta {
  background: url("https://images.unsplash.com/photo-1616486338812-3dadae4b4ace?auto=format&fit=crop&w=1800&q=80") center/cover;
  position: relative;
  text-align: center;
  color: var(--white);
}
.final-cta::before { content: ""; position: absolute; inset: 0; background: rgba(8,14,36,0.82); }
.final-cta .container { position: relative; z-index: 2; }
.final-cta h2 { font-family: var(--serif); font-size: clamp(28px, 4vw, 44px); margin-bottom: 16px; }
.final-cta p { max-width: 560px; margin: 0 auto 32px; color: rgba(255,255,255,0.85); }
.final-cta .hero-actions { justify-content: center; }

/* ---------- Footer ---------- */
footer { background: #0a1128; color: rgba(255,255,255,0.7); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand p { margin: 18px 0 22px; font-size: 14px; max-width: 300px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); }
.footer-social svg { width: 16px; height: 16px; }
footer h4 { font-family: var(--serif); color: var(--white); font-size: 17px; margin-bottom: 22px; }
footer ul li { margin-bottom: 12px; font-size: 14px; }
footer ul li a:hover { color: var(--gold-light); }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; }
.footer-contact svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { display: flex; justify-content: space-between; padding: 24px 0; font-size: 13px; flex-wrap: wrap; gap: 10px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Floating widgets ---------- */
.float-stack {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 400;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}
.float-btn {
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(0,0,0,0.25);
  color: var(--white);
  transition: transform 0.3s ease;
}
.float-btn:hover { transform: scale(1.08); }
.float-btn.whatsapp { background: #25D366; }
.float-btn.call { background: var(--gold); }
.float-btn svg { width: 26px; height: 26px; }

.chat-teaser {
  position: fixed;
  right: 24px;
  bottom: 98px;
  z-index: 401;
  width: 280px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 3px solid var(--gold);
  padding: 20px 20px 18px;
  opacity: 0;
  transform: translateY(16px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.chat-teaser.show { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.chat-teaser p { font-size: 13.5px; color: var(--ink); margin-bottom: 14px; line-height: 1.5; }
.chat-teaser .btn { padding: 11px 18px; font-size: 12px; }
.teaser-close {
  position: absolute;
  top: 10px; right: 10px;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  color: var(--ink-soft);
  background: var(--cream);
}
.teaser-close:hover { background: var(--cream-dark); }
@media (max-width: 768px) { .chat-teaser { bottom: 164px; right: 16px; width: calc(100% - 32px); max-width: 300px; } }

.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 399;
  background: var(--ink);
  color: var(--white);
  padding: 12px 20px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.2);
}
.sticky-cta strong { font-family: var(--serif); font-size: 15px; }
.sticky-cta span { display: block; font-size: 12px; color: rgba(255,255,255,0.6); }
@media (max-width: 768px) { .sticky-cta.show { display: flex; } .float-stack { bottom: 90px; } }

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(8,14,36,0.72);
  z-index: 800;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.show { display: flex; }
.modal-box {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 480px;
  width: 100%;
  padding: 40px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-close {
  position: absolute; top: 18px; right: 18px;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream);
}
.modal-box .eyebrow { color: var(--gold); }
.modal-box h3 { font-family: var(--serif); font-size: 24px; margin-bottom: 6px; }
.modal-box .sub { color: var(--ink-soft); font-size: 14px; margin-bottom: 22px; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-30 { margin-top: 30px; }
