:root{
  --cream:#f7f4ef;
  --sage:#9aa79a;
  --dark:#2f3a32;
  --sageDark:#87977b;

  --max:1100px;
  --pad:3rem;
  --radius:14px;
  --shadow:0 10px 22px rgba(0,0,0,0.06);
}

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

/* Base */
html{ scroll-behavior:smooth; }
body{
  font-family:'Inter',sans-serif;
  background:var(--cream);
  color:var(--dark);
  line-height:1.6;
  overflow-x:hidden;
}
img{ max-width:100%; height:auto; display:block; }
h1,h2,h3{ font-family:'Playfair Display',serif; font-weight:600; }
a{ text-decoration:none; color:inherit; }
.center{ text-align:center; }

/* A11y */
.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}
.skip-link{
  position:absolute; left:-999px; top:12px;
  background:var(--dark); color:var(--cream);
  padding:10px 12px; border-radius:10px; z-index:9999;
}
.skip-link:focus{ left:12px; }

/* Header */
.site-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--cream);
  z-index: 1000;
  box-shadow: none; /* keep airy */
  border-bottom: 1px solid rgba(47,58,50,0.10);
  transform: translateY(0);
  transition: transform 220ms ease;
}
.header-inner{
  max-width:var(--max);
  margin:0 auto;
  padding:0.85rem var(--pad);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
}

/* Brand */
.brand{ display:flex; flex-direction:column; line-height:1.05; }
.brand-title{
  font-size:1.75rem;
  letter-spacing:0.02em;
}
.brand-sub{
  font-weight:400;
  font-size:0.78rem;
  letter-spacing:0.16em;
  text-transform:uppercase;
  opacity:0.78;
  margin-top:0.15rem;
}

/* Nav */
.site-nav{
  display:flex;
  align-items:center;
  gap:1.75rem;
}
.site-nav a{
  font-size:0.95rem;
  letter-spacing:0.05em;
  transition:color 0.25s ease, opacity 0.25s ease;
}
.site-nav a:hover{ color:var(--sageDark); }
.site-nav a.is-active{
  color:var(--sageDark);
  text-decoration:underline;
  text-underline-offset:6px;
}

/* Mobile toggle */
.nav-toggle{
  display:none;
  align-items:center;
  gap:0.6rem;
  border:1px solid rgba(47,58,50,0.18);
  background:rgba(255,255,255,0.80);
  cursor:pointer;
  padding:10px 12px;
  border-radius:999px;
}
.nav-toggle__bar{
  display:block;
  width:22px;
  height:2px;
  background:var(--dark);
  margin:5px 0;
}
.nav-toggle__label{
  font:inherit;
  font-size:0.95rem;
  letter-spacing:0.05em;
}

/* Buttons */
.btn{
  background:var(--sage);
  color:#fff;
  padding:0.75rem 1.75rem;
  border-radius:30px;
  font-size:0.9rem;
  letter-spacing:0.08em;
  display:inline-block;
  transition:background 0.25s ease, transform 0.2s ease;
}
.btn:hover{ background:var(--sageDark); transform:translateY(-1px); }

.btn--ghost{
  background:rgba(47,58,50,0.06);
  border:1px solid rgba(47,58,50,0.14);
  color:var(--dark);
}
.btn--ghost:hover{ background:rgba(47,58,50,0.10); }

.hero-actions{
  display:flex;
  gap:0.75rem;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:1rem;
}

/* Hero (default pages) */
.hero{
  min-height:45vh;
  background:
    linear-gradient(rgba(0,0,0,0.28), rgba(0,0,0,0.28)),
    url('hero.jpg') center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
  padding:0 2rem;
}
.hero--small{ min-height:40vh; }
.hero__content{ max-width:900px; }

.hero h1, .hero p{ opacity:0; transform:translateY(18px); }
body.loaded .hero h1, body.loaded .hero p{
  opacity:1; transform:translateY(0);
  transition:opacity 1.2s ease, transform 1.2s ease;
}
body.loaded .hero p{ transition-duration:1.5s; }
.hero h1{ font-size:3rem; margin-bottom:0.85rem; }
.hero p{ font-size:1.1rem; margin-bottom:0; opacity:0.95; }

/* HOME: text above collage */
.home-hero{
  max-width:var(--max);
  margin:0 auto;
  padding:3.25rem var(--pad) 0;
}
.home-hero__head{ text-align:center; }
.home-hero__head h1{ font-size:3rem; margin-bottom:0.75rem; }
.home-hero__head p{
  max-width:760px;
  margin:0.25rem auto 0;
  opacity:0.92;
}
.home-hero__actions{
  margin-top:1.2rem;
  display:flex;
  justify-content:center;
  gap:0.75rem;
  flex-wrap:wrap;
}

/* Home collage */
.home-collage{
  max-width:var(--max);
  margin:1.75rem auto 0;
  padding:0 var(--pad);
}
.home-collage__row{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:1rem;
}
.home-collage__row img{
  width:100%;
  height:320px;
  object-fit:cover;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

/* Sections (reveal) */
section{
  padding:5rem var(--pad);
  max-width:var(--max);
  margin:auto;
  opacity:0;
  transform:translateY(20px);
  transition:opacity 0.8s ease, transform 0.8s ease;
}
section.visible{ opacity:1; transform:translateY(0); }

/* Card / grids */
.card{
  background:#fff;
  border-radius:var(--radius);
  padding:1.5rem;
  box-shadow:var(--shadow);
}
.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
  gap:2rem;
  text-align:left;
}

/* Kicker */
.kicker{
  text-transform:uppercase;
  letter-spacing:0.18em;
  font-size:0.78rem;
  opacity:0.75;
}

/* Testimonials */
.testimonials-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(220px, 1fr));
  gap:1.25rem;
}
.testimonial{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.testimonial-quote{ font-size:0.95rem; line-height:1.7; }
.testimonial-meta{ margin-top:1rem; opacity:0.9; font-size:0.92rem; }

/* Instagram strip */
.ig-strip{
  display:grid;
  grid-template-columns:repeat(6, 1fr);
  gap:0.9rem;
}
.ig-item{
  border-radius:14px;
  overflow:hidden;
  background:#fff;
  box-shadow:var(--shadow);
  transition:transform 0.2s ease, box-shadow 0.2s ease;
}
.ig-item img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
}
.ig-item:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 30px rgba(0,0,0,0.10);
}

/* ABOUT: no overflow + circle on mobile */
.about-card{
  display:grid;
  grid-template-columns: 1fr 1.2fr;
  gap:2rem;
  align-items:center;
  background:#fff;
  border-radius:var(--radius);
  padding:2rem;
  box-shadow:var(--shadow);
}
.about-card__media{ min-width:0; }
.about-card__media img{
  width:100%;
  max-width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
  border-radius:var(--radius);
}

/* SERVICES: Hire items uniform + click-to-expand */
.hire-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.hire-item{
  background:#fff;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.hire-item summary{ list-style:none; cursor:pointer; display:block; }
.hire-item summary::-webkit-details-marker{ display:none; }

.hire-item__media{
  width:100%;
  height: 200px;
  object-fit: cover;
}
.hire-item__head{ padding: 1rem 1rem 0.9rem; }
.hire-item__head h3{ font-size:1.1rem; }
.hire-item__hint{ margin-top:0.35rem; opacity:0.75; font-size:0.9rem; }
.hire-item__body{
  padding: 0 1rem 1.1rem;
  border-top: 1px solid rgba(47,58,50,0.10);
}
.hire-item__body p{ margin-top:0.85rem; }
.hire-item__body ul{ margin:0.75rem 0 0.25rem 1.1rem; }

/* GALLERY: correct sizing + filters */
#gallery .gallery-filters{
  display:flex;
  gap:0.6rem;
  flex-wrap:wrap;
  justify-content:center;
  margin-top:0.75rem;
}
#gallery .filter-btn{
  appearance:none;
  border:1px solid rgba(47,58,50,0.14);
  background:rgba(255,255,255,0.6);
  color:var(--dark);
  padding:0.55rem 0.9rem;
  border-radius:999px;
  font-size:0.95rem;
  cursor:pointer;
  transition:transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
#gallery .filter-btn:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,0.9);
  border-color:rgba(47,58,50,0.22);
}
#gallery .filter-btn.is-active{
  background:rgba(154,167,154,0.22);
  border-color:rgba(154,167,154,0.45);
}

/* Masonry (prevents “huge images”) */
#gallery .masonry{
  margin-top:1.75rem;
  columns:3 260px;
  column-gap:18px;
}
#gallery .masonry__item{
  display:inline-block;
  width:100%;
  break-inside:avoid;
  margin:0 0 18px;
}
#gallery figure{ margin:0; }
#gallery .gallery-item img{
  width:100%;
  height:auto;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  backface-visibility:hidden;
  transform:translateZ(0);
}
#gallery .gallery-item.is-hidden{ display:none !important; }

/* Footer */
.site-footer{
  background:var(--dark);
  color:#fff;
  margin-top:4rem;
  padding:2.5rem 0;
}
.footer-inner{
  max-width:var(--max);
  margin:0 auto;
  padding:0 var(--pad);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1.25rem;
  flex-wrap:wrap;
}
.footer-copy{ opacity:0.95; }
.footer-links{ display:flex; gap:0.75rem; flex-wrap:wrap; }
.footer-chip{
  display:inline-flex;
  align-items:center;
  gap:0.6rem;
  padding:0.7rem 0.95rem;
  border-radius:999px;
  background:rgba(255,255,255,0.10);
  border:1px solid rgba(255,255,255,0.18);
  color:#fff;
  font-size:0.95rem;
  transition:transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.footer-chip:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,0.16);
  border-color:rgba(255,255,255,0.28);
}

/* Back to top */
#backToTop{
  position:fixed;
  bottom:30px;
  right:30px;
  display:none;
  background:var(--sage);
  color:#fff;
  border:none;
  border-radius:50%;
  width:50px;
  height:50px;
  font-size:1.5rem;
  cursor:pointer;
  box-shadow:0 4px 10px rgba(0,0,0,0.25);
}
#backToTop:hover{ background:var(--sageDark); }

/* Responsive */
@media (max-width: 1000px){
  .testimonials-grid{ grid-template-columns:repeat(2, minmax(220px, 1fr)); }
}
@media (max-width: 900px){
  .ig-strip{ grid-template-columns:repeat(3, 1fr); }
  #gallery .masonry{ columns:2 240px; }
}
@media (max-width: 768px){
  :root{ --pad:1.25rem; }

  .brand-title{ font-size:1.45rem; }
  .brand-sub{ font-size:0.72rem; }

  .nav-toggle{ display:inline-flex; }

  .nav-toggle__label{
    position:absolute;
    width:1px;
    height:1px;
    padding:0;
    margin:-1px;
    overflow:hidden;
    clip:rect(0,0,0,0);
    white-space:nowrap;
    border:0;
  }

  .site-nav{
    display:none;
    width:100%;
    flex-direction:column;
    align-items:flex-start;
    gap:0.75rem;
    padding-top: var(--header-offset, 92px);
  }

  .site-header{
    position: relative;
  }

  .site-nav{
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-top: 1px solid rgba(47,58,50,0.12);
    padding: 1rem var(--pad) 1.25rem;
  }
  .site-header.is-open .site-nav{ display:flex; }
  .header-inner{ flex-wrap:nowrap; }

  .home-hero{ padding:2.25rem var(--pad) 0; }
  .home-hero__head h1{ font-size:2.25rem; }

  @media (max-width: 768px){
  :root{ --pad:1.25rem; }

  .brand-title{ font-size:1.45rem; }
  .brand-sub{ font-size:0.72rem; }

  .nav-toggle{ display:inline-flex; }

  .site-nav{
    display:none;
    width:100%;
    flex-direction:column;
    align-items:flex-start;
    gap:0.75rem;
    padding-top:1rem;
  }
  .site-header.is-open .site-nav{ display:flex; }
  .header-inner{ flex-wrap:nowrap; }

  .home-hero{ padding:2.25rem var(--pad) 0; }
  .home-hero__head h1{ font-size:2.25rem; }

  /* Home collage: mobile = 3 images side-by-side */
  .home-collage__row{
    grid-template-columns:repeat(3, 1fr);
    gap:0.75rem;
  }
  .home-collage__row img{
    height:140px;           /* keeps them neat on small screens */
    border-radius:var(--radius);
  }

  .about-card{
    grid-template-columns:1fr;
    padding:1.25rem;
  }
  .about-card__media{
    display:flex;
    justify-content:center;
  }
  .about-card__media img{
    aspect-ratio:1/1;
    border-radius:999px;
    max-width:320px;
  }

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

  #gallery .masonry{ columns:1 100%; column-gap:14px; }
  #gallery .masonry__item{ margin-bottom:14px; }
}

  .about-card{
    grid-template-columns:1fr;
    padding:1.25rem;
  }
  .about-card__media{
    display:flex;
    justify-content:center;
  }
  .about-card__media img{
    aspect-ratio:1/1;
    border-radius:999px;
    max-width:320px;
  }

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

  #gallery .masonry{ columns:1 100%; column-gap:14px; }
  #gallery .masonry__item{ margin-bottom:14px; }
}
/

/* =========================
   Recommended Suppliers
   ========================= */
.suppliers-wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.suppliers-section{
  padding: 4rem 0;
}

.suppliers-title{
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.suppliers-intro{
  max-width: 760px;
  opacity: 0.9;
  margin-bottom: 1.75rem;
}

.suppliers-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 900px){
  .suppliers-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 520px){
  .suppliers-grid{ grid-template-columns: 1fr; }
}

.supplier-card{
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(47,58,50,0.10);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  box-shadow: 0 10px 20px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.supplier-head{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.supplier-name{
  font-weight: 600;
  font-size: 1.02rem;
  line-height: 1.2;
}

.supplier-meta{
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 0.25rem;
}

.supplier-actions{
  margin-top: 0.25rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

/* Smaller button so cards feel compact */
.btn.btn--sm{
  padding: 0.55rem 0.9rem;
  font-size: 0.85rem;
  border-radius: 999px;
  letter-spacing: 0.06em;
}

/* Optional: make supplier links look like a neat chip instead of big button */
.supplier-link{
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(154,167,154,0.18);
  border: 1px solid rgba(154,167,154,0.35);
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.supplier-link:hover{
  transform: translateY(-1px);
  background: rgba(154,167,154,0.26);
  border-color: rgba(154,167,154,0.55);
}
/* =========================
   Gallery (masonry + filters)
========================= */
.gallery-filters{
  display:flex;
  gap:0.6rem;
  flex-wrap:wrap;
  justify-content:center;
}

.filter-btn{
  appearance:none;
  border:1px solid rgba(47,58,50,0.14);
  background:rgba(255,255,255,0.6);
  color:var(--dark);
  padding:0.55rem 0.9rem;
  border-radius:999px;
  font-size:0.95rem;
  cursor:pointer;
  transition:background 0.2s ease, border-color 0.2s ease;
}

.filter-btn:hover{
  background:rgba(255,255,255,0.9);
  border-color:rgba(47,58,50,0.22);
}

.filter-btn.is-active{
  background:rgba(154,167,154,0.22);
  border-color:rgba(154,167,154,0.45);
}

/* Masonry layout */
.masonry{
  column-count: 3;
  column-gap: 16px;
  column-fill: balance;
}

@media (max-width: 900px){
  .masonry{ column-count: 2; }
}

@media (max-width: 520px){
  .masonry{ column-count: 1; }
}

/* IMPORTANT: force proper painting inside CSS columns */
.masonry__item{
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;

  display: inline-block;   /* <— key fix */
  width: 100%;             /* <— key fix */
  margin: 0 0 16px;
}

.gallery-item{
  background:#fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.06);

  /* force the browser to paint it as its own layer */
  transform: translateZ(0);        /* <— key fix */
  will-change: transform;          /* <— key fix */
}

.gallery-item img{
  width:100%;
  height:auto;
  display:block;
  aspect-ratio: 4 / 5;
  object-fit: cover;

  /* helps Safari/Chrome paint glitches in columns */
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Hover: shadow only */
.gallery-item:hover{
  box-shadow: 0 16px 30px rgba(0,0,0,0.10);
}

.gallery-item.is-hidden{ display:none; }

@media (hover:hover) and (pointer:fine){
  .gallery-item{ cursor: zoom-in; }
}

/* =========================
   Lightbox
========================= */
.lightbox{
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(0,0,0,0.72);
  z-index: 9999;
}

.lightbox.is-open{ display:flex; }

.lightbox__panel{
  width: min(1100px, 96vw);
  max-height: 92vh;
  background: rgba(255,255,255,0.98);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0,0,0,0.35);
  display: grid;
  grid-template-rows: 1fr auto;
}

.lightbox__imgwrap{
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__img{
  width: 100%;
  height: 100%;
  max-height: 80vh;
  object-fit: contain;
}

.lightbox__bar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-top: 1px solid rgba(47,58,50,0.10);
}

.lightbox__caption{
  font-size: 0.95rem;
  color: var(--dark);
  opacity: 0.95;
}

.lightbox__actions{
  display: inline-flex;
  gap: 0.5rem;
}

.lb-btn{
  appearance: none;
  border: 1px solid rgba(47,58,50,0.16);
  background: rgba(255,255,255,0.92);
  color: var(--dark);
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.lb-btn:hover{
  transform: translateY(-1px);
  border-color: rgba(47,58,50,0.25);
  background: rgba(255,255,255,1);
}

.lb-btn:disabled{
  opacity: 0.45;
  cursor: not-allowed;
}
/* =========================
   HERO COLLAGE (shared on all pages)
========================= */
.hero-collage{
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem var(--pad) 0;
}

.hero-collage__head{
  text-align: center;
  margin-bottom: 1.25rem;
}

.hero-collage__head h1{
  font-size: 2.6rem;
  margin: 0 0 0.6rem;
}

.hero-collage__head p{
  max-width: 760px;
  margin: 0 auto;
  opacity: 0.95;
}

.hero-collage__cta{
  margin-top: 1rem;
}

.hero-collage__images{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
  margin-top: 1.25rem;
}

.hero-collage__images img{
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  box-shadow: 0 10px 20px rgba(0,0,0,0.06);
}

@media (max-width: 900px){
  .hero-collage__head h1{ font-size: 2.15rem; }
  .hero-collage__images img{ height: 280px; }
}

@media (max-width: 600px){
  .hero-collage{
    padding-top: 2.25rem;
  }

  /* Keep 3 across on mobile too */
  .hero-collage__images{
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
  }

  .hero-collage__images img{
    height: 170px;
    border-radius: 14px;
  }
}

/* ========================
Global theme: bands + fonts
Why: consistent premium look across all pages
======================== */

:root{
  --font-serif: "Cormorant Garamond", serif;
  --font-sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  --band-cream: var(--cream);
  --band-sage: rgba(154,167,154,0.16);
  --band-olive: rgba(47,58,50,0.045);
}

body{ font-family: var(--font-sans); }
h1, h2, h3{ font-family: var(--font-serif); }

.banded main > section{
  padding: 3.25rem 0;
}

.banded main > section:nth-of-type(odd){ background: var(--band-cream); }
.banded main > section:nth-of-type(even){ background: var(--band-sage); }
.banded main > section:nth-of-type(3n){ background: var(--band-olive); }

.banded main > section.hero-stagger{
  background: var(--band-cream);
  padding: 2.25rem 0 1.75rem;
}

@media (max-width: 900px){
  .banded main > section{ padding: 2.5rem 0; }
}

/* ========================
Staggered hero (site-wide)
======================== */

.hero-stagger__wrap{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0.75rem;
  position: relative;
}

.hero-stagger__media{
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 0.85rem;
  align-items: end;
}

.hero-stagger__img{
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  border-radius: 0;
}

.hero-stagger__img img{
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.hero-stagger__img--left{ transform: translateY(22px); }
.hero-stagger__img--right{ transform: translateY(-10px); }

.hero-stagger__card{
  position: absolute;
  left: 50%;
  top: 72%;
  transform: translate(-50%, -50%);
  width: min(560px, calc(100% - 1.5rem));
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(47,58,50,0.10);
  border-radius: 0;
  box-shadow: var(--shadow);
  padding: 1.25rem 1.35rem;
  text-align: center;
  backdrop-filter: blur(6px);
}

.hero-stagger__card::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.88), rgba(255,255,255,0.78));
  pointer-events: none;
}

.hero-stagger__card > *{ position: relative; }

.hero-stagger__kicker{
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  margin: 0 0 0.5rem;
  opacity: 0.75;
}

.hero-stagger__title{
  margin: 0;
  font-weight: 600;
  font-size: clamp(2rem, 2.7vw, 2.85rem);
  line-height: 1.05;
}

.hero-stagger__title em{
  font-style: italic;
  font-weight: 400;
}

.hero-stagger__text{
  margin: 0.85rem 0 0;
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.9;
}

.hero-stagger__links{
  margin: 0.9rem 0 0;
  display: flex;
  justify-content: center;
  gap: 1.1rem;
  flex-wrap: wrap;
}

.hero-stagger__link{
  text-decoration: none;
  border-bottom: 1px solid rgba(47,58,50,0.25);
  padding-bottom: 2px;
}

@media (max-width: 900px){
  .hero-stagger__media{ grid-template-columns: 1fr; }
  .hero-stagger__img img{ height: 340px; }
  .hero-stagger__img--left,
  .hero-stagger__img--right{ transform: none; }

  .hero-stagger__card{
    position: static;
    transform: none;
    width: 100%;
    margin-top: 0.9rem;
    text-align: left;
    backdrop-filter: none;
  }
  .hero-stagger__links{ justify-content: flex-start; }
}

/* ========================
Hire items grid (Weddings)
======================== */

.hire-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.hire-card{
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(47,58,50,0.10);
  box-shadow: var(--shadow);
  padding: 0.9rem;
}

.hire-card img{
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 0;
  margin-bottom: 0.75rem;
}

.hire-card h3{
  margin: 0.25rem 0 0.4rem;
}

@media (max-width: 900px){
  .hire-grid{ grid-template-columns: 1fr; }
  .hire-card img{ height: 260px; }
}

/* ========================
Hero visibility fix
Why: global section reveal sets opacity:0; hero should never start faded
======================== */

section.hero-stagger{
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

section.hero-stagger img{
  opacity: 1 !important;
}

/* ========================
Mobile hero: single image
Why: cleaner mobile hero, faster, less cramped
======================== */

@media (max-width: 900px){
  .hero-stagger__media{
    grid-template-columns: 1fr;
  }

  /* Hide one image on mobile (keep the right image by default) */
  .hero-stagger__img--left{
    display: none;
  }

  .hero-stagger__img--right{
    display: block;
  }

  .hero-stagger__img img{
    height: 380px;
  }
}

/* ========================
Mobile: disable section reveal fade
Why: avoids "faded" sections on mobile and improves perceived performance
======================== */

@media (max-width: 900px){
  section{
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ========================
Mobile hero image: force full strength
Why: ensure hero images never appear faded on mobile
======================== */

@media (max-width: 900px){
  .hero-stagger__media,
  .hero-stagger__img,
  .hero-stagger__img img{
    opacity: 1 !important;
    filter: none !important;
  }
}

/* ========================
Header branding font
Why: match hero editorial serif
======================== */

.brand-title,
.brand-sub{
  font-family: var(--font-serif);
  letter-spacing: 0.02em;
}

/* ========================
Disable section reveal fade
Why: Safari can keep sections looking faded; make visuals consistent everywhere
======================== */

section{
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* ========================
Mobile hero polish
Why: faster + cleaner mobile hero, avoid any perceived "washed out" rendering
======================== */

@media (max-width: 900px){
  .hero-stagger__img--left{ display: none !important; }
  .hero-stagger__img--right{ display: block !important; }

  .hero-stagger__img,
  .hero-stagger__img img{
    box-shadow: none !important;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
  }

  .hero-stagger__img img{
    height: 360px !important;
    object-position: center;
  }

  .hero-stagger__card{
    background: #fff !important;
    border: 1px solid rgba(47,58,50,0.12) !important;
  }

  .hero-stagger__card::before{
    display: none !important;
  }
}


/* ========================
Mobile menu overlay
======================== */

.nav-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.24);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
  z-index: 40;
}

.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-header.is-open + .nav-overlay{
  opacity: 1;
  pointer-events: auto;
}


/* ========================
Highlights reel
======================== */

.home-highlights .highlights-strip{
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.home-highlights .highlight{
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(47,58,50,0.12);
}

.home-highlights .highlight img{
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px){
  .home-highlights .highlights-strip{
    display: flex;
    overflow-x: auto;
    gap: 0.75rem;
    padding-bottom: 0.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .home-highlights .highlight{
    flex: 0 0 82%;
    scroll-snap-align: start;
  }

  .home-highlights .highlight img{
    height: 240px;
  }
}

/* ========================
Micro polish pass
Why: tighter spacing + premium interactions without changing layout
======================== */

:root{
  --measure: 68ch;
  --sectionPad: clamp(2.5rem, 4vw, 4.25rem);
  --sectionPadSm: clamp(2rem, 5vw, 3rem);
}

/* Consistent section rhythm */
.section{
  padding-top: var(--header-offset, 92px);
  padding-bottom: var(--sectionPad);
}

/* Containers: consistent side padding */
.container{
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

/* Readability: limit long lines */
.section-intro,
.prose,
.hero-stagger__text,
.about p{
  max-width: var(--measure);
}

/* Buttons: crisp hover + focus */
.btn{
  box-shadow: 0 6px 14px rgba(0,0,0,0.06);
}
.btn:focus-visible{
  outline: 3px solid rgba(154,167,154,0.55);
  outline-offset: 3px;
}

/* Links: subtle underline on hover (desktop) */
@media (hover:hover){
  a:hover{
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .btn:hover{
    text-decoration: none;
  }
}

/* Cards & images: subtle lift (desktop only) */
@media (hover:hover){
  .card,
  #gallery .gallery-item img,
  .home-highlights .highlight{
    transition: transform 180ms ease, box-shadow 180ms ease;
  }

  .card:hover{
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.08);
  }

  #gallery .gallery-item img:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0,0,0,0.10);
}

  .home-highlights .highlight:hover{
    transform: translateY(-2px);
  }
}

/* Mobile spacing: slightly tighter */
@media (max-width: 900px){
  .section{
    padding-top: var(--sectionPadSm);
    padding-bottom: var(--sectionPadSm);
  }
}

/* ========================
Weddings page: editorial offers
======================== */

.band--cream{ background: var(--cream); }
.band--sage{ background: rgba(154,167,154,0.16); }

.weddings-offers .section-intro{
  margin-top: 0.75rem;
}

.offer-band{
  padding: 0;
}

.offer-row{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  padding-top: clamp(2rem, 3.5vw, 3rem);
  padding-bottom: clamp(2rem, 3.5vw, 3rem);
}

.offer-row--reverse{
  grid-template-columns: 0.9fr 1.1fr;
}

.offer-row--reverse .offer-media{
  order: 2;
}

.offer-media img{
  width: 100%;
  height: clamp(320px, 42vw, 520px);
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.offer-copy h3{
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  margin-bottom: 0.6rem;
}

.offer-copy p{
  opacity: 0.95;
}

.offer-list{
  margin-top: 0.9rem;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.35rem;
}

.hire-grid{
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
}

.hire-tiles{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.hire-tiles img{
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.steps-grid{
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.steps-grid .step h3{
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.weddings-mini .mini-grid{
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.weddings-mini .mini-tile{
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(47,58,50,0.12);
}

.weddings-mini .mini-tile img{
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px){
  .offer-row,
  .offer-row--reverse{
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .offer-row--reverse .offer-media{
    order: 0;
  }

  .offer-media img{
    height: 320px;
  }

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

  .hire-tiles img{
    height: 170px;
  }

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

  .weddings-mini .mini-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .weddings-mini .mini-tile img{
    height: 170px;
  }
}

/* ========================
Weddings: offer collage (desktop) + swipe (mobile)
======================== */

.offer-collage{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0.75rem;
  align-items: stretch;
}

.offer-shot{
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.offer-shot img{
  width: 100%;
  height: 100%;
  min-height: clamp(320px, 42vw, 520px);
  object-fit: cover;
  display: block;
}

/* Make the second image feel like a “detail” */
.offer-shot--2 img{
  min-height: clamp(220px, 30vw, 420px);
}

@media (max-width: 900px){
  .offer-collage{
    display: flex;
    overflow-x: auto;
    gap: 0.75rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.25rem;
  }

  .offer-shot{
    flex: 0 0 86%;
    scroll-snap-align: start;
  }

  .offer-shot img{
    min-height: 320px;
    height: 320px;
  }
}

/* ========================
Reviews: featured + accordion
======================== */

.review-quote{
  font-size: 1.05rem;
  line-height: 1.65;
}

.review-initials{
  margin-top: 0.65rem;
  opacity: 0.8;
}

.reviews-featured{
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.reviews-accordion{
  margin-top: 2rem;
  text-align: left;
  max-width: var(--measure);
  margin-left: auto;
  margin-right: auto;
}

.reviews-more-title{
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.review{
  border: 1px solid rgba(47,58,50,0.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.55);
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.review > summary{
  cursor: pointer;
  padding: 0.9rem 1rem;
  font-weight: 600;
  list-style: none;
}

.review > summary::-webkit-details-marker{ display:none; }

.review-body{
  padding: 0 1rem 1rem 1rem;
}

@media (max-width: 900px){
  .reviews-featured{
    grid-template-columns: 1fr;
  }
}

/* ========================
Gallery hover stability (Safari)
Why: avoid hover-triggered repaints in CSS columns/masonry
======================== */

@media (hover:hover) and (pointer:fine){
  .gallery-item,
  .gallery-item img{
    transform: none !important;
    filter: none !important;
    box-shadow: none !important;
    transition: none !important;
  }

  .gallery-item:hover{
    box-shadow: none !important;
  }
}

/* ========================
About: TWIA section
======================== */

.twia-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.twia-media img{
  width: 100%;
  height: auto;
  max-height: 340px;
  object-fit: contain;
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(47,58,50,0.12);
}

@media (max-width: 900px){
  .twia-grid{
    grid-template-columns: 1fr;
  }
  .twia-media img{
  width: 100%;
  height: auto;
  max-height: 340px;
  object-fit: contain;
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(47,58,50,0.12);
}
}

/* ========================
Weddings: hire list columns
======================== */

.hire-list{
  columns: 2;
  column-gap: 2rem;
  padding-left: 1.1rem;
}

.hire-list li{
  break-inside: avoid;
  margin-bottom: 0.35rem;
}

@media (max-width: 900px){
  .hire-list{
    columns: 1;
  }
}

/* ========================
Header: olive branch mark
======================== */

.brand-branch{
  display: block;
  width: min(220px, 60vw);
  height: auto;
  margin: 0.35rem auto 0;
  opacity: 0.9;
  pointer-events: none;
}

/* ========================
Header: image logo
======================== */

.brand{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex: 0 1 auto;
  min-width: 0;
}

.brand-logo{
  width: clamp(300px, 20vw, 520px);
  height: auto;
  display: block;
}

@media (max-width: 900px){
  .brand-logo{
    width: clamp(190px, 50vw, 260px);
  }

  .header-inner{
    padding: 0.65rem var(--pad);
  }
}

/* ========================
Header: hide on scroll
======================== */

.site-header.is-hidden{
  transform: translateY(-110%);
}

/* ========================
Blog
======================== */

.blog-featured-card{
  padding: 2rem;
  max-width: var(--measure);
  margin: 1.5rem auto 0;
}

.blog-list-wrap{
  max-width: var(--measure);
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.blog-card{
  padding: 1.5rem;
}

.blog-meta{
  opacity: 0.75;
  margin-bottom: 0.25rem;
}

.blog-title{
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  margin-bottom: 0.5rem;
}

.blog-title a{
  text-decoration: none;
}

.blog-excerpt{
  margin-bottom: 0.75rem;
}

.text-link{
  font-weight: 600;
  text-decoration: none;
}

.text-link:hover{
  text-decoration: underline;
}

.blog-post-wrap{
  max-width: var(--measure);
  margin: 0 auto;
}

.blog-article{
  margin-top: 1.25rem;
}

.blog-article h2{
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

.blog-post-cta{
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(47,58,50,0.12);
  text-align: center;
}

.related-list{
  max-width: var(--measure);
  margin: 1.25rem auto 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.5rem;
}

.blog-meta-inline{
  opacity: 0.7;
  font-size: 0.95em;
  margin-left: 0.4rem;
}

/* Blog images */
.blog-figure{
  margin: 1.5rem 0;
}

.blog-figure img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(47,58,50,0.12);
}

/* ========================
Blog: subscribe form
======================== */

.subscribe-form{
  margin: 1.25rem auto 0;
  max-width: 520px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: center;
}

.subscribe-form input[type="email"]{
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(47,58,50,0.18);
  background: #ffffff;
}

.subscribe-form .btn{
  white-space: nowrap;
}

.mc-hidden{
  position: absolute;
  left: -5000px;
}

.fineprint{
  max-width: 640px;
  margin: 0.75rem auto 0;
  font-size: 0.95rem;
  opacity: 0.8;
}

@media (max-width: 560px){
  .subscribe-form{
    grid-template-columns: 1fr;
  }
}

/* ========================
Subscribe CTA
======================== */
.subscribe-cta .btn{
  margin-top: 0.75rem;
}

.blog-subscribe{
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.blog-subscribe h2{
  margin-bottom: 0.5rem;
}

/* ========================
Subscribe CTA wrap polish
======================== */
.subscribe-cta .section-intro{
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}
