/* === VARIABLES (Design Tokens) === */
:root {
  --color-white:      #ffffff;
  --color-cream:      #f9f5f0;
  --color-beige:      #ede5d8;
  --color-beige-dark: #d6c9b6;
  --color-gold:       #b8976a;
  --color-gold-light: #d4b896;
  --color-gold-dark:  #8a6e4a;
  --color-logo-green: #718d20;
  --color-text:       #1a1a1a;
  --color-text-muted: #6b6b6b;
  --color-border:     #e0d5c5;

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-nav:     'Libre Baskerville', Georgia, 'Times New Roman', serif;
  --font-button:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --spacing-xs:      0.5rem;
  --spacing-sm:      1rem;
  --spacing-md:      1.5rem;
  --spacing-lg:      2.5rem;
  --spacing-xl:      4rem;
  --spacing-section: clamp(3rem, 8vw, 6rem);

  --max-width:        1280px;
  --border-radius:    4px;
  --transition:       0.25s ease;
  --shadow-sm:        0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:        0 4px 20px rgba(0,0,0,0.12);
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol { list-style: none; }

button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.1rem; font-weight: 600; font-family: var(--font-body); letter-spacing: 0.08em; text-transform: uppercase; }

p { margin-bottom: var(--spacing-sm); max-width: 68ch; }
p:last-child { margin-bottom: 0; }

/* === LAYOUT UTILITIES === */
.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.section { padding-block: var(--spacing-section); }

.section--cream { background: var(--color-cream); }
.section--beige { background: var(--color-beige); }
.section--dark  { background: var(--color-text); color: var(--color-white); }

.section__header { text-align: center; margin-bottom: var(--spacing-lg); }
.section__header p { margin-inline: auto; color: var(--color-text-muted); }

.gold-rule {
  width: 3rem;
  height: 1px;
  background: var(--color-gold);
  margin: var(--spacing-sm) auto;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: 161px;
  min-height: 40px;
  padding: 0.55rem 1.25rem;
  border-radius: var(--border-radius);
  font-family: var(--font-button);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-white);
  border: 2px solid var(--color-gold);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
}
.btn-secondary:hover, .btn-secondary:focus-visible {
  background: var(--color-gold);
  color: var(--color-white);
}

.btn-light {
  background: var(--color-white);
  color: var(--color-text);
  border: 2px solid var(--color-white);
}
.btn-light:hover, .btn-light:focus-visible {
  background: var(--color-cream);
}

.btn-large { padding: 0.55rem 1.25rem; font-size: 0.75rem; }

/* Focus visible for accessibility */
:focus-visible {
  outline: 2px solid var(--color-logo-green);
  outline-offset: 3px;
}

/* === EXPERIENCE BANNER === */
.experience-banner {
  display: grid;
  grid-template-columns: 35.6% 64.4%;
  min-height: 106px;
  background: #718d20;
  color: rgba(255,255,255,0.82);
  overflow: hidden;
}

.experience-banner__media {
  min-width: 0;
  overflow: hidden;
}

.experience-banner__media video {
  display: block;
  width: 100%;
  height: 106px;
  object-fit: cover;
  object-position: center 46%;
}

.experience-banner__content {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 1rem clamp(4.5rem, 6vw, 8rem) 1rem clamp(1.5rem, 4vw, 5rem);
}

.experience-banner__copy {
  width: 62%;
  max-width: 35rem;
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.88rem, 1.05vw, 1.05rem);
  font-weight: 300;
  line-height: 1.45;
  text-align: center;
}

.experience-banner__social {
  position: absolute;
  right: clamp(1.25rem, 3vw, 3.75rem);
  top: 50%;
  display: flex;
  align-items: center;
  gap: 1rem;
  transform: translateY(-50%);
}

.experience-banner__social a {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--color-white);
  border-radius: 50%;
  transition: opacity var(--transition), transform var(--transition);
}

.experience-banner__social a:hover,
.experience-banner__social a:focus-visible {
  opacity: 0.72;
  transform: translateY(-2px);
}

.experience-banner__social svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 767px) {
  .experience-banner {
    grid-template-columns: 38% 62%;
    min-height: 92px;
  }

  .experience-banner__media video { height: 92px; }

  .experience-banner__content {
    padding: 0.75rem 2.75rem 0.75rem 0.75rem;
  }

  .experience-banner__copy {
    width: 100%;
    font-size: 0.7rem;
    line-height: 1.35;
  }

  .experience-banner__social {
    right: 0.45rem;
    flex-direction: column;
    gap: 0.1rem;
  }

  .experience-banner__social a {
    width: 24px;
    height: 24px;
  }

  .experience-banner__social svg {
    width: 14px;
    height: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .experience-banner__media video { visibility: hidden; }
  .experience-banner__media { background: #718d20; }
}

/* === SITE HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #fafafa;
  background-image: url('../images/cement-header-12345.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-top: 10px solid var(--color-white);
  border-bottom: 1px solid rgba(81,74,61,0.28);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md);
  min-height: 148px;
  padding-block: 0;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.site-header__logo img {
  height: 148px;
  width: auto;
}

.site-nav { display: flex; align-items: center; gap: var(--spacing-md); }

.site-nav__links {
  display: flex;
  gap: clamp(0.8rem, 1.6vw, 1.75rem);
  align-items: center;
}

.site-nav__links a {
  font-family: var(--font-nav);
  font-size: clamp(0.95rem, 1.25vw, 1.08rem);
  font-weight: 400;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  color: var(--color-text);
  padding: 0.25rem 0.375rem;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}

.site-nav__links a:hover,
.site-nav__links a[aria-current="page"] {
  color: var(--color-logo-green);
  border-bottom-color: var(--color-logo-green);
}

/* Hamburger button */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  min-height: 44px;
  min-width: 44px;
  align-items: center;
}

.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Mobile nav open state */
.nav-open .nav-toggle__bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-open .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle__bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* === MOBILE NAV === */
@media (max-width: 1024px) {
  .site-header { border-top-width: 6px; }
  .site-header__inner { min-height: 92px; }
  .site-header__logo img { height: 92px; }

  .nav-toggle { display: flex; }

  .site-nav__links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--color-white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md);
    z-index: 99;
    padding: var(--spacing-xl);
  }

  .nav-open .site-nav__links {
    display: flex;
  }

  .site-nav__links a {
    font-size: 1.1rem;
    padding: 0.5rem;
  }

}

/* === SITE FOOTER === */
.site-footer {
  background: var(--color-text);
  color: rgba(255,255,255,0.85);
  padding-block: var(--spacing-xl) var(--spacing-lg);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.site-footer__brand img {
  width: 112px;
  height: 112px;
  object-fit: contain;
  filter: none;
  margin-bottom: var(--spacing-sm);
}
.site-footer__logo { display: inline-block; }
.site-footer__brand p { font-size: 0.875rem; opacity: 0.7; max-width: 28ch; }

.site-footer h4 {
  color: var(--color-white);
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--spacing-sm);
}

.site-footer__contact p,
.site-footer__contact address { font-style: normal; font-size: 0.875rem; margin-bottom: 0.375rem; opacity: 0.85; }

.site-footer__contact a { color: rgba(255,255,255,0.85); transition: color var(--transition); }
.site-footer__contact a:hover { color: var(--color-gold-light); }

.site-footer__hours table { font-size: 0.8rem; border-collapse: collapse; }
.site-footer__hours td { padding: 0.15rem 0.75rem 0.15rem 0; opacity: 0.8; }
.site-footer__hours td:first-child { font-weight: 600; opacity: 1; min-width: 3.5rem; }

.site-footer__social {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-sm);
}

.site-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--color-white);
  transition: opacity var(--transition), transform var(--transition);
}

.site-footer__social a:hover { opacity: 0.72; transform: translateY(-2px); }
.site-footer__social a:first-child {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #1b1b1b;
  background: var(--color-white);
}
.site-footer__social a:first-child svg { width: 18px; height: 18px; fill: currentColor; }
.site-footer__social a:last-child svg { width: 29px; height: 29px; fill: none; stroke: currentColor; }

.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--spacing-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  opacity: 0.5;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
}

@media (max-width: 767px) {
  .site-footer__grid { grid-template-columns: 1fr; gap: var(--spacing-md); }
  .site-footer__bottom { justify-content: center; }
}

/* === HERO SECTION === */
.hero {
  position: relative;
  min-height: clamp(680px, 88vh, 940px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin-inline: auto;
  width: 100%;
  padding-inline: clamp(2rem, 12vw, 12rem);
  padding-block: var(--spacing-xl);
  color: var(--color-text);
}

.hero__content h1 {
  max-width: 12ch;
  margin-bottom: 2.5rem;
  color: var(--color-white);
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: clamp(3.6rem, 5.6vw, 6.1rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-shadow: 1px 2px 2px rgba(70,70,70,0.72);
}

.hero__content p {
  max-width: 47ch;
  margin-bottom: 3.25rem;
  color: rgba(23,21,19,0.9);
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  font-weight: 400;
  line-height: 1.75;
}

.hero__button {
  color: var(--color-white);
  background: #242220;
  border: 2px solid #242220;
  border-radius: 0;
  box-shadow: 0 8px 14px rgba(0,0,0,0.26);
}

.hero__button:hover,
.hero__button:focus-visible {
  color: #242220;
  background: var(--color-white);
}

@media (max-width: 767px) {
  .hero { min-height: 720px; align-items: flex-end; padding-bottom: var(--spacing-lg); }
  .hero__overlay {
    background: transparent;
  }
  .hero__image { object-position: 60% center; }
  .hero__content { padding-inline: 1.25rem; padding-bottom: 1rem; }
  .hero__content h1 { max-width: 9ch; margin-bottom: 1.5rem; font-size: clamp(2.8rem, 13vw, 4rem); }
  .hero__content p { margin-bottom: 2rem; font-size: 0.95rem; line-height: 1.6; }
}

/* === SERVICE CARDS (featured grid) === */
.home-about {
  display: grid;
  grid-template-columns: 8% 42% 42% 8%;
  width: 100%;
  max-width: none;
  height: 760px;
  min-height: 0;
  background: var(--color-white);
}

.home-about__leaves {
  position: relative;
  overflow: hidden;
  background: #fbfafc;
}

.home-about__leaves img {
  position: absolute;
  right: -8%;
  bottom: 0;
  width: 420%;
  max-width: none;
  height: auto;
}

.home-about__image { min-height: 0; overflow: hidden; }
.home-about__image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.home-about__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(2.25rem, 3.5vw, 4rem);
  background: #fff4ef;
}

.home-about__content h2 {
  margin-bottom: 1.25rem;
  color: #171513;
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.25rem);
  font-weight: 700;
  text-transform: uppercase;
}

.home-about__content p {
  color: #35322f;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.65;
}

.home-about__content p strong { font-weight: 600; }

.home-about__services {
  display: grid;
  gap: 0.2rem;
  margin: 0.65rem 0 1.15rem;
  color: #4a4642;
  font-family: var(--font-body);
  font-weight: 400;
}

.home-about__services li::before { content: "– "; }

.home-about__button {
  margin-top: 1rem;
  color: var(--color-white);
  background: #242220;
  border: 2px solid #242220;
  border-radius: 0;
  box-shadow: 0 8px 12px rgba(0,0,0,0.25);
}

.home-about__button:hover,
.home-about__button:focus-visible { color: #242220; background: var(--color-white); }

.home-about__ombre {
  background: linear-gradient(to bottom, #b9df4d 0%, #92bd27 48%, #6f9014 100%);
}

@media (min-width: 768px) and (max-width: 1024px) {
  .home-about { grid-template-columns: 1fr 1fr; height: auto; }
  .home-about__leaves,
  .home-about__ombre { display: none; }
  .home-about__image { min-height: 680px; }
}

@media (max-width: 767px) {
  .home-about { grid-template-columns: 1fr; height: auto; }
  .home-about__leaves,
  .home-about__ombre { display: none; }
  .home-about__image { min-height: 520px; }
  .home-about__content { padding: 3rem 1.5rem; }
}

/* === GIFT VOUCHER === */
.gift-voucher {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  height: 620px;
  overflow: hidden;
  background: #fbfafc;
}

.gift-voucher__details {
  position: relative;
  background: #fbfafc url('../images/about-eucalyptus.jpg') center / cover no-repeat;
}

.gift-voucher__content {
  position: absolute;
  top: 11%;
  left: clamp(2rem, 17vw, 21.5rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.gift-voucher__content h2 {
  margin: 0;
  color: #111;
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: clamp(2.7rem, 3.2vw, 3.5rem);
  font-weight: 700;
  line-height: 1.08;
}

.gift-voucher__button {
  margin-top: 8.5rem;
  color: var(--color-white);
  background: #242220;
  border: 2px solid #242220;
  border-radius: 0;
  box-shadow: 0 8px 12px rgba(0,0,0,0.25);
}

.gift-voucher__button:hover,
.gift-voucher__button:focus-visible {
  color: #242220;
  background: var(--color-white);
}

.gift-voucher__preview {
  background: #efd8df url('../images/gift-voucher-background.png') center / cover no-repeat;
}

@media (min-width: 768px) and (max-width: 1200px) {
  .gift-voucher__content { left: clamp(2rem, 10vw, 7rem); }
}

@media (max-width: 767px) {
  .gift-voucher {
    grid-template-columns: 1fr;
    height: auto;
  }

  .gift-voucher__details,
  .gift-voucher__preview { min-height: 470px; }

  .gift-voucher__content {
    top: 3rem;
    left: 2rem;
  }

  .gift-voucher__content h2 { font-size: clamp(2.4rem, 12vw, 3.25rem); }
  .gift-voucher__button { margin-top: 5rem; }
}

/* === HOME SERVICES === */
.home-services {
  scroll-margin-top: 165px;
  min-height: 760px;
  padding: 3.5rem clamp(1.5rem, 4vw, 4rem) 6rem;
  background: linear-gradient(to bottom, #fff 0%, #fff 46%, #000 46%, #000 100%);
}

.home-services > h2 {
  margin: 0;
  color: #090909;
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: clamp(2.4rem, 3vw, 3.25rem);
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.home-services__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(1rem, 1.5vw, 1.5rem);
  width: min(100%, 1440px);
  margin: 3.35rem auto 0;
}

.home-service-card {
  color: var(--color-white);
  text-align: center;
  text-decoration: none;
  transition: transform var(--transition);
}

.home-service-card:hover { transform: translateY(-5px); }
.home-service-card:focus-visible { outline: 2px solid var(--color-white); outline-offset: 5px; }

.home-service-card__image {
  width: 100%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 50% 50% 0 0 / 36% 36% 0 0;
  background: #f4eee9;
}

.home-service-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.home-service-card:hover .home-service-card__image img { transform: scale(1.035); }

.home-service-card h3 {
  margin: 2.1rem 0 0;
  color: var(--color-white);
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 700;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .home-services {
    padding-bottom: 5rem;
    background: linear-gradient(to bottom, #fff 0%, #fff 20%, #000 20%, #000 100%);
  }

  .home-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 620px;
    row-gap: 3.5rem;
  }
}

@media (max-width: 520px) {
  .home-services {
    padding-inline: 2.25rem;
    background: linear-gradient(to bottom, #fff 0%, #fff 12%, #000 12%, #000 100%);
  }

  .home-services__grid {
    grid-template-columns: 1fr;
    max-width: 280px;
  }
}

/* === SALON SLIDESHOW === */
.salon-slideshow {
  width: 100%;
  padding-block: 1.25rem;
  overflow: hidden;
  background: #fff0f2;
}

.salon-slideshow__track {
  display: flex;
  gap: 0.75rem;
  width: max-content;
  will-change: transform;
  animation: salon-pan 32s ease-in-out infinite alternate;
}

.salon-slideshow__slide {
  flex: 0 0 clamp(340px, 28vw, 590px);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f5efed;
}

.salon-slideshow__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.salon-slideshow:hover .salon-slideshow__track,
.salon-slideshow:focus-within .salon-slideshow__track { animation-play-state: paused; }

@keyframes salon-pan {
  from { transform: translateX(-5vw); }
  to { transform: translateX(calc(100vw - 100% + 5vw)); }
}

@media (max-width: 600px) {
  .salon-slideshow__track { gap: 0.6rem; animation-duration: 38s; }
  .salon-slideshow__slide { flex-basis: 82vw; }
}

@media (prefers-reduced-motion: reduce) {
  .salon-slideshow { overflow-x: auto; scroll-snap-type: x mandatory; }
  .salon-slideshow__track { animation: none; transform: none; }
  .salon-slideshow__slide { scroll-snap-align: center; }
}

/* === WHY CHOOSE US === */
.home-why {
  color: var(--color-white);
  background: linear-gradient(120deg, #607b1c 0%, #78951f 52%, #9cbd36 100%);
}

.home-why .section__header h2 { color: var(--color-white); }
.home-why .gold-rule { background: rgba(255,255,255,0.72); }

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

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

.home-why .why-us__item {
  padding: 1.5rem 1.15rem;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(2px);
}

.why-us__icon {
  width: 56px;
  height: 56px;
  margin-inline: auto;
  margin-bottom: var(--spacing-sm);
  color: var(--color-gold);
}

.why-us__item h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
}

.why-us__item p { font-size: 0.9rem; color: var(--color-text-muted); margin-inline: auto; }

.home-why .why-us__icon { color: var(--color-white); }
.home-why .why-us__item h3 { color: var(--color-white); }
.home-why .why-us__item p { color: rgba(255,255,255,0.82); }

/* === TESTIMONIALS === */
.home-testimonials {
  background:
    linear-gradient(rgba(255,248,245,0.93), rgba(255,248,245,0.93)),
    url('../images/cement-header-12345.jpg') center / cover;
}

.home-testimonials .section__header h2 { color: #242220; }
.home-testimonials .gold-rule { background: #78951f; }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.testimonial-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(120,149,31,0.24);
  border-top: 4px solid #78951f;
  border-radius: var(--border-radius);
  padding: var(--spacing-md);
  box-shadow: 0 12px 28px rgba(69,83,28,0.1);
}

.testimonial-card__stars { color: #78951f; font-size: 1.1rem; margin-bottom: var(--spacing-xs); letter-spacing: 0.1em; }

.testimonial-card blockquote {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--color-text);
  margin-bottom: var(--spacing-sm);
  line-height: 1.7;
}

.testimonial-card cite {
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #607b1c;
}

/* === HOME GALLERY === */
.home-gallery {
  scroll-margin-top: 165px;
  width: 100%;
  padding: 2.25rem 0 1.25rem;
  overflow: hidden;
  background: var(--color-white);
}

.home-gallery > h2 {
  margin: 0 0 2rem;
  color: #0b0a09;
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: clamp(2.25rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.home-gallery__stage { position: relative; }

.home-gallery__viewport {
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}

.home-gallery__viewport::-webkit-scrollbar { display: none; }

.home-gallery__grid {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, clamp(230px, 15.3vw, 315px));
  grid-auto-columns: clamp(230px, 15.5vw, 320px);
  gap: 2px;
  width: max-content;
  background: var(--color-white);
}

.home-gallery__grid figure { overflow: hidden; }

.home-gallery__grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, opacity var(--transition);
}

.home-gallery__grid figure:hover img { transform: scale(1.025); opacity: 0.94; }

.home-gallery__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 52px;
  place-items: center;
  color: var(--color-white);
  background: rgba(20,18,16,0.2);
  font-family: Georgia, serif;
  font-size: 1.8rem;
  line-height: 1;
  text-shadow: 0 1px 3px rgba(0,0,0,0.45);
  transform: translateY(-50%);
  transition: opacity var(--transition), background var(--transition);
}

.home-gallery__arrow:hover,
.home-gallery__arrow:focus-visible { background: rgba(20,18,16,0.45); }
.home-gallery__arrow:disabled { opacity: 0.2; cursor: default; }
.home-gallery__arrow--prev { left: 0.35rem; }
.home-gallery__arrow--next { right: 0.35rem; }

@media (max-width: 600px) {
  .home-gallery { padding-top: 2rem; }
  .home-gallery > h2 { margin-bottom: 1.5rem; font-size: 2.15rem; }
  .home-gallery__grid {
    grid-template-rows: repeat(2, 70vw);
    grid-auto-columns: 70vw;
  }
}

/* === HOME CONTACT === */
.home-contact {
  position: relative;
  isolation: isolate;
  min-height: 760px;
  padding-block: 5rem;
  overflow: hidden;
  color: var(--color-white);
  background: #48671d;
}

.home-contact__video,
.home-contact__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-contact__video {
  z-index: -2;
  object-fit: cover;
}

.home-contact__overlay {
  z-index: -1;
  background: linear-gradient(90deg, rgba(18,40,8,0.76), rgba(42,72,15,0.52));
}

.home-contact__content > h2 {
  margin: 0 0 2.5rem;
  color: var(--color-white);
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: clamp(2.7rem, 4vw, 4rem);
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.home-contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.25rem, 3vw, 3rem);
  align-items: stretch;
}

.home-contact__panel,
.home-contact__map-panel {
  background: rgba(255,250,247,0.93);
  box-shadow: 0 16px 36px rgba(0,0,0,0.24);
  backdrop-filter: blur(4px);
}

.home-contact__panel {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  color: #242220;
}

.home-contact__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.home-contact__panel h3 {
  margin-bottom: 0.7rem;
  color: #242220;
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
}

.home-contact__panel address,
.home-contact__panel p {
  color: #4d4944;
  font-style: normal;
  font-size: 0.92rem;
  line-height: 1.7;
}

.home-contact__panel a:not(.btn) { color: #3f571d; }
.home-contact__panel a:not(.btn):hover { text-decoration: underline; }

.home-contact__hours {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(36,34,32,0.18);
}

.home-contact__hours table {
  width: 100%;
  border-collapse: collapse;
  color: #4d4944;
  font-size: 0.88rem;
}

.home-contact__hours td { padding: 0.38rem 0; }
.home-contact__hours td:last-child { text-align: right; }

.home-contact__afterpay {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.home-contact__afterpay img {
  width: 126px;
  height: auto;
}

.home-contact__panel > .btn-primary {
  color: var(--color-white);
  background: #242220;
  border-color: #242220;
}

.home-contact__map-panel {
  display: flex;
  flex-direction: column;
  padding: 1rem;
}

.home-contact__map-panel iframe {
  display: block;
  width: 100%;
  min-height: 500px;
  flex: 1;
  border: 0;
}

.home-contact__directions {
  align-self: center;
  margin-top: 1rem;
  color: var(--color-white);
  background: #242220;
  border: 2px solid #242220;
  border-radius: 0;
}

.home-contact__directions:hover,
.home-contact__directions:focus-visible {
  color: #242220;
  background: var(--color-white);
}

@media (max-width: 900px) {
  .home-contact { padding-block: 4rem; }
  .home-contact__grid { grid-template-columns: 1fr; }
  .home-contact__map-panel iframe { min-height: 420px; }
}

@media (max-width: 520px) {
  .home-contact__details { grid-template-columns: 1fr; }
  .home-contact__hours td { display: block; padding: 0.15rem 0; }
  .home-contact__hours td:last-child { padding-bottom: 0.65rem; text-align: left; }
  .home-contact__afterpay { align-items: flex-start; flex-direction: column; }
  .home-contact__map-panel iframe { min-height: 340px; }
}

@media (prefers-reduced-motion: reduce) {
  .home-contact__video { visibility: hidden; }
}

/* === HOURS & LOCATION === */
.hours-location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: start;
}

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr + tr td { border-top: 1px solid var(--color-border); }
.hours-table td { padding: 0.6rem 0.5rem 0.6rem 0; font-size: 0.9rem; }
.hours-table td:first-child { font-weight: 600; min-width: 8rem; }
.hours-table td:last-child { text-align: right; color: var(--color-text-muted); }

.location-address {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: var(--spacing-sm);
}

@media (max-width: 767px) {
  .hours-location__grid { grid-template-columns: 1fr; gap: var(--spacing-lg); }
}

/* === CTA STRIP === */
.cta-strip {
  background: var(--color-text);
  color: var(--color-white);
  text-align: center;
  padding-block: var(--spacing-xl);
}

.cta-strip h2 { color: var(--color-white); margin-bottom: var(--spacing-sm); }
.cta-strip p  { color: rgba(255,255,255,0.75); margin-inline: auto; margin-bottom: var(--spacing-lg); }

/* === SERVICE ITEMS (Services page) === */
.anchor-nav {
  background: var(--color-cream);
  border-bottom: 1px solid var(--color-border);
  padding-block: var(--spacing-sm);
  position: sticky;
  top: 80px;
  z-index: 50;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.anchor-nav__inner {
  display: flex;
  gap: var(--spacing-sm);
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  flex-wrap: nowrap;
  white-space: nowrap;
}

.anchor-nav a {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-text-muted);
  padding: 0.375rem 0.75rem;
  border-radius: 2rem;
  transition: background var(--transition), color var(--transition);
  flex-shrink: 0;
}

.anchor-nav a:hover { background: var(--color-beige); color: var(--color-text); }

.service-section {
  padding-block: var(--spacing-xl);
  border-bottom: 1px solid var(--color-border);
}

.service-section:last-of-type { border-bottom: none; }

.service-section__header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.service-section__image {
  width: 200px;
  height: 240px;
  object-fit: cover;
  border-radius: 50% 50% 4px 4px;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .service-section__header { grid-template-columns: 1fr; }
  .service-section__image { width: 100%; height: 220px; border-radius: var(--border-radius); }
}

.service-list { display: flex; flex-direction: column; gap: 0.125rem; }

.service-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
  gap: var(--spacing-sm);
}

.service-item:last-child { border-bottom: none; }

.service-item__name { font-size: 0.95rem; font-weight: 500; flex: 1; }
.service-item__desc { font-size: 0.82rem; color: var(--color-text-muted); margin-top: 0.125rem; }
.service-item__addon { font-size: 0.75rem; font-style: italic; color: var(--color-text-muted); }

.service-item__price {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-gold-dark);
  white-space: nowrap;
}

/* Polish/Gel two-column pricing */
.price-two-col {
  width: 100%;
}

.price-two-col thead th {
  text-align: right;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: 0.375rem 0.5rem;
  border-bottom: 1px solid var(--color-border);
}

.price-two-col thead th:first-child { text-align: left; }

.price-two-col tbody tr {
  border-bottom: 1px solid var(--color-border);
}

.price-two-col tbody tr:last-child { border-bottom: none; }

.price-two-col td {
  padding: 0.625rem 0.5rem;
  font-size: 0.9rem;
}

.price-two-col td:not(:first-child) {
  text-align: right;
  font-weight: 600;
  color: var(--color-gold-dark);
  white-space: nowrap;
}

.price-two-col .is-addon td:first-child { font-style: italic; color: var(--color-text-muted); }
.price-two-col .is-addon td { font-size: 0.82rem; }

.service-section__cta { margin-top: var(--spacing-md); }

/* === PRICE TABLE (Price List page) === */
.price-section { padding-block: var(--spacing-lg); border-bottom: 1px solid var(--color-border); }
.price-section:last-of-type { border-bottom: none; }

.price-section h2 { margin-bottom: var(--spacing-md); color: var(--color-gold-dark); font-size: clamp(1.4rem, 3vw, 2rem); }

.price-table { width: 100%; border-collapse: collapse; }

.price-table tr { border-bottom: 1px solid var(--color-border); }
.price-table tr:last-child { border-bottom: none; }
.price-table tr:nth-child(even) { background: var(--color-cream); }

.price-table th {
  text-align: left;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: 0.5rem;
  border-bottom: 2px solid var(--color-border);
}

.price-table th:not(:first-child) { text-align: right; }

.price-table td {
  padding: 0.625rem 0.5rem;
  font-size: 0.9rem;
  vertical-align: middle;
}

.price-table td:not(:first-child) {
  text-align: right;
  font-weight: 600;
  color: var(--color-gold-dark);
  white-space: nowrap;
  width: 5rem;
}

.price-table .is-addon td:first-child { font-style: italic; color: var(--color-text-muted); padding-left: 1.25rem; }
.price-table .is-addon td { font-size: 0.82rem; }
.price-table .price-from::before { content: "from "; font-weight: 400; font-size: 0.75rem; color: var(--color-text-muted); }

.price-notice {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  font-style: italic;
  padding: var(--spacing-sm) 0;
}

/* === GALLERY (Gallery page) === */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--spacing-lg);
}

.filter-btn {
  min-width: 161px;
  min-height: 40px;
  padding: 0.55rem 1.25rem;
  border-radius: 2rem;
  font-family: var(--font-button);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-text-muted);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.filter-btn:hover,
.filter-btn[aria-pressed="true"] {
  background: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
}

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

@media (min-width: 600px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

.gallery-item { overflow: hidden; border-radius: var(--border-radius); background: var(--color-beige); }

.gallery-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.4s ease, opacity var(--transition);
}

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

/* Hidden gallery items (filtered out) */
.gallery-item[hidden] { display: none; }

/* === FAQ ACCORDION === */
.faq-page {
  min-height: 780px;
  padding: clamp(2rem, 4vw, 4rem) clamp(1rem, 4vw, 3rem) clamp(4rem, 7vw, 7rem);
  background-color: #fbfbfd;
  background-image: url('../images/faq-eucalyptus-background.jpg');
  background-position: left bottom;
  background-size: clamp(420px, 52vw, 820px) auto;
  background-repeat: no-repeat;
}

.faq-page > h1 {
  margin: 0 0 clamp(3.5rem, 7vw, 6rem);
  color: #242220;
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: clamp(3.5rem, 6vw, 5.25rem);
  font-weight: 700;
  text-align: center;
}

.faq-page__panel {
  width: min(100%, 1540px);
  margin-inline: auto;
  padding: clamp(1.5rem, 3.5vw, 3.25rem);
  background: rgba(255,255,255,0.95);
}

.faq-list { display: flex; flex-direction: column; }

details.faq-item {
  border-bottom: 1px solid #78951f;
}

details.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 112px;
  padding: 1.5rem 0;
  cursor: pointer;
  color: #292725;
  font-size: clamp(1.2rem, 1.8vw, 1.8rem);
  font-weight: 400;
  line-height: 1.4;
  list-style: none;
  gap: 2rem;
  transition: color var(--transition);
}

details.faq-item summary::-webkit-details-marker { display: none; }

details.faq-item summary:hover { color: #607b1c; }

details.faq-item summary::after {
  content: "";
  width: 16px;
  height: 16px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  flex-shrink: 0;
  transform: rotate(45deg) translate(-3px, 3px);
  transition: transform var(--transition);
}

details.faq-item[open] summary::after {
  transform: rotate(225deg) translate(-3px, 3px);
}

.faq-answer {
  padding: 0 0 clamp(2rem, 3vw, 3rem);
  color: #5b5855;
  font-size: clamp(1rem, 1.35vw, 1.3rem);
  line-height: 1.55;
}

.faq-answer p { max-width: none; margin: 0; }
.faq-answer p + p { margin-top: 1.5rem; }
.faq-answer ol {
  margin: 0.25rem 0 0;
  padding-left: 2rem;
  list-style: decimal;
}
.faq-answer li { padding-left: 0.35rem; }
.faq-answer a { color: #607b1c; }

/* === POLICY PAGE === */
.policy-page {
  padding: clamp(3rem, 6vw, 6rem) clamp(1rem, 4vw, 3rem);
  background-color: #f7f4f1;
  background-image:
    linear-gradient(rgba(255, 250, 247, 0.9), rgba(255, 250, 247, 0.9)),
    url('../images/cement-header-12345.jpg');
  background-position: center;
  background-size: cover;
}

.policy-page__inner {
  width: min(100%, 1100px);
  margin-inline: auto;
  padding: clamp(2rem, 5vw, 4rem);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 40px rgba(36, 34, 32, 0.08);
}

.policy-page h1 {
  margin: 0 0 1.25rem;
  color: #242220;
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.policy-page__intro {
  max-width: 760px;
  margin: 0 auto clamp(1.5rem, 4vw, 3rem);
  color: #5b5855;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.7;
  text-align: center;
}

.policy-card {
  padding: clamp(1.5rem, 3vw, 2.25rem) 0;
  border-bottom: 1px solid #78951f;
}

.policy-card:last-child { border-bottom: 0; }

.policy-card h2 {
  margin: 0 0 0.75rem;
  color: #242220;
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
  font-weight: 700;
}

.policy-card p {
  margin: 0;
  color: #5b5855;
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.7;
}

.policy-card a { color: #607b1c; }
.policy-card a:hover { text-decoration: underline; }

@media (max-width: 600px) {
  .policy-page { padding-inline: 0.75rem; }
  .policy-page__inner { padding-inline: 1.25rem; }
}

@media (max-width: 600px) {
  .faq-page { padding-inline: 0.75rem; }
  .faq-page > h1 { margin-bottom: 2.5rem; }
  .faq-page__panel { padding: 0.75rem 1.1rem; }
  details.faq-item summary { min-height: 92px; gap: 1rem; }
  details.faq-item summary::after { width: 12px; height: 12px; }
}

/* === CONTACT PAGE === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: start;
}

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

.contact-cards { display: flex; flex-direction: column; gap: var(--spacing-sm); }

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  padding: var(--spacing-md);
  background: var(--color-cream);
  border-radius: var(--border-radius);
  border: 1px solid var(--color-border);
}

.contact-card__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card__icon svg { width: 24px; height: 24px; }

.contact-card__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.25rem;
}

.contact-card__value { font-size: 1rem; font-weight: 500; }
.contact-card__value a { color: var(--color-text); transition: color var(--transition); }
.contact-card__value a:hover { color: var(--color-gold-dark); }

.map-embed {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: var(--spacing-md);
}

.map-embed iframe { display: block; width: 100%; height: 360px; border: none; }

.social-links { display: flex; gap: var(--spacing-sm); margin-top: var(--spacing-md); }

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem var(--spacing-sm);
  border: 1.5px solid var(--color-border);
  border-radius: var(--border-radius);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-text);
  transition: border-color var(--transition), color var(--transition);
  min-height: 44px;
}

.social-link svg { width: 18px; height: 18px; flex-shrink: 0; }
.social-link:hover { border-color: var(--color-gold); color: var(--color-gold-dark); }

/* Hours table on contact page */
.contact-hours { width: 100%; border-collapse: collapse; margin-top: var(--spacing-sm); }
.contact-hours tr + tr td { border-top: 1px solid var(--color-border); }
.contact-hours td { padding: 0.5rem 0.25rem; font-size: 0.9rem; }
.contact-hours td:first-child { font-weight: 600; min-width: 7rem; }
.contact-hours td:last-child { text-align: right; color: var(--color-text-muted); }

/* === ABOUT PAGE === */
.about-showcase {
  padding: clamp(5rem, 8vw, 8rem) clamp(1.25rem, 4vw, 4rem);
  background:
    linear-gradient(90deg, #fff6f1 0%, #fff6f1 50%, transparent 50%),
    linear-gradient(110deg, #b9df4d 50%, #78951f 100%);
}

.about-showcase__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.88fr);
  width: min(100%, 1100px);
  min-height: 900px;
  margin-inline: auto;
  box-shadow: 0 18px 45px rgba(32, 39, 15, 0.16);
}

.about-showcase__image { min-width: 0; overflow: hidden; }
.about-showcase__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-showcase__content {
  padding: clamp(2.5rem, 4.5vw, 4.75rem) clamp(2rem, 4vw, 4rem);
  color: rgba(255, 255, 255, 0.72);
  background: #050505;
}

.about-showcase__content h1 {
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
  color: var(--color-white);
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: clamp(2.7rem, 4vw, 4rem);
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.about-showcase__content p,
.about-showcase__content li {
  font-size: clamp(0.83rem, 1vw, 0.96rem);
  line-height: 1.55;
}

.about-showcase__content p { margin: 0 0 1.5rem; }
.about-showcase__content ul {
  margin: 0;
  padding-left: 1.15rem;
  list-style: disc;
}
.about-showcase__content li { padding-left: 0.2rem; }
.about-showcase__content li + li { margin-top: 0.45rem; }
.about-showcase__content strong {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 400;
}

@media (max-width: 900px) {
  .about-showcase {
    padding: 3rem 1.25rem;
    background: linear-gradient(155deg, #fff6f1 0%, #fff6f1 42%, #a9ca3e 42%, #78951f 100%);
  }
  .about-showcase__inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .about-showcase__image img {
    height: auto;
    max-height: 760px;
    object-position: center 40%;
  }
}

@media (max-width: 560px) {
  .about-showcase { padding: 1.5rem 0; }
  .about-showcase__inner { box-shadow: none; }
  .about-showcase__content { padding: 2.5rem 1.4rem 3rem; }
  .about-showcase__content h1 { margin-bottom: 1.75rem; font-size: 2.5rem; }
  .about-showcase__content p,
  .about-showcase__content li { font-size: 0.9rem; line-height: 1.6; }
}

.salon-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-top: var(--spacing-lg);
}

.salon-images img { aspect-ratio: 4/3; object-fit: cover; width: 100%; border-radius: var(--border-radius); }

@media (min-width: 768px) { .salon-images { grid-template-columns: repeat(4, 1fr); } }

/* === PAGE HERO (inner pages) === */
.service-gallery-hero {
  position: relative;
  display: grid;
  min-height: clamp(260px, 31vw, 390px);
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #78951f;
}

.service-gallery-hero video,
.service-gallery-hero::after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.service-gallery-hero video {
  z-index: -2;
  object-fit: cover;
  transform: scale(1.04);
  filter: blur(2px) saturate(1.08);
}

.service-gallery-hero::after {
  content: "";
  z-index: -1;
  background: linear-gradient(90deg, rgba(57, 82, 14, 0.42), rgba(144, 181, 38, 0.26));
}

.service-gallery-hero h1 {
  margin: 0;
  padding: 1rem;
  color: var(--color-white);
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: clamp(3.25rem, 7vw, 5.8rem);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-shadow: 0 4px 0 rgba(32, 42, 17, 0.32);
  text-transform: uppercase;
}

.service-gallery-content {
  padding: clamp(1.75rem, 3vw, 3rem) clamp(0.65rem, 2vw, 1.5rem);
  background: #fbfafc;
}

.service-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: clamp(52px, 4.7vw, 72px);
  gap: clamp(0.4rem, 0.65vw, 0.65rem);
  width: min(100%, 1000px);
  margin-inline: auto;
}

.service-gallery-grid figure {
  grid-column: span 3;
  grid-row: span 3;
  overflow: hidden;
  background: #ece8e3;
}

.service-gallery-grid figure.tile-wide { grid-column: span 6; }
.service-gallery-grid figure.tile-tall { grid-row: span 4; }
.service-gallery-grid figure.tile-short { grid-row: span 2; }

.service-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity var(--transition);
}

.service-gallery-grid figure:hover img { transform: scale(1.025); opacity: 0.95; }

/* Crop a thin dark edge embedded in the original waxing image. */
.service-gallery-grid figure.crop-right-edge img {
  transform: scale(1.025);
  transform-origin: left center;
}

.service-gallery-grid figure.crop-right-edge:hover img {
  transform: scale(1.045);
}

/* === HEAD SPA FEATURE === */
.service-gallery-hero--static {
  background: linear-gradient(120deg, #526b18, #78951f 55%, #a9c94a);
}

.head-spa-feature {
  padding: clamp(3rem, 6vw, 6rem) clamp(1rem, 4vw, 3rem);
  background: linear-gradient(135deg, #fbfaf8 0%, #f4eee9 100%);
}

.head-spa-feature__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(2rem, 6vw, 5.5rem);
  width: min(100%, 1080px);
  margin-inline: auto;
  align-items: center;
}

.head-spa-feature__video {
  width: min(100%, 410px);
  padding: 0.35rem;
  justify-self: end;
  border: 4px solid var(--color-logo-green);
  background: var(--color-white);
  box-shadow: 0 20px 45px rgba(38, 33, 28, 0.2);
}

.head-spa-feature__video video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 680px;
  object-fit: cover;
  background: #171513;
}

.head-spa-feature__copy {
  max-width: 560px;
  padding: clamp(1.8rem, 4vw, 3.5rem);
  border-left: 4px solid var(--color-logo-green);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 40px rgba(71, 62, 51, 0.09);
}

.head-spa-feature__eyebrow {
  margin-bottom: 0.8rem;
  color: var(--color-logo-green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.head-spa-feature__copy h2 {
  margin-bottom: 1rem;
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
}

.head-spa-feature__copy p:not(.head-spa-feature__eyebrow) {
  margin-bottom: 1.6rem;
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

@media (max-width: 760px) {
  .head-spa-feature__layout { grid-template-columns: 1fr; gap: 2rem; }
  .head-spa-feature__video { width: min(100%, 360px); justify-self: center; }
  .head-spa-feature__video video { max-height: 620px; }
  .head-spa-feature__copy { max-width: 560px; margin-inline: auto; }
}

.service-gallery-cta {
  padding: clamp(2.5rem, 5vw, 4rem) 1rem;
  color: var(--color-white);
  background: linear-gradient(120deg, #607b1c, #78951f 55%, #9cbd36);
  text-align: center;
}

.service-gallery-cta h2 {
  margin-bottom: 0.6rem;
  color: var(--color-white);
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 700;
}

.service-gallery-cta p { margin: 0 auto 1.5rem; color: rgba(255,255,255,0.88); }

@media (max-width: 900px) {
  .service-gallery-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); grid-auto-rows: 68px; }
  .service-gallery-grid figure { grid-column: span 3; }
  .service-gallery-grid figure.tile-wide { grid-column: span 6; }
}

@media (max-width: 560px) {
  .service-gallery-content { padding-block: 1.25rem; }
  .service-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 72px; }
  .service-gallery-grid figure,
  .service-gallery-grid figure.tile-wide { grid-column: span 1; grid-row: span 2; }
  .service-gallery-grid figure.tile-wide { grid-column: span 2; }
  .service-gallery-grid figure.tile-tall { grid-row: span 3; }
}

@media (prefers-reduced-motion: reduce) {
  .service-gallery-hero video { visibility: hidden; }
  .service-gallery-grid img { transition: none; }
}

.page-hero {
  background: var(--color-cream);
  padding-block: var(--spacing-xl);
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}

.page-hero h1 { margin-bottom: var(--spacing-xs); }
.page-hero p { color: var(--color-text-muted); margin-inline: auto; }

.page-hero--about {
  display: flex;
  min-height: 430px;
  align-items: center;
  background-color: #fbfafc;
  background-image: url('../images/about-eucalyptus.jpg');
  background-position: center 58%;
  background-size: cover;
  text-align: left;
}

.page-hero--about .container { width: 100%; }
.page-hero--about h1 {
  max-width: 8ch;
  color: #171513;
  font-size: clamp(3.5rem, 6vw, 5.8rem);
  text-transform: uppercase;
}
.page-hero--about p { margin-inline: 0; max-width: 32ch; color: #35322f; font-size: 1.05rem; }

@media (max-width: 767px) {
  .page-hero--about { min-height: 320px; background-position: 62% center; }
  .page-hero--about h1 { font-size: 3rem; }
  .page-hero--about p { max-width: 22ch; font-size: 0.9rem; }
}

/* === 404 PAGE === */
.error-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--spacing-xl);
}

.error-page h1 { font-size: clamp(4rem, 12vw, 8rem); color: var(--color-gold-light); margin-bottom: 0; }
.error-page h2 { margin-bottom: var(--spacing-sm); }
.error-page p  { margin-bottom: var(--spacing-lg); color: var(--color-text-muted); }

/* === SCREEN READER ONLY === */
.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;
}

/* === GLOBAL GREEN INTERACTION STATES === */
a:not(.btn):not(.site-header__logo):not([aria-label="Facebook"]):not([aria-label="Instagram"]):hover,
a:not(.btn):not(.site-header__logo):not([aria-label="Facebook"]):not([aria-label="Instagram"]):focus-visible,
a:not(.btn):not(.site-header__logo):not([aria-label="Facebook"]):not([aria-label="Instagram"]):active {
  color: var(--color-logo-green);
}

.btn:hover,
.btn:focus-visible,
.btn:active {
  color: var(--color-logo-green);
  background: var(--color-white);
  border-color: var(--color-logo-green);
}

.filter-btn:hover,
.filter-btn:focus-visible {
  color: var(--color-logo-green);
  background: var(--color-white);
  border-color: var(--color-logo-green);
}

.anchor-nav a:hover,
.anchor-nav a:focus-visible,
details.faq-item summary:hover,
details.faq-item summary:focus-visible {
  color: var(--color-logo-green);
}

.home-service-card:hover h3,
.home-service-card:focus-visible h3 {
  color: var(--color-logo-green);
}

/* === UNIFIED BUTTON STYLE === */
.btn {
  width: 180px;
  min-width: 180px;
  min-height: 44px;
  padding: 0.6rem 1.25rem;
  color: var(--color-white);
  background: #242220;
  border: 2px solid #242220;
  border-radius: 0;
  font-family: var(--font-button);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}
