/* ==========================================================================
   American Floor Care and Coatings Inc. - shared stylesheet
   Design system (tokens + shared header/nav/footer + shared components).
   Cloned 1:1 from the Wix source. Page-scoped rules are appended below
   under banner comments of the form  page: <slug>
   ========================================================================== */

:root {
  --blue: #2456a6;          /* primary buttons / links */
  --blue-head: #2c5aa0;     /* section headings */
  --blue-dark: #17457f;
  --blue-bright: #2f6fd0;
  --topbar-a: #123a72;
  --topbar-b: #2a63b0;
  --footer-bg: #35659c;
  --footer-line: #6f97c4;
  --dark-band: #2b2b2b;     /* "why choose us" band */
  --quote-btn: #3a3a3a;     /* GET A QUOTE button */
  --ink: #262626;           /* strong text */
  --body: #555555;          /* body copy */
  --muted: #7d7d7d;
  --light-band: #efefef;    /* alternating services band */
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(0,0,0,.12);
  --shadow-sm: 0 6px 18px rgba(0,0,0,.10);
  --radius: 6px;
  --wrap: 1180px;
  --head-font: 'Poppins', 'Segoe UI', Arial, sans-serif;
  --body-font: 'Open Sans', 'Segoe UI', Arial, sans-serif;
}

/* ---- reset ---- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body-font);
  color: var(--body);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--head-font); color: var(--ink); margin: 0 0 .5em; line-height: 1.2; }
p { margin: 0 0 1em; }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

/* skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--blue);
  color: #fff; padding: 10px 16px; z-index: 1000;
}
.skip-link:focus { left: 0; }

/* ---- eyebrow + section heading ---- */
.eyebrow {
  font-family: var(--head-font);
  font-weight: 600; font-size: .8rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--blue-head);
  margin: 0 0 .4em; position: relative; display: inline-block;
}
.eyebrow::after {
  content: ""; display: block; width: 46px; height: 4px;
  background: var(--blue); border-radius: 2px; margin-top: 8px;
}
.section-title {
  font-family: var(--head-font); font-weight: 700;
  font-size: clamp(1.6rem, 3.2vw, 2.35rem);
  color: var(--blue-head); text-transform: uppercase; margin: 0 0 .6em;
}

/* ---- buttons ---- */
.btn {
  display: inline-block; font-family: var(--head-font); font-weight: 600;
  font-size: .78rem; letter-spacing: .06em; text-transform: uppercase;
  padding: 13px 26px; border-radius: var(--radius); cursor: pointer;
  border: 2px solid transparent; transition: background .25s ease, color .25s ease, transform .2s ease, box-shadow .25s ease;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-outline { background: transparent; color: #fff; border-color: #fff; }
.btn-outline:hover { background: #fff; color: var(--blue); transform: translateY(-2px); }
.btn-dark { background: var(--quote-btn); color: #fff; }
.btn-dark:hover { background: #000; transform: translateY(-2px); }

/* ==========================================================================
   TOP CONTACT BAR
   ========================================================================== */
.topbar {
  background: linear-gradient(90deg, var(--topbar-a), var(--topbar-b));
  color: #eaf1fb; font-size: .82rem;
}
.topbar .wrap { display: flex; align-items: stretch; min-height: 40px; }
.topbar-left { display: flex; align-items: center; gap: 18px; flex: 1; }
.topbar-item { display: flex; align-items: center; gap: 8px; padding: 8px 0; }
.topbar-item svg { width: 15px; height: 15px; fill: #eaf1fb; flex: none; }
.topbar-sep { width: 1px; background: rgba(255,255,255,.35); margin: 8px 0; align-self: stretch; }
.topbar a { color: #eaf1fb; }
.topbar a:hover { color: #fff; text-decoration: underline; }
.topbar-social { display: flex; align-items: center; background: #fff; padding: 0 16px; gap: 14px; }
.topbar-social img { width: 18px; height: 18px; }
.topbar-social a { display: inline-flex; transition: transform .2s ease; }
.topbar-social a:hover { transform: scale(1.12); }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header { background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,.06); position: sticky; top: 0; z-index: 90; }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; min-height: 82px; gap: 20px; }
.logo img { height: 50px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav ul { list-style: none; display: flex; align-items: center; gap: 28px; margin: 0; padding: 0; }
.main-nav a {
  font-family: var(--head-font); font-weight: 500; font-size: .82rem;
  letter-spacing: .04em; text-transform: uppercase; color: #2b2b2b;
  padding: 6px 0; position: relative; transition: color .2s ease;
}
.main-nav a:hover { color: var(--blue); }
.main-nav a.active { color: var(--blue); }
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--blue); transition: width .25s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

/* "Get a Quote" is a button, not a nav link: .main-nav a (0,1,1) outranks
   .btn-dark (0,1,0), so restate the light-on-dark pill here and suppress the
   nav's sliding underline bar (which has no positioned ancestor inside the
   button and otherwise strays to the header edge). */
.main-nav a.btn-dark, .main-nav a.btn-dark:hover { color: #fff; }
.main-nav a.btn-dark::after { content: none; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: #2b2b2b; margin: 5px 0; transition: .3s; }

/* ==========================================================================
   PAGE HERO (inner pages) + HOME HERO
   ========================================================================== */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background-size: cover; background-position: center;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.62), rgba(0,0,0,.32));
}
.hero .wrap { position: relative; z-index: 2; }

/* inner page hero */
.page-hero { min-height: 360px; display: flex; align-items: center; }
.page-hero .wrap { width: 100%; }
.page-hero h1 {
  color: #fff; font-weight: 800; text-transform: uppercase;
  font-size: clamp(2.2rem, 6vw, 4rem); margin: 0; letter-spacing: .01em;
  text-shadow: 0 2px 14px rgba(0,0,0,.4);
}
.hero-underline { width: 120px; margin-top: 14px; opacity: .95; }

/* home hero */
.home-hero { min-height: 560px; display: flex; align-items: center; }
.home-hero .hero-inner { max-width: 620px; padding: 40px 0; }
.home-hero h1 {
  color: #fff; font-weight: 800; text-transform: uppercase;
  font-size: clamp(1.9rem, 4vw, 2.9rem); line-height: 1.15; margin: 0 0 4px;
  text-shadow: 0 2px 14px rgba(0,0,0,.45);
}
.home-hero .hero-rule { width: 90px; height: 5px; background: var(--blue-bright); border-radius: 2px; margin: 14px 0 20px; }
.home-hero p { color: #eef2f8; font-size: 1.02rem; max-width: 520px; }
.home-hero .hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }

/* ==========================================================================
   SHARED SECTION SPACING
   ========================================================================== */
.section { padding: 78px 0; }
.section-sm { padding: 54px 0; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--footer-bg); color: #dfe8f4; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1.2fr 1.3fr; gap: 34px; }
.site-footer h4 {
  color: #fff; font-family: var(--head-font); font-weight: 700;
  text-transform: uppercase; font-size: 1.02rem; letter-spacing: .03em;
  margin: 0 0 18px; position: relative; padding-bottom: 10px;
}
.site-footer h4::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 40px; height: 3px;
  background: #a9c4e6; border-radius: 2px;
}
.site-footer p { color: #d3e0f0; font-size: .92rem; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #dfe8f4; font-size: .94rem; transition: color .2s ease, padding-left .2s ease; }
.footer-links a::before { content: "\2192"; margin-right: 10px; color: #a9c4e6; }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-contact div { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: .92rem; }
.footer-contact svg { width: 16px; height: 16px; fill: #cfe0f4; flex: none; margin-top: 4px; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a { display: inline-flex; width: 34px; height: 34px; align-items: center; justify-content: center; background: rgba(255,255,255,.12); border-radius: 50%; transition: background .2s ease, transform .2s ease; }
.footer-social a:hover { background: rgba(255,255,255,.28); transform: translateY(-2px); }
.footer-social img { width: 18px; height: 18px; }

/* newsletter */
.newsletter-form label { display: block; color: #fff; font-size: .9rem; margin: 6px 0; }
.newsletter-field { display: flex; gap: 0; margin-top: 6px; }
.newsletter-field input[type="email"] {
  flex: 1; border: 0; padding: 11px 12px; font-family: var(--body-font);
  font-size: .9rem; border-radius: 4px 0 0 4px; min-width: 0;
}
.newsletter-field button {
  border: 0; background: #111; color: #fff; font-family: var(--head-font);
  font-weight: 600; padding: 0 20px; border-radius: 0 4px 4px 0; cursor: pointer;
  transition: background .2s ease;
}
.newsletter-field button:hover { background: #000; }
.newsletter-check { display: flex; align-items: center; gap: 8px; margin-top: 12px; font-size: .85rem; color: #dfe8f4; }

.footer-copy { background: #000; color: #cfcfcf; text-align: center; font-size: .8rem; padding: 16px; margin-top: 56px; }

/* off-screen honeypot */
.hp-field { position: absolute; left: -9999px; top: 0; width: 1px; height: 1px; overflow: hidden; }

/* ==========================================================================
   MOTION - entrance reveals (pure CSS on-load, always ends visible)
   ========================================================================== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes zoomIn { from { opacity: 0; transform: scale(.94); } to { opacity: 1; transform: scale(1); } }

.reveal { animation: fadeUp .7s ease both; }
.reveal-2 { animation: fadeUp .7s ease .12s both; }
.reveal-3 { animation: fadeUp .7s ease .24s both; }
.reveal-4 { animation: fadeUp .7s ease .36s both; }
.fade-in { animation: fadeIn .9s ease both; }
.zoom-in { animation: zoomIn .7s ease both; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .swiper-autoplaying { }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0; background: #fff;
    flex-direction: column; align-items: stretch; padding: 10px 24px 20px;
    box-shadow: 0 12px 20px rgba(0,0,0,.1); display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .main-nav li { border-bottom: 1px solid #eee; }
  .main-nav a { display: block; padding: 12px 0; }
  .main-nav .btn-dark { margin-top: 12px; text-align: center; }
}
@media (max-width: 620px) {
  .footer-grid { grid-template-columns: 1fr; }
  .topbar-left { flex-wrap: wrap; gap: 6px 14px; }
  .topbar { font-size: .74rem; }
  .topbar-email-full { word-break: break-all; }
  .section { padding: 54px 0; }
}

/* ==========================================================================
   page: home
   ========================================================================== */
.mission-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.mission-card {
  background: #fff; border: 1px solid #ececec; border-right: 5px solid var(--blue);
  padding: 30px 26px; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.mission-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.mission-card img { width: 54px; height: 54px; margin-bottom: 14px; }
.mission-card h5 { color: var(--blue-head); font-size: 1rem; text-transform: uppercase; margin: 0 0 10px; letter-spacing: .03em; }
.mission-card p { font-size: .9rem; margin: 0; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-media { position: relative; min-height: 560px; }
.about-square { position: absolute; left: 0; top: 60px; width: 120px; height: 240px; background: var(--blue); z-index: 0; }
.about-img-tall { position: absolute; right: 0; top: 0; width: 340px; height: 552px; object-fit: cover; box-shadow: var(--shadow); z-index: 1; }
.about-img-small { position: absolute; left: 14px; top: 200px; width: 236px; height: 264px; object-fit: cover; border: 8px solid #fff; box-shadow: var(--shadow); z-index: 2; }
.about-badge { position: absolute; left: 0; bottom: 0; z-index: 3; }
.about-badge img { width: 61px; height: auto; margin-bottom: 6px; }
.about-badge .years { display: block; font-family: var(--head-font); font-weight: 800; font-size: 2.6rem; color: var(--blue-head); line-height: 1; }
.about-badge .years-label { display: block; color: var(--ink); font-size: .9rem; }
.check-list { list-style: none; margin: 6px 0 26px; padding: 0; }
.check-list li { display: flex; align-items: center; gap: 12px; font-family: var(--head-font); font-weight: 600; color: var(--ink); margin-bottom: 12px; font-size: .95rem; }
.check-list img { width: 24px; height: 24px; }

.services-band { background-size: cover; background-position: center; }
.provide-head { display: grid; grid-template-columns: 1fr 1.3fr auto; gap: 30px; align-items: center; margin-bottom: 40px; }
.provide-quote { font-style: italic; color: var(--body); margin: 0; }
.svc-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.svc-card { background: #fff; box-shadow: var(--shadow-sm); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.svc-flip { position: relative; height: 220px; overflow: hidden; }
.svc-flip img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity .5s ease, transform .6s ease; }
.svc-flip .svc-back { opacity: 0; transform: scale(1.06); }
.svc-card:hover .svc-flip .svc-front { opacity: 0; }
.svc-card:hover .svc-flip .svc-back { opacity: 1; transform: scale(1); }
.svc-label { background: var(--blue); color: #fff; font-family: var(--head-font); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; text-align: center; padding: 14px; font-size: .95rem; }
.svc-card p { font-size: .88rem; padding: 16px 18px 22px; margin: 0; }

.why-band { background-size: cover; background-position: center; padding: 80px 0; color: #fff; }
.why-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 50px; align-items: center; }
.why-media img { width: 100%; height: 420px; object-fit: cover; box-shadow: var(--shadow); }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 30px; margin-top: 30px; }
.stat { display: grid; grid-template-columns: 46px 1fr; grid-template-rows: auto auto; column-gap: 14px; align-items: center; }
.stat img { grid-row: 1 / span 2; width: 46px; height: 46px; }
.stat-num { font-family: var(--head-font); font-weight: 800; font-size: 2rem; color: #fff; line-height: 1; }
.stat-num b { color: var(--blue-bright); }
.stat-label { font-size: .85rem; color: #cfd7e2; }

.projects-head { text-align: center; max-width: 680px; margin: 0 auto 40px; }
.projects-head .eyebrow::after { margin-left: auto; margin-right: auto; }
.projects-head .eyebrow { display: block; }

/* before / after reveal slider - one pair of photos, a draggable divider
   wipes between them. The range input is a full-bleed transparent overlay so
   drag, click-to-jump, touch and arrow keys all come from the native control. */
.ba-slider {
  position: relative; max-width: 900px; margin: 0 auto;
  aspect-ratio: 4 / 3; overflow: hidden;
  border-radius: var(--radius); box-shadow: var(--shadow);
  user-select: none; touch-action: pan-y;
}
.ba-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-img-before { z-index: 2; clip-path: inset(0 calc(100% - var(--ba-pos, 50%)) 0 0); }
.ba-tag {
  position: absolute; top: 16px; z-index: 4; pointer-events: none;
  font-family: var(--head-font); font-weight: 600; font-size: .72rem;
  letter-spacing: .08em; text-transform: uppercase; color: #fff;
  background: rgba(0,0,0,.55); padding: 6px 14px; border-radius: 3px;
  transition: opacity .2s ease;
}
.ba-tag-before { left: 16px; }
.ba-tag-after { right: 16px; }
.ba-at-start .ba-tag-before, .ba-at-end .ba-tag-after { opacity: 0; }
.ba-range {
  position: absolute; inset: 0; z-index: 5; width: 100%; height: 100%;
  margin: 0; padding: 0; opacity: 0; cursor: ew-resize;
  -webkit-appearance: none; appearance: none; background: transparent;
}
.ba-range::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 48px; height: 100%; cursor: ew-resize; }
.ba-range::-moz-range-thumb { width: 48px; height: 100%; border: 0; border-radius: 0; background: transparent; cursor: ew-resize; }
.ba-range:focus { outline: none; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: var(--ba-pos, 50%);
  width: 3px; margin-left: -1.5px; background: #fff; z-index: 3;
  box-shadow: 0 0 12px rgba(0,0,0,.4); pointer-events: none;
  display: flex; align-items: center; justify-content: center;
}
.ba-grip {
  flex: none; width: 46px; height: 46px; border-radius: 50%; background: #fff;
  display: grid; place-items: center; box-shadow: 0 4px 14px rgba(0,0,0,.3);
  transition: box-shadow .2s ease;
}
.ba-grip svg { width: 26px; height: 26px; fill: var(--blue); }
.ba-range:focus-visible ~ .ba-handle .ba-grip { box-shadow: 0 0 0 4px rgba(47,111,208,.6), 0 4px 14px rgba(0,0,0,.3); }

@media (max-width: 900px) {
  .mission-grid, .svc-cards { grid-template-columns: 1fr; }
  .about-grid, .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-media { min-height: 520px; max-width: 380px; }
  .provide-head { grid-template-columns: 1fr; gap: 18px; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   page: about-us
   ========================================================================== */
.about-grid--rev .about-copy { order: 1; }
.about-grid--rev .about-media { order: 2; }
.about-grid--rev .about-square { left: auto; right: 0; }
.about-grid--rev .about-img-tall { right: auto; left: 0; }
.about-grid--rev .about-img-small { left: auto; right: 14px; }
.about-grid--rev .about-badge { left: auto; right: 0; text-align: right; }
@media (max-width: 900px) {
  .about-grid--rev .about-copy { order: 2; }
  .about-grid--rev .about-media { order: 1; max-width: 380px; }
}

/* ==========================================================================
   page: services
   ========================================================================== */
.svc-row--alt { background: var(--light-band); }
.svc-row-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.svc-text .section-title { margin-bottom: .5em; }
.svc-checks { list-style: none; margin: 18px 0 26px; padding: 0; }
.svc-checks li { position: relative; padding-left: 30px; margin-bottom: 14px; font-size: .95rem; color: var(--body); }
.svc-checks li::before { content: "\2714"; position: absolute; left: 0; top: 0; color: var(--blue); font-weight: 700; }
.svc-checks b { color: var(--ink); }
.svc-photo img { width: 100%; height: 440px; object-fit: cover; border: 5px solid var(--blue); border-radius: 22px; box-shadow: var(--shadow); background: #fff; padding: 6px; }
@media (max-width: 900px) {
  .svc-row-grid { grid-template-columns: 1fr; gap: 32px; }
  .svc-row-grid--rev .svc-photo { order: 2; }
  .svc-row-grid--rev .svc-text { order: 1; }
}

/* ==========================================================================
   page: our-recent-work
   ========================================================================== */
.work-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.work-item { margin: 0; position: relative; overflow: hidden; box-shadow: var(--shadow-sm); }
.work-item img { width: 100%; aspect-ratio: 1 / 1; height: auto; object-fit: cover; transition: transform .5s ease; }
.work-item:hover img { transform: scale(1.06); }
.work-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; color: #fff;
  font-family: var(--head-font); font-weight: 600; font-size: .85rem;
  padding: 22px 14px 12px; background: linear-gradient(transparent, rgba(0,0,0,.6));
}
@media (max-width: 900px) { .work-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .work-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   page: contact
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-cards { margin: 26px 0; display: grid; gap: 18px; }
.contact-card { display: flex; align-items: center; gap: 16px; }
.cc-icon { flex: none; width: 52px; height: 52px; border-radius: 50%; background: var(--blue); display: flex; align-items: center; justify-content: center; }
.cc-icon svg { width: 22px; height: 22px; fill: #fff; }
.cc-title { display: block; font-family: var(--head-font); font-weight: 700; color: var(--blue-head); }
.contact-card a { color: var(--ink); word-break: break-word; }
.contact-form-wrap { background: #fff; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cf-field { margin-bottom: 18px; }
.cf-field label { display: block; font-family: var(--head-font); font-size: .9rem; color: var(--ink); margin-bottom: 6px; }
.cf-field input, .cf-field textarea {
  width: 100%; border: 1px solid #cfcfcf; background: #fafbfc; border-radius: 4px;
  padding: 11px 12px; font-family: var(--body-font); font-size: .95rem; color: var(--ink);
}
.cf-field input:focus, .cf-field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(36,86,166,.12); }
.cf-field textarea { resize: vertical; }
.contact-form .btn-primary { border: 0; }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
}
