/* ============================================================
   AYRSHIRE MEMORIALS — MASTER STYLESHEET
   Artisan Atelier · v2.0
   All pages link to this single file.
   ============================================================ */

/* ── DESIGN TOKENS ── */
:root {
  --stone-50:  #F7F5F2;
  --stone-100: #EDE9E3;
  --stone-200: #D8D0C4;
  --stone-400: #9E9182;
  --stone-600: #5C5347;
  --stone-700: #3d3630;
  --stone-800: #2E2921;
  --stone-900: #1A1713;
  --moss-400:  #6B7B5E;
  --brass:     #B8956A;
  --brass-light: #D4B48A;
  --white:     #FFFFFF;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', 'Helvetica Neue', sans-serif;
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  7rem;
  --max-width: 1160px;
  --radius: 2px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--stone-50);
  color: var(--stone-800);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--brass-light); color: var(--stone-900); }

/* ── LAYOUT ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.section { padding: var(--space-xl) 0; }
.section--stone { background: var(--stone-100); }
.section--dark  { background: var(--stone-800); color: var(--stone-100); }

/* ── TYPE UTILITIES ── */
.label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
}
.label--light { color: var(--brass-light); }

.heading-display {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.1;
}
.heading-section {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--stone-800);
}
.heading-section--light { color: var(--stone-50); }

.body-text {
  font-size: 1rem;
  font-weight: 300;
  color: var(--stone-600);
  line-height: 1.9;
}

.divider {
  width: 40px;
  height: 1px;
  background: var(--brass);
  margin: var(--space-sm) 0 var(--space-md);
}
.divider--center { margin-left: auto; margin-right: auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border: 1px solid currentColor;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
  text-align: center;
}
.btn--primary {
  background: var(--stone-800);
  color: var(--stone-50);
  border-color: var(--stone-800);
}
.btn--primary:hover { background: var(--stone-900); border-color: var(--stone-900); }

.btn--outline {
  background: transparent;
  color: var(--stone-800);
  border-color: var(--stone-800);
}
.btn--outline:hover { background: var(--stone-800); color: var(--stone-50); }

.btn--outline-light {
  background: transparent;
  color: var(--stone-50);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline-light:hover { background: rgba(255,255,255,0.1); border-color: var(--stone-50); }

.btn--brass {
  background: var(--brass);
  color: var(--stone-900);
  border-color: var(--brass);
}
.btn--brass:hover { background: var(--brass-light); border-color: var(--brass-light); }

/* ── IMAGE PLACEHOLDERS (remove when real photos added) ── */
.img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 300px;
  background: var(--stone-200);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--stone-400);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  gap: 0.4rem;
  font-family: var(--sans);
}
.img-placeholder__icon { font-size: 1.8rem; opacity: 0.35; }
.img-placeholder__note { font-size: 0.6rem; text-align: center; padding: 0 1rem; }

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.is-visible { opacity: 1; transform: translateY(0); }


/* ============================================================
   SITE-WIDE COMPONENTS
   ============================================================ */

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
  background: var(--stone-900);
  color: var(--stone-200);
  text-align: center;
  padding: 0.6rem var(--space-md);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}
.announcement-bar a {
  color: var(--brass-light);
  border-bottom: 1px solid var(--brass-light);
}

/* ── NAVIGATION ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 245, 242, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--stone-200);
}
.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo { display: flex; flex-direction: column; line-height: 1.2; }
.nav__logo-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--stone-900);
  letter-spacing: 0.02em;
}
.nav__logo-sub {
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone-400);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  list-style: none;
}
.nav__links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone-600);
  transition: color 0.2s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--brass);
  transition: width 0.25s ease;
}
.nav__links a:hover,
.nav__links a.active { color: var(--stone-900); }
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }

.nav__cta { display: flex; align-items: center; gap: var(--space-md); }
.nav__phone {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--stone-800);
}
.nav__phone-label {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone-400);
  display: block;
  line-height: 1;
  margin-bottom: 2px;
}

/* Mobile nav toggle */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--stone-800);
  transition: all 0.3s;
}
.nav__mobile {
  display: none;
  background: var(--stone-50);
  border-top: 1px solid var(--stone-200);
  padding: var(--space-md);
}
.nav__mobile.is-open { display: block; }
.nav__mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.nav__mobile a {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone-600);
}
.nav__mobile-phone {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--stone-200);
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--stone-800);
}

/* ── LOGO IMAGE (override text logo) ── */
.nav__logo {
  display: flex;
  align-items: center;
  flex-direction: row; /* override column */
  line-height: 1;
}

.nav__logo-img {
  display: block;
  height: 44px;     /* desktop */
  width: auto;
  max-width: 240px;
  object-fit: contain;
}

/* Tablet */
@media (max-width: 900px){
  .nav__logo-img { height: 40px; max-width: 210px; }
}

/* Mobile */
@media (max-width: 560px){
  .nav__inner { height: 64px; }      /* optional: gives a touch more room */
  .nav__logo-img { height: 32px; max-width: 170px; }
}

/* ── PAGE HERO (interior pages) ── */
.page-hero {
  background: var(--stone-900);
  padding: var(--space-xl) 0 var(--space-lg);
  position: relative;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, var(--stone-900) 0%, #221d14 100%);
}
.page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  /* Subtle SVG noise grain */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  opacity: 0.65;
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.page-hero__title {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: var(--space-sm);
}
.page-hero__title em { font-style: italic; color: var(--brass-light); }
.page-hero__subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  line-height: 1.8;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
}
.breadcrumb a {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone-400);
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--brass-light); }
.breadcrumb__sep { color: var(--stone-600); font-size: 0.7rem; }
.breadcrumb__current {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone-400);
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--stone-900);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: var(--space-md) 0;
}
.trust-bar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-sm);
  align-items: center;
}
@media (max-width: 900px) {
  .trust-bar__inner {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md) var(--space-sm);
  }
}
@media (max-width: 540px) {
  .trust-bar__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }
}
.trust-item { display: flex; align-items: center; gap: 0.75rem; }
.trust-item__icon { font-size: 1.4rem; opacity: 0.7; }
.trust-item__value {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--stone-50);
  line-height: 1;
  display: block;
}
.trust-item__label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone-400);
  display: block;
}

/* ── CERTIFICATIONS BAR ── */
.certs {
  padding: var(--space-md) 0;
  background: var(--stone-100);
  border-top: 1px solid var(--stone-200);
  border-bottom: 1px solid var(--stone-200);
}
.certs__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-lg);
}
.cert-item { display: flex; align-items: center; gap: 0.75rem; color: var(--stone-600); }
.cert-item__icon { font-size: 1.2rem; }
.cert-item__text {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── FOOTER ── */
.footer {
  background: var(--stone-900);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: var(--space-lg) 0 var(--space-md);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}
.footer__brand-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--stone-50);
  margin-bottom: var(--space-xs);
}
.footer__brand-text {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--stone-400);
  line-height: 1.7;
  max-width: 280px;
}
.footer__heading {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone-400);
  margin-bottom: var(--space-sm);
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer__links a {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--stone-400);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--stone-100); }
.footer__links span {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--stone-400);
}
.footer__bottom {
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}
.footer__copyright { font-size: 0.75rem; color: var(--stone-400); }
.footer__legal { display: flex; gap: var(--space-md); }
.footer__legal a { font-size: 0.75rem; color: var(--stone-400); transition: color 0.2s; }
.footer__legal a:hover { color: var(--stone-100); }


/* ============================================================
   HOMEPAGE — index.html
   ============================================================ */

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--stone-900); /* fallback while image loads */
  overflow: hidden;
}

/* Photo fills the container exactly like background-size: cover */
.hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%; /* frames path, headstones + sky — tweak if needed */
  display: block;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26,23,19,0.92) 0%,
    rgba(26,23,19,0.55) 50%,
    rgba(26,23,19,0.2) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
  width: 100%;
}
.hero__eyebrow { display: flex; align-items: center; gap: var(--space-sm); margin-bottom: var(--space-md); }
.hero__eyebrow-line { width: 32px; height: 1px; background: var(--brass); }
.hero__title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  max-width: 700px;
  margin-bottom: var(--space-md);
    text-transform: uppercase;
}
.hero__title {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  text-transform: uppercase;
}
.hero__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  max-width: 680px;
  margin-bottom: var(--space-md);
  text-transform: uppercase;
}
.hero__title em {
  font-style: italic;
  color: var(--brass-light);
  letter-spacing: 0.02em;
}
.hero__subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}
.hero__actions { display: flex; align-items: center; flex-wrap: wrap; gap: var(--space-sm); }
.hero__scroll {
  position: absolute;
  bottom: var(--space-md);
  right: var(--space-md);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.4);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
.hero__accent {
  color: var(--brass-light);
}
@keyframes scrollPulse { 0%,100%{opacity:.4} 50%{opacity:1} }

/* About split */
.about { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; }
.about__image { position: relative; overflow: hidden; min-height: 600px; }
.about__image img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 120%; /* taller than container so parallax has room to move */
  object-fit: cover;
  object-position: center top;
  will-change: transform;
}
.about__image .img-placeholder { width: 100%; height: 100%; object-fit: cover; }
.about__content {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--stone-50);
}
.about__body {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--stone-600);
  line-height: 1.9;
  margin-bottom: var(--space-md);
}
.about__quote {
  border-left: 2px solid var(--brass);
  padding-left: var(--space-md);
  margin: var(--space-md) 0 var(--space-lg);
}
.about__quote p {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 300;
  font-style: italic;
  color: var(--stone-700);
  line-height: 1.6;
}

/* Process steps */
.process { padding: var(--space-xl) 0; background: var(--stone-100); }
.process__header { text-align: center; margin-bottom: var(--space-lg); }
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--stone-200);
  border: 1px solid var(--stone-200);
}
.process__step { background: var(--white); padding: var(--space-lg) var(--space-md); }
.process__number {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 300;
  color: var(--stone-200);
  line-height: 1;
  margin-bottom: var(--space-sm);
}
.process__step-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--stone-800);
  margin-bottom: var(--space-xs);
}
.process__step-text {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--stone-600);
  line-height: 1.7;
}

/* Homepage gallery */
.gallery { padding: var(--space-xl) 0; }
.gallery__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
  gap: var(--space-md);
}
.gallery__filter { display: flex; gap: var(--space-xs); flex-wrap: wrap; }
.filter-btn {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--stone-200);
  background: transparent;
  color: var(--stone-600);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn.active,
.filter-btn:hover { background: var(--stone-800); color: var(--stone-50); border-color: var(--stone-800); }
.gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.gallery__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--stone-200);
  cursor: pointer;
}
.gallery__item.is-hidden { display: none; }
.gallery__item img { width:100%; height:100%; object-fit:cover; transition: transform 0.6s ease; }
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item-overlay,
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,23,19,0.85) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: var(--space-md);
}
.gallery__item:hover .gallery__item-overlay,
.gallery__item:hover .gallery-item__overlay { opacity: 1; }
.gallery__item-info,
.gallery-item__info { color: var(--white); }
.gallery__item-name,
.gallery-item__name { font-family: var(--serif); font-size: 1.1rem; font-weight: 300; }
.gallery-item__meta { display: flex; align-items: center; gap: 0.4rem; margin-top: 3px; }
.gallery-item__material,
.gallery-item__category { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brass-light); }
.gallery-item__dot::before { content: "·"; color: var(--brass-light); }
.gallery__item-detail {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-top: 2px;
}
.gallery__cta { text-align: center; margin-top: var(--space-lg); }

/* Homepage services */
.services { padding: var(--space-xl) 0; background: var(--stone-800); color: var(--stone-100); }
.services__header { margin-bottom: var(--space-lg); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}
.service-card { background: var(--stone-800); padding: var(--space-lg) var(--space-md); transition: background 0.3s; }
.service-card:hover { background: var(--stone-900); }
.service-card__icon { font-size: 1.8rem; margin-bottom: var(--space-md); opacity: 0.6; }
.service-card__title { font-family: var(--serif); font-size: 1.3rem; font-weight: 300; color: var(--stone-50); margin-bottom: var(--space-xs); }
.service-card__text { font-size: 0.9rem; font-weight: 300; color: var(--stone-400); line-height: 1.7; }
.service-card__link {
  display: inline-block;
  margin-top: var(--space-sm);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass-light);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.service-card__link:hover { border-color: var(--brass-light); }

/* Homepage testimonials */
.testimonials { padding: var(--space-xl) 0; background: var(--stone-50); }
.testimonials__header { text-align: center; margin-bottom: var(--space-lg); }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
.testimonial { padding: var(--space-lg) var(--space-md); background: var(--white); border-top: 2px solid var(--brass); }
.testimonial__quote {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  color: var(--stone-700);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}
.testimonial__author { display: flex; flex-direction: column; }
.testimonial__name { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone-800); }
.testimonial__location { font-size: 0.7rem; color: var(--stone-400); }
.testimonial__stars { color: var(--brass); font-size: 0.7rem; margin-bottom: var(--space-sm); }

/* Homepage contact */
.contact { padding: var(--space-xl) 0; background: var(--stone-900); color: var(--stone-100); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); align-items: start; }
.contact__title { font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 300; color: var(--stone-50); line-height: 1.2; margin-bottom: var(--space-md); }
.contact__body { font-size: 0.95rem; font-weight: 300; color: var(--stone-400); line-height: 1.8; margin-bottom: var(--space-lg); }
.contact__details { display: flex; flex-direction: column; gap: var(--space-md); }
.contact__detail { display: flex; flex-direction: column; }
.contact__detail-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone-400); margin-bottom: 4px; }
.contact__detail-value { font-family: var(--serif); font-size: 1.2rem; color: var(--stone-50); }
.contact__detail-value a { border-bottom: 1px solid rgba(255,255,255,0.2); transition: border-color 0.2s; }
.contact__detail-value a:hover { border-color: var(--brass-light); }
.contact__hours { margin-top: var(--space-md); padding-top: var(--space-md); border-top: 1px solid rgba(255,255,255,0.08); }
.contact__hours-row { display: flex; justify-content: space-between; font-size: 0.85rem; font-weight: 300; color: var(--stone-400); padding: 0.3rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.contact__hours-row strong { color: var(--stone-200); font-weight: 400; }

/* Shared form styles */
.form-panel { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); padding: var(--space-lg); }
.form-panel--light { background: var(--white); border: 1px solid var(--stone-200); }
.form__title { font-family: var(--serif); font-size: 1.4rem; font-weight: 300; color: var(--stone-50); margin-bottom: var(--space-xs); }
.form__title--dark { color: var(--stone-800); }
.form__subtitle { font-size: 0.8rem; color: var(--stone-400); margin-bottom: var(--space-md); }
.form__group { margin-bottom: var(--space-sm); }
.form__label { display: block; font-size: 0.65rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--stone-400); margin-bottom: 6px; }
.form__label--dark { color: var(--stone-600); }
.form__input,
.form__textarea,
.form__select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  color: var(--stone-100);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form__input--light,
.form__textarea--light,
.form__select--light {
  background: var(--stone-50);
  border-color: var(--stone-200);
  color: var(--stone-800);
}
.form__input::placeholder,
.form__textarea::placeholder { color: rgba(255,255,255,0.2); }
.form__input--light::placeholder,
.form__textarea--light::placeholder { color: var(--stone-400); }
.form__input:focus,
.form__textarea:focus,
.form__select:focus { border-color: var(--brass); }
.form__input--light:focus,
.form__textarea--light:focus,
.form__select--light:focus { border-color: var(--brass); }
.form__input.has-error,
.form__textarea.has-error,
.form__select.has-error { border-color: #c0392b; }
.form__textarea { min-height: 120px; resize: vertical; }
.form__select option { background: var(--stone-800); color: var(--stone-100); }
.form__select--light option { background: var(--white); color: var(--stone-800); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-sm); }
.form__hint { font-size: 0.7rem; color: var(--stone-400); margin-top: var(--space-xs); line-height: 1.5; }
.form__error-msg { font-size: 0.7rem; color: #e74c3c; margin-top: 4px; display: none; }
.form__error-msg.is-visible { display: block; }
.form__submit {
  width: 100%;
  padding: 1rem;
  background: var(--brass);
  border: none;
  color: var(--stone-900);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: var(--space-sm);
}
.form__submit:hover { background: var(--brass-light); }
.form__submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form__success {
  display: none;
  text-align: center;
  padding: var(--space-lg) var(--space-md);
}
.form__success.is-visible { display: block; }
.form__success-icon { font-size: 2.5rem; margin-bottom: var(--space-sm); }
.form__success-title { font-family: var(--serif); font-size: 1.6rem; font-weight: 300; color: var(--stone-50); margin-bottom: var(--space-xs); }
.form__success-title--dark { color: var(--stone-800); }
.form__success-text { font-size: 0.9rem; font-weight: 300; color: var(--stone-400); }


/* ============================================================
   RESPONSIVE — shared breakpoints
   ============================================================ */

@media (max-width: 1024px) {
  .about { grid-template-columns: 1fr; }
  .about__image { min-height: 400px; }
  .about__content { padding: var(--space-lg); }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 4rem;
    --space-lg: 2.5rem;
  }
  .nav__links { display: none; }
  .nav__cta .btn { display: none; }
  .nav__hamburger { display: flex; }
  .hero { min-height: 85vh; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .process__steps { grid-template-columns: 1fr; }
  .gallery__header { flex-direction: column; align-items: flex-start; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .trust-bar__inner { /* grid handles responsive layout via media queries above */ }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .page-hero { padding: var(--space-lg) 0; }
}

@media (max-width: 480px) {
  .gallery__grid { grid-template-columns: 1fr; }
}
/* ============================================================
   ABOUT PAGE — about.html
   ============================================================ */

/* STORY */
.story { padding: var(--space-xl) 0; }
.story__layout{
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.story__image{ position: relative; }
.story__image-main{ border: 1px solid var(--stone-200); background: var(--stone-100); }
.story__image-accent{
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: min(46%, 240px);
  border: 1px solid rgba(255,255,255,0.15);
}
.story__lead{
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.2rem;
  color: var(--stone-700);
  line-height: 1.7;
  margin: var(--space-sm) 0 var(--space-md);
}

/* STATS (4 boxes) */
.stats{ padding: var(--space-lg) 0; }
.stats__inner{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-md);
}
.stat{
  background: var(--white);
  border: 1px solid var(--stone-200);
  border-top: 2px solid var(--brass);
  padding: var(--space-md);
}
.stat__number{
  display: block;
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--stone-900);
  line-height: 1.05;
  margin-bottom: 6px;
}
.stat__number em{ font-style: normal; font-size: 1.1rem; color: var(--brass); }
.stat__label{
  display: block;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--stone-600);
  line-height: 1.5;
}

/* TIMELINE (vertical line + spaced items) */
.timeline-section{ padding: var(--space-xl) 0; }
.timeline-section__header{ margin-bottom: var(--space-lg); }
.timeline{
  position: relative;
  padding-left: 34px;
}
.timeline::before{
  content:"";
  position:absolute;
  left: 12px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--stone-200);
}
.timeline-item{
  position: relative;
  padding: 0 0 var(--space-lg) 0;
}

/* move anchor to the YEAR row instead */
.timeline-item__year{
  position: relative;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone-400);
  margin-bottom: 6px;
  padding-left: 14px;   /* space for dot */
}

/* dot now aligns beside the year */
.timeline-item__year::before{
  content:"";
  position:absolute;
  left: -22px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brass);
}

/* REMOVE the old dot */
.timeline-item__dot{ display:none; }
.timeline-item__year{
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone-400);
  margin-bottom: 6px;
}
.timeline-item__title{
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--stone-900);
  margin-bottom: 6px;
}
.timeline-item__text{
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--stone-600);
  line-height: 1.8;
}

/* VALUES GRID */
.values{ padding: var(--space-xl) 0; }
.values__header{ margin-bottom: var(--space-lg); }
.values__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-md);
}
.value-card{
  background: var(--white);
  border: 1px solid var(--stone-200);
  padding: var(--space-lg) var(--space-md);
}
.value-card__icon{ font-size: 1.5rem; opacity: 0.65; margin-bottom: var(--space-sm); }
.value-card__title{
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--stone-900);
  margin-bottom: 6px;
}
.value-card__text{
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--stone-600);
  line-height: 1.8;
}

/* CRAFT (dark split) */
.craft{ padding: var(--space-xl) 0; background: var(--stone-800); color: var(--stone-100); }
.craft__layout{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.craft__lead{
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin: var(--space-sm) 0 var(--space-md);
}
.craft__body{
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

/* ACCREDITATIONS (2 cards) */
.accreditations{ padding: var(--space-xl) 0; background: var(--stone-100); }
.accreditations__header{ margin-bottom: var(--space-lg); }
.accreditations__layout{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.accreditation-card{
  background: var(--white);
  border: 1px solid var(--stone-200);
  border-top: 2px solid var(--brass);
  padding: var(--space-lg) var(--space-md);
}
.accreditation-card img{
  max-width: 100%;
  height: auto;
  max-height: 110px;
  object-fit: contain;
  margin-bottom: var(--space-sm);
}
.accreditation-card__name{
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--stone-900);
  margin-bottom: 6px;
}
.accreditation-card__text{
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--stone-600);
  line-height: 1.8;
}
.accreditation-card--about img{
  height: 64px;
  max-height: none;
}
.accreditation-card{
  display:flex;
  flex-direction:column;
}

.accreditation-card__name{
  margin-top: 4px;
}

/* RESPONSIVE for about sections */
@media (max-width: 1024px){
  .story__layout{ grid-template-columns: 1fr; }
  .story__image-accent{ position: static; width: 100%; margin-top: var(--space-sm); }
  .stats__inner{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .values__grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .craft__layout{ grid-template-columns: 1fr; }
}
@media (max-width: 560px){
  .stats__inner{ grid-template-columns: 1fr; }
  .values__grid{ grid-template-columns: 1fr; }
  .accreditations__layout{ grid-template-columns: 1fr; }
}
/* ── GLOBAL HEADINGS ── */

 h2, h3, h4, h5, h6,
.heading-section,
.accreditation-card__name,
.timeline__title {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  text-transform: none;
  letter-spacing: 0.04em;

}
/* =========================
   SERVICES PAGE (only)
   ========================= */

/* ─── SERVICE NAV TABS ─── */
.service-tabs {
  background: var(--stone-100);
  border-bottom: 1px solid var(--stone-200);
  position: sticky;
  top: 72px;            /* match your sticky nav height */
  z-index: 50;
}

.service-tabs__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}

.service-tabs__inner::-webkit-scrollbar { display: none; }

.service-tab {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1.1rem 1.4rem;
  background: transparent;
  color: var(--stone-600);
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.service-tab:hover { color: var(--stone-900); }
.service-tab.active { color: var(--stone-900); border-bottom-color: var(--brass); }


/* ─── SERVICES LAYOUT ─── */
.services-body {
  padding: var(--space-xl) 0;
}

.services-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-xl);
  align-items: start;
}


/* ─── ACCORDION ─── */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--stone-200);
  border: 1px solid var(--stone-200);
}

.accordion-item { background: var(--stone-50); }

.accordion-trigger {
  width: 100%;
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}

.accordion-trigger:hover { background: var(--stone-100); }
.accordion-item.is-open .accordion-trigger { background: var(--stone-100); }

.accordion-icon {
  font-size: 1.5rem;
  opacity: 0.6;
  text-align: center;
  transition: opacity 0.2s;
}
.accordion-item.is-open .accordion-icon { opacity: 1; }

.accordion-header {
  display: flex;
  flex-direction: column;
}

.accordion-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--stone-800);
  line-height: 1.2;
}

.accordion-teaser {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--stone-400);
  margin-top: 2px;
}
.accordion-item.is-open .accordion-teaser { display: none; }

.accordion-chevron {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}

.accordion-chevron::before,
.accordion-chevron::after {
  content: '';
  position: absolute;
  background: var(--stone-400);
  border-radius: 1px;
  transition: transform 0.3s ease;
}

.accordion-chevron::before {
  width: 8px; height: 1px;
  top: 50%; left: 2px;
  transform: translateY(-50%) rotate(45deg);
}
.accordion-chevron::after {
  width: 8px; height: 1px;
  top: 50%; right: 2px;
  transform: translateY(-50%) rotate(-45deg);
}

.accordion-item.is-open .accordion-chevron::before {
  transform: translateY(-50%) rotate(-45deg);
}
.accordion-item.is-open .accordion-chevron::after {
  transform: translateY(-50%) rotate(45deg);
}

.accordion-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.accordion-item.is-open .accordion-body { grid-template-rows: 1fr; }

.accordion-body__inner { overflow: hidden; }

.accordion-content {
  padding: 0 var(--space-md) var(--space-md)
           calc(3rem + var(--space-sm) + var(--space-md));
}

.accordion-content p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--stone-600);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.accordion-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: var(--space-sm);
}

.accordion-content ul li {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--stone-600);
  padding-left: 1.2rem;
  position: relative;
}

.accordion-content ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--brass);
  font-size: 0.7rem;
}

.accordion-content-cta {
  display: inline-block;
  margin-top: var(--space-xs);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.accordion-content-cta:hover { border-color: var(--brass); }


/* ─── SIDEBAR ─── */
.services-sidebar {
  position: sticky;
  top: calc(72px + 48px + var(--space-md)); /* nav + tabs + spacing */
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.sidebar-card {
  background: var(--stone-800);
  padding: var(--space-md);
  color: var(--stone-100);
}

.sidebar-card--light {
  background: var(--stone-100);
  color: var(--stone-800);
  border: 1px solid var(--stone-200);
}

.sidebar-card__label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: var(--space-xs);
  display: block;
}
.sidebar-card--light .sidebar-card__label { color: var(--brass); }

.sidebar-card__title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: var(--space-sm);
  color: var(--stone-50);
}
.sidebar-card--light .sidebar-card__title { color: var(--stone-800); }

.sidebar-card__text {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--stone-400);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}
.sidebar-card--light .sidebar-card__text { color: var(--stone-600); }

.sidebar-contact-item { display: flex; flex-direction: column; margin-bottom: var(--space-sm); }

.sidebar-contact-label {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone-400);
}

.sidebar-contact-value {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--stone-50);
}

.sidebar-contact-value a {
  border-bottom: 1px solid rgba(255,255,255,0.15);
  transition: border-color 0.2s;
}
.sidebar-contact-value a:hover { border-color: var(--brass-light); }

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--stone-400);
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.hours-row strong { color: var(--stone-200); font-weight: 400; }


/* ─── PROCESS STRIP (if your Services page includes it) ─── */
.process-strip {
  background: var(--stone-900);
  padding: var(--space-xl) 0;
}

.process-strip__header { margin-bottom: var(--space-lg); }

.process-strip__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
}

.process-step {
  background: var(--stone-900);
  padding: var(--space-lg) var(--space-md);
  position: relative;
}

.process-step::after {
  content: '';
  position: absolute;
  top: var(--space-lg);
  right: -0.5px;
  height: 2rem;
  width: 1px;
  background: rgba(255,255,255,0.08);
}
.process-step:last-child::after { display: none; }

.process-step__num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.process-step__title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--stone-50);
  margin-bottom: var(--space-xs);
}

.process-step__text {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--stone-400);
  line-height: 1.7;
}
.accordion-item.is-open {
  box-shadow: inset 3px 0 0 var(--brass);
}
.accordion-item.is-open .accordion-title {
  color: var(--stone-900);
}


/* ─── RESPONSIVE (services-only) ─── */
@media (max-width: 1024px) {
  .services-layout { grid-template-columns: 1fr; }
  .services-sidebar { position: static; }
  .process-strip__steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .process-strip__steps { grid-template-columns: 1fr; }
  .accordion-content { padding-left: var(--space-md); }
  .accordion-trigger { grid-template-columns: 2.5rem 1fr auto; }
}

/* ============================================================
   MEMORIALS PAGE — memorials.html
   ============================================================ */

/* ── STICKY FILTER BAR ── */
.filter-bar {
  position: sticky;
  top: 72px; /* sits just below the nav */
  z-index: 50;
  background: rgba(247, 245, 242, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--stone-200);
}
.filter-bar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  overflow-x: auto;
  scrollbar-width: none;
  height: 56px;
}
.filter-bar__inner::-webkit-scrollbar { display: none; }
.filter-bar__label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone-400);
  white-space: nowrap;
  flex-shrink: 0;
  padding-right: var(--space-xs);
  border-right: 1px solid var(--stone-200);
  margin-right: var(--space-xs);
}
.filter-count {
  font-size: 0.6rem;
  background: var(--stone-200);
  color: var(--stone-600);
  padding: 1px 5px;
  border-radius: 10px;
  margin-left: 4px;
  transition: background 0.2s, color 0.2s;
}
.filter-btn.active .filter-count,
.filter-btn:hover .filter-count {
  background: rgba(255,255,255,0.2);
  color: var(--stone-50);
}

/* ── GALLERY SECTION ── */
.gallery-section {
  padding: var(--space-xl) 0 var(--space-lg);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

/* ── GALLERY ITEM CARDS ── */
.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--stone-200);
  cursor: pointer;
  display: block;
}
.gallery-item.is-hidden { display: none; }

.gallery-item img,
.gallery-item .img-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,23,19,0.88) 0%, rgba(26,23,19,0.2) 55%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: var(--space-md) var(--space-sm) var(--space-md);
  pointer-events: none;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }

.gallery-item__info {
  color: var(--white);
  flex: 1;
}
.gallery-item__name {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 4px;
}
.gallery-item__meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.gallery-item__material {
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
}
.gallery-item__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--brass-light);
  display: inline-block;
  flex-shrink: 0;
}
.gallery-item__category {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass-light);
}

/* Enquire button — visible on hover, bottom of card */
.gallery-item__enquire {
  position: absolute;
  bottom: var(--space-sm);
  right: var(--space-sm);
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone-900);
  background: var(--brass);
  padding: 0.4rem 0.9rem;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  z-index: 2;
}
.gallery-item:hover .gallery-item__enquire {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ── GALLERY EMPTY STATE ── */
.gallery-empty {
  display: none;
  grid-column: 1 / -1;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
}
.gallery-empty.is-visible { display: block; }
.gallery-empty__title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--stone-600);
  margin-bottom: var(--space-xs);
}

/* ── CALLOUT STRIP (mid-gallery) ── */
.callout {
  background: var(--stone-800);
  padding: var(--space-md) 0;
  margin: var(--space-lg) 0 0;
}
.callout__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.callout__text {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--stone-200);
  line-height: 1.6;
  max-width: 560px;
}
.callout__text em {
  font-style: normal;
  color: var(--brass-light);
}

/* ── MATERIALS GUIDE ── */
.materials {
  padding: var(--space-xl) 0;
  background: var(--stone-100);
}
.materials__header {
  margin-bottom: var(--space-lg);
}
.materials__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
.material-card {
  background: var(--white);
  border: 1px solid var(--stone-200);
  overflow: hidden;
}
.material-card__swatch {
  height: 140px;
  width: 100%;
  overflow: hidden;
  background: var(--stone-200); /* fallback while image loads */
}
/* Photo fills the swatch exactly */
.material-card__swatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.material-card:hover .material-card__swatch img {
  transform: scale(1.06);
}
/* Legacy flat-colour swatches (kept as fallback) */
.swatch--black { background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #111 100%); }
.swatch--grey  { background: linear-gradient(135deg, #8a8a8a 0%, #b0b0b0 50%, #6e6e6e 100%); }
.swatch--blue  { background: linear-gradient(135deg, #4a5a72 0%, #6b7d95 40%, #3e4f65 70%, #5c6e8a 100%); }
.swatch--white { background: linear-gradient(135deg, #d4c5a9 0%, #e8dcc8 50%, #c8b898 100%); }

.material-card__name {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--stone-800);
  padding: var(--space-sm) var(--space-sm) var(--space-xs);
}
.material-card__desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--stone-600);
  line-height: 1.7;
  padding: 0 var(--space-sm) var(--space-md);
}

/* ── CTA STRIP (memorials page bottom) ── */
.cta-strip {
  padding: var(--space-xl) 0;
  background: var(--stone-900);
  text-align: center;
}
.cta-strip__title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--stone-50);
  line-height: 1.2;
  margin-bottom: var(--space-xs);
}
.cta-strip__sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--stone-400);
  max-width: 480px;
  margin: 0 auto var(--space-lg);
  line-height: 1.8;
}
.cta-strip__actions {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* ── RESPONSIVE — memorials ── */
@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .materials__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .materials__grid { grid-template-columns: 1fr; }
  .callout__inner { flex-direction: column; align-items: flex-start; }
}


/* ============================================================
   ABOUT PAGE — additional missing helpers
   ============================================================ */

/* story__content — the text side of the story split */
.story__content {
  /* no special layout needed beyond what story__layout grid provides;
     this selector is here to allow targeted overrides if needed */
}

/* craft__image and craft__content — the two halves of the dark craft split */
.craft__image {
  /* fills its grid cell — img-placeholder or real img inside */
}
.craft__content {
  /* text side of dark craft split */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ── FINAL CTA (about page closing strip) ── */
.final-cta {
  padding: var(--space-xl) 0;
  background: var(--stone-800);
  text-align: center;
}
.final-cta__title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--stone-50);
  line-height: 1.2;
  margin-bottom: var(--space-xs);
}
.final-cta__title em {
  font-style: italic;
  color: var(--brass-light);
}
.final-cta__sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--stone-400);
  max-width: 480px;
  margin: 0 auto var(--space-lg);
  line-height: 1.8;
}
.final-cta__actions {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}


/* ============================================================
   SERVICES PAGE — additional missing helpers
   ============================================================ */

/* ── CTA SECTION (services page bottom) ── */
.cta-section {
  padding: var(--space-xl) 0;
  background: var(--stone-100);
  text-align: center;
  border-top: 1px solid var(--stone-200);
}
.cta-section__title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--stone-800);
  line-height: 1.2;
  margin-bottom: var(--space-xs);
}
.cta-section__sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--stone-600);
  max-width: 480px;
  margin: 0 auto var(--space-lg);
  line-height: 1.8;
}
.cta-section__actions {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}
/* ============================================================
   FACEBOOK BANNER
   ============================================================ */
   /* ── Facebook strip ── */
.fb-strip{
  background: var(--stone-900);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.fb-strip::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(140deg, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.25) 55%, rgba(0,0,0,0.45) 100%);
  pointer-events:none;
}

.fb-strip__inner{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 180px 1fr 260px;
  gap: var(--space-xl);
  align-items: center;
}

.fb-strip__logo{
  width: 160px;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.35));
}

.fb-strip__kicker{
  display:inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: 6px;
}

.fb-strip__title{
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 300;
  color: var(--stone-50);
  margin: 0 0 var(--space-xs);
}

.fb-strip__title em{
  color: var(--brass-light);
  font-style: italic;
}

.fb-strip__text{
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  max-width: 56ch;
  margin: 0 0 var(--space-md);
}

.fb-strip__actions{
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.fb-strip__badge-inner{
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  padding: var(--space-md);
}

.fb-strip__badge-label{
  display:block;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 6px;
}

.fb-strip__badge-value{
  display:block;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--stone-50);
}

/* Responsive */
@media (max-width: 1024px){
  .fb-strip__inner{
    grid-template-columns: 1fr;
  }

  .fb-strip__logo{
    width: 140px;
    margin-bottom: var(--space-md);
  }

  .fb-strip__badge{
    margin-top: var(--space-md);
  }
}