/* ═══════════════════════════════════════════════
   KETTELL WINDOWS — Global Styles
═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0d1f3c;
  --navy-mid:   #1a3560;
  --navy-light: #244880;
  --gold:       #c8952a;
  --gold-light: #e8b84b;
  --gold-pale:  #fdf3e0;
  --cream:      #faf8f4;
  --white:      #ffffff;
  --gray-50:    #f9fafb;
  --gray-100:   #f3f4f6;
  --gray-200:   #e5e7eb;
  --gray-400:   #9ca3af;
  --gray-600:   #6b7280;
  --gray-800:   #1f2937;
  --text:       #0f1923;
  --radius-sm:  6px;
  --radius:     10px;
  --radius-lg:  16px;
  --shadow:     0 2px 16px rgba(13,31,60,0.10);
  --shadow-md:  0 6px 28px rgba(13,31,60,0.14);
  --shadow-lg:  0 14px 48px rgba(13,31,60,0.18);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── LAYOUT ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 5%; }
.section { padding: 88px 5%; }
.section-head { margin-bottom: 56px; }
.center { text-align: center; }
.center .section-sub { margin: 0 auto; }

.section-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
  display: block;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.8vw, 46px);
  color: var(--navy); font-weight: 700;
  line-height: 1.15; margin-bottom: 16px;
}
.section-sub {
  font-size: 17px; color: var(--gray-600);
  max-width: 560px; line-height: 1.75;
  font-weight: 300;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold);
  color: var(--navy);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600; font-size: 15px;
  text-decoration: none;
  transition: all 0.22s;
  box-shadow: 0 4px 16px rgba(200,149,42,0.3);
  border: none; cursor: pointer; font-family: inherit;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,149,42,0.4); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.88);
  padding: 14px 24px;
  border-radius: var(--radius);
  font-weight: 500; font-size: 15px;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.25);
  transition: all 0.22s;
  background: transparent;
}
.btn-ghost:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.5); }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 500; font-size: 15px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.5);
  transition: all 0.22s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: white; }

.btn-lg { padding: 18px 36px; font-size: 16px; }

.btn-form {
  width: 100%; padding: 15px;
  background: var(--navy);
  color: var(--white);
  border: none; border-radius: var(--radius);
  font-size: 16px; font-weight: 600;
  cursor: pointer; transition: all 0.22s;
  font-family: inherit; margin-top: 6px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-form:hover { background: var(--navy-mid); transform: translateY(-1px); }

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(13,31,60,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,149,42,0.2);
  transition: all 0.3s;
}
nav.scrolled {
  box-shadow: 0 4px 30px rgba(13,31,60,0.35);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 700;
  color: var(--white); text-decoration: none;
  display: flex; align-items: center; gap: 10px;
  letter-spacing: -0.3px;
}
.logo span { color: var(--gold); }
.logo-icon { color: var(--gold); display: flex; align-items: center; }
.logo-white { color: var(--white); }

.nav-links {
  display: flex; align-items: center; gap: 28px;
}
.nav-link {
  color: rgba(255,255,255,0.78);
  text-decoration: none; font-size: 14px; font-weight: 500;
  transition: color 0.2s; letter-spacing: 0.2px;
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-cta {
  background: var(--gold);
  color: var(--navy);
  padding: 9px 20px; border-radius: var(--radius);
  font-weight: 600; font-size: 13px;
  text-decoration: none; transition: all 0.2s;
}
.nav-cta:hover { background: var(--gold-light); }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px; transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex; align-items: center;
  padding: 110px 5% 70px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-bg::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(200,149,42,0.10) 0%, transparent 65%);
  right: -100px; top: 50%; transform: translateY(-50%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,53,96,0.7) 0%, transparent 70%);
  left: -80px; bottom: -100px;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 420px;
  gap: 64px; align-items: center; width: 100%;
}

/* Hero left */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,149,42,0.12);
  border: 1px solid rgba(200,149,42,0.35);
  color: var(--gold-light);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.5px;
  padding: 7px 16px; border-radius: 100px;
  margin-bottom: 22px;
}
h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5vw, 64px);
  color: var(--white);
  line-height: 1.1; font-weight: 700;
  margin-bottom: 20px;
}
h1 em { color: var(--gold); font-style: normal; display: block; }
.hero-sub {
  font-size: 17px; color: rgba(255,255,255,0.68);
  max-width: 480px; line-height: 1.75;
  margin-bottom: 28px; font-weight: 300;
}
.hero-checks {
  list-style: none; margin-bottom: 36px;
  display: flex; flex-direction: column; gap: 10px;
}
.hero-checks li {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.82); font-size: 15px;
}
.hero-checks li::before {
  content: '';
  min-width: 20px; height: 20px;
  background: rgba(200,149,42,0.15) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='10' viewBox='0 0 12 10'%3E%3Cpath d='M1 5l3 3 7-7' stroke='%23c8952a' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center no-repeat;
  border: 1px solid rgba(200,149,42,0.4);
  border-radius: 50%;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }

/* Hero form card */
.quote-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow-lg);
}
.qc-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--gray-200);
}
.qc-icon {
  width: 44px; height: 44px;
  background: var(--gold-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.qc-title { font-size: 17px; font-weight: 600; color: var(--navy); }
.qc-sub { font-size: 12px; color: var(--gray-600); margin-top: 2px; }
.fg { margin-bottom: 13px; }
.fg label {
  display: block; font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.6px;
  color: var(--navy); margin-bottom: 5px;
}
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 11px 13px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 14px; font-family: inherit;
  color: var(--text); background: var(--white);
  transition: border-color 0.2s; outline: none;
  appearance: none; -webkit-appearance: none;
}
.fg textarea { resize: vertical; min-height: 100px; }
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,149,42,0.12);
}
.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form-note {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: var(--gray-400);
  margin-top: 10px; justify-content: center;
}
.form-success {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 30px 0;
}
.success-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: #ecfdf5; color: #059669;
  font-size: 28px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.form-success h3 { color: var(--navy); margin-bottom: 8px; }
.form-success p { color: var(--gray-600); font-size: 14px; }

/* Hero scroll indicator */
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 3;
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 11px;
  display: flex; justify-content: center; padding-top: 6px;
}
.scroll-dot {
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDown 2s infinite;
}
@keyframes scrollDown {
  0% { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--gray-200);
  padding: 18px 5%;
}
.trust-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 16px;
  align-items: center; justify-content: space-between;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--navy); font-weight: 500;
}
.trust-divider {
  width: 1px; height: 24px;
  background: var(--gray-200);
}

/* ── SERVICES ── */
.services-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.28s;
}
.service-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.sc-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.sc-blue   { background: #eff6ff; color: #2563eb; }
.sc-gold   { background: var(--gold-pale); color: var(--gold); }
.sc-green  { background: #f0fdf4; color: #16a34a; }
.sc-coral  { background: #fff7ed; color: #ea580c; }
.sc-purple { background: #faf5ff; color: #9333ea; }
.sc-teal   { background: #f0fdfa; color: #0d9488; }
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 700;
  color: var(--navy); margin-bottom: 10px;
}
.service-card p { font-size: 14px; color: var(--gray-600); line-height: 1.7; margin-bottom: 18px; }
.sc-link {
  font-size: 13px; font-weight: 600;
  color: var(--gold); text-decoration: none;
  transition: gap 0.2s; display: inline-flex; gap: 4px;
}
.sc-link:hover { gap: 8px; }

/* ── WHY SECTION ── */
.why-section {
  padding: 88px 5%;
  background: var(--navy);
}
.why-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}
.why-section .section-title { color: var(--white); }
.why-section .section-sub   { color: rgba(255,255,255,0.62); }
.why-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin: 36px 0;
}
.stat-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px; font-weight: 700;
  color: var(--gold); line-height: 1;
  margin-bottom: 4px;
}
.stat-label { font-size: 12px; color: rgba(255,255,255,0.55); font-weight: 400; }

.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.why-feat {
  display: flex; gap: 20px;
  padding-bottom: 26px; margin-bottom: 26px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.why-feat:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.wf-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 700;
  color: rgba(200,149,42,0.4);
  line-height: 1; min-width: 36px;
  margin-top: -4px;
}
.why-feat strong { display: block; color: var(--white); font-size: 15px; margin-bottom: 6px; }
.why-feat p { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.7; }

/* ── GALLERY ── */
.gallery-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px;
  gap: 16px;
}
.gal-large {
  grid-column: span 2;
  grid-row: span 2;
}
.gal-item { border-radius: var(--radius-lg); overflow: hidden; }
.gal-img {
  width: 100%; height: 100%;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.4s;
}
.gal-item:hover .gal-img { transform: scale(1.04); }
.gal-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,31,60,0.7) 0%, transparent 60%);
  display: flex; align-items: flex-end;
  padding: 16px 18px;
  opacity: 0; transition: opacity 0.3s;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-overlay span { color: white; font-size: 13px; font-weight: 500; }
.gal-placeholder {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--cream); }
.reviews-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--gray-200);
  transition: box-shadow 0.2s;
}
.review-card:hover { box-shadow: var(--shadow-md); }
.stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; margin-bottom: 14px; }
.review-card p {
  font-size: 14px; color: var(--gray-600);
  line-height: 1.75; margin-bottom: 20px;
  font-style: italic;
}
.reviewer { display: flex; align-items: center; gap: 12px; }
.rev-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--navy); color: var(--gold);
  font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.reviewer strong { display: block; font-size: 14px; color: var(--navy); }
.reviewer span { font-size: 12px; color: var(--gray-400); }

/* ── MAP ── */
.map-wrap {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 56px; align-items: start;
}
.map-info p { font-size: 16px; color: var(--gray-600); line-height: 1.75; margin-bottom: 24px; }
.area-list {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.area-item {
  font-size: 14px; color: var(--navy); font-weight: 500;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
}
.map-container {
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--gray-200);
  box-shadow: var(--shadow);
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--navy);
  padding: 70px 5%;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(200,149,42,0.08) 0%, transparent 60%);
}
.cta-inner {
  max-width: 1180px; margin: 0 auto; position: relative;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 28px;
}
.cta-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 700;
  color: var(--white); margin-bottom: 8px;
}
.cta-inner p { color: rgba(255,255,255,0.62); font-size: 16px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ── FOOTER ── */
footer {
  background: #080e1c;
  padding: 64px 5% 0;
}
.footer-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 20px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-list div { font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-contact-list a { color: rgba(255,255,255,0.7); text-decoration: none; }
.footer-contact-list a:hover { color: var(--gold); }
.footer-links-group h4 {
  font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 16px;
}
.footer-links-group ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links-group a {
  font-size: 14px; color: rgba(255,255,255,0.6);
  text-decoration: none; transition: color 0.2s;
}
.footer-links-group a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1180px; margin: 0 auto;
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,0.3);
  flex-wrap: wrap; gap: 10px;
}
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a { color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-legal-links a:hover { color: var(--gold); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 140px 5% 70px;
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-bg::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,149,42,0.08) 0%, transparent 60%);
  right: 0; top: 50%; transform: translateY(-50%);
}
.page-hero-inner {
  max-width: 1180px; margin: 0 auto; position: relative; z-index: 2;
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 56px);
  color: var(--white); font-weight: 700; margin-bottom: 14px;
}
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.62); font-weight: 300; max-width: 520px; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb span { opacity: 0.4; }

/* ── CONTACT PAGE ── */
.contact-wrap {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 56px; align-items: start;
}
.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 700;
  color: var(--navy); margin-bottom: 16px;
}
.contact-info p { color: var(--gray-600); font-size: 15px; line-height: 1.75; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 18px; }
.cd-item {
  display: flex; gap: 14px; align-items: flex-start;
}
.cd-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--gold-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.cd-label { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--gray-400); margin-bottom: 4px; }
.cd-value { font-size: 15px; color: var(--navy); font-weight: 500; }
.cd-value a { color: var(--navy); text-decoration: none; }
.cd-value a:hover { color: var(--gold); }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-200);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}
.contact-form-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 700;
  color: var(--navy); margin-bottom: 6px;
}
.contact-form-card p { font-size: 14px; color: var(--gray-600); margin-bottom: 26px; }

/* ── LEGAL PAGES ── */
.legal-body {
  max-width: 800px; margin: 0 auto;
  padding: 64px 5%;
}
.legal-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 700;
  color: var(--navy); margin: 36px 0 12px;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li {
  font-size: 15px; color: var(--gray-600); line-height: 1.8;
}
.legal-body ul, .legal-body ol { padding-left: 22px; margin: 12px 0 16px; }
.legal-body li { margin-bottom: 6px; }
.legal-body a { color: var(--gold); }
.legal-date {
  font-size: 13px; color: var(--gray-400);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-200);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
[data-animate] {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate-delay] {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s 0.15s ease, transform 0.7s 0.15s ease;
}
[data-animate].visible,
[data-animate-delay].visible {
  opacity: 1; transform: translateY(0);
}
.hero-left { animation: fadeUp 0.7s ease both; }
.hero-right { animation: fadeUp 0.7s 0.18s ease both; }
.badge { animation: fadeUp 0.5s ease both; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding-top: 100px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gal-large { grid-column: span 2; grid-row: span 1; height: 240px; }
  .map-wrap { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 640px) {
  .nav-links { 
    display: none; flex-direction: column; gap: 0;
    position: absolute; top: 70px; left: 0; right: 0;
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 16px 5%;
  }
  .nav-links.open { display: flex; }
  .nav-link { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); color: rgba(255,255,255,0.8); }
  .nav-cta { margin-top: 12px; text-align: center; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gal-large { grid-column: span 1; height: 200px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .trust-inner { justify-content: center; }
  .trust-divider { display: none; }
  .form-row2 { grid-template-columns: 1fr; }
  .why-stats { grid-template-columns: 1fr 1fr; }
}
