/*
Theme Name: Porches Gardens
Template: astra
Version: 1.0.0
Description: Child theme for Porsche's Gardens website
Author: Sid K
*/

/* ── RESET & BASE ─────────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body { font-family:'Inter', sans-serif; color:#1a1a1a; background:#fff; line-height:1.6; }
img { display:block; max-width:100%; }
a { text-decoration:none; color:inherit; }

/* ── TOKENS ───────────────────────────────────────────────────── */
:root {
  --green:   #2D5016;
  --green-m: #3D6B1F;
  --green-l: #5A8A32;
  --cream:   #F7F4EE;
  --sand:    #EDE9E0;
  --text:    #1C1C1A;
  --muted:   #6B6B60;
  --border:  rgba(45,80,22,0.12);
  --W: 1160px;
}

/* ── NAV ──────────────────────────────────────────────────────── */
.nav {
  position: fixed; top:0; left:0; right:0; z-index:200;
  display:flex; align-items:center; justify-content:space-between;
  padding:0 56px; height:68px;
  background: rgba(252, 250, 244, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--border);
  transition: background 0.35s, box-shadow 0.35s;
}
.nav.scrolled {
  background: rgba(252, 250, 244, 0.98);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.nav-logo img { height:48px; }
.nav-cta {
  background:var(--green-l); color:white;
  padding:9px 22px; border-radius:7px; font-size:13px; font-weight:500;
  transition:background 0.2s; white-space:nowrap; cursor:pointer; border:none;
  font-family:'Inter',sans-serif;
}
.nav-cta:hover { background:var(--green-m); }

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  position:relative; min-height:100vh;
  display:flex; flex-direction:column; justify-content:center; align-items:flex-start;
  padding:0 10vw;
  overflow:hidden;
}
.hero-bg {
  position:absolute; inset:0; z-index:0;
  background-image: url('/wp-content/themes/porches-gardens/images/hero-jpg.png');
  background-size:cover; background-position:68% 15%;
}
.hero-bg::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(
    105deg,
    rgba(28,44,12,0.82) 0%,
    rgba(28,44,12,0.55) 45%,
    rgba(28,44,12,0.15) 100%
  );
}
.hero-content {
  position:relative; z-index:1;
  max-width:540px;
}
.hero-eyebrow {
  font-size:11px; letter-spacing:3px; text-transform:uppercase;
  color:rgba(255,255,255,0.65); margin-bottom:20px; font-weight:400;
  display:flex; align-items:center; gap:10px;
}
.hero-eyebrow::before {
  content:''; width:28px; height:1px; background:rgba(255,255,255,0.5);
}
.hero-content h1 {
  font-family:'Playfair Display', serif;
  font-size:clamp(46px, 6vw, 80px);
  line-height:1.08; color:white; font-weight:400;
  margin-bottom:8px;
}
.hero-content h1 em { font-style:italic; color:#A8CC70; }
.hero-sub {
  font-size:16px; line-height:1.75; color:rgba(255,255,255,0.72);
  margin-top:20px; margin-bottom:40px; font-weight:300; max-width:420px;
}
.hero-actions { display:flex; gap:14px; align-items:center; flex-wrap:wrap; }
.btn-hero {
  background:var(--green-l); color:white;
  padding:14px 32px; border-radius:8px; font-size:14px; font-weight:500;
  cursor:pointer; border:none; font-family:'Inter',sans-serif;
  transition:all 0.2s; letter-spacing:0.3px;
}
.btn-hero:hover { background:var(--green-m); transform:translateY(-1px); }
.btn-hero-ghost {
  border:1.5px solid rgba(255,255,255,0.45); color:white;
  padding:13px 28px; border-radius:8px; font-size:14px; font-weight:400;
  background:transparent; cursor:pointer; font-family:'Inter',sans-serif;
  transition:all 0.2s;
}
.btn-hero-ghost:hover { background:rgba(255,255,255,0.1); }
.hero-trust {
  display:flex; gap:32px; margin-top:56px; flex-wrap:wrap;
}
.ht { display:flex; align-items:center; gap:9px; }
.ht-n { font-family:'Playfair Display',serif; font-size:28px; color:white; line-height:1; }
.ht-l { font-size:11px; color:rgba(255,255,255,0.55); line-height:1.4; letter-spacing:0.3px; }
.hero-scroll {
  position:absolute; bottom:36px; left:50%; transform:translateX(-50%);
  z-index:1; display:flex; flex-direction:column; align-items:center; gap:8px;
}
.scroll-line {
  width:1px; height:40px; background:rgba(255,255,255,0.35);
  animation:scrollPulse 2s ease-in-out infinite;
}
.scroll-lbl { font-size:10px; letter-spacing:2px; color:rgba(255,255,255,0.4); text-transform:uppercase; }
@keyframes scrollPulse { 0%,100%{opacity:0.4;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(1.2)} }

/* ── SECTION SHARED ───────────────────────────────────────────── */
.W { max-width:var(--W); margin:0 auto; padding:0 52px; }
.sec { padding:96px 0; }
.sec-sm { padding:64px 0; }
.sec-label {
  font-size:10px; letter-spacing:3px; text-transform:uppercase;
  color:var(--green-l); font-weight:500; margin-bottom:14px; display:block;
}
.sec-h {
  font-family:'Playfair Display',serif; font-weight:400;
  font-size:clamp(28px,3vw,44px); line-height:1.18; color:var(--text);
  margin-bottom:16px;
}
.sec-sub {
  font-size:15px; color:var(--muted); line-height:1.8; font-weight:300;
  max-width:540px;
}
.divider { border:none; border-top:1px solid var(--border); }

/* ── SERVICES ─────────────────────────────────────────────────── */
.services { background:#fff; }
.svc-header { text-align:center; margin-bottom:60px; }
.svc-header .sec-sub { margin:0 auto; }
.svc-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.svc-card {
  background:var(--cream); border-radius:16px; overflow:hidden;
  border:1px solid var(--border); transition:all 0.28s;
}
.svc-card:hover { box-shadow:0 12px 40px rgba(45,80,22,0.12); transform:translateY(-4px); border-color:transparent; }
.svc-img { height:200px; overflow:hidden; }
.svc-img img { width:100%; height:100%; object-fit:cover; transition:transform 0.4s; }
.svc-card:hover .svc-img img { transform:scale(1.04); }
.svc-body { padding:28px 26px 32px; }
.svc-icon { font-size:24px; margin-bottom:12px; }
.svc-name {
  font-family:'Playfair Display',serif; font-size:20px;
  color:var(--text); margin-bottom:10px;
}
.svc-desc { font-size:13px; color:var(--muted); line-height:1.75; font-weight:300; margin-bottom:16px; }
.svc-list { list-style:none; display:flex; flex-direction:column; gap:5px; }
.svc-list li { font-size:12px; color:var(--muted); display:flex; gap:7px; }
.svc-list li::before { content:'✓'; color:var(--green-l); font-weight:600; font-size:11px; }

/* ── TESTIMONIAL ──────────────────────────────────────────────── */
.testimonial { background:var(--green); padding:80px 0; }
.test-inner { max-width:780px; margin:0 auto; text-align:center; padding:0 52px; }
.test-q { font-size:36px; color:rgba(255,255,255,0.2); font-family:'Playfair Display',serif; line-height:1; margin-bottom:24px; }
.test-text {
  font-family:'Playfair Display',serif; font-style:italic;
  font-size:clamp(18px,2.2vw,24px); color:rgba(255,255,255,0.9);
  line-height:1.65; margin-bottom:36px;
}
.test-author { display:flex; align-items:center; justify-content:center; gap:14px; }
.test-avatar {
  width:48px; height:48px; border-radius:50%; background:rgba(255,255,255,0.15);
  display:flex; align-items:center; justify-content:center; font-size:20px; flex-shrink:0;
}
.test-name { font-size:13px; font-weight:600; color:white; }
.test-loc  { font-size:12px; color:rgba(255,255,255,0.5); margin-top:2px; }
.test-stars { color:#F5C842; font-size:14px; letter-spacing:2px; margin-bottom:4px; }

/* ── ABOUT SPLIT ──────────────────────────────────────────────── */
.about { background:var(--cream); }
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.about-img { height:520px; border-radius:16px; overflow:hidden; box-shadow:0 6px 40px rgba(0,0,0,0.1); }
.about-img img { width:100%; height:100%; object-fit:cover; }
.about-c { }
.about-vals { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top:36px; }
.av { display:flex; gap:12px; align-items:flex-start; padding:16px; background:white; border-radius:10px; }
.av-ico { font-size:18px; flex-shrink:0; line-height:1.2; }
.av-t { font-size:13px; font-weight:600; color:var(--text); margin-bottom:3px; }
.av-d { font-size:12px; color:var(--muted); line-height:1.55; font-weight:300; }
.btn-green {
  background:var(--green); color:white;
  padding:13px 28px; border-radius:8px; font-size:13px; font-weight:500;
  cursor:pointer; border:none; font-family:'Inter',sans-serif;
  transition:background 0.2s; margin-top:32px; display:inline-block;
}
.btn-green:hover { background:var(--green-m); }

/* ── WHY STRIP ────────────────────────────────────────────────── */
.why-strip { background:white; }
.why-row { display:grid; grid-template-columns:repeat(4,1fr); gap:0; }
.why-item { padding:40px 32px; border-right:1px solid var(--border); text-align:center; }
.why-item:last-child { border-right:none; }
.why-ico { font-size:28px; margin-bottom:14px; }
.why-t { font-size:14px; font-weight:600; color:var(--text); margin-bottom:8px; }
.why-d { font-size:13px; color:var(--muted); line-height:1.6; font-weight:300; }

/* ── PROCESS ──────────────────────────────────────────────────── */
.process { background:var(--cream); }
.proc-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; margin-top:56px; position:relative; }
.proc-grid::before {
  content:''; position:absolute; top:28px; left:12%; right:12%; height:1px;
  background:var(--border); z-index:0;
}
.pc { text-align:center; position:relative; z-index:1; }
.pc-n {
  width:56px; height:56px; border-radius:50%; background:var(--green);
  color:white; font-family:'Playfair Display',serif; font-size:22px;
  display:flex; align-items:center; justify-content:center; margin:0 auto 16px;
  box-shadow:0 3px 14px rgba(45,80,22,0.3);
}
.pc-t { font-size:14px; font-weight:600; color:var(--text); margin-bottom:8px; }
.pc-d { font-size:13px; color:var(--muted); line-height:1.65; font-weight:300; }

/* ── REVIEWS STRIP ────────────────────────────────────────────── */
.reviews { background:white; }
.rev-score { display:flex; align-items:center; justify-content:center; gap:20px; margin-bottom:56px; }
.rev-big { font-family:'Playfair Display',serif; font-size:72px; color:var(--text); line-height:1; }
.rev-right { }
.rev-stars { color:#F5C842; font-size:22px; letter-spacing:2px; margin-bottom:4px; }
.rev-ct { font-size:13px; color:var(--muted); }
.rev-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.rc {
  background:var(--cream); border-radius:14px; padding:28px;
  border:1px solid var(--border); transition:all 0.2s;
}
.rc:hover { box-shadow:0 4px 24px rgba(45,80,22,0.08); border-color:var(--green-l); }
.rc-top { display:flex; justify-content:space-between; margin-bottom:8px; }
.rc-name { font-size:14px; font-weight:600; color:var(--text); }
.rc-date { font-size:11px; color:var(--muted); }
.rc-stars { color:#F5C842; font-size:12px; letter-spacing:1.5px; margin-bottom:12px; }
.rc-text { font-size:13px; line-height:1.78; color:var(--text); font-weight:300; font-style:italic; }
.rc-loc { font-size:11px; color:var(--muted); margin-top:12px; display:flex; align-items:center; gap:4px; }
.g-link {
  display:inline-flex; align-items:center; gap:8px;
  background:white; border:1.5px solid var(--border); color:var(--text);
  padding:10px 22px; border-radius:8px; font-size:13px; font-weight:500;
  cursor:pointer; transition:all 0.2s; margin-top:40px;
}
.g-link:hover { border-color:var(--green-l); color:var(--green); }

/* ── CTA BAND ─────────────────────────────────────────────────── */
.cta-band {
  position:relative; overflow:hidden;
  padding:100px 0; text-align:center;
}
.cta-bg {
  position:absolute; inset:0;
  background-image: url('/wp-content/themes/porches-gardens/images/hero-jpg.png');
  background-size:cover; background-position:center;
}
.cta-bg::after {
  content:''; position:absolute; inset:0;
  background:rgba(28,44,12,0.78);
}
.cta-content { position:relative; z-index:1; }
.cta-content h2 {
  font-family:'Playfair Display',serif; font-size:clamp(30px,3.5vw,48px);
  color:white; font-weight:400; margin-bottom:14px; line-height:1.2;
}
.cta-content p { font-size:15px; color:rgba(255,255,255,0.72); margin-bottom:36px; font-weight:300; max-width:480px; margin-left:auto; margin-right:auto; }
.btn-cta {
  background:white; color:var(--green);
  padding:14px 36px; border-radius:8px; font-size:14px; font-weight:600;
  cursor:pointer; border:none; font-family:'Inter',sans-serif;
  transition:all 0.2s; display:inline-flex; align-items:center; gap:8px;
}
.btn-cta:hover { background:var(--cream); transform:translateY(-1px); }

/* ── BOOKING FORM ─────────────────────────────────────────────── */
.booking { background:var(--cream); }
.booking-inner { display:grid; grid-template-columns:1fr 1.1fr; gap:72px; align-items:start; }
.bk-l h2 { font-family:'Playfair Display',serif; font-size:36px; color:var(--text); margin-bottom:16px; font-weight:400; }
.bk-l p { font-size:15px; color:var(--muted); line-height:1.8; font-weight:300; margin-bottom:32px; }
.bk-perks { display:flex; flex-direction:column; gap:12px; }
.bkp { display:flex; gap:10px; align-items:flex-start; }
.bkp-dot { width:5px; height:5px; background:var(--green-l); border-radius:50%; flex-shrink:0; margin-top:8px; }
.bkp-t { font-size:13px; color:var(--muted); line-height:1.6; font-weight:300; }
.bk-form { background:white; border-radius:16px; padding:40px 36px; box-shadow:0 4px 32px rgba(0,0,0,0.06); border:1px solid var(--border); }
.bk-form h3 { font-family:'Playfair Display',serif; font-size:22px; color:var(--text); margin-bottom:28px; }
.form { display:flex; flex-direction:column; gap:14px; }
.f-row { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.fg { display:flex; flex-direction:column; gap:5px; }
.fg label { font-size:10px; letter-spacing:1.5px; text-transform:uppercase; color:var(--muted); font-weight:500; }
.fg input, .fg select, .fg textarea {
  border:1.5px solid var(--border); border-radius:8px;
  padding:11px 13px; font-family:'Inter',sans-serif; font-size:14px;
  color:var(--text); background:var(--cream); outline:none; transition:border-color 0.2s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color:var(--green-l); background:white; }
.fg textarea { min-height:88px; resize:vertical; }
.btn-submit {
  background:var(--green); color:white;
  padding:13px 28px; border-radius:8px; font-size:14px; font-weight:500;
  cursor:pointer; border:none; font-family:'Inter',sans-serif;
  transition:background 0.2s; width:100%;
}
.btn-submit:hover { background:var(--green-m); }

/* ── FOOTER ───────────────────────────────────────────────────── */
footer { background:var(--text); padding:64px 0 36px; }
.ft-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px; margin-bottom:48px; }
.ft-brand img { height:52px; margin-bottom:16px; filter:brightness(0) invert(1); opacity:0.85; }
.ft-brand p { font-size:13px; color:rgba(255,255,255,0.4); line-height:1.7; font-weight:300; max-width:250px; }
.ft-col h4 { font-size:10px; letter-spacing:2.5px; text-transform:uppercase; color:rgba(255,255,255,0.28); margin-bottom:16px; }
.ft-col ul { list-style:none; display:flex; flex-direction:column; gap:9px; }
.ft-col ul li { font-size:13px; color:rgba(255,255,255,0.48); cursor:pointer; transition:color 0.15s; }
.ft-col ul li:hover { color:white; }
.ft-sep { border:none; border-top:1px solid rgba(255,255,255,0.07); margin-bottom:28px; }
.ft-bot { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:10px; }
.ft-bot p { font-size:12px; color:rgba(255,255,255,0.22); }
.seo-tags { display:flex; flex-wrap:wrap; gap:5px; margin-top:16px; }
.seo-tag { font-size:10px; color:rgba(255,255,255,0.18); background:rgba(255,255,255,0.04); padding:3px 9px; border-radius:100px; }

/* ── MOBILE ───────────────────────────────────────────────────── */
@media(max-width:900px) {
  .nav { padding:0 24px; }
  .W { padding:0 24px; }
  .hero { padding:0 6vw; }
  .svc-grid, .rev-grid { grid-template-columns:1fr 1fr; }
  .about-grid, .booking-inner { grid-template-columns:1fr; }
  .why-row { grid-template-columns:1fr 1fr; }
  .proc-grid { grid-template-columns:1fr 1fr; }
  .proc-grid::before { display:none; }
  .ft-grid { grid-template-columns:1fr 1fr; }
}
@media(max-width:580px) {
  .svc-grid, .rev-grid, .why-row, .proc-grid { grid-template-columns:1fr; }
  .f-row { grid-template-columns:1fr; }
  .hero-trust { gap:20px; }
  .ft-grid { grid-template-columns:1fr; }
}


/* ══════════════════════════════════════════════════════════════
   BUG FIXES — v2
   ══════════════════════════════════════════════════════════════ */

/* ── NAV: brand + inner layout ────────────────────────────────── */
.nav-brand {
  display:flex; align-items:center; gap:10px;
  color:var(--text); font-weight:600;
  font-size:16px; letter-spacing:-0.2px; text-decoration:none;
  flex-shrink:0;
}
.nav-brandmark { font-size:22px; line-height:1; }
.nav-brandtext { font-size:15px; font-weight:600; }

/* ── NAV: wp_nav_menu() output ────────────────────────────────── */
.nav-links { display:flex; align-items:center; }
.nav-links ul {
  list-style:none; margin:0; padding:0;
  display:flex; align-items:center; gap:2px;
}
.nav-links ul li { list-style:none; }
.nav-links ul li a {
  font-size:13px; font-weight:400; letter-spacing:0.3px;
  padding:8px 14px; border-radius:6px; transition:all 0.18s;
  color:var(--muted); text-decoration:none; display:block;
}
.nav-links ul li a:hover { background:var(--cream); color:var(--green); }
/* Active page highlight */
.nav-links ul li.current-menu-item > a,
.nav-links ul li.current_page_item > a { color:var(--green); font-weight:600; }

/* ── NAV: phone + CTA group ───────────────────────────────────── */
.nav-actions { display:flex; align-items:center; gap:8px; flex-shrink:0; }
.nav-phone {
  font-size:13px; font-weight:500; color:var(--muted);
  padding:8px 14px; text-decoration:none; transition:color 0.18s;
}
.nav-phone:hover { color:var(--green); }

/* ── HERO: push content below fixed nav ───────────────────────── */
.hero { padding-top:68px; }

/* ── SECTION LABEL: bump from 10px → 12px ────────────────────── */
.sec-label { font-size:12px; }

/* ── WHY STRIP: add vertical padding ─────────────────────────── */
.why-strip { padding:64px 0; }

/* ── SERVICE GRID: orphan fix + centered last row ─────────────── */
.svc-grid {
  display:flex; flex-wrap:wrap; gap:24px; justify-content:flex-start;
}
.svc-card {
  flex:0 1 calc(33.333% - 16px); min-width:280px;
}
/* Center a single orphaned last card */
.svc-grid > .svc-card:last-child:nth-child(3n+1) {
  margin-left:calc(33.333% - 4px);
}

/* ── SERVICES PAGE TRUST STRIP: visible text on cream bg ─────── */
.services-stats { background:var(--green); }
.services-stats .ht-n { color:white; }
.services-stats .ht-l { color:rgba(255,255,255,0.65); }
.services-stats .ht-sep {
  width:1px; height:40px; background:rgba(255,255,255,0.2);
  align-self:center;
}

/* ── GHOST BUTTON on light backgrounds ───────────────────────── */
.btn-outline {
  display:inline-block;
  border:2px solid var(--green); color:var(--green);
  padding:12px 28px; border-radius:8px; font-size:13px;
  font-weight:600; letter-spacing:0.04em; text-decoration:none;
  transition:all 0.2s;
}
.btn-outline:hover { background:var(--green); color:white; }

/* ── FOOTER: brand name (no logo image) ──────────────────────── */
.ft-brand-name {
  font-size:17px; font-weight:600; color:white;
  margin-bottom:14px; display:block; letter-spacing:-0.2px;
}
.ft-col a { color:rgba(255,255,255,0.48); text-decoration:none; transition:color 0.15s; }
.ft-col a:hover { color:white; }

/* ── CONTACT: left-column label → H2 spacing ─────────────────── */
.bk-l .sec-label { margin-bottom:12px; }

/* ── APPROACH SECTION placeholder ────────────────────────────── */
.approach-placeholder {
  width:100%; height:100%; min-height:420px;
  background:var(--sand); border-radius:16px;
  display:flex; flex-direction:column; align-items:center;
  justify-content:center; gap:12px;
  color:var(--muted); font-size:13px; text-align:center;
  padding:32px;
}
.approach-placeholder .ap-icon { font-size:48px; opacity:0.4; }
.approach-placeholder .ap-text { opacity:0.6; line-height:1.5; }

/* ── TESTIMONIAL AVATAR: ensure consistent size ──────────────── */
.test-avatar { width:48px; height:48px; font-size:20px; }

/* ── MOBILE: fix hero padding, nav-actions ────────────────────── */
@media(max-width:900px) {
  .hero { padding-top:68px; }
  .nav-actions .nav-phone { display:none; }
  .svc-card { flex:0 1 calc(50% - 12px); }
  .svc-grid > .svc-card:last-child:nth-child(3n+1) { margin-left:0; }
}
@media(max-width:580px) {
  .svc-card { flex:0 1 100%; }
  .nav-actions .nav-cta { display:none; }
}

/* ── LOGO ─────────────────────────────────────────────────────── */
.nav-logo-img {
  height: 60px;
  width: 60px;
  object-fit: contain;
  display: block;
  transition: transform 0.2s;
}
.nav-brand:hover .nav-logo-img { transform: scale(1.05); }

/* Slightly smaller when nav is scrolled */
.nav.scrolled .nav-logo-img { height: 52px; width: 52px; }

/* Footer logo */
.ft-logo-img {
  height: 90px;
  width: 90px;
  object-fit: contain;
  margin-bottom: 14px;
  display: block;
}

@media(max-width:900px) {
  .nav-logo-img { height: 52px; width: 52px; }
}

/* ══════════════════════════════════════════════════════════════
   DENSITY + SPACING PASS
   ══════════════════════════════════════════════════════════════ */

/* ── Hero: reduce height so trust bar fits without scrolling ──── */
.hero { min-height: 88vh; padding-top: 90px; }
.hero-content { padding-top: 16px; }

/* ── Page header for inner pages (no full hero) ──────────────── */
.page-header {
  padding: 110px 10vw 52px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.page-header .sec-label { margin-bottom: 14px; }
.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 52px);
  color: var(--text);
  line-height: 1.15;
  font-weight: 400;
  margin-bottom: 14px;
}
.page-header p {
  font-size: 15px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.75;
  font-weight: 300;
}
.hero-scroll { display: none; }
.hero-trust { margin-top: 36px; }

/* ── Section padding: 96→64, 64→44 ──────────────────────────── */
.sec { padding: 64px 0; }
.sec-sm { padding: 44px 0; }
.svc-header { margin-bottom: 36px; }

/* ── Why strip ───────────────────────────────────────────────── */
.why-strip { padding: 48px 0; }
.why-item { padding: 28px 24px; }

/* ── About section ───────────────────────────────────────────── */
.about-grid { gap: 52px; }
.about-img { height: 420px; }

/* ── Process section ─────────────────────────────────────────── */
.proc-grid { margin-top: 36px; }

/* ── Service cards: compact, no empty image slot ─────────────── */
.svc-img { display: none; }
.svc-grid { gap: 16px; }
.svc-card { border-radius: 10px; }
.svc-body { padding: 18px 20px 20px; }
.svc-icon { font-size: 22px; margin-bottom: 8px; }
.svc-name { font-size: 17px; margin-bottom: 6px; }
.svc-desc { margin-bottom: 10px; line-height: 1.65; }
.svc-list { gap: 4px; }

/* ── Services page: re-enable card images ────────────────────── */
.page-id-1320 .svc-img { display: block; overflow: hidden; border-radius: 10px 10px 0 0; }
.page-id-1320 .svc-img img { height: 200px; width: 100%; object-fit: cover; transition: transform 0.4s; }
.page-id-1320 .svc-card:hover .svc-img img { transform: scale(1.04); }


/* ══════════════════════════════════════════════════════════════
   PHASE 3 DESIGN POLISH
   ══════════════════════════════════════════════════════════════ */

/* ── Hero: keep focal point (Porsche's face) visible ─────────── */
.hero-bg { background-position: 68% center; }

/* ── About image: ensure photo fills container correctly ─────── */
.about-img { background: var(--sand); }
.about-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Page header: tighten horizontal padding on smaller screens  */
@media(max-width:900px) {
  .page-header { padding: 100px 24px 44px; }
}
@media(max-width:580px) {
  .page-header { padding: 88px 20px 36px; }
  .page-header h1 { font-size: clamp(26px, 7vw, 38px); }
  .page-header p { font-size: 14px; }
}

/* ── Why strip: correct border logic on mobile ───────────────── */
@media(max-width:900px) {
  .why-strip .why-row { border-top: 1px solid var(--border); }
  .why-item { border-bottom: 1px solid var(--border); border-right: none !important; }
  .why-item:nth-child(odd) { border-right: 1px solid var(--border) !important; }
}
@media(max-width:580px) {
  .why-item { border-right: none !important; }
}

/* ── Testimonial: tighter on mobile ─────────────────────────── */
@media(max-width:580px) {
  .testimonial { padding: 56px 0; }
  .test-text { font-size: clamp(16px, 4.5vw, 20px); }
}

/* ── CTA band: tighter on mobile ────────────────────────────── */
@media(max-width:580px) {
  .cta-band { padding: 72px 0; }
  .cta-content h2 { font-size: clamp(24px, 6vw, 36px); }
}

/* ── Footer logo: scale down on small screens ────────────────── */
@media(max-width:580px) {
  .ft-logo-img { height: 70px; width: 70px; }
  .ft-grid { gap: 32px; }
}

/* ── Booking form: full-width submit button padding ─────────── */
@media(max-width:580px) {
  .booking-inner { gap: 36px; }
  .bk-form { padding: 28px 20px; }
}


/* ══════════════════════════════════════════════════════════════
   MOBILE NAV — hamburger
   ══════════════════════════════════════════════════════════════ */

/* Hide hamburger on desktop */
.nav-hamburger { display: none; }

@media(max-width:768px) {
  /* Show hamburger, hide desktop nav items */
  .nav-hamburger {
    display: flex; flex-direction: column; justify-content: space-between;
    width: 24px; height: 18px; background: none; border: none;
    cursor: pointer; padding: 0; flex-shrink: 0; z-index: 300;
  }
  .nav-hamburger span {
    display: block; width: 100%; height: 2px;
    background: var(--text); border-radius: 2px;
    transition: all 0.25s ease;
    transform-origin: center;
  }
  /* Animated X state */
  .nav-hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  /* Hide desktop nav + actions on mobile */
  .nav-links { display: none !important; }
  .nav-actions { display: none !important; }

  /* Mobile nav drawer — slides in from right */
  .nav-links.mobile-open {
    display: flex !important; flex-direction: column;
    position: fixed; top: 68px; left: 0; right: 0;
    background: rgba(252,250,244,0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
    padding: 16px 0 32px; z-index: 199;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  }
  .nav-links.mobile-open ul {
    flex-direction: column; gap: 0; width: 100%;
  }
  .nav-links.mobile-open ul li { width: 100%; }
  .nav-links.mobile-open ul li a {
    font-size: 16px; padding: 14px 32px; border-radius: 0;
    font-weight: 500; color: var(--text); display: block; width: 100%;
  }
  .nav-links.mobile-open ul li a:hover { background: var(--cream); }
  .nav-links.mobile-open ul li.current-menu-item > a { color: var(--green); }

  /* CTA + phone in mobile drawer */
  .nav-links.mobile-open::after {
    content: '';
  }

  /* Mobile overlay */
  .nav-mobile-overlay {
    display: none; position: fixed; inset: 0; z-index: 198;
    background: rgba(0,0,0,0.18);
  }
  .nav-mobile-overlay.active { display: block; }
}


/* ══════════════════════════════════════════════════════════════
   CONTENT REWRITE — v4  (hero compact, senior band, svc sections)
   ══════════════════════════════════════════════════════════════ */

/* ── Hero: balanced height — trust bar visible above fold ──── */
.hero { min-height: 86vh; padding-top: 80px; }
.hero-content h1 { font-size: clamp(42px, 5.5vw, 72px); margin-bottom: 6px; }
.hero-sub { margin-top: 16px; margin-bottom: 28px; font-size: 15px; }
.hero-trust { margin-top: 24px; gap: 24px; }
.ht-sep { width: 1px; height: 36px; background: rgba(255,255,255,0.2); align-self: center; flex-shrink: 0; }
.ht-n { font-size: 26px; }

/* ── Senior discount band ──────────────────────────────────── */
.senior-band { background: #1a3409; padding: 0; }
.senior-inner {
  display: flex; align-items: center; gap: 32px;
  padding: 40px 0; flex-wrap: wrap;
}
.senior-icon { font-size: 44px; flex-shrink: 0; line-height: 1; }
.senior-text { flex: 1; min-width: 240px; }
.senior-text .sec-label { color: rgba(255,255,255,0.45); margin-bottom: 8px; }
.senior-text h3 {
  font-family: 'Playfair Display', serif; font-size: clamp(20px, 2.2vw, 28px);
  color: white; font-weight: 400; margin-bottom: 8px; line-height: 1.25;
}
.senior-text p { font-size: 14px; color: rgba(255,255,255,0.62); line-height: 1.65; font-weight: 300; }
.senior-band .btn-cta {
  background: white; color: var(--green);
  padding: 13px 28px; border-radius: 8px; font-size: 13px; font-weight: 600;
  white-space: nowrap; flex-shrink: 0; transition: all 0.2s; display: inline-block;
}
.senior-band .btn-cta:hover { background: var(--cream); transform: translateY(-1px); }

/* ── Service card CTA link ─────────────────────────────────── */
.svc-cta {
  display: inline-block; margin-top: 14px;
  font-size: 12px; font-weight: 600; color: var(--green);
  letter-spacing: 0.3px; text-decoration: none;
  border-bottom: 1.5px solid var(--green-l); padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.svc-cta:hover { color: var(--green-m); border-color: var(--green-m); }

/* ── Services page: expanded section layout ────────────────── */
.svc-section { padding: 64px 0; border-bottom: 1px solid var(--border); }
.svc-section:last-of-type { border-bottom: none; }
.svc-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.svc-layout > .svc-photo { order: 1; }
.svc-layout > .svc-detail { order: 2; }
.svc-layout.reverse > .svc-photo { order: 2; }
.svc-layout.reverse > .svc-detail { order: 1; }
.svc-photo { border-radius: 14px; overflow: hidden; height: 380px; }
.svc-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.svc-section:hover .svc-photo img { transform: scale(1.02); }
.svc-detail-icon { font-size: 30px; margin-bottom: 14px; }
.svc-detail h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 2.5vw, 34px); color: var(--text);
  font-weight: 400; margin-bottom: 16px; line-height: 1.2;
}
.svc-detail p { font-size: 14px; color: var(--muted); line-height: 1.85; font-weight: 300; margin-bottom: 18px; }
.svc-includes {
  list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px;
}
.svc-includes li {
  font-size: 13px; color: var(--text); display: flex; gap: 10px;
  align-items: flex-start; line-height: 1.55;
}
.svc-includes li::before { content: '✓'; color: var(--green-l); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.svc-detail .btn-green { margin-top: 0; }

/* ── Services page: override card grid → hide on svc page ──── */
.page-id-1320 .svc-grid { display: none; }

@media(max-width: 900px) {
  .svc-layout { grid-template-columns: 1fr; gap: 32px; }
  .svc-layout > .svc-photo,
  .svc-layout.reverse > .svc-photo { order: 1; }
  .svc-layout > .svc-detail,
  .svc-layout.reverse > .svc-detail { order: 2; }
  .svc-photo { height: 260px; }
  .senior-inner { gap: 20px; }
  .senior-band .btn-cta { width: 100%; text-align: center; }
}
@media(max-width: 580px) {
  .senior-inner { padding: 32px 0; }
  .hero-trust { gap: 16px; }
  .ht-sep { height: 28px; }
}


/* ══════════════════════════════════════════════════════════════
   UI POLISH — v5 (nav, services tiles, contact, whitespace)
   ══════════════════════════════════════════════════════════════ */

/* ── WP content wrapper: strip Astra's injected spacing ───── */
.entry-content, .ast-article-post { padding: 0 !important; }
.entry-content > p:empty { display: none !important; }
.entry-content > p { margin: 0 !important; }

/* ── Page header: less bottom padding ───────────────────────── */
.page-header { padding: 108px 10vw 40px; }

/* ── Nav: refined active state + weight ─────────────────────── */
.nav-links ul li a { font-weight: 500; letter-spacing: 0.2px; }
.nav-links ul li.current-menu-item > a,
.nav-links ul li.current_page_item > a {
  color: var(--green); font-weight: 600;
  background: rgba(45,80,22,0.07);
  position: relative;
}
.nav-links ul li.current-menu-item > a::after,
.nav-links ul li.current_page_item > a::after {
  content: ''; position: absolute; bottom: -2px; left: 14px; right: 14px;
  height: 2px; background: var(--green); border-radius: 1px;
}
.nav-links ul li a:hover { background: rgba(45,80,22,0.06); color: var(--green); }
.nav-cta {
  padding: 10px 26px; font-weight: 600; font-size: 13px;
  letter-spacing: 0.3px; border-radius: 8px;
  box-shadow: 0 2px 8px rgba(45,80,22,0.22);
}
.nav-cta:hover { box-shadow: 0 4px 14px rgba(45,80,22,0.28); }
.nav-phone { font-weight: 500; font-size: 13px; color: var(--text); }

/* ── Services: quick-nav tiles strip ────────────────────────── */
.svc-nav {
  background: white; border-bottom: 1px solid var(--border);
  padding: 28px 0 32px;
}
.svc-nav-intro {
  text-align: center; font-size: 14px; color: var(--muted);
  line-height: 1.7; margin-bottom: 22px; font-weight: 300;
}
.svc-nav-intro strong { color: var(--text); font-weight: 600; }
.svc-nav-tiles {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-bottom: 24px;
}
.svc-tile {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px; border-radius: 100px;
  border: 1.5px solid var(--border);
  font-size: 13px; font-weight: 500; color: var(--text);
  text-decoration: none; background: var(--cream);
  transition: all 0.2s; white-space: nowrap;
}
.svc-tile:hover {
  border-color: var(--green); color: var(--green);
  background: white; box-shadow: 0 3px 12px rgba(45,80,22,0.1);
}
.svc-tile-ico { font-size: 14px; line-height: 1; }

/* ── Services: reduce section vertical padding ───────────────── */
.svc-section { padding: 52px 0; }
.svc-section:first-of-type { padding-top: 0; }

/* ── Contact: wider form column ──────────────────────────────── */
.booking-inner { grid-template-columns: 0.72fr 1.28fr; gap: 52px; }
.bk-l h2 { font-size: 30px; color: var(--text); font-weight: 400; margin-bottom: 12px; }
.bk-l > p { font-size: 14px; color: var(--text); line-height: 1.75; opacity: 0.75; }

/* ── Contact: phone/email as clickable CTA cards ─────────────── */
.bk-contact-cards { display: flex; flex-direction: column; gap: 12px; margin: 24px 0 28px; }
.bk-ccard {
  display: flex; align-items: center; gap: 16px;
  padding: 15px 20px; border-radius: 12px;
  border: 1.5px solid var(--border); background: white;
  text-decoration: none; transition: all 0.22s; cursor: pointer;
}
.bk-ccard:hover {
  border-color: var(--green); background: var(--cream);
  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(45,80,22,0.1);
}
.bk-ccard-ico {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--green); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.bk-ccard-t { font-size: 10px; color: var(--muted); letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500; margin-bottom: 3px; }
.bk-ccard-v { font-size: 15px; color: var(--text); font-weight: 600; }
.bk-details { display: flex; flex-direction: column; gap: 9px; }
.bk-detail-item { font-size: 13px; color: var(--muted); line-height: 1.6; font-weight: 300; display: flex; gap: 8px; align-items: flex-start; }
.bk-detail-item::before { content: '·'; color: var(--green-l); font-weight: 700; flex-shrink: 0; }

/* ── WPForms: ensure select doesn't clip options ─────────────── */
.wpforms-field-select select { width: 100%; min-width: 0; }
.wpforms-field { margin-bottom: 18px; }

/* ── Contact form box: ensure proper rendering ───────────────── */
.bk-form { overflow: visible; }

@media(max-width: 900px) {
  .booking-inner { grid-template-columns: 1fr; }
  .svc-nav-tiles { gap: 8px; }
}
@media(max-width: 580px) {
  .svc-tile { font-size: 12px; padding: 8px 14px; }
  .page-header { padding: 88px 20px 32px; }
}


/* ═══════════════════════════════════════════════════════════════
   v6: page hero headers, testimonial fix, reviews, mobile polish
   ═══════════════════════════════════════════════════════════════ */

/* ── Interior page photo hero (replaces .page-header) ───────── */
.page-hero {
  position: relative;
  min-height: 44vh;
  padding: 120px 10vw 60px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(10,22,5,0.82) 0%,
    rgba(10,22,5,0.60) 50%,
    rgba(10,22,5,0.30) 100%);
  z-index: 1;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}
.page-hero .sec-label {
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4.2vw, 60px);
  color: white;
  line-height: 1.15;
  font-weight: 400;
  margin-bottom: 14px;
}
.page-hero p {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  max-width: 500px;
  line-height: 1.75;
  font-weight: 300;
}

/* ── Testimonial: break away from dark senior-band above it ─── */
.testimonial { background: white; }
.test-q { color: rgba(45,80,22,0.12); }
.test-text { color: var(--text); }
.test-name { color: var(--text); }
.test-loc  { color: var(--muted); }
.test-avatar { background: rgba(45,80,22,0.08); }

/* ── Contact: fix long email overflow on mobile ─────────────── */
.bk-ccard-v { word-break: break-all; overflow-wrap: break-word; }

/* ── Services tiles: 3-per-row on desktop ────────────────────── */
.svc-nav-tiles {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

/* ── Review cards section ────────────────────────────────────── */
.reviews { background: var(--cream); }
.rev-header { text-align: center; margin-bottom: 44px; }
.rev-header .sec-h { margin-bottom: 12px; }
.rev-rating { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 12px; }
.rev-stars  { color: #F5C842; font-size: 18px; letter-spacing: 1px; }
.rev-ct     { font-size: 13px; color: var(--muted); font-weight: 300; }
.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}
.rc {
  background: white;
  border-radius: 14px;
  padding: 28px;
  border: 1px solid var(--border);
}
.rc .rc-stars { color: #F5C842; font-size: 13px; letter-spacing: 1px; margin-bottom: 14px; }
.rc-text {
  font-size: 14px; color: var(--muted); line-height: 1.75;
  font-weight: 300; margin-bottom: 20px; font-style: italic;
}
.rc-author  { border-top: 1px solid var(--border); padding-top: 14px; }
.rc-name    { font-size: 13px; font-weight: 600; color: var(--text); }
.rc-loc     { font-size: 12px; color: var(--muted); margin-top: 2px; }
.rev-footer { text-align: center; }
.g-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--muted);
  text-decoration: underline; text-underline-offset: 3px;
}

/* ── Mobile nav Book Now CTA ─────────────────────────────────── */
.nav-mobile-book-cta { display: none !important; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .rev-grid { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 768px) {
  .page-hero { min-height: 36vh; padding: 96px 24px 44px; }
  .ht-sep    { display: none !important; }
  .svc-nav-tiles { grid-template-columns: repeat(2, auto); }
  .nav-links.mobile-open .nav-mobile-book-cta {
    display: block !important;
    margin: 12px 24px 4px;
    text-align: center;
    background: var(--green);
    color: white !important;
    padding: 13px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
  }
}
@media (max-width: 480px) {
  .svc-nav-tiles { grid-template-columns: 1fr; }
}


/* ══════════════════════════════════════════════════════════════
   v7: contact form compaction + call button fix
   ══════════════════════════════════════════════════════════════ */
/* (see v8 below for additional contact card + form fixes) */

/* ── WPForms: compact vertical spacing ──────────────────────── */
.wpforms-field { margin-bottom: 10px !important; }
.wpforms-field-label { font-size: 10px !important; letter-spacing: 1.3px !important; text-transform: uppercase !important; color: var(--muted) !important; font-weight: 500 !important; margin-bottom: 4px !important; }
.wpforms-field input,
.wpforms-field select,
.wpforms-field textarea {
  padding: 8px 12px !important;
  font-size: 13px !important;
  border-radius: 8px !important;
  border: 1.5px solid var(--border) !important;
  background: var(--cream) !important;
  font-family: 'Inter', sans-serif !important;
  color: var(--text) !important;
  width: 100% !important;
  box-sizing: border-box !important;
  transition: border-color 0.2s !important;
}
.wpforms-field input:focus,
.wpforms-field select:focus,
.wpforms-field textarea:focus {
  border-color: var(--green-l) !important;
  background: white !important;
  outline: none !important;
}
.wpforms-field textarea { min-height: 72px !important; resize: vertical !important; }
.wpforms-field-row { display: flex !important; gap: 10px !important; }
.wpforms-field-row .wpforms-field { flex: 1 !important; margin-bottom: 10px !important; }
.wpforms-submit-container { margin-top: 6px !important; padding: 0 !important; }
.wpforms-submit {
  background: var(--green) !important;
  color: white !important;
  padding: 12px 28px !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  border: none !important;
  width: 100% !important;
  cursor: pointer !important;
  font-family: 'Inter', sans-serif !important;
  transition: background 0.2s !important;
  letter-spacing: 0.2px !important;
}
.wpforms-submit:hover { background: var(--green-m) !important; }
.wpforms-confirmation-container-full { padding: 16px !important; }

/* Remove WPForms' own outer padding/margin that inflates height */
.wpforms-container { margin: 0 !important; }
.wpforms-form { margin: 0 !important; }

/* ── WPForms: fix name field two-column row ──────────────────── */
.wpforms-field-row {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 10px !important;
  width: 100% !important;
  clear: none !important;
}
.wpforms-field-row::after { display: none !important; }
.wpforms-field-row-block,
.wpforms-field-row-block.wpforms-first,
.wpforms-field-row-block.wpforms-one-half,
.wpforms-field-row-block.wpforms-one-third,
.wpforms-field-row-block.wpforms-two-thirds {
  float: none !important;
  width: auto !important;
  flex: 1 1 0 !important;
  min-width: 0 !important;
}
.wpforms-field-row-block input { width: 100% !important; box-sizing: border-box !important; }
.wpforms-sub-label {
  font-size: 10px !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  color: var(--muted) !important;
  margin-top: 4px !important;
  display: block !important;
  font-family: 'Inter', sans-serif !important;
}

/* ── WPForms: tighten field spacing ─────────────────────────── */
.wpforms-field { margin-bottom: 8px !important; }
.wpforms-field-label {
  font-size: 10px !important;
  letter-spacing: 1.3px !important;
  text-transform: uppercase !important;
  color: var(--muted) !important;
  font-weight: 500 !important;
  margin-bottom: 4px !important;
  display: block !important;
}
.wpforms-field input,
.wpforms-field select,
.wpforms-field textarea {
  padding: 9px 12px !important;
  font-size: 13px !important;
  border-radius: 8px !important;
  border: 1.5px solid var(--border) !important;
  background: var(--cream) !important;
  font-family: 'Inter', sans-serif !important;
  color: var(--text) !important;
  width: 100% !important;
  box-sizing: border-box !important;
  transition: border-color 0.2s, background 0.2s !important;
}
.wpforms-field input:focus,
.wpforms-field select:focus,
.wpforms-field textarea:focus {
  border-color: var(--green-l) !important;
  background: white !important;
  outline: none !important;
}
.wpforms-field textarea { min-height: 72px !important; resize: vertical !important; }
.wpforms-submit-container { margin-top: 8px !important; padding: 0 !important; }
.wpforms-submit {
  background: var(--green) !important;
  color: white !important;
  padding: 12px 24px !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  border: none !important;
  width: 100% !important;
  cursor: pointer !important;
  font-family: 'Inter', sans-serif !important;
  letter-spacing: 0.2px !important;
  transition: background 0.2s !important;
}
.wpforms-submit:hover { background: var(--green-m) !important; }
.wpforms-container, .wpforms-form { margin: 0 !important; }
.wpforms-field-required .wpforms-required-label { color: var(--green-l) !important; }

