/* ===========================
   THE EDITED SPACE — ABOUT PAGE
   =========================== */

:root {
  --olive-dark: #4a5a3a;
  --olive: #6b7a5a;
  --olive-light: #7a7a5a;
  --sage: #a8ad8c;
  --sand: #d4cbb8;
  --cream: #f0ece9;
  --warm-white: #f9f7f5;
  --text-dark: #3a3a32;
  --text-body: #5a5a50;
  --text-light: #8a8a7a;
  --green-dark: #3c4a32;
  --green-banner: #4a5a3a;
  --taupe: #a89a8c;
  --taupe-light: #c4b8ab;
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--warm-white);
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* ---- Utility ---- */
.section-label {
  display: block;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 20px;
}

/* ===========================
   HEADER
   =========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--warm-white);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: 1px;
}

.logo-tagline {
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 2px;
}

.main-nav {
  display: flex;
  gap: 32px;
}

.main-nav a {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-body);
  position: relative;
  transition: color 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text-dark);
}

.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--olive);
}

.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 28px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-nav {
  background: var(--olive-dark);
  color: #fff;
  border-radius: 2px;
}

.btn-nav:hover {
  background: var(--green-dark);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: 0.3s;
}

/* ===========================
   HERO
   =========================== */
.hero {
  background: var(--cream);
  padding: 80px 40px 60px;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}

.hero-text {
  flex: 1;
  padding-top: 20px;
}

.hero-text h1 {
  font-family: var(--font-serif);
  font-size: 54px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.hero-leaf {
  font-size: 20px;
  margin-bottom: 16px;
  opacity: 0.5;
  filter: hue-rotate(30deg);
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--text-body);
  font-style: italic;
}

.hero-image-group {
  flex: 0 0 380px;
  position: relative;
}

.hero-img-main {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 2px;
  background: var(--sand);
}

.hero-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-labels {
  position: absolute;
  right: -10px;
  top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.label-tag {
  background: var(--warm-white);
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid var(--sand);
  color: var(--text-dark);
}

/* ===========================
   OUR STORY
   =========================== */
.our-story {
  padding: 100px 40px;
  background: var(--warm-white);
}

.story-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.story-image {
  flex: 0 0 440px;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 2px;
  background: var(--sand);
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-content {
  flex: 1;
}

.story-content .section-label {
  text-align: left;
}

.story-content h2 {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.story-leaf {
  font-size: 16px;
  margin-bottom: 20px;
  opacity: 0.4;
}

.story-content p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 16px;
}

.story-content p:last-child {
  margin-bottom: 0;
  font-style: italic;
  color: var(--text-light);
}

/* ===========================
   OUR PHILOSOPHY
   =========================== */
.philosophy {
  padding: 80px 40px;
  background: var(--cream);
}

.philosophy-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.philosophy blockquote {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-dark);
  position: relative;
  padding: 10px 0;
}

.quote-mark {
  font-family: var(--font-serif);
  font-size: 60px;
  color: var(--sage);
  line-height: 0;
  vertical-align: middle;
}

.quote-mark.open {
  margin-right: 8px;
}

.quote-mark.close {
  margin-left: 8px;
}

/* ===========================
   OUR VALUES
   =========================== */
.values {
  padding: 80px 40px;
  background: var(--warm-white);
}

.values-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.value-card {
  text-align: center;
}

.value-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
}

.value-icon svg {
  width: 100%;
  height: 100%;
}

.value-card h3 {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-body);
}

/* ===========================
   GALLERY STRIP
   =========================== */
.gallery-strip {
  padding: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  background: var(--sand);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--warm-white);
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 6px 14px;
  border: 1px solid var(--sand);
  color: var(--text-dark);
}

/* ===========================
   WHY CHOOSE US
   =========================== */
.why-choose {
  padding: 80px 40px 100px;
  background: var(--warm-white);
}

.why-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.why-inner h2 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 50px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.why-card {
  text-align: center;
}

.why-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 16px;
}

.why-icon svg {
  width: 100%;
  height: 100%;
}

.why-card h3 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--text-body);
}

/* ===========================
   CTA BANNER
   =========================== */
.cta-banner {
  background: var(--green-banner);
  padding: 50px 40px;
}

.cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cta-text h2 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 6px;
}

.cta-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

.btn-cta {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.6);
  padding: 14px 36px;
  font-size: 11px;
  letter-spacing: 2.5px;
  transition: all 0.3s;
}

.btn-cta:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 40px 0;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand .logo-name {
  color: #fff;
  font-size: 20px;
}

.footer-brand .logo-tagline {
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  margin-bottom: 16px;
}

.footer-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.icon-pin {
  flex-shrink: 0;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #fff;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.social-icons a {
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #fff;
}

.footer-email {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}

.footer-email:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 20px 0;
}

.footer-bottom p {
  font-size: 10px;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.4);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .hero-inner {
    flex-direction: column;
    gap: 40px;
  }

  .hero-image-group {
    flex: none;
    width: 100%;
    max-width: 400px;
  }

  .story-inner {
    flex-direction: column;
    gap: 50px;
  }

  .story-image {
    flex: none;
    width: 100%;
    max-width: 500px;
  }

  .story-content .section-label {
    text-align: center;
  }

  .story-content {
    text-align: center;
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 14px 20px;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--warm-white);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

  .main-nav.open {
    display: flex;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .btn-nav {
    display: none;
  }

  .hero {
    padding: 50px 20px 40px;
  }

  .hero-text h1 {
    font-size: 38px;
  }

  .our-story {
    padding: 60px 20px;
  }

  .story-content h2 {
    font-size: 30px;
  }

  .philosophy {
    padding: 50px 20px;
  }

  .philosophy blockquote {
    font-size: 24px;
  }

  .values {
    padding: 60px 20px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-choose {
    padding: 60px 20px;
  }

  .why-inner h2 {
    font-size: 28px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .cta-banner {
    padding: 40px 20px;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .cta-text h2 {
    font-size: 26px;
  }

  .site-footer {
    padding: 40px 20px 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-location {
    justify-content: center;
  }

  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 32px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   BRAND ASSETS / SHARED ADDITIONS
   =========================== */
.logo-img {
  height: 48px;
  width: auto;
  display: block;
}

/* Leaf divider + accents (real brand marks) */
.leaf-divider {
  display: block;
  height: 26px;
  width: auto;
  margin: 18px auto;
  opacity: 0.9;
}
.leaf-divider.left { margin-left: 0; }
.leaf-accent {
  display: block;
  height: 30px;
  width: auto;
  opacity: 0.85;
  margin: 0 auto 16px;
}
.leaf-accent.left { margin-left: 0; margin-right: auto; }

/* Decorative watercolour branch flourish */
.branch-deco {
  position: absolute;
  width: 150px;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}
.branch-deco.left  { left: 30px;  top: 40px; transform: rotate(-8deg); }
.branch-deco.right { right: 30px; bottom: 30px; transform: scaleX(-1) rotate(-8deg); }

/* ===========================
   GENERIC PAGE HERO (About / Services / Gallery / Contact)
   =========================== */
.page-hero {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: 40px;
  min-height: 380px;
  padding: 56px 40px;
}
.page-hero-text { position: relative; z-index: 2; }
.page-hero-text h1 {
  font-family: var(--font-serif);
  font-size: 58px;
  font-weight: 400;
  line-height: 1.08;
  color: var(--text-dark);
}
.page-hero-text .eyebrow {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  color: var(--text-body);
  margin-top: 10px;
  max-width: 360px;
}
.page-hero-media {
  position: relative;
  aspect-ratio: 16/11;
  border-radius: 3px;
  overflow: hidden;
  background: var(--sand);
}
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-media .label-stack {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

/* ===========================
   HOME HERO ("Less clutter. More living.")
   =========================== */
.home-hero { background: var(--cream); }
.home-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
  padding: 70px 40px 80px;
}
.home-hero-text h1 {
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 400;
  line-height: 1.05;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.home-hero-text p {
  font-size: 14.5px;
  line-height: 1.8;
  max-width: 380px;
  margin: 22px 0 30px;
}
.home-hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.home-hero-media {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 14px;
  aspect-ratio: 1/1;
}
.home-hero-media .hm {
  overflow: hidden; border-radius: 3px; background: var(--sand);
}
.home-hero-media .hm:first-child { grid-row: span 2; }
.home-hero-media img { width: 100%; height: 100%; object-fit: cover; }

/* Buttons (solid green) */
.btn-solid { background: var(--olive-dark); color: #fff; border-radius: 2px; }
.btn-solid:hover { background: var(--green-dark); }
.btn-ghost {
  background: transparent; color: var(--text-dark);
  border: 1.5px solid var(--text-light);
}
.btn-ghost:hover { border-color: var(--text-dark); }
.btn-link {
  font-family: var(--font-sans); font-size: 10.5px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: var(--olive-dark);
  border-bottom: 1px solid var(--sand); padding-bottom: 3px;
  transition: border-color .3s, color .3s; display: inline-block;
}
.btn-link:hover { color: var(--green-dark); border-color: var(--olive); }

/* ===========================
   SECTION HEADINGS (shared)
   =========================== */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 46px; }
.section-head h2 {
  font-family: var(--font-serif); font-weight: 400; font-size: 36px;
  color: var(--text-dark); line-height: 1.2;
}
.section-head p { font-size: 14px; color: var(--text-body); margin-top: 12px; }

/* ===========================
   SERVICE CARDS (preview + full grid)
   =========================== */
.services-section { padding: 90px 40px; background: var(--warm-white); }
.services-inner { max-width: 1140px; margin: 0 auto; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.service-grid.cols-5 { grid-template-columns: repeat(5, 1fr); }
.service-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.service-card {
  text-align: center;
  padding: 34px 22px;
  background: var(--warm-white);
  border: 1px solid rgba(122,122,90,0.14);
  border-radius: 3px;
  transition: box-shadow .3s, transform .3s, border-color .3s;
}
.service-card:hover {
  box-shadow: 0 14px 34px rgba(60,74,50,0.08);
  transform: translateY(-3px);
  border-color: rgba(122,122,90,0.28);
}
.service-card .svc-icon { width: 46px; height: 46px; margin: 0 auto 18px; }
.service-card .svc-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-family: var(--font-serif); font-size: 21px; font-weight: 500;
  color: var(--text-dark); margin-bottom: 10px;
}
.service-card p { font-size: 13px; line-height: 1.7; color: var(--text-body); margin-bottom: 18px; }

/* ===========================
   BEFORE & AFTER / FEATURE BAND
   =========================== */
.feature-band { background: var(--cream); padding: 0; }
.feature-band-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr; align-items: stretch;
}
.feature-band.reverse .feature-band-inner { grid-template-columns: 1.2fr 1fr; }
.feature-band.reverse .feature-copy { order: 2; }
.feature-copy { padding: 80px 56px; align-self: center; }
.feature-copy .section-label { text-align: left; }
.feature-copy h2 {
  font-family: var(--font-serif); font-size: 38px; font-weight: 400;
  color: var(--text-dark); margin-bottom: 6px; line-height: 1.15;
}
.feature-copy p { font-size: 14px; line-height: 1.8; margin: 14px 0; max-width: 440px; }
.feature-list { margin: 18px 0 26px; }
.feature-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 13.5px; color: var(--text-body); margin-bottom: 12px; max-width: 440px;
}
.feature-list li::before {
  content: ''; flex: 0 0 16px; height: 16px; margin-top: 3px;
  background: no-repeat center/contain;
  background-image: url("assets/icons/leaf-sprig.png");
}
.feature-media { display: grid; grid-template-columns: 1fr 1fr; }
.feature-media.single { grid-template-columns: 1fr; }
.feature-media .fm { position: relative; overflow: hidden; min-height: 320px; background: var(--sand); }
.feature-media .fm img { width: 100%; height: 100%; object-fit: cover; }
.tag-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--green-banner); color: #fff;
  font-family: var(--font-sans); font-size: 9px; font-weight: 600;
  letter-spacing: 2px; padding: 6px 12px; border-radius: 2px;
}

/* ===========================
   PROCESS / EDIT EXPERIENCE
   =========================== */
.process { padding: 90px 40px; background: var(--warm-white); }
.process-inner { max-width: 1140px; margin: 0 auto; }
.process-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px;
}
.process-step { text-align: center; position: relative; }
.process-num {
  font-family: var(--font-serif); font-size: 15px; font-style: italic;
  color: var(--taupe); margin-bottom: 8px;
}
.process-icon { width: 40px; height: 40px; margin: 0 auto 14px; }
.process-icon svg { width: 100%; height: 100%; }
.process-step h4 {
  font-family: var(--font-sans); font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; color: var(--text-dark); margin-bottom: 8px;
}
.process-step p { font-size: 12px; line-height: 1.6; color: var(--text-body); }

/* ===========================
   GALLERY (filters + masonry)
   =========================== */
.gallery-page { padding: 60px 40px 90px; background: var(--warm-white); }
.gallery-page-inner { max-width: 1160px; margin: 0 auto; }
.gallery-filters {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 10px;
  margin-bottom: 40px;
}
.gallery-filters button {
  font-family: var(--font-sans); font-size: 11px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  background: none; border: 1px solid transparent; color: var(--text-light);
  padding: 8px 16px; border-radius: 20px; cursor: pointer; transition: all .3s;
}
.gallery-filters button:hover { color: var(--text-dark); }
.gallery-filters button.active {
  color: var(--green-dark); border-color: var(--sand); background: var(--cream);
}
.masonry {
  columns: 3; column-gap: 16px;
}
.masonry .tile {
  break-inside: avoid; margin-bottom: 16px; overflow: hidden;
  border-radius: 3px; background: var(--sand); position: relative;
}
.masonry .tile img { width: 100%; display: block; transition: transform .5s ease; }
.masonry .tile:hover img { transform: scale(1.04); }

/* ===========================
   QUOTE FEATURE (testimonial)
   =========================== */
.quote-feature { background: var(--cream); padding: 80px 40px; position: relative; overflow: hidden; }
.quote-inner { max-width: 760px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.quote-inner blockquote {
  font-family: var(--font-serif); font-style: italic; font-size: 30px;
  font-weight: 400; line-height: 1.45; color: var(--text-dark);
}
.quote-inner cite {
  display: block; font-family: var(--font-sans); font-style: normal;
  font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-light); margin-top: 22px;
}

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-section { padding: 80px 40px; background: var(--warm-white); }
.contact-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 70px;
}
.contact-form .field { margin-bottom: 18px; }
.contact-form label {
  display: block; font-family: var(--font-sans); font-size: 10px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-light); margin-bottom: 7px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; font-family: var(--font-sans); font-size: 14px; color: var(--text-dark);
  background: var(--warm-white); border: 1px solid var(--sand); border-radius: 2px;
  padding: 12px 14px; transition: border-color .3s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { outline: none; border-color: var(--olive); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.connect-list { margin-top: 4px; }
.connect-list .section-label { text-align: left; }
.connect-item { display: flex; gap: 16px; align-items: center; margin-bottom: 22px; }
.connect-item img { width: 42px; height: 42px; flex: 0 0 42px; }
.connect-item .ci-label {
  font-family: var(--font-sans); font-size: 9px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-light);
}
.connect-item .ci-value { font-size: 14px; color: var(--text-dark); }
.next-steps { margin-top: 40px; padding-top: 30px; border-top: 1px solid var(--sand); }
.next-steps .step { display: flex; gap: 14px; margin-bottom: 18px; align-items: flex-start; }
.next-steps .step .n {
  font-family: var(--font-serif); font-style: italic; font-size: 22px;
  color: var(--taupe); flex: 0 0 auto; line-height: 1;
}
.next-steps .step h4 {
  font-family: var(--font-sans); font-size: 11px; font-weight: 600;
  letter-spacing: 1px; color: var(--text-dark); margin-bottom: 3px;
}
.next-steps .step p { font-size: 13px; color: var(--text-body); line-height: 1.6; }

/* ===========================
   RESPONSIVE — NEW COMPONENTS
   =========================== */
@media (max-width: 1024px) {
  .page-hero-inner, .home-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .page-hero-text h1 { font-size: 46px; }
  .home-hero-text h1 { font-size: 50px; }
  .service-grid, .service-grid.cols-5 { grid-template-columns: repeat(3, 1fr); }
  .feature-band-inner, .feature-band.reverse .feature-band-inner { grid-template-columns: 1fr; }
  .feature-copy { order: 1 !important; padding: 56px 40px; }
  .feature-media { order: 2; }
  .process-grid { grid-template-columns: repeat(3, 1fr); row-gap: 36px; }
  .masonry { columns: 2; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
}
@media (max-width: 768px) {
  .page-hero-inner { padding: 44px 20px; min-height: 0; }
  .page-hero-text h1 { font-size: 38px; }
  .home-hero-inner { padding: 48px 20px 56px; }
  .home-hero-text h1 { font-size: 40px; }
  .services-section, .process, .quote-feature, .contact-section { padding: 56px 20px; }
  .feature-copy { padding: 44px 20px; }
  .service-grid, .service-grid.cols-5, .service-grid.cols-3 { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .section-head h2, .feature-copy h2 { font-size: 30px; }
  .quote-inner blockquote { font-size: 24px; }
  .contact-form .row { grid-template-columns: 1fr; }
  .branch-deco { display: none; }
}
@media (max-width: 480px) {
  .home-hero-media { aspect-ratio: 4/3; }
  .service-grid, .service-grid.cols-5, .service-grid.cols-3, .process-grid { grid-template-columns: 1fr; }
  .masonry { columns: 1; }
  .gallery-filters button { padding: 6px 12px; font-size: 10px; }
}

/* ===========================================================
   DESIGN REFINEMENTS — full-bleed, flush, "flows like the PDF"
   (overrides earlier contained/boxed treatments)
   =========================================================== */

/* ---- Square, flush imagery everywhere (no rounded boxes) ---- */
.hero-img-main, .story-image, .gallery-item, .masonry .tile,
.page-hero-media, .feature-media .fm, .home-hero-media .hm, .hero-photo {
  border-radius: 0;
  background: var(--cream);
}

/* ---- Unified split hero: text panel + full-bleed photo ---- */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: stretch;
  background: var(--cream);
  min-height: 540px;
}
.hero-split .hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 96px) clamp(26px, 5vw, 84px);
  max-width: 620px;
}
.hero-split h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(40px, 4.6vw, 60px);
  line-height: 1.08;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.hero-split .hero-sub {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-body);
  max-width: 390px;
  margin-top: 4px;
}
.hero-split .home-hero-actions { margin-top: 30px; }
.hero-photo {
  position: relative;
  min-height: 380px;
  overflow: hidden;
}
.hero-photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-photo .hero-labels {
  position: absolute;
  right: 22px;
  bottom: 22px;
  top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  z-index: 2;
}

/* ---- Full-bleed feature bands (before/after, about, pantry) ---- */
.feature-band-inner {
  max-width: none;
  grid-template-columns: 1fr 1.08fr;
}
.feature-band.reverse .feature-band-inner { grid-template-columns: 1.08fr 1fr; }
.feature-copy {
  padding: clamp(52px, 6.5vw, 104px) clamp(28px, 5.5vw, 92px);
  max-width: 640px;
}
.feature-band.reverse .feature-copy { margin-left: auto; }
.feature-media .fm { min-height: 380px; }

/* ---- Flat service columns with thin separators (no cards) ---- */
.service-grid { gap: 0; }
.service-card {
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 18px clamp(16px, 2vw, 30px);
  transition: none;
}
.service-card:hover { box-shadow: none; transform: none; border: none; }

/* ---- Thin vertical separators on column rows (desktop) ---- */
@media (min-width: 1025px) {
  .service-grid > .service-card + .service-card,
  .values-grid > .value-card + .value-card,
  .why-grid > .why-card + .why-card {
    border-left: 1px solid rgba(122, 122, 90, 0.16);
  }
}

/* ---- Gallery strip + masonry flush ---- */
.gallery-grid { gap: 2px; }
.masonry { column-gap: 8px; }
.masonry .tile { margin-bottom: 8px; }

/* ---- Responsive: stack split layouts cleanly ---- */
@media (max-width: 920px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-split .hero-copy { padding: 48px 24px 36px; max-width: none; }
  .hero-photo { min-height: 320px; }
  .feature-band-inner,
  .feature-band.reverse .feature-band-inner { grid-template-columns: 1fr; }
  .feature-band .feature-copy,
  .feature-band.reverse .feature-copy { order: 1; max-width: none; margin: 0; padding: 44px 24px; }
  .feature-band .feature-media,
  .feature-band.reverse .feature-media { order: 2; }
}

/* ===========================================================
   FOOTER — light/white to match the client's design
   (CTA band stays green; footer beneath is warm-white)
   =========================================================== */
.site-footer {
  background: var(--warm-white);
  color: var(--text-body);
  border-top: 1px solid rgba(60,74,50,0.10);
}
.footer-brand .logo-name { color: var(--text-dark); }
.footer-brand .logo-tagline { color: var(--text-light); }
.footer-location { color: var(--text-body); }
.footer-location .icon-pin { color: var(--olive); }
.footer-col h4 { color: var(--olive); }
.footer-col ul li a { color: var(--text-body); }
.footer-col ul li a:hover { color: var(--text-dark); }
.footer-email { color: var(--text-body); }
.footer-email:hover { color: var(--text-dark); }
.social-icons { gap: 14px; }
.social-icons a { line-height: 0; }
.social-icons img {
  width: 34px; height: 34px; display: block;
  opacity: 0.85; transition: opacity 0.3s;
}
.social-icons a:hover img { opacity: 1; }
.footer-bottom { border-top: 1px solid rgba(60,74,50,0.08); }
.footer-bottom p { color: var(--text-light); }
