/* =============================================
   PREMAVISTA — SHARED STYLES
   Colors: Navy #0E1B2C | Gold #C4A25A | Ivory #FDFAF4
   Fonts: Cormorant Garamond + Outfit (Google Fonts)
   ============================================= */

:root {
  --navy: #0E1B2C;
  --navy-mid: #162538;
  --navy-light: #1e3450;
  --gold: #C4A25A;
  --gold-light: #E8C97E;
  --gold-pale: #f5edd8;
  --ivory: #FDFAF4;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-mid: #4a5568;
  --text-light: #8a9ab5;
  --border: #e2d9c9;
  --shadow: 0 4px 24px rgba(14,27,44,0.10);
  --shadow-lg: 0 12px 48px rgba(14,27,44,0.18);
  --radius: 4px;
  --radius-lg: 8px;
  --transition: 0.25s ease;
  --max-width: 1160px;
}

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

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

body {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* =============================================
   TYPOGRAPHY
   ============================================= */

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.9rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; }

.serif { font-family: 'Cormorant Garamond', serif; }
.eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* =============================================
   LAYOUT
   ============================================= */

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 120px 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* =============================================
   NAVIGATION
   ============================================= */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(14,27,44,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196,162,90,0.15);
  transition: var(--transition);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: opacity var(--transition);
}
.nav-logo img:hover { opacity: 0.85; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.82);
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a.nav-cta {
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  padding: 8px 16px;
}
.nav-links a.nav-cta:hover { background: var(--gold-light); color: var(--navy); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Language switcher */
.lang-switcher {
  display: flex;
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 3px;
}

.lang-btn {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.5);
  padding: 4px 9px;
  border-radius: 16px;
  transition: all var(--transition);
  cursor: pointer;
}

.lang-btn:hover { color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.1); }
.lang-btn.active { background: var(--gold); color: var(--navy); font-weight: 700; }

/* Mobile nav */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 24px 24px;
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  color: rgba(255,255,255,0.8);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.95rem;
  font-weight: 500;
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile .lang-switcher { margin-top: 16px; }

/* =============================================
   HERO
   ============================================= */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.65;
  filter: saturate(0.8);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,27,44,0.60) 35%, rgba(14,27,44,0.25));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-content h1 { color: var(--white); margin: 16px 0 24px; }
.hero-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin-bottom: 40px;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* Page hero (inner pages) */
.page-hero {
  padding: 130px 0 72px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.65;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(14,27,44,0.60) 35%, rgba(14,27,44,0.25));
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: white; margin-top: 16px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-top: 16px; max-width: 560px; }

/* =============================================
   BUTTONS
   ============================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(196,162,90,0.35);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: white;
}

.btn-dark {
  background: var(--navy);
  color: white;
}
.btn-dark:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
}

/* =============================================
   STATS BAR
   ============================================= */

.stats-bar {
  background: var(--gold);
  padding: 28px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.stat-item {
  padding: 8px 24px;
  border-right: 1px solid rgba(14,27,44,0.2);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(14,27,44,0.7);
  margin-top: 4px;
}

/* =============================================
   CARDS
   ============================================= */

.card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.card-body { padding: 24px; }
.card-meta { font-size: 0.78rem; color: var(--text-light); margin-bottom: 8px; }
.card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; color: var(--navy); line-height: 1.3; margin-bottom: 10px; }
.card-excerpt { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; }
.card-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.82rem; font-weight: 600; color: var(--gold); margin-top: 16px; letter-spacing: 0.04em; }
.card-link:hover { gap: 10px; }

/* =============================================
   ACCORDION
   ============================================= */

.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-header {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  background: none;
  border: none;
  gap: 16px;
  transition: color var(--transition);
}
.accordion-header:hover { color: var(--gold); }

.accordion-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1rem;
  transition: transform var(--transition), background var(--transition);
}

.accordion-item.open .accordion-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: white;
}

.accordion-body {
  display: none;
  padding-bottom: 20px;
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.accordion-item.open .accordion-body { display: block; }

/* =============================================
   FORMS
   ============================================= */

.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,162,90,0.12);
}

textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { 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='%234a5568' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: var(--text-mid); }
.form-checkbox input { margin-top: 3px; accent-color: var(--gold); flex-shrink: 0; }
.form-checkbox a { color: var(--gold); text-decoration: underline; }

/* =============================================
   SECTION STYLES
   ============================================= */

.section-header { max-width: 640px; margin-bottom: 56px; }
.section-header.center { margin: 0 auto 56px; text-align: center; }
.section-header h2 { margin-top: 12px; color: var(--navy); }
.section-header p { color: var(--text-mid); margin-top: 16px; font-size: 1rem; }

.bg-navy { background: var(--navy); color: white; }
.bg-navy h2, .bg-navy h3 { color: white; }
.bg-navy .eyebrow { color: var(--gold-light); }
.bg-navy p { color: rgba(255,255,255,0.72); }

.bg-ivory { background: var(--ivory); }
.bg-gold-pale { background: var(--gold-pale); }

/* Gold divider */
.gold-divider { width: 48px; height: 3px; background: var(--gold); margin: 20px 0; }
.gold-divider.center { margin: 20px auto; }

/* =============================================
   FOOTER
   ============================================= */

.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo img { height: 40px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-desc { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
.footer-tagline { font-size: 0.78rem; color: var(--gold); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 16px; }

.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
}
.footer-contact-item svg { color: var(--gold); flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--gold); }

.footer-flags { font-size: 1rem; margin-left: 4px; }

.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); background: rgba(196,162,90,0.08); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }
.footer-bottom-links { display: flex; gap: 20px; }

/* =============================================
   SPECIFIC SECTIONS
   ============================================= */

/* Pain points */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pain-item {
  background: var(--white);
  padding: 32px 28px;
}
.pain-item:hover { background: var(--ivory); }
.pain-icon { font-size: 1.8rem; margin-bottom: 12px; }
.pain-item h4 { color: var(--navy); margin-bottom: 8px; font-size: 1rem; font-family: 'Outfit', sans-serif; font-weight: 700; }
.pain-item p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; }

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}
.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 700;
  color: rgba(196,162,90,0.18);
  line-height: 1;
  margin-bottom: -12px;
}
.step h3 { color: var(--navy); margin-bottom: 12px; font-size: 1.3rem; }
.step p { font-size: 0.9rem; color: var(--text-mid); }

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.service-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.service-icon {
  width: 48px; height: 48px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--gold);
}
.service-card h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; }

/* Why us — value props */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.value-item {}
.value-icon {
  width: 56px; height: 56px;
  background: rgba(196,162,90,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
}
.value-item h4 { color: inherit; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.95rem; margin-bottom: 8px; }
.value-item p { font-size: 0.84rem; color: inherit; }

/* Pricing formula */
.pricing-formula {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  color: white;
}
.formula-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: white;
  line-height: 1.8;
}
.formula-highlight { color: var(--gold); font-weight: 700; }
.formula-note { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-top: 16px; }

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  position: relative;
}
.testimonial-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-text { font-size: 0.92rem; color: var(--text-mid); line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.testimonial-author { font-weight: 700; font-size: 0.88rem; color: var(--navy); }
.testimonial-location { font-size: 0.78rem; color: var(--text-light); }

/* CTA band */
.cta-band {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
}
.cta-band h2 { color: white; margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,0.65); margin-bottom: 36px; font-size: 1.05rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-band-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  padding: 80px 0;
  text-align: center;
}
.cta-band-gold h2 { color: var(--navy); margin-bottom: 16px; }
.cta-band-gold p { color: rgba(14,27,44,0.7); margin-bottom: 36px; font-size: 1.05rem; max-width: 560px; margin-left: auto; margin-right: auto; }

/* Estimate form section */
.estimate-section {
  background: linear-gradient(135deg, var(--navy) 55%, var(--navy-light));
  padding: 96px 0;
}
.estimate-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 720px;
}

/* Blog grid */
.blog-featured-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}
.blog-card-featured .card-img { aspect-ratio: 16/9; }
.blog-card-featured .card-title { font-size: 1.7rem; }

.blog-sidebar { display: flex; flex-direction: column; gap: 0; }
.blog-card-sm {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.blog-card-sm:last-child { border-bottom: none; }
.blog-card-sm-img { width: 88px; height: 72px; object-fit: cover; border-radius: var(--radius); flex-shrink: 0; }
.blog-card-sm-body {}
.blog-card-sm-date { font-size: 0.72rem; color: var(--text-light); margin-bottom: 6px; }
.blog-card-sm-title { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 600; color: var(--navy); line-height: 1.3; }
.blog-card-sm-title:hover { color: var(--gold); }

.blog-latest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Category badge */
.badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 20px;
  background: var(--gold-pale);
  color: var(--gold);
  margin-bottom: 10px;
}

/* Blog post article */
.article-container {
  max-width: 760px;
  margin: 0 auto;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--text-light);
  margin: 24px 0 32px;
  flex-wrap: wrap;
}
.article-meta span { display: flex; align-items: center; gap: 6px; }
.article-body { font-size: 1.02rem; line-height: 1.85; color: var(--text-dark); }
.article-body h2 { font-size: 1.7rem; color: var(--navy); margin: 48px 0 16px; }
.article-body h3 { font-size: 1.3rem; color: var(--navy); margin: 36px 0 12px; }
.article-body p { margin-bottom: 20px; }
.article-body ul, .article-body ol { padding-left: 24px; margin-bottom: 20px; }
.article-body li { margin-bottom: 8px; }
.article-body strong { color: var(--navy); font-weight: 600; }
.article-body a { color: var(--gold); border-bottom: 1px solid rgba(196,162,90,0.3); }
.article-body a:hover { border-color: var(--gold); }
.article-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  margin: 28px 0;
  background: var(--gold-pale);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text-mid);
}

.article-cta {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin: 48px 0;
}
.article-cta h3 { color: white; margin-bottom: 12px; }
.article-cta p { color: rgba(255,255,255,0.65); font-size: 0.92rem; margin-bottom: 24px; }

/* Founders */
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.founder-card {
  text-align: center;
}
.founder-img {
  width: 140px; height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 3px solid var(--gold);
}
.founder-name { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--navy); }
.founder-title { font-size: 0.78rem; color: var(--gold); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.founder-bio { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; text-align: left; }

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
  .grid-4, .value-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .blog-featured-grid { grid-template-columns: 1fr; }
  .blog-latest-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-lg { padding: 80px 0; }
  .grid-2, .grid-3, .steps-grid, .founders-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero { min-height: 85vh; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(14,27,44,0.15); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(14,27,44,0.15); }
  .stat-item:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .blog-latest-grid { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .estimate-box { padding: 28px 20px; }
  .pricing-formula { padding: 32px 24px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
}

/* =============================================
   ANIMATIONS
   ============================================= */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* =============================================
   UTILITIES
   ============================================= */

.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
