/* ============================================================
   MRK Construction & Home Services — Design tokens
   Palette pulled from logo: brand blue #2255B1 / field green #419643
   ============================================================ */
:root{
  --blueprint:      #16305C;
  --blueprint-deep: #0F2244;
  --brand-blue:     #2255B1;
  --brand-blue-light: #3E74D6;
  --brand-blue-tint: #E4ECF9;
  --field-green:    #419643;
  --field-green-dark: #2E7530;
  --field-green-tint: #E7F3E4;
  --paper:          #F7F8F6;
  --card: #FFFFFF;
  --ink:            #1B2430;
  --ink-soft:       #5B6470;
  --amber:          #E8A23C;
  --border-soft: rgba(27,36,48,0.08);
  --white: #ffffff;

  --font-display: 'Manrope', 'Arial Narrow', sans-serif;
  --font-body: 'IBM Plex Sans', 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', 'Consolas', monospace;

  --radius: 20px;
  --radius-sm: 12px;
  --pill: 999px;
  --wrap: 1180px;
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; scroll-padding-top: 88px; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *,*::before,*::after{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

a, button{ -webkit-tap-highlight-color: transparent; }

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

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

.skip-link{
  position:absolute; left:-9999px; top:0;
  background: var(--brand-blue); color:#fff; padding:12px 20px; z-index:200;
}
.skip-link:focus{ left:16px; top:16px; }

a{ color:inherit; text-decoration:none; }

:focus-visible{
  outline: 2px solid var(--amber);
  outline-offset: 2px;
}

/* ---------- Buttons ---------- */
.btn{
  appearance: none;
  -webkit-appearance: none;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 14px 26px;
  border-radius: var(--pill);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight:600;
  border: 1px solid transparent;
  cursor:pointer;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-1px); }
.btn-primary{ background: var(--brand-blue); color:#fff; }
.btn-primary:hover{ background: var(--brand-blue-light); box-shadow: 0 8px 20px rgba(34,85,177,0.28); }
.btn-accent{ background: var(--field-green); color:#fff; }
.btn-accent:hover{ background: var(--field-green-dark); box-shadow: 0 8px 20px rgba(65,150,67,0.28); }
.btn-dark{ background: var(--blueprint-deep); color:#fff; }
.btn-dark:hover{ background: #081730; }

/* ---------- Eyebrow / section titles ---------- */
.eyebrow{
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin: 0 0 14px;
  padding-left: 14px;
  border-left: 3px solid var(--field-green);
}
.eyebrow-light{ color: #9FC1F0; }

.section-title{
  font-family: var(--font-display);
  font-weight:700;
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  line-height:1.15;
  margin: 0 0 20px;
  color: var(--ink);
}

.section-body{
  font-size: 1.02rem;
  line-height:1.4;
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 0 0 28px;
}

.accent-green{ color: var(--field-green); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header{
  position: sticky; top:0; z-index:100;
  background: var(--card);
  border-bottom: 1px solid var(--border-soft);
}
.header-row{
  display:flex; align-items:center; justify-content:space-between;
  height: 88px;
  gap: 24px;
}
.brand-logo{ height: 58px; width:auto; }

.main-nav{ display:flex; gap: 6px; }
.nav-pill{
  padding: 10px 18px;
  border-radius: var(--pill);
  font-size: 0.94rem;
  font-weight:500;
  color: var(--ink-soft);
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-pill:hover{ color: var(--ink); }
.nav-pill--active{
  background: var(--brand-blue-tint);
  color: var(--brand-blue);
}

.header-cta.btn{ padding: 12px 22px; font-size: 0.88rem; }

.nav-toggle{
  display:none;
  align-items:center; justify-content:center;
  width:44px; height:44px;
  border:none; background: var(--brand-blue-tint);
  border-radius: var(--radius-sm);
  cursor:pointer;
}
.nav-toggle svg{
  width:22px; height:22px; fill:none; stroke: var(--brand-blue);
  stroke-width:2.2; stroke-linecap:round; stroke-linejoin:round;
}

@media (max-width: 900px){
  .header-row{ flex-wrap:wrap; align-items:center; height:auto; padding: 9px 32px; gap:0; }
  .brand-logo{ height: 64px; }
  .header-cta.btn{ padding: 14px 24px; font-size: 0.92rem; }
  .nav-toggle{ display:flex; width:50px; height:50px; }
  .nav-toggle svg{ width:24px; height:24px; }
  .main-nav{
    display:flex; flex-direction:column;
    width:100%; order:10;
    max-height:0; overflow:hidden;
    gap: 2px;
    transition: max-height 0.3s ease;
  }
  .main-nav.is-open{ max-height: 220px; padding-bottom: 8px; }
  .nav-pill{ padding: 12px 14px; border-radius: var(--radius-sm); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero-full{ position:relative; background: #fff; }
.hero-full-media{ position:relative; height: 620px; overflow:hidden; }
.hero-full-media img{ width:100%; height:100%; object-fit:cover; }
.hero-full-overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(15,34,68,0.72), rgba(15,34,68,0.55) 55%, rgba(15,34,68,0.82));
}

.hero-full-inner{
  position:absolute; inset:0;
  display:flex; flex-direction:column; align-items:center; justify-content:flex-start;
  text-align:center; padding: 90px 24px 24px;
}
.hero-full-eyebrow{ border-left:none; padding-left:0; }
.hero-full-title{
  font-family: var(--font-display);
  font-weight:700; text-transform:uppercase;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height:1.15; color:#fff;
  margin: 8px 0 20px;
  text-wrap: balance;
}
.hero-full-sub{
  color: rgba(255,255,255,0.78);
  font-size:1.02rem; line-height:1.7;
  max-width: 56ch; margin: 0 0 32px;
}
.hero-full-cta svg{ width:14px; height:14px; fill:none; stroke:currentColor; stroke-width:2.4; stroke-linecap:round; stroke-linejoin:round; }

.stats-wrap{ position:relative; z-index:3; margin-top: -80px; }
.stats-bar{
  max-width: var(--wrap); margin:0 auto;
  background: var(--card); border-radius: var(--radius);
  display:flex; align-items:stretch; overflow:hidden;
}
.stats-photo{ margin:0; flex: 0 0 220px; }
.stats-photo img{ width:100%; height:100%; object-fit:cover; }
.stats-list{ flex:1; display:flex; }
.stat{
  flex:1; text-align:center;
  padding: 32px 16px;
  border-left: 1px solid var(--border-soft);
}
.stat:first-child{ border-left:none; }
.stat-num{
  font-family: var(--font-display); font-weight:700;
  font-size: clamp(1.8rem, 3vw, 2.3rem); color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.stat-num em{ font-style:normal; color: var(--field-green); }
.stat-label{
  display:block; margin-top:6px;
  font-size:0.85rem; color: var(--ink-soft);
}

@media (max-width: 900px){
  .hero-full-media{ height: 560px; }
  .stats-photo{ display:none; }
}
@media (max-width: 640px){
  .stats-list{ flex-direction:column; }
  .stat{ border-left:none; border-top:1px solid var(--border-soft); }
  .stat:first-child{ border-top:none; }
  .stats-wrap{ margin-top:-50px; }
  .stat-num{ font-size: 2.15rem; }
  .stat-label{ font-size: 0.92rem; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about{ position:relative; overflow:hidden; padding: 100px 0; background: #fff; }
.about-grid{
  position:relative;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items:stretch;
}
.about-copy{ display:flex; flex-direction:column; }
.about-copy .btn{ margin-top:auto; align-self:flex-start; }

.badge-cards{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.badge-card{
  background: var(--card);
  border-radius: var(--radius-sm);
  padding: 20px;
  border: 1px solid var(--border-soft);
}
.badge-icon{
  display:inline-flex; align-items:center; justify-content:center;
  width: 40px; height:40px; border-radius:50%;
  background: var(--field-green-tint);
  margin-bottom: 14px;
}
.badge-icon svg{
  width:20px; height:20px; fill:none; stroke: var(--field-green-dark); stroke-width:2.4;
  stroke-linecap:round; stroke-linejoin:round;
}
.badge-title{ margin:0 0 4px; font-weight:600; font-size:0.96rem; }
.badge-text{ margin:0; font-size:0.85rem; color: var(--ink-soft); line-height:1.5; }

.checklist{ list-style:none; margin:0 0 34px; padding:0; display:grid; gap:14px; }
.checklist li{
  display:flex; align-items:center; gap:12px;
  font-size: 0.98rem; color: var(--ink);
}
.checklist svg{
  width:20px; height:20px; flex-shrink:0;
  stroke: var(--field-green); stroke-width:2.6; fill:none;
  stroke-linecap:round; stroke-linejoin:round;
  background: var(--field-green-tint); border-radius:50%; padding:3px;
}

.about-photos{
  display:flex;
  flex-direction:column;
  gap: 16px;
}
.about-photos .photo-frame--main{ flex: 1 1 auto; min-height:0; }
.about-photos-row{ display:flex; gap:16px; flex: 0 0 auto; }
.about-photos-row .photo-frame{ flex: 1 1 0; }
.photo-frame{
  margin:0; border-radius: var(--radius); overflow:hidden;
  box-shadow: 0 20px 40px -22px rgba(15,34,68,0.22), 0 3px 10px rgba(15,34,68,0.05);
}
.photo-frame img{
  width:100%; height:100%; object-fit:cover; aspect-ratio: 4/3;
  transition: transform 0.35s ease;
}
.photo-frame:hover img{ transform: scale(1.06); }

.photo-placeholder{
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:12px;
  height:100%; min-height:140px;
  background: linear-gradient(155deg, var(--brand-blue-tint), var(--field-green-tint));
  color: var(--brand-blue);
}
.photo-placeholder svg{
  width:44px; height:44px; fill:none; stroke: currentColor; stroke-width:2;
  stroke-linecap:round; stroke-linejoin:round; opacity:0.7;
}
.photo-placeholder span{
  font-family: var(--font-mono); font-size:0.78rem; letter-spacing:0.06em;
  text-transform:uppercase; opacity:0.75; text-align:center; padding:0 8px;
}
.photo-frame--main img{ aspect-ratio: 16/9; }

@media (max-width: 900px){
  .about{ padding-top: 64px; }
  .about-grid{ grid-template-columns:1fr; gap:40px; }
  .badge-cards{ grid-template-columns: 1fr; }
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker{
  background: var(--blueprint-deep);
  overflow:hidden;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ticker-track{
  display:flex; width:max-content;
  animation: ticker-scroll 90s linear infinite;
}
.ticker-item{
  display:flex; align-items:center; gap:14px;
  padding: 0 28px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight:600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color:#fff;
  white-space:nowrap;
}
.ticker-item svg{
  width:18px; height:18px; fill:none; stroke: var(--field-green);
  stroke-width:2; stroke-linecap:round; stroke-linejoin:round;
}
@keyframes ticker-scroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services{ position:relative; background: var(--blueprint); padding: 90px 0; overflow:hidden; }
.services-backdrop{
  position:absolute; inset:0; height: 260px;
  background:
    linear-gradient(180deg, rgba(15,34,68,0.55), var(--blueprint) 95%),
    repeating-linear-gradient(115deg, rgba(255,255,255,0.05) 0 2px, transparent 2px 26px);
}
.services .eyebrow-light{ color: #9FC1F0; }
.services .section-title{ color: var(--white); margin-bottom: 10px; }
.services-sub{ color: rgba(255,255,255,0.62); font-size:0.98rem; margin:0; }
.services-head{ position:relative; margin: 4px 0 40px; }

.services-showcase{
  position:relative;
  display:grid; grid-template-columns: 1fr 0.9fr;
  gap: 56px; align-items:center;
}
.services-col{ display:flex; flex-direction:column; }

.services-cta{ position:relative; text-align:center; margin-top: 56px; }
.services-cta .btn{ padding: 18px 34px; font-size: 1.05rem; }

.services-list{ display:flex; flex-direction:column; }
.service-row{
  all:unset; box-sizing:border-box; cursor:pointer;
  display:flex; align-items:center; gap:20px;
  padding: 24px 4px;
  border-top: 1px solid rgba(255,255,255,0.14);
  transition: padding-left 0.25s ease;
}
.services-list .service-row:last-child{ border-bottom: 1px solid rgba(255,255,255,0.14); }
.service-row-num{
  font-family: var(--font-mono); font-size:0.85rem;
  color: rgba(255,255,255,0.35); flex:0 0 28px;
  transition: color 0.2s ease;
}
.service-row-body{ flex:1; display:flex; flex-direction:column; gap:6px; min-width:0; }
.service-row-title{
  font-family: var(--font-display); font-weight:700;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem); color:#fff;
  transition: color 0.2s ease;
}
.service-row-desc{
  font-size:0.92rem; line-height:1.6; color: rgba(255,255,255,0.6);
  max-height:0; opacity:0; overflow:hidden;
  transition: max-height 0.3s ease, opacity 0.25s ease, margin 0.3s ease;
}
.service-row-arrow{
  width:18px; height:18px; flex:0 0 auto;
  fill:none; stroke: rgba(255,255,255,0.4); stroke-width:2.2; stroke-linecap:round; stroke-linejoin:round;
  transition: transform 0.25s ease, stroke 0.25s ease;
}

.service-row.is-active{ padding-left: 20px; }
.service-row.is-active .service-row-num{ color: var(--field-green); }
.service-row.is-active .service-row-title{ color: var(--field-green); }
.service-row.is-active .service-row-desc{ max-height:70px; opacity:1; margin-top:2px; }
.service-row.is-active .service-row-arrow{ transform: rotate(90deg); stroke: var(--field-green); }

.services-visual{ position:relative; aspect-ratio: 4/5; border-radius: var(--radius); overflow:hidden; }
.service-visual-panel{
  position:absolute; inset:0;
  opacity:0; transition: opacity 0.4s ease;
}
.service-visual-panel.is-active{ opacity:1; }
.service-visual-panel img{ width:100%; height:100%; object-fit:cover; }
.service-visual-panel.photo-placeholder svg{ width:56px; height:56px; }
.service-visual-panel.photo-placeholder span{ font-size:0.85rem; }

@media (max-width: 860px){
  .services-showcase{ grid-template-columns: 1fr; }
  .services-visual{ order:-1; aspect-ratio: 16/10; }
  .service-row.is-active .service-row-desc{ max-height:90px; }
}

/* ============================================================
   BEFORE & AFTER
   ============================================================ */
.before-after{ background: var(--paper); padding: 100px 0; }
.before-after .section-body{ max-width: 60ch; }
.before-after .section-title{ margin-bottom: 8px; }

.ba-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.ba-card{ margin:0; }
.ba-card figcaption{
  margin-top: 14px; font-weight:600; color: var(--ink); font-size:0.98rem;
}

.ba-slider{
  position:relative;
  container-type: inline-size;
  aspect-ratio: 1080/1250;
  border-radius: var(--radius);
  overflow:hidden;
  cursor: default;
  -webkit-user-select:none;
  user-select:none;
  touch-action: pan-y;
}
.ba-panel{
  position:absolute; inset:0;
  display:flex; align-items:flex-start;
  padding: 14px;
}
.ba-panel img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.ba-tag{
  position:relative;
  font-family: var(--font-mono); font-size:0.7rem; letter-spacing:0.08em; text-transform:uppercase;
  color:#fff; background: rgba(15,34,68,0.55); padding: 6px 12px; border-radius: var(--pill);
}
.ba-after{ background: linear-gradient(155deg, var(--brand-blue), var(--field-green)); justify-content: flex-end; }
.ba-before{ background: linear-gradient(155deg, #8a94a3, #6b7280); }

.ba-before-wrap{
  position:absolute; inset:0; width:50%;
  overflow:hidden;
}
.ba-before-wrap .ba-panel{ width: 100cqw; }

.ba-handle{
  position:absolute; top:0; bottom:0; left:50%;
  width:40px; margin-left:-20px;
  display:flex; align-items:center; justify-content:center;
  pointer-events:none;
}
.ba-handle::before{
  content:''; position:absolute; top:0; bottom:0; left:50%;
  width:2px; background:#fff; transform:translateX(-50%);
}
.ba-handle svg{
  position:relative; width:36px; height:36px; border-radius:50%;
  background:#fff; box-shadow: 0 4px 12px rgba(15,34,68,0.3);
  fill:none; stroke: var(--blueprint-deep); stroke-width:2; stroke-linecap:round; stroke-linejoin:round;
  padding:8px; pointer-events:auto; cursor:ew-resize;
}

@media (max-width: 860px){
  .ba-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 640px){
  .before-after .eyebrow{ font-size: 0.86rem; }
  .before-after .section-title{ font-size: 2.3rem; }
  .before-after .section-body{ font-size: 1.12rem; }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-full{ position:relative; overflow:hidden; }
.cta-full-media{ position:absolute; inset:0; }
.cta-full-media img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.cta-full-overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(15,34,68,0.5), rgba(15,34,68,0.92) 60%);
}
.cta-full-inner{
  position:relative; z-index:2;
  display:flex; flex-direction:column; flex-wrap:nowrap;
  align-items:center; justify-content:center;
  gap: 12px;
  padding: 56px 24px 88px;
  text-align:center;
}
.cta-full-text{ max-width: 760px; }
.cta-full-eyebrow{
  font-family: var(--font-mono);
  font-size: 0.78rem; letter-spacing:0.14em; text-transform:uppercase;
  color: #fff; display:inline-block;
  padding-bottom: 10px; margin: 0 0 16px;
  border-bottom: 2px solid var(--field-green);
}
.cta-full-title{
  font-family: var(--font-display); font-weight:700;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem); line-height:1.2;
  color:#fff; margin: 0 0 16px;
  text-wrap: balance;
}
.cta-full-sub{
  color: rgba(255,255,255,0.75); font-size:1.08rem; line-height:1.7;
  max-width: 54ch; margin: 0 auto;
}
.cta-full-btn{ flex: 0 0 auto; padding: 18px 32px; font-size: 1.02rem; margin-top: 8px; }

@media (min-width: 901px){
  .cta-full-overlay{
    background: linear-gradient(90deg, rgba(15,34,68,0.92) 0%, rgba(15,34,68,0.75) 45%, rgba(15,34,68,0.35) 100%);
  }
  .cta-full-inner{
    flex-direction:row; flex-wrap:wrap;
    align-items:center; justify-content:space-between;
    gap: 32px;
    padding: 24px;
    text-align:left;
    min-height: 460px;
  }
  .cta-full-text{ flex: 1 1 480px; }
  .cta-full-sub{ margin: 0; }
  .cta-full-eyebrow{ margin-left:0; }
  .cta-full-btn{ margin-top:0; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{ background: var(--blueprint-deep); color: rgba(255,255,255,0.7); padding: 64px 0 0; }
.footer-grid{
  display:grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo{ height:48px; margin-bottom:16px; filter: brightness(0) invert(1); opacity:0.9; }
.footer-brand p{ font-size:0.9rem; max-width:32ch; }
.footer-heading{
  font-family: var(--font-mono); text-transform:uppercase; letter-spacing:0.08em;
  font-size:0.75rem; color: rgba(255,255,255,0.45); margin:0 0 16px;
}
.footer-col{ display:flex; flex-direction:column; gap:10px; }
.footer-col a:hover{ color:#fff; }
.footer-bottom{ padding: 24px; text-align:center; font-size:0.8rem; }

@media (max-width: 700px){
  .footer-grid{ grid-template-columns:1fr; gap:32px; }
}

/* ============================================================
   QUOTE PAGE
   ============================================================ */
.quote-hero{
  position:relative; overflow:hidden;
  background: var(--blueprint);
  padding: 72px 0 96px;
}
.quote-hero::before{
  content:'';
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(15,34,68,0.2), var(--blueprint) 90%),
    repeating-linear-gradient(115deg, rgba(255,255,255,0.05) 0 2px, transparent 2px 26px);
}
.quote-hero-inner{ position:relative; max-width: 640px; }
.quote-hero-title{
  font-family: var(--font-display); font-weight:700;
  font-size: clamp(2rem, 3.6vw, 2.9rem); line-height:1.15;
  color:#fff; margin: 0 0 16px;
}
.quote-hero-sub{ color: rgba(255,255,255,0.75); font-size:1.05rem; line-height:1.6; margin:0; }

.quote-section{ background: var(--paper); padding: 0 0 100px; }
.quote-wrap{ max-width: 720px; }
.quote-form{
  position:relative;
  margin-top: -64px;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid rgba(65,150,67,0.35);
  padding: 40px;
  display:flex; flex-direction:column; gap:20px;
}
.quote-form[hidden]{ display:none; }
.quote-field{ display:flex; flex-direction:column; gap:8px; }
.quote-row{ display:grid; grid-template-columns: 1fr 1fr; gap:20px; }
.quote-field label{
  font-family: var(--font-mono); font-size:0.76rem; letter-spacing:0.06em; text-transform:uppercase;
  color: var(--ink-soft);
}
.quote-field input, .quote-field select{
  appearance: none;
  -webkit-appearance: none;
  width:100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-soft);
  background: var(--paper);
  font-family: var(--font-body); font-size:0.98rem; color: var(--ink);
}
.quote-field select{
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%235B6470' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M5 7l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px;
  padding-right: 42px;
}
.quote-field input:focus, .quote-field select:focus{
  outline:none; border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px var(--brand-blue-tint);
}
.quote-actions{
  display:flex; gap:16px; margin-top:8px;
}
.quote-actions .btn{ flex:1; justify-content:center; }

.quote-success{
  position:relative;
  margin-top: -64px;
  background: var(--field-green-tint);
  border: 1px solid rgba(65,150,67,0.35);
  border-radius: var(--radius);
  padding: 40px;
  text-align:center;
  font-size: 1.1rem; font-weight:600;
  color: var(--field-green-dark);
}

@media (max-width: 640px){
  .quote-row{ grid-template-columns: 1fr; }
  .quote-form{ padding: 28px 22px; margin-top: -40px; }
  .quote-actions{ flex-direction:column; }
}
