/*
Theme Name: Escalante Insurance Agency
Theme URI: https://escalanteagency.com
Author: Escalante Insurance Agency
Description: Custom bilingual (English/Español) theme for Escalante Insurance Agency — small business commercial, auto, home, and life insurance in Tualatin, OR.
Version: 1.0.1
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: escalante
*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=STIX+Two+Text:wght@400;500;600;700&display=swap');


/* ==========================================================================
   Escalante Insurance Agency — Shared Stylesheet
   Brand: Navy #0b273f / Gold #f1b64c
   ========================================================================== */

:root {
  --navy: #0b273f;
  --navy-light: #15375a;
  --navy-soft: #11324f;
  --gold: #f1b64c;
  --gold-dark: #d99a2b;
  --white: #ffffff;
  --bg-soft: #f6f8fa;
  --bg-card: #ffffff;
  --text-dark: #1c2733;
  --text-muted: #5a6b7a;
  --border: #e4e9ee;
  --success: #2f8f5b;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(11, 39, 63, 0.08);
  --shadow-lg: 0 20px 45px rgba(11, 39, 63, 0.16);
  --max-width: 1180px;
  --font-head: 'STIX Two Text', Georgia, serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.3rem; }

p { color: var(--text-muted); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold-dark);
  background: rgba(241, 182, 76, 0.14);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: var(--navy); box-shadow: 0 8px 20px rgba(241,182,76,0.35); }
.btn-primary:hover { background: var(--gold-dark); }
.btn-outline { background: transparent; border-color: var(--white); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar a { color: rgba(255,255,255,0.85); }
.topbar-left { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.topbar-left span, .topbar-left a { display: inline-flex; align-items: center; gap: 6px; }
.lang-switch a {
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
}
.lang-switch a.active { background: var(--gold); color: var(--navy); }

/* ---------- Header / Nav ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(11,39,63,0.04);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 18px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img.brand-logo-img { height: 62px; width: auto; }
.brand-text { font-family: var(--font-head); font-weight: 700; color: var(--navy); line-height: 1.1; }
.brand-text small { display: block; font-family: var(--font-body); font-weight: 600; font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-dark); }

nav.main-nav { display: flex; align-items: center; gap: 28px; }
nav.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  position: relative;
  padding: 6px 0;
}
nav.main-nav a:hover { color: var(--gold-dark); }
nav.main-nav a.current::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
}

.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-phone { display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--navy); }
.nav-phone svg { flex-shrink: 0; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle span { width: 26px; height: 3px; background: var(--navy); border-radius: 3px; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 60%, #0d2e4a 100%);
  color: var(--white);
  padding: 70px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px; top: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(241,182,76,0.18) 0%, transparent 70%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1 { color: var(--white); margin-bottom: 18px; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero p.lead { color: rgba(255,255,255,0.82); font-size: 1.1rem; max-width: 540px; margin-bottom: 28px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-badges { display: flex; gap: 26px; flex-wrap: wrap; }
.hero-badges div { display: flex; flex-direction: column; }
.hero-badges strong { font-family: var(--font-head); font-size: 1.6rem; color: var(--gold); }
.hero-badges span { font-size: 0.82rem; color: rgba(255,255,255,0.7); }

.hero-card {
  background: var(--white);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow-lg);
  color: var(--text-dark);
}
.hero-card h3 { margin-bottom: 6px; }
.hero-card p.small { font-size: 0.9rem; margin-bottom: 18px; }
.quote-options { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; margin-bottom: 16px; }
.quote-options label {
  display: flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
}
.quote-options input { accent-color: var(--gold-dark); }
.hero-card input[type="text"], .hero-card input[type="tel"] {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.hero-card .disclaimer { font-size: 0.74rem; color: var(--text-muted); margin-top: 10px; }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--bg-soft); border-bottom: 1px solid var(--border); padding: 18px 0; }
.trustbar .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 18px; align-items: center; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; font-weight: 600; color: var(--navy); }
.trust-item svg { flex-shrink: 0; color: var(--gold-dark); }

/* ---------- Sections ---------- */
section { padding: 70px 0; }
section.alt { background: var(--bg-soft); }
.section-head { max-width: 680px; margin: 0 auto 44px; text-align: center; }
.section-head.left { margin: 0 0 36px; text-align: left; }

/* ---------- Service grid ---------- */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card .icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: rgba(241,182,76,0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--gold-dark);
}
.service-card.featured { border: 2px solid var(--gold); position: relative; }
.service-card.featured .ribbon {
  position: absolute; top: -12px; left: 24px;
  background: var(--navy); color: var(--gold);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
  padding: 5px 12px; border-radius: 999px; text-transform: uppercase;
}
.service-card a.learn { font-weight: 700; color: var(--navy); display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; }
.service-card a.learn:hover { color: var(--gold-dark); }
.service-card ul { margin-top: 14px; }
.service-card ul li { font-size: 0.9rem; color: var(--text-muted); padding: 4px 0 4px 22px; position: relative; }
.service-card ul li::before { content: "✓"; position: absolute; left: 0; color: var(--success); font-weight: 700; }

/* ---------- Why us ---------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-item { text-align: center; padding: 20px; }
.why-item .num { font-family: var(--font-head); font-size: 2.2rem; color: var(--gold-dark); margin-bottom: 6px; }
.why-item h4 { font-size: 1rem; margin-bottom: 6px; }
.why-item p { font-size: 0.88rem; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.testi-stars { color: var(--gold-dark); margin-bottom: 12px; letter-spacing: 2px; }
.testi-card p { color: var(--text-dark); font-style: italic; margin-bottom: 16px; }
.testi-name { display: flex; align-items: center; gap: 10px; }
.testi-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--navy); color: var(--gold); display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--font-head); }
.testi-name strong { font-size: 0.92rem; color: var(--navy); }
.testi-name span { font-size: 0.8rem; color: var(--text-muted); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--navy), var(--navy-soft));
  color: var(--white);
  border-radius: 20px;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--white); margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.8); }
.cta-band .actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--navy);
  padding: 20px 36px 20px 0;
  position: relative;
  cursor: pointer;
}
.faq-q::after {
  content: "+";
  position: absolute;
  right: 0; top: 18px;
  font-size: 1.5rem;
  color: var(--gold-dark);
  transition: transform 0.2s ease;
}
.faq-item.open .faq-q::after { content: "–"; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p { padding-bottom: 20px; font-size: 0.95rem; }

/* ---------- Forms (contact / payments) ---------- */
.form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-field label { font-size: 0.85rem; font-weight: 700; color: var(--navy); }
.form-field input, .form-field select, .form-field textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.form-field textarea { resize: vertical; min-height: 110px; }

/* ---------- Carrier / payment portal cards ---------- */
.portal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.portal-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; text-align: center; box-shadow: var(--shadow); }
.portal-card .icon { width: 54px; height: 54px; border-radius: 50%; background: rgba(11,39,63,0.06); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--navy); }
.portal-card h4 { margin-bottom: 8px; }
.portal-card p { font-size: 0.88rem; margin-bottom: 18px; }

/* ---------- Locations / map ---------- */
.location-card { display: flex; gap: 24px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); align-items: flex-start; flex-wrap: wrap; }
.location-card .map { flex: 1 1 320px; min-height: 260px; border-radius: 10px; overflow: hidden; border: 1px solid var(--border); }
.location-card .details { flex: 1 1 280px; }
.location-card .details h4 { margin-bottom: 10px; }
.location-card .details p { margin-bottom: 8px; font-size: 0.95rem; }
.location-card .details strong { color: var(--navy); }

/* ---------- Breadcrumb / page header (interior pages) ---------- */
.page-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: var(--white);
  padding: 56px 0 64px;
}
.page-header .eyebrow { background: rgba(241,182,76,0.2); }
.page-header h1 { color: var(--white); }
.page-header p { color: rgba(255,255,255,0.82); max-width: 620px; margin-top: 12px; }
.breadcrumb { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,0.85); }

.two-col { display: grid; grid-template-columns: 1.3fr 0.9fr; gap: 50px; align-items: start; }
.coverage-list { margin: 20px 0; }
.coverage-list li { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.coverage-list li svg { flex-shrink: 0; color: var(--gold-dark); margin-top: 3px; }
.coverage-list li h4 { font-size: 1rem; margin-bottom: 3px; }
.coverage-list li p { font-size: 0.88rem; margin: 0; }

.sticky-side { position: sticky; top: 110px; }

/* ---------- Footer ---------- */
footer.site-footer { background: var(--navy); color: rgba(255,255,255,0.75); padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img.footer-logo-img { height: 64px; }
.footer-brand strong { font-family: var(--font-head); color: var(--white); font-size: 1.1rem; }
footer h5 { color: var(--white); font-size: 0.9rem; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 16px; }
footer ul li { margin-bottom: 10px; font-size: 0.9rem; }
footer a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { background: var(--gold); color: var(--navy); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 22px; font-size: 0.8rem; }
.footer-bottom a { color: rgba(255,255,255,0.6); }

/* ---------- WhatsApp float button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  background: #25D366;
  color: var(--white);
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(37,211,102,0.45);
  transition: transform 0.15s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.badge-license { font-size: 0.78rem; color: var(--text-muted); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .two-col { grid-template-columns: 1fr; }
  .service-grid, .testi-grid, .portal-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .sticky-side { position: static; }
}
@media (max-width: 760px) {
  nav.main-nav { position: fixed; top: 0; right: -100%; height: 100vh; width: 78%; max-width: 320px; background: var(--white); flex-direction: column; align-items: flex-start; padding: 90px 28px 28px; transition: right 0.25s ease; box-shadow: -10px 0 30px rgba(0,0,0,0.15); }
  nav.main-nav.open { right: 0; }
  nav.main-nav a { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--border); }
  .menu-toggle { display: flex; }
  .nav-phone span.label { display: none; }
  .service-grid, .testi-grid, .portal-grid, .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .topbar .container { justify-content: center; text-align: center; }
  .hero { padding: 44px 0 60px; }
  section { padding: 50px 0; }
}

/* ==========================================================================
   Block-editor compatibility layer
   Lets Pages be built from native WordPress blocks (Group, Columns, Buttons,
   List, Details) using our custom class names, so the design still looks
   right while every bit of text stays editable in wp-admin.
   ========================================================================== */

/* Group blocks with our section class names just work automatically since
   CSS classes are additive — .hero, .alt, .page-header, .cta-band, .trustbar,
   .form-card, .service-card etc. all still match. These rules only cover the
   cases where WordPress core CSS needs to be overridden. */

.wp-block-columns.hero-grid,
.wp-block-columns.two-col {
  display: grid !important;
  gap: 50px !important;
}
.wp-block-columns.hero-grid { grid-template-columns: 1.1fr 0.9fr !important; align-items: center; }
.wp-block-columns.two-col { grid-template-columns: 1.3fr 0.9fr !important; align-items: start; }
.wp-block-columns.hero-grid > .wp-block-column,
.wp-block-columns.two-col > .wp-block-column { flex-basis: auto; }

.wp-block-columns.service-grid-cols,
.wp-block-columns.why-grid-cols {
  display: grid !important;
  gap: 24px !important;
}
.wp-block-columns.service-grid-cols { grid-template-columns: repeat(3, 1fr) !important; }
.wp-block-columns.why-grid-cols { grid-template-columns: repeat(4, 1fr) !important; }

.wp-block-buttons { gap: 14px !important; }
.wp-block-button__link {
  background: none;
  min-height: 0;
}
.wp-block-button__link.btn { display: inline-flex; }

.wp-block-list.coverage-list-simple { list-style: none; margin: 20px 0; padding: 0; }
.wp-block-list.coverage-list-simple li { padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 0.95rem; color: var(--text-muted); }
.wp-block-list.coverage-list-simple li strong { color: var(--navy); display: block; margin-bottom: 3px; font-size: 1rem; }

/* Native FAQ via the core Details block, styled to match the old accordion */
.wp-block-details {
  border-bottom: 1px solid var(--border);
  padding: 4px 0;
}
.wp-block-details summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--navy);
  padding: 18px 36px 18px 0;
  list-style: none;
  position: relative;
}
.wp-block-details summary::-webkit-details-marker { display: none; }
.wp-block-details summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 14px;
  font-size: 1.4rem;
  color: var(--gold-dark);
}
.wp-block-details[open] summary::after { content: "\2013"; }
.wp-block-details > :not(summary) { padding-bottom: 18px; font-size: 0.95rem; }
.wp-block-details a { color: var(--navy); font-weight: 700; text-decoration: underline; }

@media (max-width: 980px) {
  .wp-block-columns.hero-grid,
  .wp-block-columns.two-col,
  .wp-block-columns.service-grid-cols,
  .wp-block-columns.why-grid-cols {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 760px) {
  .wp-block-columns.service-grid-cols { grid-template-columns: 1fr !important; }
}

/*ea-polish-start*/
.ea{display:inline-block;width:1.02em;height:1.02em;vertical-align:-.15em;margin-right:.45em;background-color:#c8912e;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center;-webkit-mask-size:contain;mask-size:contain}.ea-l{background-color:#f1b64c}.ea-navy{background-color:#0b273f}.ea-phone{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2024%2024'%20fill%3D'none'%20stroke%3D'black'%20stroke-width%3D'1.9'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'%3E%3Cpath%20d%3D'M22%2016.92v3a2%202%200%200%201-2.18%202%2019.8%2019.8%200%200%201-8.63-3.07%2019.5%2019.5%200%200%201-6-6A19.8%2019.8%200%200%201%202.09%204.18%202%202%200%200%201%204.11%202h3a2%202%200%200%201%202%201.72c.13.96.36%201.9.7%202.81a2%202%200%200%201-.45%202.11L8.09%209.91a16%2016%200%200%200%206%206l1.27-1.27a2%202%200%200%201%202.11-.45c.9.34%201.85.57%202.81.7A2%202%200%200%201%2022%2016.92z'%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2024%2024'%20fill%3D'none'%20stroke%3D'black'%20stroke-width%3D'1.9'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'%3E%3Cpath%20d%3D'M22%2016.92v3a2%202%200%200%201-2.18%202%2019.8%2019.8%200%200%201-8.63-3.07%2019.5%2019.5%200%200%201-6-6A19.8%2019.8%200%200%201%202.09%204.18%202%202%200%200%201%204.11%202h3a2%202%200%200%201%202%201.72c.13.96.36%201.9.7%202.81a2%202%200%200%201-.45%202.11L8.09%209.91a16%2016%200%200%200%206%206l1.27-1.27a2%202%200%200%201%202.11-.45c.9.34%201.85.57%202.81.7A2%202%200%200%201%2022%2016.92z'%2F%3E%3C%2Fsvg%3E")}.ea-pin{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2024%2024'%20fill%3D'none'%20stroke%3D'black'%20stroke-width%3D'1.9'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'%3E%3Cpath%20d%3D'M21%2010c0%207-9%2013-9%2013s-9-6-9-13a9%209%200%200%201%2018%200z'%2F%3E%3Ccircle%20cx%3D'12'%20cy%3D'10'%20r%3D'3'%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2024%2024'%20fill%3D'none'%20stroke%3D'black'%20stroke-width%3D'1.9'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'%3E%3Cpath%20d%3D'M21%2010c0%207-9%2013-9%2013s-9-6-9-13a9%209%200%200%201%2018%200z'%2F%3E%3Ccircle%20cx%3D'12'%20cy%3D'10'%20r%3D'3'%2F%3E%3C%2Fsvg%3E")}.ea-shield{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2024%2024'%20fill%3D'none'%20stroke%3D'black'%20stroke-width%3D'1.9'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'%3E%3Cpath%20d%3D'M12%2022s8-4%208-10V5l-8-3-8%203v7c0%206%208%2010%208%2010z'%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2024%2024'%20fill%3D'none'%20stroke%3D'black'%20stroke-width%3D'1.9'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'%3E%3Cpath%20d%3D'M12%2022s8-4%208-10V5l-8-3-8%203v7c0%206%208%2010%208%2010z'%2F%3E%3C%2Fsvg%3E")}.ea-check{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2024%2024'%20fill%3D'none'%20stroke%3D'black'%20stroke-width%3D'1.9'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'%3E%3Cpath%20d%3D'M20%206%209%2017l-5-5'%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2024%2024'%20fill%3D'none'%20stroke%3D'black'%20stroke-width%3D'1.9'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'%3E%3Cpath%20d%3D'M20%206%209%2017l-5-5'%2F%3E%3C%2Fsvg%3E")}.ea-home{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2024%2024'%20fill%3D'none'%20stroke%3D'black'%20stroke-width%3D'1.9'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'%3E%3Cpath%20d%3D'M3%209.5%2012%203l9%206.5V21a1%201%200%200%201-1%201H4a1%201%200%200%201-1-1z'%2F%3E%3Cpath%20d%3D'M9%2022V12h6v10'%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2024%2024'%20fill%3D'none'%20stroke%3D'black'%20stroke-width%3D'1.9'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'%3E%3Cpath%20d%3D'M3%209.5%2012%203l9%206.5V21a1%201%200%200%201-1%201H4a1%201%200%200%201-1-1z'%2F%3E%3Cpath%20d%3D'M9%2022V12h6v10'%2F%3E%3C%2Fsvg%3E")}.ea-bolt{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2024%2024'%20fill%3D'none'%20stroke%3D'black'%20stroke-width%3D'1.9'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'%3E%3Cpath%20d%3D'M13%202%203%2014h9l-1%208%2010-12h-9z'%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2024%2024'%20fill%3D'none'%20stroke%3D'black'%20stroke-width%3D'1.9'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'%3E%3Cpath%20d%3D'M13%202%203%2014h9l-1%208%2010-12h-9z'%2F%3E%3C%2Fsvg%3E")}.ea-car{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2024%2024'%20fill%3D'none'%20stroke%3D'black'%20stroke-width%3D'1.9'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'%3E%3Cpath%20d%3D'M4%2012l1.6-4A2%202%200%200%201%207.5%207h9a2%202%200%200%201%201.9%201.3L20%2012v4H4z'%2F%3E%3Ccircle%20cx%3D'7.5'%20cy%3D'16.5'%20r%3D'1.5'%2F%3E%3Ccircle%20cx%3D'16.5'%20cy%3D'16.5'%20r%3D'1.5'%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2024%2024'%20fill%3D'none'%20stroke%3D'black'%20stroke-width%3D'1.9'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'%3E%3Cpath%20d%3D'M4%2012l1.6-4A2%202%200%200%201%207.5%207h9a2%202%200%200%201%201.9%201.3L20%2012v4H4z'%2F%3E%3Ccircle%20cx%3D'7.5'%20cy%3D'16.5'%20r%3D'1.5'%2F%3E%3Ccircle%20cx%3D'16.5'%20cy%3D'16.5'%20r%3D'1.5'%2F%3E%3C%2Fsvg%3E")}.ea-heart{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2024%2024'%20fill%3D'none'%20stroke%3D'black'%20stroke-width%3D'1.9'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'%3E%3Cpath%20d%3D'M20.8%205.6a5%205%200%200%200-7.1%200L12%207.3l-1.7-1.7a5%205%200%200%200-7.1%207.1L12%2021l8.8-8.3a5%205%200%200%200%200-7.1z'%2F%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2024%2024'%20fill%3D'none'%20stroke%3D'black'%20stroke-width%3D'1.9'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'%3E%3Cpath%20d%3D'M20.8%205.6a5%205%200%200%200-7.1%200L12%207.3l-1.7-1.7a5%205%200%200%200-7.1%207.1L12%2021l8.8-8.3a5%205%200%200%200%200-7.1z'%2F%3E%3C%2Fsvg%3E")}
/* nav spacing */
.nav-row{gap:18px}
.main-nav{gap:20px}
.main-nav a{white-space:nowrap;font-size:14.5px}
.nav-actions{white-space:nowrap;gap:14px}
.nav-actions a,.nav-actions .btn{white-space:nowrap}
/* quote card fields */
.hero-card input,.hero-card textarea{border:1.5px solid #c3ccd6;background:#f4f7fa;border-radius:10px;padding:14px 16px;font-size:15px;color:#0b273f}
.hero-card input::placeholder,.hero-card textarea::placeholder{color:#5b6b7d;opacity:1}
.hero-card input:focus,.hero-card textarea:focus{outline:none;border-color:#d99a2b;background:#fff;box-shadow:0 0 0 3px rgba(241,182,76,.25)}
/* eyebrow refine */
.eyebrow{letter-spacing:.14em}
/* section-head gold rule (crest motif accent) */
.section-head h2::after{content:"";display:block;width:54px;height:3px;background:#f1b64c;border-radius:2px;margin:16px auto 0}
/* hero stat accent */
.hero .num{position:relative;padding-bottom:9px}
.hero .num::after{content:"";position:absolute;left:2px;bottom:0;width:26px;height:2px;background:#f1b64c}
/* CTA band separated from footer */
.cta-band{margin-bottom:78px}
footer{border-top:3px solid #f1b64c}
/* Instagram float button */
.whatsapp-float.ig-float{background:radial-gradient(circle at 28% 105%,#fed576 0%,#f47133 26%,#bc3081 54%,#4c63d2 92%)!important}

/* brand wordmark lockup */
.brand{display:flex;align-items:center;gap:11px;text-decoration:none}
.brand-logo-img{height:46px;width:auto}
.brand-name{display:flex;flex-direction:column;line-height:1}
.brand-name-main{font-family:'STIX Two Text',Georgia,serif;font-weight:600;font-size:1.3rem;letter-spacing:.045em;color:#0b273f}
.brand-name-sub{font-family:'Montserrat',sans-serif;font-weight:600;font-size:.58rem;letter-spacing:.24em;text-transform:uppercase;color:#c8912e;margin-top:3px}
.main-nav{gap:16px}
.main-nav a{font-size:14px}
@media(max-width:1160px){.brand-name{display:none}}

/* --- responsive nav v2 + header spacing --- */
.brand{margin-right:22px}
.brand-name-main{font-size:1.18rem}
.main-nav{gap:14px}
.main-nav a{font-size:13.5px}
@media(max-width:1300px){.brand-name{display:none}}
@media(max-width:1200px){
 nav.main-nav{position:fixed;top:0;right:-100%;height:100vh;width:80%;max-width:330px;background:var(--white);flex-direction:column;align-items:flex-start;padding:90px 28px 28px;transition:right .25s ease;box-shadow:-10px 0 30px rgba(0,0,0,0.15);z-index:1000}
 nav.main-nav.open{right:0}
 nav.main-nav a{width:100%;padding:14px 0;border-bottom:1px solid var(--border);font-size:15px}
 .menu-toggle{display:flex}
 .nav-phone span.label{display:none}
 .brand-name{display:none}
 .brand{margin-right:0}
}

/* --- header fit v3: no shrink, drop duplicate nav phone, keep wordmark --- */
.brand{flex-shrink:0;margin-right:28px}
.brand-name{flex-shrink:0;white-space:nowrap}
@media(min-width:1201px){ .nav-actions .nav-phone{display:none} .brand-name{display:flex} }
/*ea-polish-end*/
