
/* ── Office Locations ── */
.offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.office-card {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: border-color 0.2s, background 0.2s;
}
.office-card:hover {
  border-color: rgba(200,151,58,0.35);
  background: rgba(255,255,255,0.03);
}
.office-card.highlight-card {
  border-color: rgba(200,151,58,0.4);
  background: rgba(200,151,58,0.06);
}
.office-flag {
  font-size: 28px;
  margin-bottom: 10px;
  line-height: 1;
}
.office-city {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 2px;
}
.office-role {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.office-address {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  flex: 1;
}
.office-contact {
  margin-top: 16px;
  font-size: 12px;
  font-weight: 400;
  color: var(--gold-light);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  display: block;
}
.office-contact:hover { color: var(--white); }

@media (max-width: 1024px) {
  .offices-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .offices-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   KOTAR ESTATES — Main Stylesheet
   Tested breakpoints: 320px / 768px / 1024px / 1280px+
   ═══════════════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  color: #0f1f2e;
  background: #faf7f2;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── CSS Variables ── */
:root {
  --navy:       #0f1f2e;
  --navy-mid:   #1a3247;
  --navy-light: #243f54;
  --gold:       #c8973a;
  --gold-light: #e6b96a;
  --gold-pale:  #f5e9d0;
  --cream:      #faf7f2;
  --white:      #ffffff;
  --text:       #0f1f2e;
  --muted:      #5a6a78;
  --light:      #8a9aaa;
  --border:     rgba(15,31,46,0.1);
  --border-gold:rgba(200,151,58,0.3);
  --r:          3px;
  --r-lg:       6px;
  --nav-h:      72px;
  --section-px: 64px;
  --section-py: 96px;
  --max-w:      1200px;
}

/* ── Typography ── */
.serif { font-family: 'Cormorant Garamond', Georgia, serif; }
h1,h2,h3,h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

/* ── Layout helpers ── */
.section {
  padding: var(--section-py) var(--section-px);
}
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.bg-navy   { background: var(--navy); }
.bg-cream  { background: var(--cream); }
.bg-white  { background: var(--white); }
.bg-goldpale { background: var(--gold-pale); }

/* ── Eyebrow / labels ── */
.eyebrow {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 14px;
  max-width: 640px;
}
.section-title.light { color: var(--white); }
.section-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 56px;
  line-height: 1.7;
}
.section-sub.light { color: rgba(255,255,255,0.55); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--r);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary  { background: var(--gold);  color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); }
.btn-navy     { background: var(--navy);  color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); }
.btn-outline-light {
  border: 1px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.8);
  background: transparent;
}
.btn-outline-light:hover { border-color: rgba(255,255,255,0.7); color: var(--white); }
.btn-outline-dark {
  border: 1px solid rgba(15,31,46,0.3);
  color: var(--navy);
  background: transparent;
}
.btn-outline-dark:hover { border-color: var(--navy); }

/* ── Nav ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--section-px);
  background: rgba(250,247,242,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.site-nav.scrolled { box-shadow: 0 2px 24px rgba(15,31,46,0.08); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-mark {
  width: 34px; height: 34px;
  background: var(--navy);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-mark svg { width: 20px; height: 20px; }
.nav-logo-words { display: flex; flex-direction: column; gap: 0; }
.nav-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.1;
}
.nav-logo-tagline {
  font-size: 9px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--navy); }
.nav-links .nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: var(--r);
}
.nav-links .nav-cta:hover { background: var(--navy-mid); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px; height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.25s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(250,247,242,0.99);
  border-bottom: 1px solid var(--border);
  padding: 12px 24px 24px;
  z-index: 999;
  flex-direction: column;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 15px;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--navy); }
.mobile-nav a:last-child { border: none; }
.mobile-nav .mob-cta {
  margin-top: 14px;
  background: var(--navy);
  color: var(--white) !important;
  text-align: center;
  border-radius: var(--r);
  padding: 13px;
  border: none;
}

/* Nav spacer */
.nav-spacer { height: var(--nav-h); }

/* ── Trust bar ── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 12px var(--section-px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.trust-dot {
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Hero ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-h));
}
.hero-left {
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px var(--section-px);
  position: relative;
}
.hero-left::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent 0%, var(--gold) 50%, transparent 100%);
}
.hero-right {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px var(--section-px);
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.hero-headline {
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-headline em { font-style: italic; color: var(--gold-light); }
.hero-subtext {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  max-width: 400px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.hero-stat-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-lbl {
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
  max-width: 130px;
  line-height: 1.4;
}

/* ── Contact form card ── */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  max-width: 440px;
  width: 100%;
  box-shadow: 0 4px 32px rgba(15,31,46,0.06);
}
.form-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 20px;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 14px;
}
.form-row label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-row input,
.form-row select,
.form-row textarea {
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 10px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.form-row textarea { resize: vertical; min-height: 100px; }
.form-error {
  display: none;
  color: #d85a30;
  font-size: 12px;
  margin-bottom: 8px;
}
.form-note {
  font-size: 11px;
  color: var(--light);
  text-align: center;
  margin-top: 10px;
}
.btn-form {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  padding: 13px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--r);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 6px;
}
.btn-form:hover { background: var(--navy-mid); transform: translateY(-1px); }

/* ── Process steps ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.process-step {
  background: var(--white);
  padding: 36px 28px;
}
.process-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 18px;
  display: block;
}
.process-step h3 {
  font-size: 17px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 10px;
}
.process-step p {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
}
.process-step.highlight { background: var(--navy); }
.process-step.highlight .process-num { color: rgba(200,151,58,0.25); }
.process-step.highlight h3 { color: var(--white); }
.process-step.highlight p  { color: rgba(255,255,255,0.58); }

/* ── Services grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}
.service-card:hover { border-color: rgba(200,151,58,0.4); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 42px; height: 42px;
  background: rgba(200,151,58,0.1);
  border: 1px solid rgba(200,151,58,0.2);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 20px; height: 20px; }
.service-card h3 { font-size: 19px; font-weight: 400; color: var(--white); margin-bottom: 10px; }
.service-card p  { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 18px; }
.tag {
  display: inline-block;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold);
  background: rgba(200,151,58,0.1);
  padding: 4px 10px;
  border-radius: 2px;
  border: 1px solid rgba(200,151,58,0.2);
}

/* ── Why section ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.why-left p {
  font-size: 16px; font-weight: 300; color: var(--muted);
  line-height: 1.75; margin-bottom: 36px;
}
.diff-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.diff-item { display: flex; gap: 18px; align-items: flex-start; }
.diff-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 300;
  color: var(--gold); line-height: 1; flex-shrink: 0; width: 28px;
}
.diff-content h4 { font-size: 14px; font-weight: 500; color: var(--navy); margin-bottom: 3px; }
.diff-content p  { font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.6; margin: 0; }
.fact-stack { display: flex; flex-direction: column; gap: 2px; }
.fact-card {
  background: var(--navy);
  padding: 24px 28px;
}
.fact-card:first-child { border-radius: var(--r-lg) var(--r-lg) 0 0; }
.fact-card:last-child  { border-radius: 0 0 var(--r-lg) var(--r-lg); }
.fact-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px; font-weight: 300;
  color: var(--gold-light); line-height: 1; margin-bottom: 4px;
}
.fact-lbl { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.5; }

/* ── Testimonials ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
}
.testi-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.testi-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 400; font-style: italic;
  color: var(--navy); line-height: 1.5; margin-bottom: 18px;
}
.testi-name    { font-size: 14px; font-weight: 500; color: var(--navy); }
.testi-loc     { font-size: 12px; font-weight: 300; color: var(--muted); letter-spacing: 0.04em; }

/* ── FAQ ── */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 48px; }
.faq-item { border-bottom: 1px solid var(--border); padding-bottom: 22px; }
.faq-q { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 500; color: var(--navy); margin-bottom: 8px; }
.faq-a { font-size: 14px; font-weight: 300; color: var(--muted); line-height: 1.7; }

/* ── CTA Banner ── */
.cta-banner {
  background: var(--navy);
  padding: var(--section-py) var(--section-px);
  text-align: center;
}
.cta-banner h2 { font-size: clamp(28px, 3.5vw, 48px); font-weight: 300; color: var(--white); margin-bottom: 14px; }
.cta-banner h2 em { font-style: italic; color: var(--gold-light); }
.cta-banner p { font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.6); max-width: 480px; margin: 0 auto 36px; line-height: 1.7; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── Blog ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { box-shadow: 0 8px 32px rgba(15,31,46,0.1); transform: translateY(-2px); }
.blog-card-thumb {
  height: 180px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.blog-thumb-icon { opacity: 0.15; }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-meta {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 400; color: var(--light);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 12px;
}
.blog-meta-dot { width: 3px; height: 3px; background: var(--gold); border-radius: 50%; }
.blog-card h3 { font-size: 18px; font-weight: 500; color: var(--navy); margin-bottom: 10px; line-height: 1.3; }
.blog-card p  { font-size: 14px; font-weight: 300; color: var(--muted); line-height: 1.65; margin-bottom: 16px; flex: 1; }
.blog-read-more {
  font-size: 12px; font-weight: 500; color: var(--gold);
  letter-spacing: 0.1em; text-transform: uppercase;
  display: flex; align-items: center; gap: 6px;
  margin-top: auto;
}

/* Blog post page */
.blog-post-header {
  background: var(--navy);
  padding: 72px var(--section-px) 56px;
}
.blog-post-header .eyebrow { color: var(--gold); }
.blog-post-title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300; color: var(--white);
  max-width: 760px; line-height: 1.1;
  margin-bottom: 20px;
}
.blog-post-meta {
  font-size: 13px; color: rgba(255,255,255,0.45);
  display: flex; gap: 16px; flex-wrap: wrap;
}
.blog-post-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px var(--section-px);
}
.blog-post-body h2 {
  font-size: 28px; font-weight: 400; color: var(--navy);
  margin: 40px 0 14px;
}
.blog-post-body h3 {
  font-size: 21px; font-weight: 500; color: var(--navy);
  margin: 28px 0 10px;
}
.blog-post-body p {
  font-size: 16px; font-weight: 300; color: var(--muted);
  line-height: 1.8; margin-bottom: 18px;
}
.blog-post-body ul,
.blog-post-body ol {
  margin: 0 0 18px 24px;
}
.blog-post-body li {
  font-size: 15px; font-weight: 300; color: var(--muted);
  line-height: 1.7; margin-bottom: 6px;
}
.blog-post-body strong { font-weight: 500; color: var(--navy); }
.blog-callout {
  background: var(--gold-pale);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 18px 22px;
  margin: 28px 0;
  font-size: 15px; font-weight: 300; color: var(--navy);
  line-height: 1.7;
}

/* ── About page ── */
.about-hero {
  background: var(--navy);
  padding: 80px var(--section-px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-hero h1 { color: var(--white); font-size: clamp(32px, 4vw, 54px); }
.about-hero h1 em { font-style: italic; color: var(--gold-light); }
.about-hero p { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.75; margin-top: 20px; }
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.about-value {
  background: var(--white);
  padding: 32px 28px;
}
.about-value .val-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px; font-weight: 300; color: var(--gold-pale);
  line-height: 1; margin-bottom: 16px; display: block;
}
.about-value h3 { font-size: 18px; font-weight: 500; color: var(--navy); margin-bottom: 8px; }
.about-value p  { font-size: 14px; font-weight: 300; color: var(--muted); line-height: 1.65; }

/* Team cards */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  text-align: center;
}
.team-avatar {
  width: 72px; height: 72px;
  background: var(--navy);
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
}
.team-avatar span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 300; color: var(--gold);
}
.team-name { font-size: 18px; font-weight: 500; color: var(--navy); margin-bottom: 4px; }
.team-role { font-size: 12px; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; }
.team-bio  { font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.6; }

/* ── Contact page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-detail-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-detail-icon {
  width: 40px; height: 40px;
  background: var(--gold-pale);
  border: 1px solid var(--border-gold);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; }
.contact-detail-label { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.contact-detail-val  { font-size: 15px; font-weight: 300; color: var(--navy); }
.contact-detail-val a { text-decoration: none; color: var(--navy); transition: color 0.2s; }
.contact-detail-val a:hover { color: var(--gold); }

/* ── Page hero (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 64px var(--section-px);
}
.page-hero .eyebrow { color: var(--gold); }
.page-hero h1 { font-size: clamp(28px, 4vw, 48px); font-weight: 300; color: var(--white); margin-bottom: 12px; }
.page-hero p { font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.6); max-width: 560px; line-height: 1.7; }

/* ── Footer ── */
.site-footer {
  background: #07111a;
  padding: 64px var(--section-px) 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 28px;
}
.footer-top > div { min-width: 0; }
.footer-brand-col {
  display: flex;
  flex-direction: column;
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 500;
  color: var(--white); letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.footer-brand-desc {
  display: block;
  font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.45);
  line-height: 1.75; max-width: 280px;
  margin: 0;
}
.footer-col-title {
  font-size: 10px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.5);
  text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal {
  font-size: 12px; font-weight: 300;
  color: rgba(255,255,255,0.25);
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px; font-style: italic; font-weight: 300;
  color: rgba(200,151,58,0.45);
}

/* ── WhatsApp float ── */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  z-index: 900;
  transition: transform 0.2s;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up   { animation: fadeUp 0.65s ease both; }
.fade-up-2 { animation: fadeUp 0.65s 0.12s ease both; opacity: 0; }
.fade-up-3 { animation: fadeUp 0.65s 0.24s ease both; opacity: 0; }
.fade-up-4 { animation: fadeUp 0.65s 0.36s ease both; opacity: 0; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Breadcrumb ── */
.breadcrumb {
  font-size: 12px; color: rgba(255,255,255,0.4);
  display: flex; gap: 6px; align-items: center;
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { opacity: 0.4; }

/* ══════════════════════════════════════════════
   RESPONSIVE — Mobile first, layered up
   ══════════════════════════════════════════════ */

/* ── 1280px+ (large desktop): max-width kicks in naturally ── */

/* ── 1024px (laptop/medium desktop) ── */
@media (max-width: 1024px) {
  :root {
    --section-px: 40px;
    --section-py: 80px;
  }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
  .about-hero { grid-template-columns: 1fr; gap: 36px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── 900px (tablet landscape) ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 64px var(--section-px); }
  .hero-right { padding: 56px var(--section-px); }
  .hero-right .form-card { max-width: 100%; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-values-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
}

/* ── 768px (tablet portrait) ── */
@media (max-width: 768px) {
  :root {
    --section-px: 24px;
    --section-py: 64px;
    --nav-h: 64px;
  }
  .site-nav { padding: 0 var(--section-px); }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .trust-bar { padding: 10px var(--section-px); gap: 16px; }
  .trust-item { font-size: 11px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { text-align: center; justify-content: center; }
  .about-hero { padding: 56px var(--section-px); }
  .team-grid { grid-template-columns: 1fr; }
  .blog-post-body { padding: 40px var(--section-px); }
  .hero-stats { gap: 24px; }
}

/* ── 480px (large phone) ── */
@media (max-width: 480px) {
  :root { --section-px: 18px; }
  .process-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .about-values-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
