/* ============================================================================
   DingoPlus — modern reskin layer
   Token-driven: child themes override only the :root block below.
   Loaded AFTER the legacy style.css, so these rules intentionally win.
   Desktop-first; mobile rules live in the "RESPONSIVE" section at the bottom.
   ========================================================================== */

/* ---------------------------------------------------------------- TOKENS --
   Default palette = "Heritage" (greenery green + charcoal + warm birch).
   Child themes (Timber / Urban) redefine these custom properties.            */
:root {
  --dp-green:        #88B04B;   /* signature brand green / the "+"            */
  --dp-green-deep:   #5E8A2E;   /* accessible green for links + button text  */
  --dp-green-tint:   #EEF3E2;   /* soft green section bands / badges         */

  --dp-accent:       #88B04B;   /* secondary CTA accent (Timber/Urban shift) */
  --dp-accent-deep:  #5E8A2E;

  --dp-ink:          #2B2E2F;   /* headings                                  */
  --dp-slate:        #4A4F52;   /* body text                                 */
  --dp-muted:        #6B7173;   /* secondary text                            */

  --dp-bg:           #F6F4EF;   /* warm page background                      */
  --dp-surface:      #FFFFFF;   /* cards / raised surfaces                   */
  --dp-line:         #E3E0D8;   /* hairline borders                          */

  --dp-header-bg:    #FFFFFF;
  --dp-header-text:  #2B2E2F;
  --dp-footer-bg:    #2B2E2F;
  --dp-footer-text:  #C9CDCE;

  --dp-banner:       #B23A2E;   /* holiday closure banner                    */

  --dp-font-head: 'Bitter', Georgia, serif;
  --dp-font-body: 'Droid Sans', 'Segoe UI', system-ui, sans-serif;

  --dp-radius:   12px;
  --dp-radius-sm: 8px;
  --dp-shadow:    0 6px 24px rgba(20,22,20,.08);
  --dp-shadow-lg: 0 14px 40px rgba(20,22,20,.14);
  --dp-trans:     .2s ease;
  --dp-container: 1200px;
}

/* ----------------------------------------------------------------- BASE -- */
body {
  background: var(--dp-bg);
  color: var(--dp-slate);
  font-family: var(--dp-font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, .heading, .title {
  font-family: var(--dp-font-head);
  color: var(--dp-ink);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1, .splash .heading { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 700; }
h2, .heading        { font-size: clamp(1.6rem, 2.6vw, 2.25rem); font-weight: 700; }
a       { color: var(--dp-green-deep); transition: color var(--dp-trans); }
a:hover { color: var(--dp-ink); text-decoration: none; }
img     { max-width: 100%; height: auto; }
.section { padding: clamp(48px, 7vw, 96px) 0; }
.container { max-width: var(--dp-container); }

::selection { background: var(--dp-green); color: #fff; }

/* --------------------------------------------------------------- BUTTONS -- */
.btn,
.btn-primary,
.gform_button,
input[type="submit"] {
  display: inline-block;
  font-family: var(--dp-font-body);
  font-weight: 700;
  letter-spacing: .02em;
  border: 0;
  border-radius: var(--dp-radius-sm);
  padding: 14px 30px;
  transition: transform var(--dp-trans), box-shadow var(--dp-trans), background var(--dp-trans);
}
.btn-primary,
.gform_button,
input[type="submit"] {
  background: var(--dp-green) !important;
  color: #fff !important;
  box-shadow: 0 6px 16px rgba(94,138,46,.28);
}
.btn-primary:hover,
.gform_button:hover,
input[type="submit"]:hover {
  background: var(--dp-green-deep) !important;
  transform: translateY(-2px);
  box-shadow: var(--dp-shadow-lg);
  color: #fff !important;
}
.btn-secondary {
  background: transparent !important;
  color: var(--dp-ink) !important;
  border: 2px solid var(--dp-line) !important;
}

/* ---------------------------------------------------------------- HEADER -- */
header {
  background: var(--dp-header-bg);
  box-shadow: 0 2px 14px rgba(20,22,20,.06);
  border-bottom: 1px solid var(--dp-line);
}
header .logo-container img { transition: transform var(--dp-trans); }
header .logo-container a:hover img { transform: scale(1.03); }

/* Primary nav links */
#mainnav .navbar-header > li > a,
#sf-menu a {
  color: var(--dp-header-text);
  font-family: var(--dp-font-body);
  font-weight: 600;
  letter-spacing: .01em;
  position: relative;
  transition: color var(--dp-trans);
}
#mainnav .navbar-header > li > a:hover,
#mainnav .navbar-header > li.current-menu-item > a {
  color: var(--dp-green-deep);
}
/* animated underline accent */
#mainnav .navbar-header > li > a::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 36px; /* sit just under the link text */
  height: 2px; background: var(--dp-green);
  transform: scaleX(0); transform-origin: left; transition: transform var(--dp-trans);
}
#mainnav .navbar-header > li > a:hover::after,
#mainnav .navbar-header > li.current-menu-item > a::after { transform: scaleX(1); }

.menu-new p { color: var(--dp-muted) !important; font-weight: 600; }

/* header utility buttons (search / phone / burger) */
.sm-menu-btns .search-toggle,
.responsive-menu a {
  color: var(--dp-header-text);
  transition: color var(--dp-trans);
}
.sm-menu-btns .search-toggle:hover,
.responsive-menu a:hover { color: var(--dp-green-deep); }
.phone .phone-no { color: var(--dp-green-deep); font-weight: 700; }

/* search bar dropdown */
.search-bar { background: var(--dp-ink); }
.search-bar #s {
  background: transparent; border: 0; border-bottom: 2px solid rgba(255,255,255,.35);
  color: #fff; font-size: 1.25rem;
}
.search-bar #s::placeholder { color: rgba(255,255,255,.6); }
.search-bar .fa, .search-bar .search-close .fa { color: #fff; }

/* ------------------------------------------------------------- HERO/SPLASH */
.splash {
  position: relative;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: clamp(80px, 16vh, 220px) 20px;
}
.splash::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,22,20,.35), rgba(20,22,20,.62));
}
.splash .inner { position: relative; z-index: 2; max-width: 860px; margin: 0 auto; }
.splash .heading { color: #fff; text-shadow: 0 2px 18px rgba(0,0,0,.35); margin-bottom: .4em; }
.splash .inner > div { font-size: 1.2rem; color: rgba(255,255,255,.92); margin-bottom: 1.6em; }
.splash .btn-primary { padding: 16px 40px; font-size: 1.05rem; }

/* --------------------------------------------------------- QUOTE SLIDER --- */
.slider {
  background: var(--dp-green-tint);
  border-bottom: 1px solid var(--dp-line);
  padding: 40px 0;
}
.slider .glide__slide p {
  font-family: var(--dp-font-head);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  color: var(--dp-ink);
  max-width: 900px; margin: 0 auto;
}
.glide__bullet { background: rgba(43,46,47,.25) !important; }
.glide__bullet.glide__bullet--active { background: var(--dp-green) !important; }

/* ------------------------------------------------------------- SERVICES --- */
.services .blurb { max-width: 760px; margin: 0 auto clamp(32px,5vw,56px); }
.services .subheading { color: var(--dp-muted); font-size: 1.1rem; }
.service {
  padding: 32px 24px;
  background: var(--dp-surface);
  border: 1px solid var(--dp-line);
  border-radius: var(--dp-radius);
  box-shadow: var(--dp-shadow);
  transition: transform var(--dp-trans), box-shadow var(--dp-trans);
  margin-bottom: 24px;
}
.service:hover { transform: translateY(-6px); box-shadow: var(--dp-shadow-lg); }
.service .icon {
  width: 92px; height: 92px; margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  background: var(--dp-green-tint); border-radius: 50%;
}
.service .icon img { max-width: 52px; }
.service .title { margin: .2em 0 .5em; font-size: 1.25rem; }

/* ------------------------------------------------------------- PRODUCTS --- */
.products { background: var(--dp-surface); }
.product-container { display: flex; flex-wrap: wrap; }
.product {
  margin-bottom: 30px;
}
.product > a, .product { display: block; }
.product .image {
  height: 220px; background-size: cover; background-position: center;
  border-radius: var(--dp-radius) var(--dp-radius) 0 0;
  transition: transform var(--dp-trans);
}
.product {
  border: 1px solid var(--dp-line);
  border-radius: var(--dp-radius);
  overflow: hidden;
  background: var(--dp-surface);
  box-shadow: var(--dp-shadow);
  transition: transform var(--dp-trans), box-shadow var(--dp-trans);
}
.product:hover { transform: translateY(-6px); box-shadow: var(--dp-shadow-lg); }
.product:hover .image { transform: scale(1.04); }
.product .content { padding: 22px; }
.product .content .title { font-size: 1.2rem; color: var(--dp-ink); }
.product .content .title::after {
  content: " \2192"; color: var(--dp-green); font-weight: 700;
}

/* ------------------------------------------------- GENERIC PAGE CONTENT --- */
.parent.container { padding-top: 48px; padding-bottom: 64px; }
.entry-content {
  background: var(--dp-surface);
  border: 1px solid var(--dp-line);
  border-radius: var(--dp-radius);
  box-shadow: var(--dp-shadow);
  padding: clamp(24px, 4vw, 56px);
}
.entry-content h1, .entry-content h2, .entry-content h3 { margin-top: 1.4em; }
.entry-content a { text-decoration: underline; text-underline-offset: 3px; }
blockquote {
  border-left: 4px solid var(--dp-green);
  background: var(--dp-green-tint);
  border-radius: 0 var(--dp-radius-sm) var(--dp-radius-sm) 0;
  color: var(--dp-ink);
}

/* ----------------------------------------------------------- DATA TABLES -- */
.tablepress { border: 1px solid var(--dp-line); border-radius: var(--dp-radius); overflow: hidden; }
.tablepress thead th, .tablepress tfoot th {
  background: var(--dp-ink) !important; color: #fff !important;
  font-family: var(--dp-font-body); font-weight: 700;
}
.tablepress tbody td { border-top: 1px solid var(--dp-line); }
.tablepress tbody tr:nth-child(odd) td { background: var(--dp-green-tint) !important; }
.tablepress tbody tr:hover td { background: #fff7ea !important; }

/* ---------------------------------------------------------- GRAVITY FORMS - */
.gform_wrapper input[type="text"],
.gform_wrapper input[type="email"],
.gform_wrapper input[type="tel"],
.gform_wrapper textarea,
.gform_wrapper select {
  border: 1px solid var(--dp-line) !important;
  border-radius: var(--dp-radius-sm) !important;
  padding: 12px 14px !important;
  background: var(--dp-surface);
  transition: border-color var(--dp-trans), box-shadow var(--dp-trans);
}
.gform_wrapper input:focus,
.gform_wrapper textarea:focus,
.gform_wrapper select:focus {
  border-color: var(--dp-green) !important;
  box-shadow: 0 0 0 3px var(--dp-green-tint) !important;
  outline: none;
}
.gform_wrapper label { color: var(--dp-ink); font-weight: 600; }
/* invisible Turnstile placeholder — collapses when nothing rendered */
.cf-turnstile { margin: 10px 0; }
.cf-turnstile:empty { display: none; }

/* ----------------------------------------------------------------- FOOTER - */
footer .contact.section {
  background-color: var(--dp-ink);
  background-blend-mode: multiply;
  background-size: cover; background-position: center;
  color: #fff;
}
footer .contact .title { color: #fff; }
footer .contact .text { color: rgba(255,255,255,.8); }
/* Business location map band (between contact CTA and footer) — kept deliberately short */
.dp-map { line-height: 0; }
.dp-map iframe { display: block; width: 100%; height: 280px; border: 0; }
@media (max-width: 600px) { .dp-map iframe { height: 200px; } }

.footer-menu {
  background: var(--dp-footer-bg);
  color: var(--dp-footer-text);
  padding: clamp(48px, 6vw, 72px) 0 0;
}
.dp-foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
/* Brand panel sits on the theme's LIGHT bg so the dark logo doesn't get lost on the
   dark footer. Text inside flips to dark for contrast. */
.dp-foot-brand {
  background: var(--dp-bg);
  color: var(--dp-ink);
  border-radius: var(--dp-radius);
  padding: 28px;
  align-self: start;
}
.dp-foot-brand .dp-foot-logo { display: inline-block; margin-bottom: 18px; }
.dp-foot-brand .dp-foot-logo img { max-height: 64px; width: auto; }
.dp-foot-brand .dp-foot-blurb { color: var(--dp-slate); opacity: 1; }
.dp-foot-brand .dp-foot-blurb a { color: var(--dp-green-deep); }
.dp-foot-brand .dp-foot-contact li { color: var(--dp-slate); }
.dp-foot-brand .dp-foot-contact a { color: var(--dp-slate); }
.dp-foot-brand .dp-foot-contact a:hover,
.dp-foot-brand .dp-foot-blurb a:hover { color: var(--dp-green-deep); }

/* Trading hours — proper day / time rows inside the light brand panel */
.dp-foot-hours { margin-top: 18px; }
.dp-foot-hours .dp-hours-title { display: block; font-weight: 700; font-size: 16px; color: var(--dp-ink); margin-bottom: 8px; }
.dp-foot-hours .dp-hours-title i { color: var(--dp-green); margin-right: 6px; }
.dp-foot-hours ul { list-style: none; margin: 0; padding: 0; max-width: 300px; }
.dp-foot-hours li { display: flex; justify-content: space-between; gap: 16px; padding: 5px 0; font-size: 15px; border-bottom: 1px dashed rgba(0,0,0,.10); }
.dp-foot-hours li:last-child { border-bottom: 0; }
.dp-foot-hours li span:first-child { color: var(--dp-ink); font-weight: 600; }
.dp-foot-hours li span:last-child { color: var(--dp-slate); }
.dp-foot-hours li.closed span:last-child { color: var(--dp-muted); font-style: italic; }

/* Accepted-cards — FontAwesome icons (local, no CDN), inside the light brand panel */
.dp-foot-cards { margin: 18px 0 2px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.dp-foot-cards .dp-cards-label { font-size: 13px; letter-spacing: .05em; text-transform: uppercase; color: var(--dp-muted); }
.dp-foot-cards .dp-cards-icons { display: inline-flex; gap: 12px; }
.dp-foot-cards .dp-cards-icons i { font-size: 30px; line-height: 1; color: var(--dp-ink); }
/* Footer text — sized in px and kept high-contrast so it's clearly readable on dark. */
.dp-foot-blurb,
.dp-foot-blurb p,
.dp-foot-blurb a { font-size: 16px; line-height: 1.75; }
.dp-foot-blurb { opacity: .95; margin-bottom: 18px; max-width: 360px; }
.dp-foot-blurb a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.dp-foot-blurb a:hover { color: var(--dp-green); }
.dp-foot-contact { list-style: none; padding: 0; margin: 0; }
.dp-foot-contact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: 16px; line-height: 1.5; }
.dp-foot-contact li i { color: var(--dp-green); margin-top: 5px; width: 16px; text-align: center; flex: 0 0 16px; }
.dp-foot-contact a { color: var(--dp-footer-text); }
.dp-foot-contact a:hover { color: var(--dp-green); }

.dp-foot-h {
  font-family: var(--dp-font-body);
  font-size: 15px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: #fff; margin: 0 0 18px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.dp-foot-col ul { list-style: none; padding: 0; margin: 0; }
.dp-foot-col li { margin-bottom: 13px; }
.dp-foot-col a {
  color: var(--dp-footer-text); opacity: .95; font-size: 16px; line-height: 1.4;
  transition: color var(--dp-trans), opacity var(--dp-trans), padding var(--dp-trans);
}
.dp-foot-col a:hover { color: var(--dp-green); opacity: 1; padding-left: 4px; }

.dp-foot-bottom {
  border-top: 1px solid rgba(255,255,255,.14);
  padding: 22px 0;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px;
}
.dp-foot-copy { opacity: .9; font-size: 15px; }
.dp-foot-credit { font-size: 15px; }
.dp-foot-credit a { color: var(--dp-footer-text); opacity: .9; }
.dp-foot-credit a:hover { color: var(--dp-green); opacity: 1; }

@media (max-width: 991px) {
  .dp-foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .dp-foot-brandcol { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .dp-foot-grid { grid-template-columns: 1fr; }
  .dp-foot-bottom { flex-direction: column; align-items: flex-start; }
}

/* Return-to-top button (right side; preview tab sits mid-height so no clash) */
#dp-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 1200;
  width: 46px; height: 46px; padding: 0; border: 0; border-radius: 50%;
  background: var(--dp-green); color: #fff; cursor: pointer;
  box-shadow: var(--dp-shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity var(--dp-trans), transform var(--dp-trans), background var(--dp-trans), visibility var(--dp-trans);
}
#dp-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
#dp-top:hover { background: var(--dp-green-deep); transform: translateY(-3px); }
#dp-top i { font-size: 1.1rem; line-height: 46px; }
@media (max-width: 600px) { #dp-top { right: 16px; bottom: 16px; } }

/* holiday closure banner */
#msg-banner.xmas-close-header {
  background: var(--dp-banner);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,.2);
}
#msg-banner .close-xmas { color: rgba(255,255,255,.9); }

/* ============================================================== RESPONSIVE
   Explicit Desktop vs Mobile per the brief. Breakpoints mirror the theme's
   Bootstrap 3 grid: <=991 tablet, <=767 mobile.                              */

/* Tablet ----------------------------------------------------------------- */
@media (max-width: 991px) {
  .section { padding: 56px 0; }
  .splash { padding: 96px 18px; }
  .service { margin-bottom: 20px; }
}

/* Mobile ----------------------------------------------------------------- */
@media (max-width: 767px) {
  body { font-size: 15px; }
  h1, .splash .heading { font-size: 2rem; }
  .splash { padding: 72px 16px; }
  .splash .inner > div { font-size: 1.05rem; }
  .btn-primary, .gform_button, input[type="submit"] { width: 100%; text-align: center; padding: 15px 20px; }
  .splash .btn-primary { width: auto; }
  .service, .product { margin-left: auto; margin-right: auto; }
  .product .image { height: 190px; }
  .entry-content { padding: 22px 18px; }
  .footer-menu { text-align: center; padding: 40px 16px; }
  #footernav { margin-top: 24px; }
  /* full-width tap targets in the mobile nav */
  #sf-menu .navbar-header > li > a { padding: 14px 18px; border-bottom: 1px solid var(--dp-line); }
  #mainnav .navbar-header > li > a::after { display: none; }
  .tablepress { display: block; overflow-x: auto; }   /* horizontal scroll for wide spec tables */
}

/* Fine print / very small phones ----------------------------------------- */
@media (max-width: 480px) {
  .splash .heading { font-size: 1.7rem; }
  .service .icon { width: 76px; height: 76px; }
}

/* Reduced motion ---------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

/* ========================================================== TOP UTILITY BAR
   Scroll-away dark bar (address + hours), centred, pinned above the fixed
   header so it's isolated from the menu. Slides away once the user scrolls.    */
:root { --dp-topbar-h: 38px; --dp-header-h: 95px; } /* header shrunk (125 → 110 → 95) */
#dp-topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  height: var(--dp-topbar-h);
  background: var(--dp-ink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; line-height: 1; padding: 0 16px;
  white-space: nowrap; overflow: hidden;
  transition: transform .28s ease;
}
#dp-topbar i { color: var(--dp-green); margin-right: 6px; }
#dp-topbar .dp-tb-sep { opacity: .4; margin: 0 12px; }
#dp-topbar a { color: #fff; }

#dp-topbar .dp-tb-msg { font-weight: 600; text-overflow: ellipsis; overflow: hidden; }
#dp-topbar .dp-tb-msg a { color: var(--dp-green); text-decoration: underline; }

/* Desktop header shrink (~15px) + nav re-alignment — always on */
@media (min-width: 1200px) {
  /* Header is 10px taller than the link line-box, so that +10px lands as room UNDER the menu. */
  body header { height: calc(var(--dp-header-h) + 10px); }
  #sf-navigation li a { line-height: var(--dp-header-h); }    /* link line-box height (the +10 sits below it) */
  #sf-navigation li .sub-menu { top: calc(var(--dp-header-h) + 10px); }
  .logo-container { margin-top: 27px !important; }            /* lift logo ~25px off the top (was 52.5px) */
}

/* Base offset: just the (shrunk) header height. No holiday = no top bar, no shift. */
body { padding-top: var(--dp-header-h) !important; }
@media (max-width: 1199px) { body { padding-top: 85px !important; } }
@media (max-width: 480px)  { body { padding-top: 65px !important; } }

/* Holiday bar present: header drops by the bar height; padding grows to match. */
body.dp-holiday header { top: var(--dp-topbar-h); transition: top .28s ease; }
body.dp-holiday { padding-top: calc(var(--dp-header-h) + var(--dp-topbar-h)) !important; }
@media (max-width: 1199px) { body.dp-holiday { padding-top: calc(85px + var(--dp-topbar-h)) !important; } }
@media (max-width: 480px)  { body.dp-holiday { padding-top: calc(65px + var(--dp-topbar-h)) !important; } }

/* Desktop body offset includes the +10px under-menu room (ordered after the base rules to win). */
@media (min-width: 1200px) {
  body { padding-top: calc(var(--dp-header-h) + 10px) !important; }
  body.dp-holiday { padding-top: calc(var(--dp-header-h) + 10px + var(--dp-topbar-h)) !important; }
}

/* scrolled: holiday bar slides up out of view, header rides to the very top */
html.dp-up #dp-topbar { transform: translateY(-100%); }
html.dp-up body.dp-holiday header { top: 0; }

/* phones: drop the hours, keep the address centred */
@media (max-width: 600px) {
  #dp-topbar { font-size: 12px; }
  #dp-topbar .dp-tb-sep, #dp-topbar .dp-tb-hours { display: none; }
}

/* ============================================================== CONTACT DIET
   Trim the footer contact form's vertical bulk a touch (padding + textarea).   */
.contact.section { padding-top: clamp(34px, 4.5vw, 58px); padding-bottom: clamp(34px, 4.5vw, 58px); }
.contact .titles { margin-bottom: 18px; }
.form-override .gform_wrapper .gfield { margin-top: 12px !important; }
.form-override .gform_wrapper input[type="text"],
.form-override .gform_wrapper input[type="email"],
.form-override .gform_wrapper input[type="tel"],
.form-override .gform_wrapper textarea { padding: 10px 12px !important; }
.form-override .gform_wrapper textarea { min-height: 92px !important; height: 92px !important; }

/* Modernised contact form (sits on the dark contact section) */
.contact .text { color: rgba(255,255,255,.66); max-width: 720px; margin: 0 auto 24px; font-size: 1rem; line-height: 1.7; }
.contact .text p { margin: 0; }
.form-override { max-width: 760px; margin: 0 auto; text-align: left; }
.form-override .gform_wrapper .gform_fields { grid-row-gap: 14px; grid-column-gap: 20px; }
.form-override .gform_wrapper .gfield { margin-top: 0 !important; } /* rely on grid gap, not margins */
.form-override .gform_wrapper .gfield_label { color: #fff; font-weight: 600; margin-bottom: 6px; }
.form-override .gform_wrapper .gfield_required_asterisk { color: var(--dp-green); }
.form-override .gform_wrapper .gfield_description { color: rgba(255,255,255,.6); font-size: 13px; padding-top: 4px; }
.form-override .gform_wrapper .ginput_counter,
.form-override .gform_wrapper .charleft { display: none !important; } /* hide "X of N max characters" */
.form-override .gform_wrapper .gform_footer { margin-top: 18px; justify-content: center; }
.form-override .gform_wrapper .gform_footer input[type="submit"] { width: auto; min-width: 240px; }

/* ========================================================= HERO TRUST + PARALLAX
   Address + hours now live in the hero "trust" band (the slider strip under the
   hero), and the hero image gets a parallax effect on desktop.                   */
.dp-hero-trust {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 6px 16px; color: var(--dp-ink); font-weight: 600; font-size: .95rem;
  margin: 0 0 16px;
}
.dp-hero-trust i { color: var(--dp-green-deep); margin-right: 6px; }
.dp-hero-trust .dp-trust-sep { opacity: .4; }
@media (max-width: 600px) {
  .dp-hero-trust { font-size: .85rem; gap: 4px 10px; }
  .dp-hero-trust .dp-trust-sep { display: none; }
}

/* Parallax hero — desktop only (background-attachment:fixed is janky on touch/iOS) */
@media (min-width: 992px) and (hover: hover) {
  .splash { background-attachment: fixed; }
}

/* Size the hero so it + the trust badges fit one desktop HD viewport, holiday bar or not.
   ~100px reserves the trust band (slider padding + badges) just inside the fold. */
@media (min-width: 1200px) {
  .splash {
    min-height: calc(100vh - var(--dp-header-h) - 100px);
    display: flex; flex-direction: column; justify-content: center;
    padding-top: 36px; padding-bottom: 36px;
  }
  body.dp-holiday .splash {
    min-height: calc(100vh - var(--dp-header-h) - var(--dp-topbar-h) - 100px);
  }
}
