/* =====================================================================
   FRESH PAINTERS DESIGN SYSTEM
   v1.0 · Auckland · 2026
   ---------------------------------------------------------------------
   A single stylesheet for the entire Fresh Painters site.
   Load this once globally on your WordPress site, then use the
   class names below in any Raw HTML / Custom HTML block.

   TABLE OF CONTENTS
   01. Design Tokens (CSS Variables)
   02. Base & Reset
   03. Typography
   04. Layout (Container, Section, Grid)
   05. Buttons
   06. Eyebrows & Section Headers
   07. Site Header (with Nav)
   08. Site Footer (Multi-column)
   09. Hero Variants
   10. Content Sections (Two-col, Dark, Callout)
   11. Trust Strip Marquee
   12. Cards (HVCO, Service, Testimonial, Project)
   13. Guarantee Badge
   14. Final CTA Block
   15. Form Elements (Inputs, Textarea, Select, Radio, Checkbox)
   16. Multi-step Progress Bar
   17. FAQ Accordion
   18. Stat Blocks
   19. Image Placeholders
   20. Utilities
   21. Responsive Breakpoints
   ===================================================================== */

/* Google Fonts — Lora (serif) + Poppins (sans) */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Poppins:wght@300;400;500;600;700;800&display=swap');


/* =====================================================================
   01. DESIGN TOKENS
   ===================================================================== */

:root {
  /* Colors */
  --fp-bg: #F8F5EE;
  --fp-bg-cream: #F1ECDF;
  --fp-bg-soft: #EFEAE0;
  --fp-bg-dark: #0E1015;
  --fp-text: #15171C;
  --fp-text-muted: #5A5953;
  --fp-text-light: #8B8A82;
  --fp-accent: #C8E63C;
  --fp-accent-dark: #9FB927;
  --fp-accent-glow: #DCFF4A;
  --fp-white: #FFFFFF;
  --fp-border: rgba(20, 22, 27, 0.08);
  --fp-border-strong: rgba(20, 22, 27, 0.14);
  --fp-success: #4CAF50;
  --fp-warning: #F0A030;
  --fp-error: #D85451;

  /* Typography */
  --fp-font-serif: 'Lora', Georgia, serif;
  --fp-font-sans: 'Poppins', system-ui, sans-serif;

  /* Spacing scale */
  --fp-space-1: 4px;
  --fp-space-2: 8px;
  --fp-space-3: 12px;
  --fp-space-4: 16px;
  --fp-space-5: 24px;
  --fp-space-6: 32px;
  --fp-space-7: 48px;
  --fp-space-8: 64px;
  --fp-space-9: 96px;
  --fp-space-10: 128px;

  /* Radius */
  --fp-radius-sm: 8px;
  --fp-radius-md: 14px;
  --fp-radius-lg: 16px;
  --fp-radius-pill: 100px;

  /* Shadows */
  --fp-shadow-sm: 0 6px 20px -8px rgba(20, 22, 27, 0.1);
  --fp-shadow-md: 0 20px 50px -20px rgba(20, 22, 27, 0.18);
  --fp-shadow-lg: 0 30px 70px -25px rgba(20, 22, 27, 0.3);
  --fp-shadow-accent: 0 4px 24px rgba(200, 230, 60, 0.4);
}


/* =====================================================================
   02. BASE & RESET
   ===================================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--fp-font-sans);
  background: var(--fp-bg);
  color: var(--fp-text);
  line-height: 1.65;
  font-size: 16.5px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button { font: inherit; cursor: pointer; border: none; background: none; }


/* =====================================================================
   03. TYPOGRAPHY
   ===================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--fp-font-serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--fp-text);
}

h1 { font-size: clamp(44px, 5vw, 72px); letter-spacing: -0.035em; line-height: 1.0; }
h2 { font-size: clamp(34px, 4vw, 54px); letter-spacing: -0.03em; line-height: 1.05; }
h3 { font-size: clamp(24px, 2.5vw, 32px); letter-spacing: -0.02em; }
h4 { font-size: clamp(20px, 2vw, 24px); }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

p { color: var(--fp-text); }
p + p { margin-top: var(--fp-space-5); }

em { font-style: italic; }
strong { font-weight: 600; }

/* Heading italic accent (used for italicized words inside h-tags) */
h1 em, h2 em, h3 em { font-style: italic; font-weight: 500; }

/* Highlight (yellow bg behind text) */
.fp-highlight {
  background: var(--fp-accent);
  padding: 0 0.18em;
  display: inline-block;
  transform: rotate(-1deg);
  font-style: italic;
}


/* =====================================================================
   04. LAYOUT (CONTAINER, SECTION, GRID)
   ===================================================================== */

.fp-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

.fp-container-narrow { max-width: 880px; margin: 0 auto; padding: 0 40px; }
.fp-container-wide { max-width: 1400px; margin: 0 auto; padding: 0 40px; }

.fp-section { padding: 100px 0; position: relative; }
.fp-section-sm { padding: 60px 0; }
.fp-section-lg { padding: 130px 0; }

.fp-section-cream { background: var(--fp-bg-cream); }
.fp-section-soft { background: var(--fp-bg-soft); }
.fp-section-dark { background: var(--fp-bg-dark); color: var(--fp-white); }

.fp-section-dark h1, .fp-section-dark h2, .fp-section-dark h3, .fp-section-dark h4 { color: var(--fp-white); }
.fp-section-dark p { color: rgba(255, 255, 255, 0.78); }

/* Grid helpers */
.fp-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.fp-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.fp-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.fp-grid-2.reverse > *:first-child { order: 2; }


/* =====================================================================
   05. BUTTONS
   ===================================================================== */

.fp-btn-primary,
.fp-btn-accent,
.fp-btn-secondary,
.fp-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--fp-font-sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--fp-radius-pill);
  padding: 22px 38px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.fp-btn-primary { background: var(--fp-text); color: var(--fp-white); }
.fp-btn-primary:hover { background: var(--fp-accent); color: var(--fp-text); }

.fp-btn-accent { background: var(--fp-accent); color: var(--fp-text); box-shadow: var(--fp-shadow-accent); }
.fp-btn-accent:hover { background: var(--fp-accent-glow); transform: translateY(-2px); }

.fp-btn-secondary { background: var(--fp-white); color: var(--fp-text); border: 1px solid var(--fp-border-strong); }
.fp-btn-secondary:hover { background: var(--fp-text); color: var(--fp-white); border-color: var(--fp-text); }

.fp-btn-ghost { background: transparent; color: var(--fp-text); padding: 18px 32px; }
.fp-btn-ghost:hover { color: var(--fp-accent-dark); }

.fp-btn-primary::after,
.fp-btn-accent::after,
.fp-btn-secondary::after { content: '→'; font-size: 18px; transition: transform 0.25s ease; }
.fp-btn-primary:hover::after,
.fp-btn-accent:hover::after,
.fp-btn-secondary:hover::after { transform: translateX(4px); }

.fp-btn-sm { padding: 14px 24px; font-size: 13px; }
.fp-btn-lg { padding: 26px 44px; font-size: 16px; }


/* =====================================================================
   06. EYEBROWS & SECTION HEADERS
   ===================================================================== */

.fp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fp-text);
  margin-bottom: 24px;
  font-family: var(--fp-font-sans);
}

.fp-eyebrow::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--fp-accent-dark);
}

.fp-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fp-text);
  margin-bottom: 32px;
  padding: 9px 18px 9px 14px;
  background: var(--fp-white);
  border: 1px solid var(--fp-border-strong);
  border-radius: var(--fp-radius-pill);
  line-height: 1.4;
}

.fp-eyebrow-pill::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--fp-accent);
  box-shadow: 0 0 0 4px rgba(200, 230, 60, 0.3);
}

.fp-section-dark .fp-eyebrow { color: var(--fp-accent); }
.fp-section-dark .fp-eyebrow::before { background: var(--fp-accent); }

.fp-section-heading {
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  max-width: 22ch;
}

.fp-section-heading-center { text-align: center; max-width: 800px; margin-left: auto; margin-right: auto; }


/* =====================================================================
   07. SITE HEADER (WITH NAV)
   ===================================================================== */

.fp-site-header {
  border-bottom: 1px solid var(--fp-border);
  padding: 22px 0;
  background: var(--fp-bg);
  position: relative;
  z-index: 10;
}

.fp-site-header .fp-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.fp-logo img { height: 48px; width: auto; }

.fp-logo-text {
  font-family: var(--fp-font-serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--fp-text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.fp-logo-text::before {
  content: '';
  width: 11px;
  height: 11px;
  background: var(--fp-accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(200, 230, 60, 0.25);
}

.fp-logo-text strong { font-weight: 600; font-style: italic; }

.fp-nav {
  display: flex;
  gap: 36px;
  align-items: center;
}

.fp-nav a {
  font-family: var(--fp-font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--fp-text);
  transition: color 0.2s ease;
  position: relative;
}

.fp-nav a:hover { color: var(--fp-accent-dark); }

.fp-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--fp-accent);
}

.fp-header-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fp-font-serif);
  font-style: italic;
  font-size: 19px;
  font-weight: 400;
  color: var(--fp-text);
  letter-spacing: -0.01em;
}

.fp-header-phone::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--fp-accent);
  box-shadow: 0 0 0 4px rgba(200, 230, 60, 0.25);
}

.fp-header-right { display: flex; align-items: center; gap: 28px; }


/* =====================================================================
   08. SITE FOOTER (MULTI-COLUMN)
   ===================================================================== */

.fp-site-footer {
  background: var(--fp-bg-dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 80px 0 30px;
}

.fp-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.fp-footer-col-title {
  font-family: var(--fp-font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 22px;
}

.fp-footer-brand p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  line-height: 1.6;
  margin-top: 18px;
  max-width: 340px;
}

.fp-footer-links { display: flex; flex-direction: column; gap: 12px; }
.fp-footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14.5px;
  transition: color 0.2s ease;
}
.fp-footer-links a:hover { color: var(--fp-accent); }

.fp-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  flex-wrap: wrap;
  gap: 16px;
}

.fp-footer-bottom p {
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.5);
}

.fp-footer-bottom a { color: var(--fp-accent); }


/* =====================================================================
   09. HERO VARIANTS
   ===================================================================== */

.fp-hero {
  padding: 90px 0 110px;
  position: relative;
  overflow: hidden;
}

.fp-hero::before {
  content: '';
  position: absolute;
  top: 12%;
  right: -80px;
  width: 420px;
  height: 420px;
  background: var(--fp-accent);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.18;
  z-index: 0;
}

.fp-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.fp-hero h1 { margin-bottom: 28px; }

.fp-hero-subtitle {
  font-size: 19px;
  line-height: 1.55;
  color: var(--fp-text-muted);
  margin-bottom: 40px;
  max-width: 560px;
}

.fp-hero-subtitle strong { color: var(--fp-text); font-weight: 600; }

.fp-hero-cta-row {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.fp-hero-meta {
  font-size: 14px;
  color: var(--fp-text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.fp-hero-meta::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--fp-text-muted);
}

.fp-hero-image-wrap { position: relative; }

.fp-hero-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--fp-shadow-lg);
}

.fp-hero-image img { width: 100%; height: 100%; object-fit: cover; }

.fp-hero-image-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  padding: 14px 22px;
  border-radius: var(--fp-radius-pill);
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.02em;
}

.fp-hero-image-tag::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--fp-accent);
  box-shadow: 0 0 0 4px rgba(200, 230, 60, 0.3);
}

.fp-hero-image-badge {
  position: absolute;
  top: -28px;
  right: -28px;
  width: 130px;
  height: 130px;
  background: var(--fp-accent);
  color: var(--fp-text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--fp-font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.1;
  padding: 16px;
  letter-spacing: -0.01em;
  transform: rotate(8deg);
  z-index: 2;
  box-shadow: 0 12px 40px rgba(200, 230, 60, 0.45);
}

/* Centered hero (no image) — for sub-pages */
.fp-hero-centered {
  text-align: center;
  padding: 100px 0 80px;
  max-width: 880px;
  margin: 0 auto;
}

.fp-hero-centered .fp-eyebrow,
.fp-hero-centered .fp-eyebrow-pill { margin-left: auto; margin-right: auto; }


/* =====================================================================
   10. CONTENT SECTIONS (TWO-COL, DARK, CALLOUT)
   ===================================================================== */

.fp-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.fp-two-col.reverse > .fp-col-image { order: -1; }

.fp-col-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--fp-shadow-md);
}

.fp-col-image img { width: 100%; height: 100%; object-fit: cover; }

.fp-col-image-square { aspect-ratio: 1/1; }
.fp-col-image-wide { aspect-ratio: 4/3; }

.fp-col-content p { font-size: 17px; line-height: 1.7; }
.fp-col-content p + p { margin-top: 22px; }
.fp-col-content .fp-btn-primary,
.fp-col-content .fp-btn-accent { margin-top: 24px; }

/* Dark intro feature section */
.fp-intro-feature {
  background: var(--fp-bg-dark);
  color: var(--fp-white);
  position: relative;
  overflow: hidden;
  padding: 130px 0;
}

.fp-intro-feature::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--fp-accent) 0%, transparent 70%);
  opacity: 0.12;
  border-radius: 50%;
}

.fp-intro-feature::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--fp-accent) 0%, transparent 70%);
  opacity: 0.07;
  border-radius: 50%;
}

.fp-intro-feature .fp-container { position: relative; z-index: 1; }
.fp-intro-feature h2 { color: var(--fp-white); max-width: 24ch; margin-bottom: 36px; }
.fp-intro-feature h2 em { color: var(--fp-accent); }
.fp-intro-feature p { font-size: 18px; line-height: 1.7; max-width: 780px; margin-bottom: 40px; }

/* Callout / Quote section */
.fp-callout {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.fp-callout-mark {
  font-family: var(--fp-font-serif);
  font-style: italic;
  font-size: 200px;
  line-height: 0.8;
  color: var(--fp-accent);
  display: block;
  font-weight: 300;
}

.fp-callout h2 { margin-top: -32px; margin-bottom: 36px; max-width: 22ch; margin-left: auto; margin-right: auto; }

.fp-callout-tag-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-bottom: 48px;
  font-family: var(--fp-font-serif);
  font-size: 21px;
  font-style: italic;
  color: var(--fp-text-muted);
}

.fp-callout-tag {
  background: var(--fp-white);
  border: 1px solid var(--fp-border-strong);
  padding: 8px 18px;
  border-radius: var(--fp-radius-pill);
  font-style: italic;
  font-size: 17px;
  color: var(--fp-text);
}


/* =====================================================================
   11. TRUST STRIP MARQUEE
   ===================================================================== */

.fp-trust-strip {
  background: var(--fp-text);
  color: var(--fp-white);
  padding: 28px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.fp-trust-track {
  display: flex;
  gap: 70px;
  align-items: center;
  white-space: nowrap;
  animation: fp-scroll-trust 50s linear infinite;
  width: max-content;
}

@keyframes fp-scroll-trust {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.fp-trust-item { display: flex; align-items: center; gap: 14px; }

.fp-trust-label {
  font-family: var(--fp-font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.fp-trust-value {
  font-family: var(--fp-font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 19px;
  color: var(--fp-white);
  letter-spacing: -0.01em;
}

.fp-trust-value strong {
  color: var(--fp-accent);
  font-weight: 500;
  font-style: normal;
  font-family: var(--fp-font-sans);
  font-size: 16px;
  letter-spacing: 0.02em;
}

.fp-trust-divider {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}


/* =====================================================================
   12. CARDS (HVCO, SERVICE, TESTIMONIAL, PROJECT)
   ===================================================================== */

/* HVCO / Feature numbered cards */
.fp-hvco-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.fp-hvco-card {
  background: var(--fp-white);
  border: 1px solid var(--fp-border);
  border-radius: var(--fp-radius-lg);
  padding: 44px 40px 40px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.fp-hvco-card:hover {
  border-color: var(--fp-accent-dark);
  transform: translateY(-3px);
  box-shadow: var(--fp-shadow-md);
}

.fp-hvco-card.featured {
  background: var(--fp-text);
  color: var(--fp-white);
  grid-column: span 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 50px;
  align-items: center;
  padding: 56px 60px;
}

.fp-hvco-card.featured .fp-hvco-num { font-size: 100px; color: var(--fp-accent); }
.fp-hvco-card.featured h3 { color: var(--fp-white); }
.fp-hvco-card.featured p { color: rgba(255, 255, 255, 0.75); }

.fp-hvco-num {
  font-family: var(--fp-font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 64px;
  line-height: 0.9;
  color: var(--fp-accent-dark);
  margin-bottom: 12px;
  display: block;
  letter-spacing: -0.04em;
}

.fp-hvco-card h3 {
  font-size: 23px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 16px;
}

.fp-hvco-card p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--fp-text-muted);
}

/* Service Cards */
.fp-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.fp-service-card {
  background: var(--fp-white);
  border: 1px solid var(--fp-border);
  border-radius: var(--fp-radius-lg);
  padding: 40px 36px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.fp-service-card:hover {
  border-color: var(--fp-accent-dark);
  transform: translateY(-4px);
  box-shadow: var(--fp-shadow-md);
}

.fp-service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--fp-radius-md);
  background: var(--fp-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--fp-text);
}

.fp-service-icon svg { width: 28px; height: 28px; }

.fp-service-card h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
}

.fp-service-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--fp-text-muted);
  margin-bottom: 22px;
  flex-grow: 1;
}

.fp-service-link {
  font-family: var(--fp-font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fp-text);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s ease;
}

.fp-service-link:hover { gap: 14px; color: var(--fp-accent-dark); }
.fp-service-link::after { content: '→'; }

/* Testimonial Cards */
.fp-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}

.fp-testimonial-card {
  background: var(--fp-white);
  border: 1px solid var(--fp-border);
  border-radius: var(--fp-radius-lg);
  padding: 36px 34px 32px;
  display: flex;
  flex-direction: column;
}

.fp-testimonial-stars {
  color: var(--fp-accent-dark);
  font-size: 18px;
  letter-spacing: 0.05em;
  margin-bottom: 22px;
}

.fp-testimonial-quote {
  font-family: var(--fp-font-serif);
  font-size: 19px;
  line-height: 1.5;
  color: var(--fp-text);
  font-weight: 400;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
  flex-grow: 1;
}

.fp-testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--fp-border);
}

.fp-testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--fp-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fp-font-serif);
  font-weight: 600;
  font-size: 16px;
  color: var(--fp-text);
}

.fp-testimonial-author-info { display: flex; flex-direction: column; }
.fp-testimonial-author-name { font-weight: 600; font-size: 15px; color: var(--fp-text); }
.fp-testimonial-author-meta {
  font-size: 12.5px;
  color: var(--fp-text-light);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}

/* Project / Gallery Cards */
.fp-project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.fp-project-card {
  position: relative;
  border-radius: var(--fp-radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--fp-bg-soft);
  transition: transform 0.3s ease;
}

.fp-project-card:hover { transform: translateY(-4px); }

.fp-project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.fp-project-card:hover img { transform: scale(1.05); }

.fp-project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 16, 21, 0.85) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: var(--fp-white);
}

.fp-project-meta {
  font-family: var(--fp-font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fp-accent);
  margin-bottom: 8px;
}

.fp-project-title {
  font-family: var(--fp-font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--fp-white);
  letter-spacing: -0.01em;
}


/* =====================================================================
   13. GUARANTEE BADGE SECTION
   ===================================================================== */

.fp-guarantee-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.fp-guarantee-badge-svg {
  width: 100%;
  max-width: 360px;
  height: auto;
  filter: drop-shadow(0 30px 50px rgba(20, 22, 27, 0.18));
}

.fp-guarantee-stat {
  display: inline-block;
  background: var(--fp-accent);
  font-family: var(--fp-font-serif);
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 6px;
  letter-spacing: -0.01em;
}

.fp-warranty-row { display: flex; gap: 16px; margin: 32px 0 36px; flex-wrap: wrap; }

.fp-warranty-pill {
  background: var(--fp-white);
  border: 1px solid var(--fp-border-strong);
  padding: 14px 22px;
  border-radius: var(--fp-radius-pill);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
}

.fp-warranty-pill-num {
  font-family: var(--fp-font-serif);
  font-weight: 600;
  font-size: 22px;
  color: var(--fp-text);
  letter-spacing: -0.02em;
  font-style: italic;
}


/* =====================================================================
   14. FINAL CTA BLOCK
   ===================================================================== */

.fp-final-cta { padding: 130px 0; position: relative; overflow: hidden; }

.fp-final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--fp-accent) 0%, transparent 60%);
  opacity: 0.1;
  border-radius: 50%;
}

.fp-final-cta .fp-container { position: relative; z-index: 1; }

.fp-final-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.fp-cta-value-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200, 230, 60, 0.15);
  color: var(--fp-accent);
  padding: 8px 16px;
  border-radius: var(--fp-radius-pill);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.fp-cta-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.fp-cta-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--fp-radius-md);
}

.fp-section-cream .fp-cta-feature,
.fp-section-soft .fp-cta-feature,
body:not(.fp-section-dark) .fp-cta-feature {
  background: var(--fp-white);
  border-color: var(--fp-border);
}

.fp-cta-feature-num {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--fp-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fp-font-serif);
  font-weight: 600;
  font-size: 13px;
  color: var(--fp-text);
  margin-top: 2px;
}

.fp-cta-feature-content strong {
  display: block;
  font-weight: 600;
  font-size: 15.5px;
  margin-bottom: 6px;
  font-family: var(--fp-font-sans);
}

.fp-section-dark .fp-cta-feature-content strong { color: var(--fp-white); }
.fp-section-dark .fp-cta-feature-content { color: rgba(255, 255, 255, 0.7); font-size: 14.5px; line-height: 1.6; }

.fp-cta-warning {
  margin-top: 40px;
  font-size: 15px;
  line-height: 1.6;
  padding: 20px 26px;
  border-left: 3px solid var(--fp-accent);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 8px 8px 0;
  color: rgba(255, 255, 255, 0.78);
}


/* =====================================================================
   15. FORM ELEMENTS
   ===================================================================== */

.fp-form-group { margin-bottom: 24px; }

.fp-label {
  display: block;
  font-family: var(--fp-font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--fp-text);
  margin-bottom: 10px;
}

.fp-label-required::after { content: ' *'; color: var(--fp-error); }

.fp-input,
.fp-select,
.fp-textarea {
  width: 100%;
  padding: 18px 22px;
  font-family: var(--fp-font-sans);
  font-size: 16px;
  color: var(--fp-text);
  background: var(--fp-white);
  border: 1.5px solid var(--fp-border-strong);
  border-radius: var(--fp-radius-md);
  transition: all 0.2s ease;
  outline: none;
}

.fp-input:focus,
.fp-select:focus,
.fp-textarea:focus {
  border-color: var(--fp-accent-dark);
  box-shadow: 0 0 0 4px rgba(200, 230, 60, 0.18);
}

.fp-input::placeholder,
.fp-textarea::placeholder { color: var(--fp-text-light); }

.fp-textarea { resize: vertical; min-height: 120px; font-family: var(--fp-font-sans); }

.fp-select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2315171C' stroke-width='2'%3e%3cpath d='m6 9 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 18px;
  padding-right: 50px;
}

/* Radio cards (custom-styled radio buttons that look like clickable cards) */
.fp-radio-group { display: flex; flex-direction: column; gap: 12px; }

.fp-radio-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  background: var(--fp-white);
  border: 1.5px solid var(--fp-border-strong);
  border-radius: var(--fp-radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
}

.fp-radio-card:hover { border-color: var(--fp-accent-dark); background: rgba(200, 230, 60, 0.04); }

.fp-radio-card input[type="radio"],
.fp-radio-card input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.fp-radio-card-circle {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--fp-border-strong);
  background: var(--fp-white);
  position: relative;
  transition: all 0.2s ease;
}

.fp-radio-card-circle::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--fp-text);
  transform: scale(0);
  transition: transform 0.2s ease;
}

.fp-radio-card input:checked ~ .fp-radio-card-circle { border-color: var(--fp-text); }
.fp-radio-card input:checked ~ .fp-radio-card-circle::after { transform: scale(1); }

.fp-radio-card:has(input:checked) {
  border-color: var(--fp-text);
  background: var(--fp-bg);
  box-shadow: 0 0 0 4px rgba(200, 230, 60, 0.2);
}

.fp-radio-card-label {
  font-size: 16px;
  font-weight: 500;
  color: var(--fp-text);
}

.fp-radio-card-meta {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--fp-text-muted);
  margin-top: 4px;
}

/* Form grid for side-by-side inputs */
.fp-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }


/* =====================================================================
   16. MULTI-STEP PROGRESS BAR
   ===================================================================== */

.fp-progress {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
}

.fp-progress-step {
  flex: 1;
  height: 6px;
  border-radius: 100px;
  background: var(--fp-border);
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}

.fp-progress-step.active { background: var(--fp-accent); }
.fp-progress-step.completed { background: var(--fp-text); }

.fp-progress-meta {
  font-family: var(--fp-font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fp-text-muted);
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
}

.fp-progress-current { color: var(--fp-text); }


/* =====================================================================
   17. FAQ ACCORDION
   ===================================================================== */

.fp-faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.fp-faq-item {
  background: var(--fp-white);
  border: 1px solid var(--fp-border);
  border-radius: var(--fp-radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.fp-faq-item.open { border-color: var(--fp-accent-dark); }

.fp-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 30px;
  cursor: pointer;
  font-family: var(--fp-font-serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--fp-text);
  letter-spacing: -0.01em;
}

.fp-faq-toggle {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--fp-bg-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 18px;
  color: var(--fp-text);
}

.fp-faq-item.open .fp-faq-toggle { background: var(--fp-accent); transform: rotate(45deg); }

.fp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 30px;
}

.fp-faq-item.open .fp-faq-answer { max-height: 600px; padding: 0 30px 26px; }

.fp-faq-answer p { color: var(--fp-text-muted); font-size: 16px; line-height: 1.65; }


/* =====================================================================
   18. STAT BLOCKS
   ===================================================================== */

.fp-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.fp-stat {
  text-align: left;
  padding: 30px 0;
  border-top: 1px solid var(--fp-border-strong);
}

.fp-stat-num {
  font-family: var(--fp-font-serif);
  font-size: 60px;
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  color: var(--fp-text);
  letter-spacing: -0.03em;
  display: block;
  margin-bottom: 12px;
}

.fp-stat-num strong { color: var(--fp-accent-dark); font-weight: 500; }

.fp-stat-label {
  font-family: var(--fp-font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fp-text-muted);
}


/* =====================================================================
   19. IMAGE PLACEHOLDERS (for design mockups before real photos)
   ===================================================================== */

.fp-img-ph {
  position: relative;
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(20, 22, 27, 0.025) 0,
      rgba(20, 22, 27, 0.025) 1px,
      transparent 1px,
      transparent 14px
    ),
    linear-gradient(135deg, #E8E2D3 0%, #D9D2BF 50%, #C9C1AB 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  text-align: center;
  padding: 30px;
}

.fp-img-ph-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(20, 22, 27, 0.08);
}

.fp-img-ph-icon svg { width: 26px; height: 26px; color: var(--fp-text); opacity: 0.55; }

.fp-img-ph-label {
  font-family: var(--fp-font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(20, 22, 27, 0.55);
  background: rgba(255, 255, 255, 0.7);
  padding: 8px 14px;
  border-radius: var(--fp-radius-pill);
  border: 1px solid rgba(20, 22, 27, 0.06);
}


/* =====================================================================
   20. UTILITIES
   ===================================================================== */

.fp-text-center { text-align: center; }
.fp-text-left { text-align: left; }
.fp-text-right { text-align: right; }

.fp-mt-0 { margin-top: 0; }
.fp-mt-2 { margin-top: var(--fp-space-2); }
.fp-mt-4 { margin-top: var(--fp-space-4); }
.fp-mt-5 { margin-top: var(--fp-space-5); }
.fp-mt-6 { margin-top: var(--fp-space-6); }
.fp-mt-7 { margin-top: var(--fp-space-7); }
.fp-mt-8 { margin-top: var(--fp-space-8); }

.fp-mb-0 { margin-bottom: 0; }
.fp-mb-4 { margin-bottom: var(--fp-space-4); }
.fp-mb-5 { margin-bottom: var(--fp-space-5); }
.fp-mb-6 { margin-bottom: var(--fp-space-6); }
.fp-mb-7 { margin-bottom: var(--fp-space-7); }
.fp-mb-8 { margin-bottom: var(--fp-space-8); }

.fp-flex { display: flex; }
.fp-flex-col { flex-direction: column; }
.fp-items-center { align-items: center; }
.fp-justify-center { justify-content: center; }
.fp-justify-between { justify-content: space-between; }
.fp-gap-2 { gap: var(--fp-space-2); }
.fp-gap-4 { gap: var(--fp-space-4); }
.fp-gap-5 { gap: var(--fp-space-5); }
.fp-gap-6 { gap: var(--fp-space-6); }

.fp-hidden { display: none; }


/* =====================================================================
   21. RESPONSIVE BREAKPOINTS
   ===================================================================== */

@media (max-width: 1100px) {
  .fp-stat-grid { grid-template-columns: repeat(2, 1fr); }
  .fp-service-grid,
  .fp-testimonial-grid,
  .fp-project-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .fp-section { padding: 70px 0; }
  .fp-section-lg { padding: 80px 0; }
  .fp-container,
  .fp-container-narrow,
  .fp-container-wide { padding: 0 24px; }

  .fp-hero { padding: 50px 0 70px; }

  .fp-hero-grid,
  .fp-two-col,
  .fp-guarantee-grid,
  .fp-final-cta-grid,
  .fp-grid-2,
  .fp-footer-grid { grid-template-columns: 1fr; gap: 50px; }

  .fp-hvco-grid,
  .fp-service-grid,
  .fp-testimonial-grid,
  .fp-project-grid,
  .fp-form-grid { grid-template-columns: 1fr; }

  .fp-hvco-card.featured { grid-column: span 1; grid-template-columns: 1fr; padding: 36px 32px; gap: 20px; }

  .fp-hero-image-badge { width: 100px; height: 100px; font-size: 14px; top: -20px; right: -10px; }

  .fp-callout-mark { font-size: 120px; }

  .fp-nav { display: none; }

  .fp-stat-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .fp-stat-num { font-size: 44px; }
}

@media (max-width: 600px) {
  h1 { font-size: 38px; }
  h2 { font-size: 30px; }

  .fp-btn-primary,
  .fp-btn-accent,
  .fp-btn-secondary { padding: 18px 28px; font-size: 14px; }

  .fp-faq-question { font-size: 17px; padding: 22px 24px; }
  .fp-faq-answer { padding: 0 24px; }
  .fp-faq-item.open .fp-faq-answer { padding: 0 24px 22px; }
}

/* End of fresh-painters.css */