/*
Theme Name: Revolution Ceramics & Painting
Theme URI: https://revolutionceramicsandpaintinginc.com
Author: Revolution Ceramics and Painting Inc
Description: Multi-page business theme for Revolution Ceramics and Painting Inc, Lawrence MA. Includes Home, Services, Projects, About, Contact and a working Quote form page. Editable through Appearance > Customize.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: revolution-ceramics
*/


/* =========================================================
   [1] BRAND SETTINGS — change colours, fonts and sizes here
   ========================================================= */
:root{
  --navy:        #231F6C;   /* main brand colour, from the logo */
  --navy-dark:   #17143F;   /* header / footer background */
  --navy-soft:   #EDECF7;   /* very light navy tint */
  --accent:      #C9A227;   /* small gold accent, used sparingly */
  --white:       #FFFFFF;
  --bg:          #F7F7FA;   /* light page background */
  --text:        #23232B;   /* body text */
  --text-soft:   #5C5C68;   /* secondary text */
  --border:      #E3E3EA;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --wrap: 1140px;           /* page max width */
  --radius: 8px;

  /* Button sizing — lower these numbers to make every button smaller */
  --btn-pad-y: 11px;
  --btn-pad-x: 20px;
  --btn-size: 14.5px;

  --header-h: 68px;         /* header height, used by the mobile menu */
}


/* =========================================================
   [2] BASE
   ========================================================= */
*{ box-sizing: border-box; }

html{ overflow-x: clip; scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4{ margin: 0 0 14px; font-weight: 700; line-height: 1.22; letter-spacing: -0.01em; }
h1{ font-size: 42px; }
h2{ font-size: 31px; }
h3{ font-size: 21px; }

p{ margin: 0 0 14px; color: var(--text-soft); }
a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; height: auto; display: block; }
ul,ol{ margin: 0 0 14px; padding-left: 20px; }

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

.section{ padding: 76px 0; }
.section--tint{ background: var(--bg); }

.section-head{
  max-width: 640px;
  margin: 0 auto 44px;
  text-align: center;
}
.section-head p{ font-size: 16.5px; }

.eyebrow{
  display: block;
  color: var(--navy);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.4px;
  margin-bottom: 8px;
}

.lead{ font-size: 17px; }


/* =========================================================
   [3] BUTTONS — sizes come from the variables in [1]
   ========================================================= */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  border-radius: var(--radius);
  font-weight: 650;
  font-size: var(--btn-size);
  line-height: 1.2;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn svg{ width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; flex: none; }

.btn-primary{ background: var(--navy); color: var(--white); }
.btn-primary:hover{ background: var(--navy-dark); }

.btn-light{ background: var(--white); color: var(--navy); }
.btn-light:hover{ background: var(--navy-soft); }

.btn-ghost{ background: transparent; color: var(--white); border-color: rgba(255,255,255,.45); }
.btn-ghost:hover{ border-color: var(--white); background: rgba(255,255,255,.08); }

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

.btn-row{ display: flex; flex-wrap: wrap; gap: 10px; }


/* =========================================================
   [4] HEADER — logo only, no wording
   ========================================================= */
.site-header{
  background: var(--navy-dark);
  position: sticky;
  top: 0;
  z-index: 200;
}

.header-bar{
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 9px 22px;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* --- logo --- */
.site-logo{ display: flex; align-items: center; flex: none; }
.site-logo img{ height: 50px; width: auto; }

/* --- desktop navigation --- */
.main-nav ul{ list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 26px; }
.main-nav a{
  color: rgba(255,255,255,.88);
  font-weight: 500;
  font-size: 14.5px;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover{ color: var(--white); }
.main-nav .current-menu-item > a,
.main-nav .current_page_item > a{ color: var(--white); border-bottom-color: var(--accent); }

/* --- right hand side --- */
.header-actions{ display: flex; align-items: center; gap: 8px; }

/* square icon buttons — visible on phones and tablets */
.icon-btn{
  width: 42px;
  height: 42px;
  display: none;               /* switched on in the mobile block [12] */
  align-items: center;
  justify-content: center;
  background: var(--navy);
  border: none;
  border-radius: var(--radius);
  color: var(--white);
  cursor: pointer;
  padding: 0;
}
.icon-btn svg{ width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.icon-btn:hover{ background: #2E29891A; background: #2E2989; }

/* hamburger */
.menu-toggle{
  width: 42px; height: 42px;
  display: none;               /* switched on in the mobile block [12] */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.menu-toggle span{
  display: block;
  width: 24px; height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(7.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7.5px) rotate(-45deg); }


/* =========================================================
   [5] HOME HERO
   ========================================================= */
.hero{
  background: var(--navy);
  color: var(--white);
  padding: 66px 0;
  overflow: hidden;
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 44px;
  align-items: center;
}
.hero h1{ color: var(--white); font-size: 42px; margin-bottom: 12px; }
.hero .hero-eyebrow{ color: #B9B6E8; }
.hero .hero-tagline{ color: var(--white); font-size: 18px; font-weight: 600; margin-bottom: 12px; }
.hero p{ color: rgba(255,255,255,.82); }
.hero .btn-row{ margin-top: 22px; }

.hero-phone{
  margin: 18px 0 0;
  font-size: 14.5px;
  color: rgba(255,255,255,.72);
}
.hero-phone a{ color: var(--white); font-weight: 700; font-size: 16.5px; }
.hero-phone a:hover{ color: #B9B6E8; }

.hero-photo{
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(0,0,0,.32);
}
.hero-photo img{ width: 100%; display: block; }


/* =========================================================
   [6] TRUST STRIP (the row of ticks under the hero)
   ========================================================= */
.trust-strip{
  background: var(--navy-dark);
  color: rgba(255,255,255,.85);
  padding: 15px 0;
  font-size: 13.5px;
  font-weight: 600;
}
.trust-strip .wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 30px;
  text-align: center;
}
.trust-strip span::before{ content: "\2713"; color: var(--accent); margin-right: 7px; font-weight: 700; }


/* =========================================================
   [7] CARDS — services, why-us, project tiles
   ========================================================= */
.card-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card-grid--2{ grid-template-columns: repeat(2, 1fr); }

.card{
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
}
.card h3{ margin-bottom: 8px; }
.card p{ margin-bottom: 16px; font-size: 15px; }
.card .card-link{
  margin-top: auto;
  color: var(--navy);
  font-weight: 650;
  font-size: 14.5px;
}
.card .card-link::after{ content: " \2192"; }

.card-icon{
  width: 46px; height: 46px;
  border-radius: 10px;
  background: var(--navy-soft);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.card-icon svg{ width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }


/* =========================================================
   [8] BEFORE / AFTER SLIDER
   ========================================================= */
.ba-row{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.ba-slider{
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  user-select: none;
  touch-action: pan-y;
  background: var(--bg);
  cursor: ew-resize;
}
.ba-slider img{
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-before-clip{
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
}
.ba-before-clip img{ width: auto; }
.ba-tag{
  position: absolute;
  top: 12px;
  background: rgba(23,20,63,.82);
  color: var(--white);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 10px;
  border-radius: 4px;
  pointer-events: none;
}
.ba-tag-before{ left: 12px; }
.ba-tag-after{ right: 12px; }
.ba-handle{
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--white);
  transform: translateX(-50%);
  pointer-events: none;
}
.ba-handle-circle{
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  box-shadow: 0 3px 12px rgba(0,0,0,.3);
}
.ba-caption{
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  color: var(--text-soft);
}


/* =========================================================
   [9] PROJECT GALLERY GRID
   ========================================================= */
.photo-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.photo-grid a,
.photo-grid figure{ margin: 0; border-radius: 10px; overflow: hidden; display: block; }
.photo-grid img{
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .3s ease;
}
.photo-grid a:hover img{ transform: scale(1.04); }

.center-row{ display: flex; justify-content: center; margin-top: 34px; }


/* =========================================================
   [10] CALL-TO-ACTION BANDS AND CARDS
   ========================================================= */
.cta-band{
  background: var(--navy);
  color: var(--white);
  padding: 50px 0;
}
.cta-band .wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.cta-band h2{ color: var(--white); font-size: 27px; margin-bottom: 6px; }
.cta-band p{ color: rgba(255,255,255,.82); margin: 0; max-width: 52ch; }

.cta-card{
  margin-top: 40px;
  background: var(--navy-soft);
  border: 1px solid #DAD8EF;
  border-radius: 12px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-card h3{ margin-bottom: 4px; }
.cta-card p{ margin: 0; }


/* =========================================================
   [11] PAGE HEADER (top band on inner pages)
   ========================================================= */
.page-head{
  background: var(--navy);
  color: var(--white);
  padding: 52px 0;
}
.page-head h1{ color: var(--white); font-size: 36px; margin-bottom: 8px; }
.page-head p{ color: rgba(255,255,255,.82); margin: 0; max-width: 60ch; }

.breadcrumb{
  font-size: 13px;
  color: rgba(255,255,255,.6);
  margin-bottom: 10px;
}
.breadcrumb a:hover{ color: var(--white); }


/* =========================================================
   [12] QUOTE FORM
   ========================================================= */
.quote-layout{
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 40px;
  align-items: start;
}

.quote-form{
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}
.field-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field{ margin-bottom: 16px; display: flex; flex-direction: column; }
.field label{
  font-weight: 600;
  font-size: 13.5px;
  margin-bottom: 6px;
  color: var(--text);
}
.field .req{ color: #C0392B; }
.field input,
.field select,
.field textarea{
  font-family: var(--font);
  font-size: 15px;
  color: var(--text);
  padding: 11px 13px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  width: 100%;
  transition: border-color .18s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus{ outline: none; border-color: var(--navy); }
.field textarea{ min-height: 130px; resize: vertical; }
.field .hint{ font-size: 12.5px; color: var(--text-soft); margin: 6px 0 0; }

.check-list{ display: flex; flex-wrap: wrap; gap: 10px 18px; }
.check-list label{
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 14.5px;
  margin: 0;
  cursor: pointer;
}
.check-list input{ width: 17px; height: 17px; accent-color: var(--navy); margin: 0; }

/* honeypot — hidden from people, catches spam bots */
.hp-field{ position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form-notice{
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 22px;
  font-size: 14.5px;
  font-weight: 600;
}
.form-notice.is-ok{ background: #E8F6EC; color: #1E6B36; border: 1px solid #BFE4CB; }
.form-notice.is-error{ background: #FDEDEC; color: #A93226; border: 1px solid #F5C6C2; }

.quote-aside{
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}
.quote-aside h3{ font-size: 17px; }
.quote-aside ul{ list-style: none; padding: 0; margin: 0 0 18px; }
.quote-aside li{
  font-size: 14.5px;
  color: var(--text-soft);
  padding-left: 22px;
  position: relative;
  margin-bottom: 9px;
}
.quote-aside li::before{
  content: "\2713";
  position: absolute; left: 0;
  color: var(--navy);
  font-weight: 700;
}


/* =========================================================
   [13] CONTACT BLOCKS
   ========================================================= */
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.info-card{
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}
.info-item{ display: flex; gap: 14px; margin-bottom: 20px; }
.info-item .ico{
  width: 40px; height: 40px; flex: none;
  border-radius: 9px;
  background: var(--navy-soft);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.info-item .ico svg{ width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.info-item .label{ font-size: 12px; text-transform: uppercase; letter-spacing: .9px; color: var(--text-soft); font-weight: 700; margin-bottom: 2px; }
.info-item .value{ font-size: 15.5px; font-weight: 600; color: var(--text); }
.info-item a.value:hover{ color: var(--navy); }

.social-row{ display: flex; gap: 10px; margin: 22px 0; }
.social-row a{
  width: 38px; height: 38px;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
}
.social-row a:hover{ border-color: var(--navy); background: var(--navy-soft); }
.social-row svg{ width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; }

.map-box{
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 340px;
}
.map-box iframe{ width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }


/* =========================================================
   [14] FOOTER
   ========================================================= */
.site-footer{
  background: var(--navy-dark);
  color: rgba(255,255,255,.72);
  padding: 48px 0 22px;
  font-size: 14.5px;
}
.footer-cols{
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 34px;
  padding-bottom: 30px;
}
.footer-cols h4{ color: var(--white); font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.footer-cols ul{ list-style: none; padding: 0; margin: 0; }
.footer-cols li{ margin-bottom: 9px; }
.footer-cols a:hover{ color: var(--white); }
.footer-logo img{ height: 62px; width: auto; margin-bottom: 14px; }

.footer-base{
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13.5px;
}


/* =========================================================
   [15] STICKY MOBILE CALL BAR
   ========================================================= */
.mobile-bar{
  display: none;               /* switched on in the mobile block [17] */
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 300;
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,.14);
  padding: 8px 12px;
  gap: 8px;
}
.mobile-bar .btn{ flex: 1; padding: 11px 12px; font-size: 14px; }


/* =========================================================
   [16] BLOG / GENERIC CONTENT
   ========================================================= */
.entry{ max-width: 760px; }
.entry p{ font-size: 16.5px; }
.entry h2, .entry h3{ margin-top: 30px; }
.post-list article{ padding: 24px 0; border-bottom: 1px solid var(--border); }
.post-list h2{ font-size: 22px; margin-bottom: 6px; }
.post-meta{ font-size: 13px; color: var(--text-soft); margin-bottom: 8px; }
.pagination{ display: flex; gap: 8px; flex-wrap: wrap; margin-top: 30px; }
.pagination .page-numbers{ padding: 8px 13px; border: 1px solid var(--border); border-radius: var(--radius); font-weight: 600; font-size: 14px; }
.pagination .current{ background: var(--navy); color: var(--white); border-color: var(--navy); }

.screen-reader-text{ position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); }
.skip-link{ position: absolute; left: -9999px; }
.skip-link:focus{ left: 16px; top: 16px; position: fixed; z-index: 999; background: var(--navy); color: #fff; padding: 10px 16px; width: auto; height: auto; clip: auto; }
.alignleft{ float: left; margin: 0 22px 14px 0; }
.alignright{ float: right; margin: 0 0 14px 22px; }
.aligncenter{ display: block; margin: 0 auto 14px; }


/* =========================================================
   [17] TABLET  (up to 900px)
   ========================================================= */
@media (max-width: 900px){

  h1{ font-size: 33px; }
  h2{ font-size: 26px; }

  .section{ padding: 56px 0; }

  /* nav turns into a slide-down panel */
  .main-nav{
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--navy-dark);
    border-top: 1px solid rgba(255,255,255,.12);
    padding: 8px 22px 22px;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform .22s ease, opacity .22s ease, visibility 0s linear .22s;
  }
  .main-nav.is-open{
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
  }
  .main-nav ul{ flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav li{ border-bottom: 1px solid rgba(255,255,255,.09); }
  .main-nav li:last-child{ border-bottom: none; }
  .main-nav a{ display: block; padding: 14px 2px; font-size: 15.5px; border-bottom: none; }

  .icon-btn,
  .menu-toggle{ display: flex; }

  /* hero stacks, photo first so the picture is seen straight away */
  .hero{ padding: 40px 0 46px; }
  .hero-grid{ grid-template-columns: 1fr; gap: 26px; }
  .hero-photo{ order: -1; }
  .hero h1{ font-size: 32px; }

  .card-grid,
  .card-grid--2{ grid-template-columns: repeat(2, 1fr); }

  .ba-row{ grid-template-columns: 1fr; }

  .photo-grid{ grid-template-columns: repeat(2, 1fr); }

  .quote-layout{ grid-template-columns: 1fr; gap: 26px; }

  .contact-grid{ grid-template-columns: 1fr; }

  .footer-cols{ grid-template-columns: 1fr 1fr; gap: 26px; }

  /* leave room for the sticky bottom bar */
  .mobile-bar{ display: flex; }
  body{ padding-bottom: 62px; }
}


/* =========================================================
   [18] PHONE  (up to 560px)
   ========================================================= */
@media (max-width: 560px){

  body{ font-size: 15.5px; }

  h1{ font-size: 27px; }
  h2{ font-size: 23px; }
  h3{ font-size: 18.5px; }

  .wrap{ padding: 0 16px; }
  .section{ padding: 44px 0; }
  .section-head{ margin-bottom: 30px; }

  /* smaller, tidier buttons on phones */
  :root{
    --btn-pad-y: 10px;
    --btn-pad-x: 16px;
    --btn-size: 14px;
  }

  .site-logo img{ height: 42px; }
  .header-bar{ padding: 8px 16px; }
  .icon-btn{ width: 38px; height: 38px; }
  .icon-btn svg{ width: 18px; height: 18px; }
  .menu-toggle{ width: 38px; height: 38px; }

  .hero{ padding: 30px 0 38px; }
  .hero .hero-tagline{ font-size: 16px; }
  .hero p{ font-size: 15.5px; }
  .hero .btn-row .btn{ flex: 1 1 auto; }

  .trust-strip{ padding: 13px 0; font-size: 12.5px; }
  .trust-strip .wrap{ gap: 8px 18px; }

  .card-grid,
  .card-grid--2{ grid-template-columns: 1fr; gap: 14px; }
  .card{ padding: 22px 20px; }

  .photo-grid{ grid-template-columns: repeat(2, 1fr); gap: 10px; }

  .cta-band{ padding: 38px 0; }
  .cta-band .wrap{ flex-direction: column; text-align: center; }
  .cta-band h2{ font-size: 22px; }
  .cta-band .btn-row{ justify-content: center; width: 100%; }

  .cta-card{ padding: 22px 20px; text-align: center; justify-content: center; }
  .cta-card .btn-row{ justify-content: center; width: 100%; }

  .page-head{ padding: 34px 0; }
  .page-head h1{ font-size: 27px; }

  .quote-form,
  .quote-aside,
  .info-card{ padding: 20px 18px; }
  .field-row{ grid-template-columns: 1fr; gap: 0; }
  /* 16px stops iPhone Safari zooming in when a field is tapped */
  .field input,
  .field select,
  .field textarea{ font-size: 16px; }

  .footer-cols{ grid-template-columns: 1fr; gap: 22px; }
  .footer-base{ flex-direction: column; text-align: center; }
}


/* =========================================================
   [19] MOTION PREFERENCES
   ========================================================= */
@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; }
  html{ scroll-behavior: auto; }
}
