/* ===================================================
   BRADLEY PAINTING PLUS — STYLES
   Editorial craftsmanship aesthetic
   =================================================== */

:root {
  /* Colors */
  --bg: #f7f4ee;
  --bg-warm: #efe7d8;
  --bg-darker: #ded3bd;
  --ink: #052a5a;
  --ink-soft: #123a68;
  --muted: #68615a;
  --line: #d9cfbd;
  --paper: #fffdf8;
  
  /* Brand accents (from logo paint streaks) */
  --accent-red: #e8b04e;
  --accent-orange: #e8b04e;
  --accent-yellow: #e8b04e;
  --accent-green: #052a5a;
  --accent-blue: #052a5a;
  --accent-purple: #123a68;
  --accent: var(--accent-yellow);
  
  /* Typography */
  --font-display: "Fraunces", "Playfair Display", Georgia, serif;
  --font-body: "Manrope", system-ui, -apple-system, sans-serif;
  
  /* Spacing */
  --gutter: clamp(1.25rem, 3vw, 2.5rem);
  --section-pad: clamp(4rem, 9vw, 8rem);
  --max-w: 1320px;
  
  /* Effects */
  --radius-sm: 6px;
  --radius: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 12px rgba(28, 39, 66, 0.06);
  --shadow: 0 14px 40px rgba(28, 39, 66, 0.12);
  --shadow-lg: 0 30px 80px rgba(28, 39, 66, 0.18);
  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; font: inherit; color: inherit; }
ul { list-style: none; }

::selection { background: var(--ink); color: var(--bg); }

/* ===================================================
   GRAIN OVERLAY
   =================================================== */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 100;
  opacity: .04; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===================================================
   SCROLL PROGRESS
   =================================================== */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px;
  z-index: 200; background: transparent;
}
.scroll-progress span {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--ink), var(--accent-yellow), var(--ink));
  transition: width .1s linear;
}

/* ===================================================
   HEADER / NAV
   =================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1rem var(--gutter);
  background: rgba(245, 241, 234, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: padding .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
}
.site-header.scrolled {
  padding: .65rem var(--gutter);
  background: rgba(245, 241, 234, 0.95);
  box-shadow: 0 1px 0 rgba(28, 39, 66, 0.08);
}

.logo {
  display: flex; align-items: center; gap: .75rem;
  font-family: var(--font-display);
  z-index: 2;
}
.logo img {
  width: auto;
  height: 74px;
  max-width: 190px;
  border-radius: 0;
  object-fit: contain;
  box-shadow: none;
  transition: transform .35s var(--ease);
}
.logo:hover img { transform: translateY(-1px) scale(1.02); }
.logo-text { display: none; }
.logo-primary {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -.01em;
}
.logo-secondary {
  font-size: .78rem;
  color: var(--muted);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-family: var(--font-body);
  margin-top: 3px;
  font-weight: 500;
}
.logo-secondary em {
  color: var(--accent-red);
  font-style: normal;
  font-weight: 700;
  margin-left: 2px;
}

.primary-nav ul {
  display: flex; gap: 2rem; align-items: center;
  justify-content: center;
}
.primary-nav a {
  font-size: .92rem;
  font-weight: 500;
  position: relative;
  padding: .35rem 0;
  transition: color .25s var(--ease);
}
.primary-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--ink);
  transform: scaleX(0); transform-origin: right;
  transition: transform .35s var(--ease);
}
.primary-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .7rem 1.25rem;
  background: var(--ink); color: var(--paper);
  border-radius: 999px;
  font-size: .88rem; font-weight: 600;
  letter-spacing: .01em;
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.nav-cta:hover { background: var(--accent-red); transform: translateY(-1px); }
.nav-cta-dot {
  width: 8px; height: 8px;
  background: var(--accent-yellow);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(232, 176, 78, .7); }
  50% { opacity: .6; box-shadow: 0 0 0 6px rgba(232, 176, 78, 0); }
}

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column; gap: 5px;
  align-items: center; justify-content: center;
  z-index: 2;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--ink);
  transition: all .35s var(--ease);
  border-radius: 2px;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 0; z-index: 80;
  background: var(--bg);
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  padding: var(--gutter);
  opacity: 0; pointer-events: none;
  transform: translateY(-20px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.mobile-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mobile-nav ul {
  display: flex; flex-direction: column; gap: 1.4rem;
  margin-bottom: 3rem; text-align: center;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  font-style: italic;
}
.mobile-call { font-size: 1rem; padding: 1rem 2rem; }

/* ===================================================
   BUTTONS
   =================================================== */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: 1rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
  position: relative; overflow: hidden;
}
.btn svg { width: 18px; height: 18px; transition: transform .3s var(--ease); }

.btn-primary {
  background: var(--ink); color: var(--paper);
  box-shadow: 0 6px 20px rgba(28, 39, 66, 0.18);
}
.btn-primary:hover {
  background: var(--accent-red);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(198, 69, 69, 0.3);
}
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  background: transparent; color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--ink);
}
.btn-ghost:hover {
  background: var(--ink); color: var(--paper);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--ink); color: var(--paper);
  padding: .9rem 1.6rem;
}
.btn-dark:hover { background: var(--accent-red); }

/* ===================================================
   HERO
   =================================================== */
.hero {
  position: relative;
  padding: 9rem var(--gutter) 0;
  overflow: hidden;
  min-height: 100vh;
  display: flex; flex-direction: column;
}

.hero-bg {
  position: absolute; inset: 0;
  z-index: 0; pointer-events: none;
}
.paint-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
  animation: float 20s ease-in-out infinite;
}
.blob-1 {
  width: 500px; height: 500px;
  background: var(--accent-yellow);
  top: -150px; left: -150px;
}
.blob-2 {
  width: 400px; height: 400px;
  background: var(--accent-red);
  bottom: -100px; right: -100px;
  animation-delay: -7s;
}
.blob-3 {
  width: 350px; height: 350px;
  background: var(--accent-green);
  top: 40%; left: 50%;
  opacity: .2;
  animation-delay: -14s;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(.95); }
}

.hero-grid {
  position: relative; z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 4rem;
  align-items: center;
  padding: 2rem 0 3rem;
  flex: 1;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .55rem 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}
.pulse-dot {
  width: 7px; height: 7px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: pulse-green 2s ease-in-out infinite;
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(90, 138, 74, .6); }
  50% { box-shadow: 0 0 0 7px rgba(90, 138, 74, 0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 7vw, 5.8rem);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.025em;
  margin-bottom: 2rem;
}
.hero-line {
  display: block;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.hero-line em {
  font-style: italic;
  color: var(--accent-red);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}

.hero-lede {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--ink-soft);
  max-width: 32rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-cta {
  display: flex; gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-trust {
  display: flex; align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .85rem;
  color: var(--ink-soft);
}
.trust-item strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
}
.trust-divider {
  width: 1px; height: 22px;
  background: var(--line);
}
.stars {
  display: inline-flex; gap: 1px;
}
.stars svg {
  width: 14px; height: 14px;
  fill: var(--accent-yellow);
}
.trust-icon {
  width: 16px; height: 16px;
  color: var(--accent-green);
  stroke-width: 1.8;
}

/* Hero visual */
.hero-visual {
  position: relative;
}
.visual-stack {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 520px;
  margin-left: auto;
}
.visual-card {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--paper);
  transition: transform .6s var(--ease);
}
.visual-card img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.card-back {
  top: 0; right: 0;
  width: 70%; height: 70%;
  transform: rotate(3deg);
  z-index: 1;
}
.card-front {
  bottom: 0; left: 0;
  width: 65%; height: 65%;
  transform: rotate(-4deg);
  z-index: 2;
}
.visual-stack:hover .card-back { transform: rotate(5deg) translateY(-4px); }
.visual-stack:hover .card-front { transform: rotate(-6deg) translateY(4px); }

.card-tag {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--ink);
  color: var(--paper);
  padding: .35rem .8rem;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.card-front figcaption {
  position: absolute; bottom: 1rem; left: 1rem;
  background: var(--paper);
  padding: .6rem .9rem;
  border-radius: var(--radius-sm);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.cap-label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--accent-red);
}
.cap-detail {
  font-size: .7rem;
  color: var(--muted);
  letter-spacing: .03em;
  text-transform: uppercase;
}

/* Paint stripes */
.paint-stripe {
  position: absolute;
  height: 5px;
  border-radius: 3px;
  z-index: 0;
}
.stripe-red {
  width: 60%; background: var(--accent-red);
  top: 8%; right: -5%;
  transform: rotate(-12deg);
}
.stripe-yellow {
  width: 45%; background: var(--accent-yellow);
  bottom: 35%; right: -8%;
  transform: rotate(8deg);
}
.stripe-green {
  width: 35%; background: var(--accent-green);
  bottom: 5%; left: -5%;
  transform: rotate(-15deg);
}

/* Marquee */
.marquee {
  position: relative; z-index: 1;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.25rem 0;
  overflow: hidden;
  margin: 0 calc(var(--gutter) * -1);
  background: var(--bg-warm);
}
.marquee-track {
  display: flex; gap: 0;
  white-space: nowrap;
  animation: marquee 50s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  color: var(--ink);
  padding-right: 2rem;
}
.marquee-track i {
  color: var(--accent-red);
  font-style: normal;
  margin: 0 .3rem;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===================================================
   SECTIONS — common
   =================================================== */
.section {
  padding: var(--section-pad) var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-head {
  max-width: 64rem;
  margin-bottom: 4rem;
}
.section-kicker {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-red);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 1.25rem;
}
.section-title em {
  font-style: italic;
  color: var(--accent-red);
  font-variation-settings: "opsz" 144, "WONK" 1;
}
.section-lede {
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  color: var(--ink-soft);
  max-width: 38rem;
  line-height: 1.65;
}

/* ===================================================
   SERVICES
   =================================================== */
.services {
  background: var(--paper);
  border-radius: var(--radius-lg);
  margin-top: var(--section-pad);
  margin-bottom: 0;
  position: relative;
  max-width: calc(var(--max-w) - 2rem);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-card {
  background: var(--paper);
  padding: 2rem 1.75rem;
  position: relative;
  transition: background .35s var(--ease), transform .35s var(--ease);
  display: flex; flex-direction: column;
}
.service-card:hover {
  background: var(--bg-warm);
}
.service-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--accent-red);
  margin-bottom: 1rem;
  font-weight: 400;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: -.01em;
  line-height: 1.15;
  margin-bottom: .75rem;
}
.service-card p {
  color: var(--ink-soft);
  font-size: .92rem;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.25rem;
}
.service-tags {
  display: flex; flex-wrap: wrap; gap: .35rem;
}
.service-tags li {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .03em;
  padding: .25rem .65rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  text-transform: uppercase;
}
.feature-card {
  background: var(--ink);
  color: var(--paper);
}
.feature-card:hover { background: var(--ink-soft); }
.feature-card .service-num { color: var(--accent-yellow); }
.feature-card p { color: rgba(251, 248, 242, .8); }
.feature-card .service-tags li {
  border-color: rgba(251, 248, 242, .25);
  color: rgba(251, 248, 242, .8);
}

.sector-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  padding: 1.75rem 2rem;
  background: var(--bg-warm);
  border-radius: var(--radius);
}
.sector-tag {
  display: inline-flex; align-items: center; gap: .65rem;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  font-style: italic;
  font-weight: 400;
}
.sector-tag svg { width: 22px; height: 22px; color: var(--accent-red); }
.sector-amp {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2rem;
  color: var(--accent-red);
}

/* ===================================================
   ABOUT
   =================================================== */
.about {
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}
.about-image {
  position: relative;
}
.about-image figure {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  transition: transform 1s var(--ease);
}
.about-image:hover img { transform: scale(1.04); }
.about-image figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(to top, rgba(28, 39, 66, .9), transparent);
  color: var(--paper);
  font-family: var(--font-display);
  font-style: italic;
  font-size: .95rem;
}

.about-license {
  position: absolute;
  bottom: -30px; right: -20px;
  background: var(--paper);
  padding: 1.1rem 1.4rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: .85rem;
  max-width: 280px;
}
.about-license svg {
  width: 36px; height: 36px;
  color: var(--accent-green);
  flex-shrink: 0;
}
.about-license strong {
  display: block;
  font-size: .9rem;
  margin-bottom: 2px;
}
.about-license span {
  font-size: .72rem;
  color: var(--muted);
  letter-spacing: .02em;
  line-height: 1.3;
}

.about-content .section-title { margin-bottom: 1.5rem; }
.about-content > p {
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.7;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}
.about-features li {
  position: relative;
  padding-top: .5rem;
  border-top: 1px solid var(--line);
}
.feat-num {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: .85rem;
  color: var(--accent-red);
  margin-bottom: .35rem;
}
.about-features strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: .25rem;
}
.about-features em {
  font-style: normal;
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.4;
}

/* ===================================================
   GALLERY
   =================================================== */
.work {
  background: var(--bg-warm);
  border-radius: var(--radius-lg);
  max-width: calc(var(--max-w) - 2rem);
  position: relative;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 180px;
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
  cursor: pointer;
  transition: transform .5s var(--ease);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease), filter .5s var(--ease);
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(.7);
}
.gallery-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.5rem 1.25rem 1.25rem;
  background: linear-gradient(to top, rgba(28, 39, 66, .95) 20%, transparent);
  color: var(--paper);
  display: flex; flex-direction: column;
  gap: .15rem;
  transform: translateY(20%);
  opacity: 0;
  transition: transform .45s var(--ease), opacity .45s var(--ease);
}
.gallery-item:hover figcaption {
  transform: translateY(0);
  opacity: 1;
}
.gi-kicker {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-yellow);
}
.gallery-item strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.1;
}
.gallery-item em {
  font-style: italic;
  font-size: .85rem;
  opacity: .85;
}

/* Asymmetric layout */
.gi-1 { grid-column: span 7; grid-row: span 2; }
.gi-2 { grid-column: span 5; grid-row: span 2; }
.gi-3 { grid-column: span 4; grid-row: span 2; }
.gi-4 { grid-column: span 4; grid-row: span 2; }
.gi-5 { grid-column: span 4; grid-row: span 2; }
.gi-6 { grid-column: span 4; grid-row: span 2; }
.gi-7 { grid-column: span 5; grid-row: span 2; }
.gi-8 { grid-column: span 3; grid-row: span 2; }

/* ===================================================
   REVIEWS
   =================================================== */
.reviews {
  position: relative;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.review-card {
  padding: 2rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.review-card::before {
  content: """;
  position: absolute;
  top: -10px; left: 1.5rem;
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--accent-red);
  opacity: .25;
}
.review-stars {
  color: var(--accent-yellow);
  font-size: 1rem;
  letter-spacing: .15em;
  margin-bottom: 1rem;
}
.review-card blockquote {
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 1.5rem;
  font-weight: 400;
  font-variation-settings: "opsz" 14;
}
.review-card footer strong {
  display: block;
  font-family: var(--font-body);
  font-size: .92rem;
  font-weight: 700;
  margin-bottom: .15rem;
}
.review-card footer span {
  font-size: .8rem;
  color: var(--muted);
  letter-spacing: .02em;
}
.review-feature {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.review-feature::before { color: var(--accent-yellow); opacity: .4; }
.review-feature blockquote { color: var(--paper); }
.review-feature footer span { color: rgba(251, 248, 242, .65); }

/* ===================================================
   AREAS
   =================================================== */
.areas {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-lg);
  max-width: calc(var(--max-w) - 2rem);
  position: relative;
  overflow: hidden;
}
.areas::before {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232, 176, 78, .15), transparent 70%);
  top: -200px; right: -200px;
  pointer-events: none;
}
.areas .section-kicker { color: var(--accent-yellow); }
.areas .section-title { color: var(--paper); }
.areas .section-title em { color: var(--accent-yellow); }
.areas .section-lede { color: rgba(251, 248, 242, .75); }

.areas-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: rgba(251, 248, 242, .15);
  border: 1px solid rgba(251, 248, 242, .15);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2rem;
  position: relative;
}
.areas-list li {
  background: var(--ink);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
  transition: background .35s var(--ease);
  cursor: pointer;
}
.areas-list li:hover { background: var(--ink-soft); }
.areas-list span {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 400;
}
.areas-list em {
  font-style: normal;
  font-size: .8rem;
  letter-spacing: .08em;
  color: var(--accent-yellow);
  font-weight: 600;
}
.areas-foot {
  text-align: center;
  font-size: .92rem;
  color: rgba(251, 248, 242, .7);
}
.areas-foot a {
  color: var(--accent-yellow);
  border-bottom: 1px dotted var(--accent-yellow);
}

/* ===================================================
   CONTACT
   =================================================== */
.contact {
  position: relative;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.contact-content .section-title { margin-bottom: 1.5rem; }
.contact-content > p {
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
  line-height: 1.65;
}

.contact-info {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.contact-info li {
  display: flex; align-items: flex-start; gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}
.contact-info li:last-child { border-bottom: none; }
.contact-info svg {
  width: 24px; height: 24px;
  color: var(--accent-red);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info strong {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .15rem;
}
.contact-info a, .contact-info span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ink);
  font-weight: 400;
}
.contact-info a:hover { color: var(--accent-red); }

.payment-row {
  display: flex; align-items: center; gap: .75rem;
  flex-wrap: wrap;
  font-size: .85rem;
  color: var(--muted);
}
.payment-row em {
  font-style: normal;
  font-weight: 500;
  color: var(--ink);
}

/* Form */
.contact-form {
  background: var(--paper);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}
.contact-form::before {
  content: "";
  position: absolute;
  top: -8px; left: -8px;
  width: 60%; height: 60%;
  border-top: 3px solid var(--accent-red);
  border-left: 3px solid var(--accent-red);
  border-radius: var(--radius) 0 0 0;
  pointer-events: none;
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1.75rem;
  letter-spacing: -.01em;
}
.form-row {
  margin-bottom: 1.25rem;
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-row label {
  display: block;
}
.form-row span {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .4rem;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: .75rem .95rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--ink);
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--ink);
  background: var(--paper);
}
.form-row textarea {
  resize: vertical;
  min-height: 100px;
}
.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: .5rem;
}
.form-foot {
  text-align: center;
  font-size: .85rem;
  color: var(--muted);
  margin-top: 1rem;
}
.form-foot a {
  color: var(--ink);
  font-weight: 600;
  border-bottom: 1px solid var(--line);
}

/* ===================================================
   FOOTER
   =================================================== */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 5rem var(--gutter) 2rem;
  margin-top: var(--section-pad);
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(251, 248, 242, .15);
}
.footer-brand .logo { margin-bottom: 1.25rem; }
.footer-brand .logo-primary { color: var(--paper); }
.footer-brand .logo-secondary { color: rgba(251, 248, 242, .6); }
.footer-brand .logo-secondary em { color: var(--accent-yellow); }
.footer-brand p {
  font-size: .9rem;
  color: rgba(251, 248, 242, .7);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 22rem;
}
.footer-license {
  display: inline-flex; flex-direction: column;
  padding: .75rem 1rem;
  background: rgba(251, 248, 242, .08);
  border-radius: var(--radius-sm);
}
.footer-license strong {
  font-size: .9rem;
  color: var(--accent-yellow);
}
.footer-license span {
  font-size: .72rem;
  color: rgba(251, 248, 242, .65);
  letter-spacing: .02em;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  font-weight: 500;
  color: var(--accent-yellow);
  margin-bottom: 1.1rem;
  letter-spacing: -.005em;
}
.footer-col ul { display: grid; gap: .55rem; }
.footer-col li, .footer-col a {
  font-size: .9rem;
  color: rgba(251, 248, 242, .75);
  transition: color .25s var(--ease);
}
.footer-col a:hover { color: var(--paper); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  font-size: .8rem;
  color: rgba(251, 248, 242, .5);
}

/* ===================================================
   STICKY CALL (mobile)
   =================================================== */
.sticky-call {
  position: fixed;
  bottom: 1.25rem; right: 1.25rem;
  width: 56px; height: 56px;
  background: var(--accent-red);
  color: var(--paper);
  border-radius: 50%;
  display: none;
  align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(198, 69, 69, .45);
  z-index: 50;
  animation: pulse-red 2.5s ease-in-out infinite;
}
.sticky-call svg { width: 24px; height: 24px; }
@keyframes pulse-red {
  0%, 100% { box-shadow: 0 8px 24px rgba(198, 69, 69, .45), 0 0 0 0 rgba(198, 69, 69, .5); }
  50% { box-shadow: 0 8px 24px rgba(198, 69, 69, .45), 0 0 0 14px rgba(198, 69, 69, 0); }
}

/* ===================================================
   REVEAL ANIMATIONS
   =================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; padding: 1rem 0 2rem; }
  .hero-visual { max-width: 480px; margin: 0 auto; width: 100%; }
  .visual-stack { margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-license { right: 1rem; bottom: -20px; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:nth-child(4) { grid-column: span 3; }
  
  .gi-1, .gi-2 { grid-column: span 6; }
  .gi-3, .gi-4 { grid-column: span 6; }
  .gi-5, .gi-6 { grid-column: span 6; }
  .gi-7, .gi-8 { grid-column: span 6; }
}

@media (max-width: 768px) {
  .primary-nav, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  
  .hero { padding-top: 7rem; min-height: auto; }
  .hero-trust { gap: .75rem; }
  .trust-divider { display: none; }
  
  .marquee { padding: 1rem 0; }
  
  .services { margin-left: var(--gutter); margin-right: var(--gutter); }
  .services-grid { grid-template-columns: 1fr; }
  
  .sector-banner { flex-direction: column; gap: 1rem; padding: 1.5rem; }
  .sector-amp { display: none; }
  
  .work { margin-left: var(--gutter); margin-right: var(--gutter); }
  .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .gi-1, .gi-2, .gi-3, .gi-4, .gi-5, .gi-6, .gi-7, .gi-8 { 
    grid-column: span 1; grid-row: span 1; 
  }
  .gallery-item figcaption {
    transform: translateY(0); opacity: 1;
    background: linear-gradient(to top, rgba(28, 39, 66, .95) 30%, rgba(28, 39, 66, .3));
  }
  
  .about-features { grid-template-columns: 1fr; gap: 1.25rem; }
  
  .areas { margin-left: var(--gutter); margin-right: var(--gutter); }
  .areas-list { grid-template-columns: repeat(2, 1fr); }
  
  .contact-form { padding: 1.75rem; }
  .form-row-2 { grid-template-columns: 1fr; }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-grid > div:nth-child(4) { grid-column: span 1; }
  .footer-bottom { 
    flex-direction: column; gap: .5rem; text-align: center;
  }
  
  .sticky-call { display: flex; }
  
  .section-head { margin-bottom: 2.5rem; }
}

@media (max-width: 480px) {
  .logo-text { display: none; }
  .hero { padding-top: 6.5rem; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
  .review-card { padding: 1.5rem; }
  .contact-form { padding: 1.5rem; }
  .areas-list { grid-template-columns: 1fr; }
}

/* Bradley Painting Plus logo and brand colour refinement */
.footer-brand .logo img { height: 92px; max-width: 230px; background: #fffdf8; border-radius: 10px; padding: .35rem; }
.feature-card .service-num { color: #e8b04e; }
@media (max-width: 768px) { .logo img { height: 60px; max-width: 155px; } }
@media (max-width: 480px) { .logo img { height: 52px; max-width: 135px; } }
