/* ==========================================================================
   B&M Painting and Construction — Painting · Clean Split
   ========================================================================== */

:root {
  --color-bg: #FEFCF9;
  --color-surface: #FFFFFF;
  --color-primary: #C9704A;
  --color-primary-light: #D98A68;
  --color-accent: #C9704A;
  --color-accent2: #E7EEF2;
  --color-text: #2E2A28;
  --color-muted: #6B615C;
  --color-border: #E8DFD6;

  --font-head: "Fraunces", serif;
  --font-body: "Work Sans", sans-serif;

  --section-pad-desktop: 100px;
  --section-pad-mobile: 48px;

  --ease-entrance: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); margin-bottom: 16px; }
h3 { font-size: 1.3rem; margin-bottom: 10px; }

p { color: var(--color-muted); }

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

.section {
  padding: var(--section-pad-mobile) 0;
}
@media (min-width: 768px) {
  .section { padding: var(--section-pad-desktop) 0; }
}

.section-alt { background: var(--color-accent2); }
.section-surface { background: var(--color-surface); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--color-primary);
  margin-bottom: 14px;
}

.section-head {
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-head.left { text-align: left; margin: 0 0 40px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease-entrance), filter 0.25s ease, background 0.25s ease;
}
.btn:hover { transform: scale(1.03); }

.btn-primary {
  background: var(--color-primary);
  color: #fff;
}
.btn-primary:hover { filter: brightness(1.08); }

.btn-outline {
  background: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.btn-outline:hover { background: var(--color-primary); color: #fff; }

.btn-light {
  background: #fff;
  color: var(--color-primary);
}
.btn-light:hover { filter: brightness(0.97); }

.cta-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 30px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  background: transparent;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(254, 252, 249, 0.97);
  padding: 12px 0;
  box-shadow: 0 2px 18px rgba(46, 42, 40, 0.08);
  backdrop-filter: blur(6px);
}
.site-header .container {
  max-width: 1400px;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-img {
  display: block;
  height: 62px;
  width: auto;
}

.main-nav { display: none; min-width: 0; }
.main-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  gap: 22px;
}
.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  padding-bottom: 4px;
  white-space: nowrap;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--color-primary);
  transition: width 0.25s var(--ease-entrance);
}
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--color-primary); }

.header-cta {
  display: none;
  white-space: nowrap;
}
.header-actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }

.hamburger {
  width: 34px; height: 26px;
  position: relative;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1100;
}
.hamburger span {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: var(--color-text);
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}
.hamburger span:nth-child(1) { top: 2px; }
.hamburger span:nth-child(2) { top: 12px; }
.hamburger span:nth-child(3) { top: 22px; }
.hamburger.open span:nth-child(1) { top: 12px; transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { top: 12px; transform: rotate(-45deg); }

.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: min(340px, 86vw);
  height: 100vh;
  background: var(--color-surface);
  box-shadow: -10px 0 30px rgba(0,0,0,0.12);
  z-index: 1050;
  padding: 100px 32px 40px;
  transition: right 0.4s var(--ease-entrance);
  overflow-y: auto;
}
.mobile-nav.open { right: 0; }
.mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.mobile-nav a { font-size: 1.05rem; font-weight: 500; }
.mobile-nav a.active { color: var(--color-primary); }
.nav-overlay {
  position: fixed; inset: 0;
  background: rgba(46,42,40,0.35);
  z-index: 1040;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-overlay.open { opacity: 1; pointer-events: auto; }

@media (min-width: 1280px) {
  .main-nav { display: block; }
  .header-cta { display: inline-flex; }
  .hamburger { display: none; }
}

/* ---------- Desktop dropdown (Services) ---------- */
.nav-dropdown { position: relative; }
.nav-dropdown > .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.nav-caret {
  font-size: 0.6rem;
  transition: transform 0.25s var(--ease-entrance);
  display: inline-block;
}
.nav-dropdown:hover .nav-caret,
.nav-dropdown.open .nav-caret,
.nav-dropdown:focus-within .nav-caret {
  transform: rotate(180deg);
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 260px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(46, 42, 40, 0.14);
  padding: 8px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s var(--ease-entrance), transform 0.25s var(--ease-entrance), visibility 0.25s;
  z-index: 1100;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 11px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
}
.dropdown-menu a::after { display: none; }
.dropdown-menu a:hover,
.dropdown-menu a.active {
  background: var(--color-accent2);
  color: var(--color-primary);
}

/* ---------- Mobile submenu (Services) ---------- */
.has-submenu .submenu-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.submenu-toggle {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--color-text);
}
.submenu-caret {
  display: inline-block;
  font-size: 0.75rem;
  transition: transform 0.3s var(--ease-entrance);
}
.has-submenu.open .submenu-caret { transform: rotate(180deg); }
.mobile-submenu {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: max-height 0.4s var(--ease-entrance), padding-top 0.4s var(--ease-entrance);
}
.mobile-submenu.open {
  max-height: 700px;
  padding-top: 16px;
}
.mobile-submenu a { font-size: 0.95rem; color: var(--color-muted); }
.mobile-submenu a.active { color: var(--color-primary); }

/* ---------- Hero: Painting Clean Split ---------- */
.hero-split {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
}
@media (min-width: 1024px) {
  .hero-split {
    grid-template-columns: 1fr 1fr;
  }
  .hero-split::before {
    content: "";
    position: absolute;
    top: 0; bottom: 0; left: 50%;
    width: 2px;
    background: var(--color-primary);
    z-index: 3;
  }
}
.hero-photo {
  position: relative;
  min-height: 46vh;
  overflow: hidden;
  background: var(--color-text);
}
@media (min-width: 1024px) { .hero-photo { min-height: 100vh; } }
.hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: left center;
  animation: kenburns 20s var(--ease-entrance) infinite alternate;
}
.hero-photo .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(254,252,249,0.05), rgba(254,252,249,0.25));
}
@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.04); }
}

.hero-panel {
  background: var(--color-bg);
  display: flex;
  align-items: center;
  padding: 120px 28px 60px;
}
@media (min-width: 1024px) { .hero-panel { padding: 0 70px; } }
.hero-panel-inner {
  max-width: 560px;
  opacity: 0;
  transform: translateX(24px);
  animation: heroIn 0.5s var(--ease-entrance) forwards;
  animation-delay: 0.15s;
}
.hero-panel-inner .eyebrow { animation: heroIn 0.5s var(--ease-entrance) forwards; opacity:0; transform: translateX(24px); animation-delay: 0.05s;}
.hero-panel-inner h1 { animation: heroIn 0.5s var(--ease-entrance) forwards; opacity:0; transform: translateX(24px); animation-delay: 0.2s; }
.hero-panel-inner .hero-sub { animation: heroIn 0.5s var(--ease-entrance) forwards; opacity:0; transform: translateX(24px); animation-delay: 0.35s; }
.hero-panel-inner .cta-row { animation: heroIn 0.5s var(--ease-entrance) forwards; opacity:0; transform: translateX(24px); animation-delay: 0.5s; }

@keyframes heroIn {
  to { opacity: 1; transform: translateX(0); }
}

.hero-sub { font-size: 1.08rem; margin: 18px 0 6px; max-width: 480px; }

.hero-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--color-border);
}
.hero-trust li {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
}

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--color-text);
  color: #fff;
  padding: 26px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  text-align: center;
}
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-item .num {
  font-family: var(--font-head);
  font-size: 1.7rem;
  color: var(--color-primary-light);
  font-weight: 700;
}
.trust-item .label {
  font-size: 0.82rem;
  color: #E7E2DD;
  margin-top: 4px;
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-left.in-view { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-right.in-view { opacity: 1; transform: translateX(0); }

/* ---------- Cards ---------- */
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.grid-2 { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 32px 26px;
  transition: transform 0.3s var(--ease-entrance), box-shadow 0.3s ease, border-color 0.3s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(46,42,40,0.1);
  border-color: var(--color-primary);
}
.card .icon { font-size: 1.9rem; margin-bottom: 14px; display: block; }

.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s var(--ease-entrance), box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(46,42,40,0.1);
  border-color: var(--color-primary);
}
.service-card .img-wrap { height: 220px; overflow: hidden; }
.service-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .img-wrap img { transform: scale(1.06); }
.service-card .content { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.service-card .content a.link { color: var(--color-primary); font-weight: 600; margin-top: auto; }

/* ---------- Stats counters ---------- */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: center;
}
@media (min-width: 768px) { .stats-strip { grid-template-columns: repeat(4, 1fr); } }
.stat .num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  color: var(--color-primary);
  font-weight: 700;
}
.stat .label { font-size: 0.9rem; color: var(--color-muted); margin-top: 6px; }

/* ---------- Testimonials ---------- */
.testimonial-stack {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
}
.stars { color: var(--color-primary); font-size: 1.1rem; margin-bottom: 12px; letter-spacing: 3px; }
.testimonial-card .quote { font-style: italic; margin-bottom: 16px; }
.testimonial-card .author { font-weight: 600; color: var(--color-text); font-size: 0.92rem; }
.testimonial-card .location { font-size: 0.82rem; color: var(--color-muted); }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  background: var(--color-text);
  color: #fff;
  text-align: center;
  border-radius: 14px;
  overflow: hidden;
  padding: 70px 24px;
}
.cta-banner img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.28;
}
.cta-banner .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(46,42,40,0.85), rgba(201,112,74,0.55));
}
.cta-banner .content { position: relative; z-index: 2; }
.cta-banner h2 { color: #fff; }
.cta-banner p { color: #EDE7E2; max-width: 560px; margin: 0 auto; }
.cta-banner .cta-row { justify-content: center; }

/* ---------- Split services layout ---------- */
.split-services {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .split-services { grid-template-columns: 1fr 1fr; } }
.split-half { padding: 60px 28px; }
@media (min-width: 1024px) { .split-half { padding: 90px 60px; } }
.split-interior { background: var(--color-accent2); }
.split-exterior { background: #F5E6DC; }
.split-half h2 { text-align: left; }
.split-list { list-style: none; display: flex; flex-direction: column; gap: 16px; margin: 26px 0; }
.split-list li {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 16px 18px;
  font-weight: 500;
}

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--color-text);
}
.faq-question .plus { transition: transform 0.3s var(--ease-entrance); color: var(--color-primary); font-size: 1.3rem; }
.faq-item.open .plus { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease-entrance);
  padding: 0 24px;
}
.faq-item.open .faq-answer { padding-bottom: 20px; }
.faq-answer p { font-size: 0.96rem; }

/* ---------- Gallery ---------- */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 36px; }
.filter-btn {
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.25s ease;
}
.filter-btn.active, .filter-btn:hover { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item .chip {
  position: absolute;
  top: 12px; left: 12px;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(46,42,40,0.75), transparent);
  color: #fff;
  padding: 30px 14px 12px;
  font-size: 0.85rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .cap { opacity: 1; }

.lightbox {
  position: fixed; inset: 0;
  background: rgba(46,42,40,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 8px; }
.lightbox-close {
  position: absolute; top: 24px; right: 30px;
  color: #fff; font-size: 2rem; cursor: pointer; background: none; border: none;
}
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: #fff; font-size: 2.4rem; background: none; border: none; cursor: pointer; padding: 10px;
}
.lightbox-prev { left: 10px; }
.lightbox-next { right: 10px; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 34px;
}
.form-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 640px) { .form-grid.two-col { grid-template-columns: 1fr 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label { font-size: 0.88rem; font-weight: 600; }
.form-field input, .form-field select, .form-field textarea {
  padding: 13px 14px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.96rem;
  background: var(--color-bg);
  color: var(--color-text);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}
.form-field.full { grid-column: 1 / -1; }
.form-note { font-size: 0.82rem; color: var(--color-muted); margin-top: 10px; }
.form-success {
  display: none;
  background: #EAF4E9;
  border: 1px solid #B9DDB5;
  color: #2E5A2A;
  padding: 14px 18px;
  border-radius: 8px;
  margin-top: 16px;
  font-size: 0.92rem;
}
.form-success.show { display: block; }

.mini-form { display: flex; flex-direction: column; gap: 14px; }

/* ---------- Contact / sidebar ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1.3fr 1fr; } }
.contact-sidebar {
  background: var(--color-accent2);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-item .label { font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-primary); margin-bottom: 4px; }
.map-embed {
  width: 100%;
  height: 260px;
  border-radius: 10px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  overflow: hidden;
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- Steps / process ---------- */
.steps-list { display: flex; flex-direction: column; gap: 20px; max-width: 800px; margin: 0 auto; }
.step-item { display: flex; gap: 20px; align-items: flex-start; }
.step-num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.step-item h3 { margin-bottom: 6px; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { font-size: 0.85rem; color: var(--color-muted); margin-bottom: 20px; }
.breadcrumbs a { color: var(--color-primary); }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s var(--ease-entrance), box-shadow 0.3s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(46,42,40,0.1); }
.blog-card .img-wrap { height: 190px; overflow: hidden; }
.blog-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.blog-card .content { padding: 22px; }
.blog-card .tag { font-size: 0.76rem; font-weight: 700; color: var(--color-primary); text-transform: uppercase; letter-spacing: 0.06em; }
.blog-card h3 { margin: 10px 0; }
.blog-card .read-more { color: var(--color-primary); font-weight: 600; font-size: 0.9rem; }

.post-body { max-width: 760px; margin: 0 auto; }
.post-body h2 { margin-top: 40px; }
.post-body p { margin-bottom: 16px; }
.post-body ul, .post-body ol { color: var(--color-muted); margin: 0 0 16px 22px; }
.post-hero-img { width: 100%; height: 340px; object-fit: cover; border-radius: 12px; margin-bottom: 32px; }
.related-reading {
  max-width: 760px;
  margin: 50px auto 0;
  border-top: 1px solid var(--color-border);
  padding-top: 32px;
}
.related-reading .grid-2 { gap: 20px; }

/* ---------- Service area ---------- */
.area-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .area-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .area-grid { grid-template-columns: repeat(3, 1fr); } }
.area-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 22px;
}
.area-card h3 { color: var(--color-primary); font-size: 1.1rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-text);
  color: #E7E2DD;
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.4fr; } }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; }
.footer-col p { color: #C9C1BB; font-size: 0.92rem; margin-bottom: 8px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: #C9C1BB; font-size: 0.92rem; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--color-primary-light); }
.footer-logo { font-family: var(--font-head); font-size: 1.3rem; color: #fff; margin-bottom: 14px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  text-align: center;
  font-size: 0.82rem;
  color: #A79F99;
}
.footer-bottom a { color: var(--color-primary-light); }

/* ---------- Floating CTA ---------- */
.float-cta {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 900;
  background: var(--color-primary);
  color: #fff;
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 8px 24px rgba(201,112,74,0.4);
  animation: ring 3s infinite;
}
@keyframes ring {
  0% { box-shadow: 0 0 0 0 rgba(201,112,74,0.5); }
  70% { box-shadow: 0 0 0 16px rgba(201,112,74,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,112,74,0); }
}
@media (min-width: 1024px) { .float-cta { display: none; } }

/* ---------- Page hero (non-home) ---------- */
.page-hero {
  padding: 160px 0 70px;
  background: var(--color-accent2);
  text-align: center;
}
.page-hero .eyebrow { display: inline-block; }
.page-hero p { max-width: 640px; margin: 16px auto 0; }

/* ---------- Misc ---------- */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
ul.plain { list-style: none; }
.tag-pill {
  display: inline-block;
  background: var(--color-accent2);
  color: var(--color-primary);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 600;
  margin: 0 6px 6px 0;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
