/* ============================================
   One Brush Painting, Inc — Palm Coast, FL
   Warm mustard-yellow + deep plum/eggplant, artistic & confident
   Mobile-first CSS, min-width media queries scale up
   ============================================ */

:root {
  --mustard-900: #6b4c05;
  --mustard-700: #9c7311;
  --mustard-600: #c2911a;
  --mustard-500: #d9a627;
  --mustard-400: #e8bc4c;
  --mustard-300: #f2d488;
  --mustard-100: #fbf1da;

  --plum-950: #1f0f24;
  --plum-900: #2b1533;
  --plum-800: #3a1e46;
  --plum-700: #4a2758;
  --plum-600: #5c3170;
  --plum-400: #8a5aa3;

  --ink: #241221;
  --ink-soft: #5a4a5c;
  --paper: #fffaf1;
  --paper-alt: #fbf1da;
  --white: #ffffff;
  --border: #ecdcb8;

  --radius-blob: 62% 38% 55% 45% / 45% 55% 45% 55%;
  --radius-blob-2: 38% 62% 45% 55% / 55% 40% 60% 45%;
  --radius-md: 16px;
  --radius-lg: 28px;

  --font-head: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', 'Segoe UI', sans-serif;

  --shadow-soft: 0 14px 34px -18px rgba(43, 21, 51, 0.45);
  --shadow-strong: 0 20px 50px -16px rgba(43, 21, 51, 0.55);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html.no-js .main-nav { display: none; }

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--plum-900);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--plum-900);
  color: var(--white);
  padding: 12px 20px;
  z-index: 200;
}
.skip-link:focus { left: 10px; top: 10px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  min-height: 48px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--plum-800);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { background: var(--plum-700); }
.btn-mustard {
  background: var(--mustard-500);
  color: var(--plum-950);
  box-shadow: var(--shadow-soft);
}
.btn-mustard:hover { background: var(--mustard-400); }
.btn-outline {
  background: transparent;
  border-color: var(--plum-800);
  color: var(--plum-900);
}
.btn-outline:hover { background: var(--plum-900); color: var(--white); }
.btn-outline-inverse { border-color: var(--white); color: var(--white); }
.btn-outline-inverse:hover { background: var(--white); color: var(--plum-900); }
.btn-cta-dark { background: var(--plum-950); }
.btn-cta-dark:hover { background: var(--plum-900); }
.btn-block { width: 100%; }
.link-strong { color: var(--mustard-700); font-weight: 700; }
.link-strong-plum { color: var(--plum-800); font-weight: 700; }
.footer-tagline { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.contact-sub { color: var(--ink-soft); font-size: 0.95rem; }
.area-note { margin-top: 1em; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--border);
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 14px 20px;
  gap: 10px;
  max-width: 1180px;
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-blob);
  background: linear-gradient(135deg, var(--mustard-500), var(--mustard-300));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.brand-mark span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--plum-900);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong { font-family: var(--font-head); font-size: 1.05rem; color: var(--plum-900); }
.brand-text span { font-size: 0.78rem; color: var(--ink-soft); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--plum-800);
  min-height: 44px;
  padding: 6px 4px;
}
.header-phone svg { width: 18px; height: 18px; flex-shrink: 0; }

.nav-toggle {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 2px solid var(--plum-800);
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--plum-800);
  display: block;
}

.main-nav {
  width: 100%;
  order: 3;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.main-nav.is-open { max-height: 500px; }
.main-nav ul {
  display: flex;
  flex-direction: column;
  padding: 10px 0 6px;
  gap: 2px;
}
.main-nav a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 6px 10px;
  font-weight: 600;
  border-radius: 8px;
}
.main-nav a:hover { background: var(--mustard-100); }
.main-nav .nav-cta {
  margin-top: 8px;
  justify-content: center;
  min-height: 48px;
}

@media (min-width: 900px) {
  .header-bar { flex-wrap: nowrap; padding: 16px 20px; }
  .nav-toggle { display: none; }
  .main-nav {
    order: 2;
    width: auto;
    max-height: none;
    overflow: visible;
  }
  .main-nav ul {
    flex-direction: row;
    align-items: center;
    gap: 4px;
    padding: 0;
  }
  .main-nav a { min-height: 40px; }
  .main-nav .nav-cta { margin-top: 0; margin-left: 6px; }
  .header-actions { order: 3; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--plum-950);
  padding: 56px 0 64px;
}
.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -140px;
  width: 380px;
  height: 380px;
  border-radius: var(--radius-blob);
  background: radial-gradient(circle at 30% 30%, var(--mustard-500), transparent 70%);
  opacity: 0.35;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -160px;
  left: -120px;
  width: 320px;
  height: 320px;
  border-radius: var(--radius-blob-2);
  background: radial-gradient(circle at 60% 40%, var(--plum-400), transparent 70%);
  opacity: 0.4;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(232,188,76,0.4);
  color: var(--mustard-300);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  align-self: flex-start;
}
.hero-badge .stars { color: var(--mustard-400); letter-spacing: 1px; }
.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 6vw, 3.2rem);
  margin-top: 16px;
}
.hero h1 em {
  font-style: normal;
  color: var(--mustard-400);
}
.hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 1.08rem;
  max-width: 56ch;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
}
.hero-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}
.hero-point {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.95rem;
}
.hero-point svg { color: var(--mustard-400); flex-shrink: 0; width: 20px; height: 20px; }

.hero-panel {
  position: relative;
  background: linear-gradient(160deg, var(--plum-800), var(--plum-900));
  border-radius: var(--radius-blob);
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  box-shadow: var(--shadow-strong);
}
.hero-swatches {
  display: flex;
  gap: 10px;
  width: 100%;
}
.swatch {
  flex: 1;
  height: 46px;
  border-radius: 10px;
}
.swatch-1 { background: var(--mustard-300); }
.swatch-2 { background: var(--mustard-500); }
.swatch-3 { background: var(--plum-400); }
.swatch-4 { background: var(--mustard-700); }
.hero-stats {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat strong { color: var(--mustard-400); font-family: var(--font-head); font-size: 1.5rem; }
.hero-stat span { color: rgba(255,255,255,0.7); font-size: 0.82rem; }

@media (min-width: 900px) {
  .hero { padding: 90px 0 100px; }
  .hero-inner { flex-direction: row; align-items: center; gap: 60px; }
  .hero-copy { flex: 1.15; }
  .hero-panel { flex: 0.85; }
}

/* ===== Trust bar ===== */
.trust-bar {
  background: var(--mustard-500);
}
.trust-bar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: center;
}
.trust-bar-inner span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--plum-950);
}
.trust-bar-inner svg { width: 18px; height: 18px; }

/* ===== Sections ===== */
.section { padding: 64px 0; }
.section-head { max-width: 640px; margin-bottom: 36px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
  display: inline-block;
  color: var(--mustard-700);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 8px;
}
.section-head h2 { font-size: clamp(1.6rem, 4vw, 2.3rem); }
.section-head p { color: var(--ink-soft); font-size: 1.02rem; }

/* Brush-stroke divider motif */
.brush-divider {
  width: 100%;
  height: 26px;
  margin: 0 auto 8px;
}

/* ===== Services ===== */
.services { background: var(--paper-alt); }
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  box-shadow: var(--shadow-soft);
  border-top: 4px solid var(--mustard-500);
}
.service-card.is-specialty { border-top-color: var(--plum-600); }
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-blob-2);
  background: var(--plum-900);
  color: var(--mustard-400);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.service-card p { color: var(--ink-soft); font-size: 0.96rem; margin: 0; }

@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== Process ===== */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.process-card { position: relative; padding-left: 60px; }
.process-num {
  position: absolute;
  left: 0;
  top: -6px;
  font-family: var(--font-head);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--mustard-400);
  -webkit-text-stroke: 1.5px var(--plum-800);
}
.process-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.process-card p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }

@media (min-width: 700px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .process-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ===== About ===== */
.about { background: var(--plum-950); color: var(--white); position: relative; overflow: hidden; }
.about::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: var(--radius-blob);
  background: radial-gradient(circle, var(--mustard-500), transparent 70%);
  opacity: 0.22;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  position: relative;
  z-index: 1;
}
.about .eyebrow { color: var(--mustard-400); }
.about h2 { color: var(--white); }
.about p { color: rgba(255,255,255,0.82); }
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.about-stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(232,188,76,0.25);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}
.about-stat strong { display: block; font-family: var(--font-head); font-size: 1.8rem; color: var(--mustard-400); }
.about-stat span { font-size: 0.82rem; color: rgba(255,255,255,0.7); }

@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1.2fr 1fr; align-items: center; gap: 50px; }
}

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.gallery-tile {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  overflow: hidden;
}
.gallery-tile span {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-weight: 700;
  font-family: var(--font-head);
  font-size: 1.05rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.gallery-1 { background: linear-gradient(150deg, var(--mustard-600), var(--mustard-300)); }
.gallery-2 { background: linear-gradient(150deg, var(--plum-700), var(--plum-400)); }
.gallery-3 { background: linear-gradient(150deg, var(--mustard-700), var(--plum-600)); }
.gallery-4 { background: linear-gradient(150deg, var(--plum-800), var(--mustard-500)); }

@media (min-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ===== Testimonials (React island container) ===== */
.testimonials { background: var(--paper-alt); }
.tc-noscript {
  max-width: 640px;
  margin: 0 auto;
}

/* ===== Service area ===== */
.area-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.area-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--mustard-100);
  border: 1px solid var(--mustard-300);
  color: var(--plum-900);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 8px 14px;
  border-radius: 999px;
}
.area-list svg { width: 15px; height: 15px; color: var(--mustard-700); }
.map-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/3;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

@media (min-width: 900px) {
  .area-grid { grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
}

/* ===== CTA band ===== */
.cta-band {
  background: linear-gradient(120deg, var(--mustard-600), var(--mustard-400));
}
.cta-band-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 44px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.cta-band-inner h2 { color: var(--plum-950); margin-bottom: 4px; }
.cta-band-inner p { color: var(--plum-900); margin: 0; }

@media (min-width: 780px) {
  .cta-band-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-soft);
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 20px;
}
.contact-item svg {
  width: 22px;
  height: 22px;
  color: var(--mustard-700);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-item strong { display: block; font-size: 0.85rem; color: var(--ink-soft); font-weight: 700; }
.contact-item a { font-weight: 700; color: var(--plum-800); display: inline-flex; min-height: 32px; align-items: center; }
.form-row { margin-bottom: 16px; display: flex; flex-direction: column; gap: 6px; }
.form-row label { font-weight: 700; font-size: 0.9rem; color: var(--plum-900); }
.form-row input,
.form-row select,
.form-row textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  font-size: 1rem;
  font-family: var(--font-body);
  min-height: 46px;
  background: var(--paper-alt);
}
.form-row textarea { min-height: 100px; resize: vertical; }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 2px solid var(--mustard-500);
  outline-offset: 1px;
}
.form-note { font-size: 0.88rem; color: var(--ink-soft); margin-top: 12px; margin-bottom: 0; }

@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1.1fr; gap: 36px; }
}

/* ===== Footer ===== */
.site-footer { background: var(--plum-950); color: rgba(255,255,255,0.85); padding: 48px 0 0; }
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px 36px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.footer-brand strong { color: var(--white); font-family: var(--font-head); font-size: 1.1rem; }
.footer-col h4 { color: var(--mustard-400); font-size: 0.95rem; margin-bottom: 12px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col a:hover { color: var(--mustard-400); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  text-align: center;
  padding: 18px 20px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

@media (min-width: 700px) {
  .footer-inner { grid-template-columns: 1.3fr 1fr 1fr; }
}

/* ===== Testimonial carousel component styles (shared class names) ===== */
.tc-wrap { max-width: 720px; margin: 0 auto; }
.tc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-soft);
  text-align: center;
  border-bottom: 5px solid var(--mustard-500);
}
.tc-stars { color: var(--mustard-500); letter-spacing: 2px; font-size: 1.1rem; margin-bottom: 12px; }
.tc-quote { font-size: 1.08rem; color: var(--ink); font-style: italic; margin-bottom: 16px; }
.tc-meta { display: flex; flex-direction: column; gap: 2px; }
.tc-name { font-weight: 700; color: var(--plum-800); }
.tc-detail { font-size: 0.85rem; color: var(--ink-soft); }
.tc-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}
.tc-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--plum-700);
  background: var(--white);
  color: var(--plum-800);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tc-btn:hover { background: var(--plum-800); color: var(--white); }
.tc-dots { display: flex; gap: 8px; }
.tc-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: var(--mustard-300);
  cursor: pointer;
  padding: 0;
}
.tc-dot.is-active { background: var(--plum-700); }
