/* ── 286 Solutions — Main Stylesheet ── */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garant:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --navy: #0A1628;
  --slate: #1B2E4B;
  --slate-light: #243B5A;
  --gold: #C8A96E;
  --gold-light: #D9BC88;
  --silver: #8A9BB0;
  --silver-light: #B8C5D4;
  --white: #FFFFFF;
  --ivory: #F7F5F2;
  --ivory-dark: #EDE9E3;
  --text-dark: #0A1628;
  --text-mid: #3D5570;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--navy); background: var(--white); overflow-x: hidden; margin: 0; padding: 0; }

/* ── NAV ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 4rem;
  background: rgba(10,22,40,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,169,110,0.15);
}
.nav-logo { text-decoration: none; }
.nav-logo-name {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.3rem; font-weight: 600; letter-spacing: 0.08em;
  color: var(--white); display: block;
}
.nav-logo-tag {
  font-size: 0.6rem; font-weight: 400; letter-spacing: 0.22em;
  color: var(--gold); text-transform: uppercase;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--silver-light);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover, .nav-links .current-menu-item a { color: var(--gold); }
.nav-cta {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 0.65rem 1.6rem;
  border: 1px solid var(--gold); color: var(--gold) !important;
  text-decoration: none; transition: all 0.25s;
}
.nav-cta:hover { background: var(--gold); color: var(--navy) !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); }
.mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--navy); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.2rem; color: var(--white); text-decoration: none; letter-spacing: 0.1em; }
.mobile-menu-close { position: absolute; top: 1.5rem; right: 2rem; font-size: 2rem; color: var(--white); cursor: pointer; background: none; border: none; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(10,22,40,0.93) 0%, rgba(27,46,75,0.86) 100%),
    url('https://images.unsplash.com/photo-1613490493576-7fde63acd811?w=1800&q=80') center/cover no-repeat;
  display: flex; align-items: center;
  padding: 10rem 4rem 6rem;
  position: relative; overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 100px; background: linear-gradient(to bottom, transparent, var(--ivory));
}
.hero-inner { max-width: 1280px; margin: 0 auto; width: 100%; }
.hero-eyebrow {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; display: block;
}
.hero-headline {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 300; line-height: 1.12; color: var(--white); margin-bottom: 1.75rem;
}
.hero-headline em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: 1rem; font-weight: 300; line-height: 1.75;
  color: var(--silver-light); max-width: 560px; margin-bottom: 2.5rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block; padding: 0.9rem 2.2rem;
  background: var(--gold); color: var(--navy);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; text-decoration: none; transition: all 0.25s; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); color: var(--navy); }
.btn-outline {
  display: inline-block; padding: 0.9rem 2.2rem;
  border: 1px solid rgba(200,169,110,0.5); color: var(--white);
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; text-decoration: none; transition: all 0.25s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-secondary {
  display: inline-block; padding: 0.85rem 2rem;
  border: 1px solid var(--navy); color: var(--navy);
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; text-decoration: none; transition: all 0.25s;
}
.btn-secondary:hover { background: var(--navy); color: var(--white); }

/* ── GOLD RULE ── */
.gold-rule { width: 48px; height: 1px; background: var(--gold); margin: 0 auto 2rem; }
.gold-rule-left { width: 48px; height: 1px; background: var(--gold); margin: 0 0 2rem; }

/* ── SECTION BASES ── */
.section-ivory { background: var(--ivory); }
.section-white { background: var(--white); }
.section-dark { background: var(--navy); }
.section-slate { background: var(--slate); }
.text-center { text-align: center; }
.text-center .section-sub, .text-center .section-sub-light { margin: 0 auto; }

.container { max-width: 1280px; margin: 0 auto; padding: 6rem 4rem; }
.container-sm { max-width: 900px; margin: 0 auto; padding: 6rem 4rem; }

.section-eyebrow {
  font-size: 0.62rem; font-weight: 500; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: block;
}
.section-headline {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300; line-height: 1.2; color: var(--navy); margin-bottom: 1.5rem;
}
.section-headline-light {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300; line-height: 1.2; color: var(--white); margin-bottom: 1.5rem;
}
.section-sub { font-size: 1rem; line-height: 1.8; color: var(--text-mid); max-width: 600px; }
.section-sub-light { font-size: 1rem; line-height: 1.8; color: var(--silver-light); max-width: 600px; }
.body-text { font-size: 1rem; line-height: 1.85; color: var(--text-mid); margin-bottom: 1.25rem; }

/* ── TRUST ── */
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; margin-top: 4rem; }
.trust-item {
  background: var(--white); padding: 2.5rem 2rem; text-align: center;
  border-top: 3px solid transparent; transition: border-color 0.3s;
}
.trust-item:hover { border-top-color: var(--gold); }
.trust-number { font-family: 'Cormorant Garant', serif; font-size: 3.2rem; font-weight: 300; color: var(--navy); line-height: 1; }
.trust-number span { font-size: 1.6rem; color: var(--gold); }
.trust-item-label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-mid); margin-top: 0.75rem; line-height: 1.5; }
.trust-badge-row { display: flex; justify-content: center; gap: 2rem; margin-top: 3rem; flex-wrap: wrap; }
.trust-badge { border: 1px solid var(--ivory-dark); padding: 0.75rem 1.75rem; font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-mid); display: flex; align-items: center; gap: 0.5rem; }
.trust-badge::before { content: '✦'; color: var(--gold); font-size: 0.5rem; }

/* ── RISK GRID ── */
.risk-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 4rem; }
.risk-card { padding: 2.5rem; border: 1px solid rgba(200,169,110,0.2); }
.risk-icon { font-size: 2rem; margin-bottom: 1.25rem; }
.risk-stat { font-family: 'Cormorant Garant', serif; font-size: 2.2rem; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 0.5rem; }
.risk-title { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); margin-bottom: 0.75rem; }
.risk-desc { font-size: 0.88rem; line-height: 1.7; color: var(--silver-light); }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 4rem; }
.service-card {
  background: var(--white); border: 1px solid var(--ivory-dark);
  padding: 2.5rem; transition: all 0.3s; position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(10,22,40,0.1); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon { width: 48px; height: 48px; border: 1px solid rgba(200,169,110,0.35); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 1.5rem; color: var(--gold); }
.service-title { font-family: 'Cormorant Garant', serif; font-size: 1.25rem; font-weight: 600; color: var(--navy); margin-bottom: 0.75rem; }
.service-desc { font-size: 0.875rem; line-height: 1.75; color: var(--text-mid); margin-bottom: 1.5rem; }
.service-link { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; }
.service-link::after { content: '→'; transition: transform 0.2s; }
.service-link:hover::after { transform: translateX(4px); }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 4rem; align-items: start; }
.plan { padding: 2.75rem; border: 1px solid rgba(200,169,110,0.2); position: relative; }
.plan-featured { border-color: var(--gold); background: linear-gradient(160deg, rgba(200,169,110,0.08), transparent); }
.plan-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--navy); font-size: 0.58rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; padding: 0.3rem 1rem; white-space: nowrap; }
.plan-tier { font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.plan-name { font-family: 'Cormorant Garant', serif; font-size: 1.8rem; font-weight: 300; color: var(--white); margin-bottom: 1.5rem; }
.plan-price { margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(200,169,110,0.2); }
.plan-amount { font-family: 'Cormorant Garant', serif; font-size: 3rem; font-weight: 300; color: var(--white); line-height: 1; }
.plan-amount sup { font-size: 1.4rem; vertical-align: super; color: var(--gold); }
.plan-period { font-size: 0.72rem; color: var(--silver); letter-spacing: 0.1em; }
.plan-features { list-style: none; margin-bottom: 2rem; padding: 0; }
.plan-features li { font-size: 0.85rem; color: var(--silver-light); padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; align-items: flex-start; gap: 0.75rem; line-height: 1.5; }
.plan-features li::before { content: '✦'; color: var(--gold); font-size: 0.45rem; flex-shrink: 0; margin-top: 0.45rem; }
.btn-plan { display: block; text-align: center; padding: 0.9rem; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; text-decoration: none; transition: all 0.25s; border: 1px solid rgba(200,169,110,0.4); color: var(--gold); }
.btn-plan:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-plan-featured { display: block; text-align: center; padding: 0.9rem; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; text-decoration: none; background: var(--gold); color: var(--navy); transition: all 0.25s; }
.btn-plan-featured:hover { background: var(--gold-light); }

/* ── WHY US ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-points { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.75rem; }
.why-point { display: flex; gap: 1.25rem; }
.why-point-icon { width: 40px; height: 40px; flex-shrink: 0; border: 1px solid rgba(200,169,110,0.35); display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--gold); margin-top: 0.1rem; }
.why-point-title { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); margin-bottom: 0.4rem; }
.why-point-desc { font-size: 0.875rem; line-height: 1.75; color: var(--text-mid); }
.why-visual { background: linear-gradient(160deg, var(--navy), var(--slate)); padding: 3rem; position: relative; }
.why-visual::before { content: ''; position: absolute; inset: 1rem; border: 1px solid rgba(200,169,110,0.2); pointer-events: none; }
.report-preview { font-size: 0.72rem; color: var(--silver-light); }
.report-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(200,169,110,0.2); }
.report-title { font-family: 'Cormorant Garant', serif; font-size: 1rem; color: var(--white); }
.report-date { color: var(--silver); font-size: 0.65rem; }
.report-row { display: flex; justify-content: space-between; align-items: center; padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.report-row-label { color: var(--silver); }
.status-ok { color: #4ADE80; font-weight: 500; }
.status-alert { color: #FCD34D; font-weight: 500; }
.report-note { margin-top: 1.25rem; padding: 0.75rem; background: rgba(200,169,110,0.1); border-left: 2px solid var(--gold); font-size: 0.7rem; line-height: 1.6; color: var(--silver-light); }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 4rem; }
.testimonial { background: var(--ivory); padding: 2.5rem; border-top: 2px solid var(--gold); }
.testimonial-stars { color: var(--gold); font-size: 0.75rem; letter-spacing: 0.1em; margin-bottom: 1.25rem; }
.testimonial-text { font-family: 'Cormorant Garant', serif; font-size: 1.1rem; font-weight: 300; font-style: italic; line-height: 1.7; color: var(--navy); margin-bottom: 1.5rem; }
.testimonial-author { font-size: 0.78rem; color: var(--text-mid); }
.testimonial-name { font-weight: 600; color: var(--navy); display: block; }
.testimonial-location { color: var(--silver); font-size: 0.7rem; }

/* ── AREA GRID ── */
.area-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; margin-top: 4rem; background: rgba(200,169,110,0.15); }
.area-item { background: var(--slate); padding: 1.75rem 2rem; display: flex; align-items: center; gap: 1rem; }
.area-icon { color: var(--gold); font-size: 0.75rem; flex-shrink: 0; }
.area-name { font-family: 'Cormorant Garant', serif; font-size: 1.1rem; color: var(--white); }
.area-county { font-size: 0.65rem; color: var(--silver); letter-spacing: 0.12em; }

/* ── FINAL CTA ── */
.final-cta {
  background: linear-gradient(135deg, rgba(10,22,40,0.96), rgba(27,46,75,0.92)),
    url('https://images.unsplash.com/photo-1582268611958-ebfd161ef9cf?w=1800&q=80') center/cover no-repeat;
  padding: 8rem 4rem; text-align: center; position: relative;
}
.final-cta::before { content: ''; position: absolute; inset: 3rem; border: 1px solid rgba(200,169,110,0.1); pointer-events: none; }
.final-cta-headline { font-family: 'Cormorant Garant', serif; font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 300; color: var(--white); line-height: 1.2; margin-bottom: 1rem; }
.final-cta-sub { font-size: 1rem; color: var(--silver-light); margin-bottom: 2.5rem; }
.final-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── PAGE HERO ── */
.page-hero { background: linear-gradient(135deg, var(--navy), var(--slate)); padding: 10rem 4rem 6rem; text-align: center; }
.page-title { font-family: 'Cormorant Garant', serif; font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 300; color: var(--white); line-height: 1.2; margin-bottom: 1rem; }
.page-sub { font-size: 1rem; color: var(--silver-light); max-width: 560px; margin: 0 auto; line-height: 1.75; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-visual { background: linear-gradient(160deg, var(--navy), var(--slate)); padding: 3.5rem; position: relative; }
.about-visual::before { content: ''; position: absolute; inset: 1rem; border: 1px solid rgba(200,169,110,0.2); pointer-events: none; }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(200,169,110,0.15); }
.stat-item { background: rgba(10,22,40,0.6); padding: 2rem; text-align: center; }
.stat-number { font-family: 'Cormorant Garant', serif; font-size: 2.8rem; font-weight: 300; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.65rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--silver-light); margin-top: 0.5rem; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 4rem; }
.value-card { padding: 2.5rem; border: 1px solid var(--ivory-dark); }
.value-icon { font-size: 1.75rem; margin-bottom: 1.25rem; }
.value-title { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); margin-bottom: 0.75rem; }
.value-desc { font-size: 0.875rem; line-height: 1.75; color: var(--text-mid); }

/* ── SERVICES PAGE ── */
.service-block { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; margin-bottom: 5rem; padding-bottom: 5rem; border-bottom: 1px solid var(--ivory-dark); }
.service-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }
.service-tag { font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; display: block; }
.service-title-lg { font-family: 'Cormorant Garant', serif; font-size: 1.9rem; font-weight: 300; color: var(--navy); margin-bottom: 1.25rem; line-height: 1.2; }
.service-list { list-style: none; margin-bottom: 2rem; padding: 0; }
.service-list li { font-size: 0.85rem; color: var(--text-mid); padding: 0.5rem 0; display: flex; gap: 0.75rem; border-bottom: 1px solid var(--ivory-dark); line-height: 1.5; }
.service-list li::before { content: '✦'; color: var(--gold); font-size: 0.45rem; flex-shrink: 0; margin-top: 0.55rem; }
.service-visual-block { background: linear-gradient(160deg, var(--navy), var(--slate)); padding: 3rem; display: flex; align-items: center; justify-content: center; min-height: 280px; position: relative; }
.service-visual-block::before { content: ''; position: absolute; inset: 1rem; border: 1px solid rgba(200,169,110,0.2); pointer-events: none; }
.service-visual-icon { font-size: 4rem; opacity: 0.85; }

/* ── FAQ ── */
.faq-category { margin-bottom: 3.5rem; }
.faq-cat-title { font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; padding-bottom: 0.75rem; border-bottom: 1px solid rgba(200,169,110,0.25); }
details { border-bottom: 1px solid var(--ivory-dark); }
summary { padding: 1.25rem 0; font-size: 0.95rem; font-weight: 500; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; list-style: none; gap: 1rem; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; font-size: 1.2rem; font-weight: 300; color: var(--gold); flex-shrink: 0; transition: transform 0.2s; }
details[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 0 1.5rem; font-size: 0.9rem; line-height: 1.85; color: var(--text-mid); }
.faq-cta { background: var(--ivory); padding: 4rem; text-align: center; }
.faq-cta h3 { font-family: 'Cormorant Garant', serif; font-size: 1.8rem; font-weight: 300; color: var(--navy); margin-bottom: 0.75rem; }
.faq-cta p { color: var(--text-mid); margin-bottom: 1.5rem; }

/* ── CONTACT ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; max-width: 1100px; margin: 0 auto; padding: 6rem 4rem; }
.contact-info-title { font-family: 'Cormorant Garant', serif; font-size: 1.6rem; font-weight: 300; color: var(--navy); margin-bottom: 1.25rem; }
.contact-info-desc { font-size: 0.9rem; line-height: 1.8; color: var(--text-mid); margin-bottom: 2.5rem; }
.contact-detail { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-icon { width: 36px; height: 36px; border: 1px solid rgba(200,169,110,0.35); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0; }
.contact-detail-label { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.2rem; }
.contact-detail-value { font-size: 0.9rem; color: var(--navy); font-weight: 500; }
.contact-detail-value a { color: var(--navy); text-decoration: none; }
.areas-note { margin-top: 2rem; padding: 1.25rem; background: var(--ivory); border-left: 2px solid var(--gold); font-size: 0.8rem; line-height: 1.7; color: var(--text-mid); }
.form-wrap { background: var(--ivory); padding: 2.75rem; }
.form-title { font-family: 'Cormorant Garant', serif; font-size: 1.3rem; font-weight: 300; color: var(--navy); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; display: flex; flex-direction: column; }
.form-group label { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-mid); margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea { font-family: 'Inter', sans-serif; font-size: 0.875rem; padding: 0.75rem 1rem; border: 1px solid var(--ivory-dark); background: var(--white); color: var(--navy); outline: none; transition: border-color 0.2s; width: 100%; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { min-height: 120px; resize: vertical; }
.btn-submit { width: 100%; padding: 1rem; background: var(--gold); color: var(--navy); font-family: 'Inter', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; border: none; cursor: pointer; transition: all 0.25s; margin-top: 0.5rem; }
.btn-submit:hover { background: var(--gold-light); }
.form-note { font-size: 0.72rem; color: var(--silver); text-align: center; margin-top: 0.75rem; line-height: 1.5; }

/* ── CTA BANNER ── */
.cta-banner { background: var(--navy); padding: 5rem 4rem; text-align: center; }
.cta-headline { font-family: 'Cormorant Garant', serif; font-size: 2.2rem; font-weight: 300; color: var(--white); margin-bottom: 1rem; }
.cta-sub { color: var(--silver-light); margin-bottom: 2rem; }

/* ── FOOTER ── */
.site-footer { background: #060E1A; padding: 4rem; border-top: 1px solid rgba(200,169,110,0.15); }
.footer-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; }
.footer-brand-name { font-family: 'Cormorant Garant', serif; font-size: 1.2rem; color: var(--white); margin-bottom: 0.25rem; }
.footer-brand-tag { font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; display: block; }
.footer-desc { font-size: 0.82rem; line-height: 1.75; color: var(--silver); max-width: 280px; }
.footer-col-title { font-size: 0.6rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; padding: 0; }
.footer-links a { font-size: 0.82rem; color: var(--silver); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { max-width: 1280px; margin: 3rem auto 0; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; align-items: center; font-size: 0.7rem; color: var(--silver); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: var(--silver); text-decoration: none; }
.footer-legal a:hover { color: var(--gold); }

/* ── WP OVERRIDES ── */
.wp-block-group, .entry-content, .wp-site-blocks { all: unset; }
img { max-width: 100%; height: auto; }
a { color: inherit; }
p { margin: 0; }
ul { margin: 0; padding: 0; }

/* ── MOBILE ── */
@media (max-width: 1024px) {
  .site-nav { padding: 1.25rem 2rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero { padding: 8rem 2rem 4rem; }
  .container { padding: 4rem 2rem; }
  .container-sm { padding: 4rem 2rem; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .risk-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .final-cta { padding: 5rem 2rem; }
  .final-cta::before { margin: 1.5rem; }
  .about-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .service-block, .service-block.reverse { grid-template-columns: 1fr; direction: ltr; }
  .service-visual-block { min-height: 180px; }
  .contact-layout { grid-template-columns: 1fr; padding: 4rem 2rem; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero { padding: 8rem 2rem 4rem; }
}
