/*
Theme Name: PrepUp Homes
Theme URI: https://prepuphomes.com
Description: PrepUp Homes one-pager — concierge pre-listing prep
Version: 1.0.0
Author: PrepUp Homes
*/

/* ── Design Tokens ──────────────────────────────────────────────── */
:root {
  --cream:    #faf4ea;
  --green:    #3f4637;
  --gold:     #c19d53;
  --charcoal: #2B2B2B;
  --tan:      #E4DDD0;
  --white:    #ffffff;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --max-w: 1200px;
  --section-pad: 96px 48px;
}

/* ── Reset ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Utility ────────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
}
.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  text-transform: uppercase;
  line-height: 1;
  color: var(--charcoal);
  margin-bottom: 20px;
}

/* ── LOGO ───────────────────────────────────────────────────────── */
.site-logo   { height: 48px;  width: auto; display: block; }
.hero-logo   { height: 150px; width: auto; display: block; }
.footer-logo { height: 40px;  width: auto; display: block; filter: brightness(0) invert(1); }

/* ── NAV ────────────────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--tan);
  padding: 14px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 1px;
}
.nav-logo .wordmark-prepup {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  text-transform: uppercase;
}
.nav-logo .wordmark-homes {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  opacity: 0.7;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }
.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  opacity: 1 !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.06em !important;
  padding: 10px 22px;
  border-radius: 2px;
  text-transform: uppercase;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--green) !important; }

/* ── BUTTONS ────────────────────────────────────────────────────── */
.btn {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: 2px;
  display: inline-block;
  transition: all 0.2s;
}
.btn-gold     { background: var(--gold);  color: var(--white); }
.btn-gold:hover { background: var(--green); }
.btn-outline  {border: 2px solid var(--cream);color: var(--cream);}
.btn-outline:hover {background: var(--green);color: var(--white);border-color: var(--green);}
.btn-white    { background: var(--white); color: var(--green); }
.btn-white:hover { background: var(--gold); color: var(--white); }
.btn-ghost    { border: 2px solid var(--gold); color: var(--gold); }
.btn-ghost:hover { background: var(--gold); color: var(--white); }

/* ── HERO ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 90vh;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 64px;
  align-items: center;
  padding: 80px 64px;
  background: var(--green);
}
.hero > *:not(.closing-bg-img) { position: relative; z-index: 1; }
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.2rem, 5vw, 5.8rem);
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--white);
  letter-spacing: 0.01em;
}
.hero-sub {
  font-size: 20px;
  line-height: 1.65;
  color: rgba(255,255,255,0.9);
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-right {
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  padding: 40px 36px;
}

.form-heading {
  margin-bottom: 12px;
  font-family: 'Barlow Condensed';
  color: var(--charcoal);
  text-transform: capitalize;
  font-size: 24px;
}
/* hero form overrides */
.hero-right .gform_wrapper .gform_fields {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  gap: 16px !important;
  grid-template-columns: none !important;
}
.hero-right .gform_wrapper .gfield {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}
.hero-right .gform_wrapper .gfield--type-email,
.hero-right .gform_wrapper .gfield--type-phone {
  width: calc(50% - 8px) !important;
}

.hero-right .gform_wrapper .gfield_label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 6px;
}

.hero-right .gform_wrapper input[type="text"],
.hero-right .gform_wrapper input[type="email"],
.hero-right .gform_wrapper input[type="tel"],
.hero-right .gform_wrapper input[type="number"],
.hero-right .gform_wrapper input[type="url"],
.hero-right .gform_wrapper select,
.hero-right .gform_wrapper textarea {
  background: rgba(255,255,255,0.3);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  color: var(--white);
  padding: 13px 16px;
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
}

.hero-right .gform_wrapper input::placeholder,
.hero-right .gform_wrapper textarea::placeholder { color: rgba(255,255,255,0.35); }

.hero-right .gform_wrapper input[type="text"]:focus,
.hero-right .gform_wrapper input[type="email"]:focus,
.hero-right .gform_wrapper input[type="tel"]:focus,
.hero-right .gform_wrapper select:focus,
.hero-right .gform_wrapper textarea:focus {
  background: rgba(255,255,255,0.16);
  border-color: var(--gold);
  outline: none;
}

.hero-right .gform_wrapper .gform_footer { margin-top: 20px; }

.hero-right .gform_wrapper .gform_button,
.hero-right .gform_wrapper input[type="submit"] {
  width: 100%;
  text-align: center;
  background: var(--gold) !important;
  letter-spacing: 0.1em;
  font-size: 0.88rem;
  padding: 14px 24px;
  border-radius: 4px;
}

.hero-right .gform_wrapper .gform_button:hover,
.hero-right .gform_wrapper input[type="submit"]:hover {
  background: #a8852f !important;
}

label.gform-field-label.gform-field-label--type-sub {
    color: rgba(255,255,255,0.85);
}
/* closing form label overrides */
.closing-right .gform_wrapper .gfield_label {
  color: var(--charcoal);
}
.closing-right .gform_wrapper .gfield_required {
  color:var(--green);
}

.closing-right label.gform-field-label.gform-field-label--type-sub {
    color: var(--green);
}

/* ── PROBLEM ────────────────────────────────────────────────────── */
.problem {
  background: var(--green);
  color: var(--white);
  padding: var(--section-pad);
}
.problem-header {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(4.5rem, 11vw, 8rem);
  text-transform: uppercase;
  line-height: 0.88;
  color: var(--white);
  margin-bottom: 56px;
}
.problem-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.problem-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.problem-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}
.problem-col p {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
}

/* ── SOLUTION ───────────────────────────────────────────────────── */
.solution {
  padding: var(--section-pad);
  background: var(--cream);
}
.solution .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.solution-sub {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 32px;
  font-weight: 500;
}
.solution-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.solution-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 1rem;
  line-height: 1.6;
}
.solution-list li::before {
  content: '';
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 0.5em;
}
.solution-list strong { font-weight: 700; }
.solution-visual {
  background: var(--green);
  border-radius: 4px;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 48px;
  text-align: center;
}
.solution-visual .big-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 7rem;
  color: var(--gold);
  line-height: 1;
}
.solution-visual p {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.5;
}

/* ── STATS ──────────────────────────────────────────────────────── */
.stats { background: var(--cream); }
.stat-block {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--tan);
}
.stat-block:last-child { border-bottom: 1px solid var(--tan); }
.stat-chevron {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 160px;
  background: var(--gold);
  clip-path: polygon(0 0, 68% 50%, 0 100%);
  z-index: 0;
}
.stat-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 72px 48px 72px 220px;
}
.stat-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5em, 4.5vw, 3.7rem);
  line-height: 1.1;
  color: var(--charcoal);
  max-width: 480px;
  margin-bottom: 14px;
      text-transform: uppercase;
}
.stat-source {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--charcoal);
  opacity: 0.45;
}

/* ── SERVICES ───────────────────────────────────────────────────── */
.services {
  padding: var(--section-pad);
  background: var(--cream);
  border-top: 1px solid var(--tan);
}
.services-header { margin-bottom: 52px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.tier-card {
  border: 2px solid var(--tan);
  border-radius: 4px;
  padding: 36px 28px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.tier-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}
.tier-card.featured {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}
.tier-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--charcoal);
}
.tier-card.featured .tier-name { color: var(--gold); }
.tier-badge {
  display: inline-block;
  width: fit-content;
  background: var(--gold);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.tier-desc {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--charcoal);
  opacity: 0.75;
}
.tier-card.featured .tier-desc { color: rgba(255,255,255,0.7); opacity: 1; }
.tier-includes {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.tier-card.featured .tier-includes { border-top-color: rgba(255,255,255,0.1); }
.tier-includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  line-height: 1.4;
}
.tier-includes li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05em;
}
.services-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 48px;
  border-top: 1px solid var(--tan);
}
.service-detail { display: flex; flex-direction: column; gap: 8px; }
.service-detail-label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--green);
}
.service-detail p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--charcoal);
  opacity: 0.7;
}

/* ── CTA ────────────────────────────────────────────────────────── */
.cta {
  background: var(--green);
  padding: var(--section-pad);
  text-align: center;
  color: var(--white);
}
.cta .section-heading { color: var(--white); margin-bottom: 16px; }
.cta .hero-actions { justify-content: center; }
.cta-sub {
  font-size: 1.05rem;
  opacity: 0.8;
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.65;
}
.cta-motto {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 36px;
  opacity: 0.85;
}

/* ── FOOTER ─────────────────────────────────────────────────────── */
.site-footer {
  background: #1D2714;
  color: rgba(255,255,255,0.45);
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
}
.footer-wordmark { display: flex; flex-direction: column; gap: 1px; }
.footer-wordmark .wordmark-prepup {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--white);
  text-transform: uppercase;
}
.footer-wordmark .wordmark-homes {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ── HERO BANNER ────────────────────────────────────────────────── */
.hero-banner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  height: 240px;
  margin-bottom: 4px;
  border-top: 5px solid var(--cream);
}
.hero-banner > div:not(.hero-banner-overlay) {
  overflow: hidden;
}
.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 48px;
}
.hero-motto {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  max-width: 900px;
  line-height: 1.2;
}

/* ── STATEMENT ──────────────────────────────────────────────────── */
.statement {
  display: grid;
  grid-template-columns: 70% 30%;
  background: var(--green);
  color: var(--white);
}
.statement-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: var(--section-pad);
}
.statement-image {
  overflow: hidden;
}
.statement-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.statement-heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 6vw, 5.5rem);
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--white);
}
.statement p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
}

/* ── OUR SERVICES ───────────────────────────────────────────────── */
.our-services {
  display: grid;
  grid-template-columns: 70% 30%;
  background: var(--cream);
}
.our-services-content {
  padding: var(--section-pad);
}
.our-services-image {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-self: stretch;
}
.our-services-image img {
  width: 100%;
  flex: 1;
  object-fit: cover;
  display: block;
  min-height: 0;
}
.service-intro {
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 680px;
  margin-bottom: 44px;
  color: var(--charcoal);
  opacity: 0.8;
}
.service-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 44px;
}
.service-col h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}
.service-col ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.service-col li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--charcoal);
}
.service-col li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 0.5em;
}
.service-closing {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--charcoal);
  font-style: italic;
  opacity: 0.75;
  padding-top: 32px;
  border-top: 1px solid var(--tan);
  max-width: 640px;
}

/* ── PROMISES ───────────────────────────────────────────────────── */
.promises {
  background: var(--cream);
  padding: var(--section-pad);
  border-top: 1px solid var(--tan);
}
.promises-heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-transform: uppercase;
  line-height: 1;
  color: var(--charcoal);
  margin-bottom: 48px;
}
.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.promise-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 36px 28px;
  background: var(--white);
  border: 2px solid var(--tan);
  border-radius: 4px;
  transition: border-color 0.2s;
}
.promise-card:hover { border-color: var(--gold); }
.promise-img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 2px;
  image-rendering: auto;
}
.promise-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3.8rem;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.promise-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--charcoal);
  line-height: 1.2;
}
.promise-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--charcoal);
  opacity: 0.65;
}

/* ── CLOSING ────────────────────────────────────────────────────── */
.closing {
  position: relative;
  background: var(--cream);
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 64px;
  padding: var(--section-pad);
  align-items: center;
}
.closing-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  z-index: 0;
}
.closing-left,
.closing-right {
  position: relative;
  z-index: 1;
}
.closing-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.closing-right { }
.stat-body {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--charcoal);
  opacity: 0.75;
}

/* ── GRAVITY FORMS ──────────────────────────────────────────────── */
div#gform_wrapper_1 {
  max-width: 100%;
}
.gform_wrapper * { box-sizing: border-box; }

.gform_wrapper .gform_body { width: 100%; }

.gform_wrapper .gfield {
  margin-bottom: 20px;
  padding: 0;
}

.gform_wrapper .gfield_label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 6px;
  display: block;
}

.gform_wrapper .gfield_required { color: var(--green); margin-left: 2px; }

.gform_wrapper input[type="text"],
.gform_wrapper input[type="email"],
.gform_wrapper input[type="tel"],
.gform_wrapper input[type="number"],
.gform_wrapper input[type="url"],
.gform_wrapper select,
.gform_wrapper textarea {
  width: 100%;
  background: var(--white);
  border: 2px solid var(--tan);
  border-radius: 2px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.gform_wrapper input[type="text"]:focus,
.gform_wrapper input[type="email"]:focus,
.gform_wrapper input[type="tel"]:focus,
.gform_wrapper input[type="number"]:focus,
.gform_wrapper input[type="url"]:focus,
.gform_wrapper select:focus,
.gform_wrapper textarea:focus {
  border-color: var(--gold);
}

.gform_wrapper textarea { min-height: 120px; resize: vertical; }

.gform_wrapper .gform_footer,
.gform_wrapper .gform_page_footer {
  margin-top: 8px;
  padding: 0;
}

.gform_wrapper .gform_button,
.gform_wrapper input[type="submit"] {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: 2px;
  border: none;
  background: var(--gold) !important;
  color: var(--white) !important;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-block;
}

.gform_wrapper .gform_button:hover,
.gform_wrapper input[type="submit"]:hover { background: var(--green) !important; }

.gform_wrapper .validation_error {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #c0392b;
  border: 2px solid #c0392b;
  border-radius: 2px;
  padding: 10px 14px;
  margin-bottom: 20px;
  background: #fdf3f2;
}

.gform_wrapper .gfield_error input,
.gform_wrapper .gfield_error select,
.gform_wrapper .gfield_error textarea { border-color: #c0392b; }

.gform_wrapper .validation_message {
  font-size: 0.8rem;
  color: #c0392b;
  margin-top: 4px;
}

.gform_wrapper .gform_confirmation_message {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--green);
  padding: 24px;
  border: 2px solid var(--gold);
  border-radius: 2px;
  background: var(--cream);
}

/* ── SCROLL ANIMATIONS ──────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 960px) {
  :root { --section-pad: 64px 28px; }
  .container { padding: 0 28px; }

  .site-nav { padding: 14px 28px; }
  .nav-links { display: none; }

  .hero { grid-template-columns: 1fr; padding: 60px 28px; }
  .statement { grid-template-columns: 1fr; }
  .statement-image { height: 300px; }
  .statement-content { margin-left: 0; padding: 60px 28px; }
  .our-services { grid-template-columns: 1fr; }
  .our-services-image { height: 480px; }
  .hero-banner { grid-template-columns: 1fr; height: 480px; }
  .hero-banner div:nth-child(2) img { object-position: bottom; }
  .closing { grid-template-columns: 1fr; }
  .service-cols { grid-template-columns: 1fr; gap: 36px; }
  .promise-grid { grid-template-columns: 1fr; }

  .stat-content { padding: 56px 32px 56px 140px; }
  .stat-chevron { width: 110px; }

  .site-footer { flex-direction: column; gap: 12px; text-align: center; }
}
@media (max-width: 600px) {
  .hero { min-height: 80vh; padding: 60px 24px; }
  .hero-tagline-box { padding: 14px 24px; }
  .stat-content { padding: 48px 24px 48px 110px; }
  .stat-chevron { width: 88px; }
  .closing-para { padding: 40px 28px 56px; }
  .hero-right .gform_wrapper .gfield--type-email,
  .hero-right .gform_wrapper .gfield--type-phone { width: 100% !important; }
}
