/* ============================================
   Sundaze Edit — Global Styles
   Events, Luxury Picnics & Tablescaping
   Sunshine Coast, Australia
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,500;0,6..96,600;0,6..96,700;1,6..96,400;1,6..96,500&family=Nunito+Sans:wght@300;400;600&family=Montserrat:wght@300;400;500&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
  /* Palette — warm neutral beige from logo */
  --background: #ffffff;
  --background-warm: #f5f3f0;
  --light-background: #e2dfda;
  --heading-color: #3A3530;
  --text-color: #3A3530;
  --text-color-light: rgba(58, 53, 48, 0.65);
  --link-color: #3A3530;
  --button-background: #e2dfda;
  --button-hover: #d5d2cc;
  --button-text-color: #3A3530;
  --footer-background: #9CAB91;
  --footer-text-color: #ffffff;
  --border-color: #d5d2cc;
  --card-background: #f9f8f6;
  --overlay: rgba(0, 0, 0, 0.4);

  /* Typography */
  --font-display: 'Bodoni Moda', 'Didot', 'Bodoni MT', Georgia, serif;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;
  --base-font-size: 15px;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;
  --gap: 30px;

  /* Transitions */
  --transition: 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: var(--base-font-size);
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-color);
  background: var(--background);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--link-color);
  text-decoration: none;
  transition: opacity var(--transition);
}

a:hover {
  opacity: 0.75;
}

ul, ol {
  list-style: none;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--heading-color);
  line-height: 1.2;
}

h1 { font-size: 5.5rem; letter-spacing: -0.5px; }
h2 { font-size: 3.8rem; letter-spacing: -0.3px; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.3rem; }

.subheading {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(58, 53, 48, 0.6);
}

p {
  margin-bottom: 1rem;
  color: var(--text-color);
}

/* ---- Layout ---- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 30px;
}

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

.section--warm {
  background: var(--background-warm);
}

.section--peach {
  background: var(--light-background);
}

/* Gingham variant — classic green + cream picnic check */
.section--gingham {
  --check: 64px;
  --gingham-base: #f1ecdd;
  --gingham-sage: #9CAB91;
  background-color: var(--gingham-base);
  background-image:
    linear-gradient(var(--gingham-sage) 50%, transparent 50%),
    linear-gradient(90deg, var(--gingham-sage) 50%, transparent 50%);
  background-size: var(--check) var(--check), var(--check) var(--check);
  background-blend-mode: multiply, multiply;
}

/* Cream card that floats over the gingham so type stays readable */
.bespoke-card {
  max-width: 760px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.92);
  padding: 60px 60px 55px;
  text-align: center;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.18);
}
.bespoke-card p {
  max-width: 560px;
  margin: 0 auto 36px;
}
@media (max-width: 700px) {
  .bespoke-card { padding: 45px 28px 40px; }
}

/* Sage variant — matches sage page-header for visual flow */
.section--sage {
  position: relative;
  overflow: hidden;
  background: #9CAB91;
  color: #ffffff;
}
.section--sage > .container { position: relative; z-index: 2; }
.section--sage .subheading,
.section--sage h2,
.section--sage h3 {
  color: #ffffff;
}
.section--sage p,
.section--sage li {
  color: rgba(255, 255, 255, 0.9);
}
.section--sage .divider {
  background: rgba(255, 255, 255, 0.7);
}
.section--sage .btn--primary {
  background: #ffffff;
  color: #3F5240;
}
.section--sage .btn--primary:hover {
  background: rgba(255, 255, 255, 0.88);
}
.section--sage li span[style] {
  color: #ffffff !important;
}
.section--sage .basket-art {
  position: absolute;
  left: 30px;
  bottom: 60px;
  width: 360px;
  height: auto;
  opacity: 0.65;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 900px) {
  .section--sage .basket-art {
    width: 240px;
    left: -20px;
    bottom: 30px;
    opacity: 0.45;
  }
}

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

/* ---- FAQ accordion ---- */
.faq__item {
  border-bottom: 1px solid var(--border-color);
  padding: 22px 4px;
}
.faq__item:first-child { border-top: 1px solid var(--border-color); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--heading-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: opacity var(--transition);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq__item[open] summary::after {
  content: '–';
}
.faq__item summary:hover { opacity: 0.7; }
.faq__item p {
  margin: 16px 0 4px;
  color: var(--text-color-light);
  font-size: 0.95rem;
}

/* Hides an element from sighted users while keeping it readable by screen readers and search engines. */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 36px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn--primary {
  background: transparent;
  color: #9CAB91;
  border: 1.5px solid #9CAB91;
}

.btn--primary:hover {
  background: #9CAB91;
  color: #ffffff;
  opacity: 1;
}

.btn--outline {
  background: transparent;
  color: #9CAB91;
  border: 1.5px solid #9CAB91;
}

.btn--outline:hover {
  background: #9CAB91;
  color: #ffffff;
  opacity: 1;
}

/* ---- Header / Navigation ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--footer-background);
  border-bottom: none;
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.12);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 65px;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 30px;
}

.header__logo img {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav__list {
  display: flex;
  gap: 35px;
}

.nav__link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--footer-text-color);
  position: relative;
  padding: 4px 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--footer-text-color);
  transition: width var(--transition);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__link:hover {
  opacity: 1;
}

/* Mobile menu toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--footer-text-color);
  transition: all var(--transition);
}

/* ---- Hero ---- */
/* Scroll-driven video hero wrapper — height controls how much scroll = full video */
.hero-scroll {
  height: 300vh;
  margin-top: 65px;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero--video {
  position: sticky;
  top: 0;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    /* Corner vignette — tight fade */
    radial-gradient(
      ellipse 80% 75% at center,
      transparent 65%,
      rgba(255,255,255,0.5) 85%,
      rgba(255,255,255,1) 100%
    ),
    /* Bottom blend into next section */
    linear-gradient(
      to bottom,
      transparent 60%,
      rgba(255,255,255,0.7) 85%,
      rgba(255,255,255,1) 100%
    ),
    /* Warm tint — stronger for text readability */
    linear-gradient(
      to bottom,
      rgba(255,255,255,0.35) 0%,
      rgba(246,226,210,0.55) 100%
    );
  pointer-events: none;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--light-background);
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.15) 0%,
    rgba(246,226,210,0.4) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1185px;
  padding: 0 30px;
}

.hero__content .subheading {
  margin-bottom: 20px;
  color: var(--heading-color);
  text-shadow: 0 0 20px rgba(255,255,255,1), 0 0 40px rgba(255,255,255,0.6);
}

.hero__logo {
  max-width: 900px;
  width: 100%;
  height: auto;
  margin: 0 auto 25px;
  filter:
    brightness(0) invert(100%)
    sepia(18%) saturate(220%) hue-rotate(355deg)
    brightness(98%) contrast(96%)
    drop-shadow(0 14px 28px rgba(47, 64, 48, 0.65))
    drop-shadow(0 36px 72px rgba(47, 64, 48, 0.5));
}

.hero__content h1 {
  margin-bottom: 20px;
  color: var(--heading-color);
}

.hero__content p {
  font-size: 1.1rem;
  margin-bottom: 35px;
  color: var(--text-color);
  text-shadow: 0 0 20px rgba(255,255,255,1), 0 0 40px rgba(255,255,255,0.6);
}

.hero__content .btn--primary {
  background: #9CAB91;
  color: #ffffff;
  border: 1.5px solid #9CAB91;
}

.hero__content .btn--primary:hover {
  background: #7a8970;
  border-color: #7a8970;
  color: #ffffff;
  opacity: 1;
}

/* ---- Intro / About Preview ---- */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.intro__image {
  position: relative;
  overflow: hidden;
}

.intro__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.intro__text h2 {
  margin-bottom: 10px;
}

.intro__text .subheading {
  margin-bottom: 20px;
  display: block;
}

.intro__text p {
  margin-bottom: 25px;
}

/* ---- Services Cards ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.service-card {
  text-align: left;
  padding: 0;
  background: transparent;
  border: none;
}

.service-card:hover .service-card__image {
  transform: scale(1.02);
}

.service-card__image {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: transparent;
  margin-bottom: 28px;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.7rem;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-color-light);
  margin-bottom: 22px;
  max-width: 320px;
}

.service-card .btn--outline {
  background: transparent;
  border: none;
  padding: 0 0 4px;
  letter-spacing: 2px;
  font-size: 0.7rem;
  color: var(--heading-color);
  border-bottom: 1px solid var(--heading-color);
  transition: opacity var(--transition);
}

.service-card .btn--outline:hover {
  background: transparent;
  color: var(--heading-color);
  opacity: 0.55;
}

/* Text-only tile variant — frosted-glass card */
.service-card--tile {
  text-align: center;
  padding: 60px 35px 55px;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  color: var(--text-color);
  text-decoration: none;
}

.service-card--tile:hover {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.95);
  transform: translateY(-3px);
  opacity: 1;
}

.service-card--tile::before {
  content: attr(data-number);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(0, 0, 0, 0.4);
  display: block;
  margin-bottom: 24px;
  letter-spacing: 0;
}

.service-card--tile h3 {
  font-size: 1.9rem;
  margin-bottom: 14px;
}

.service-card--tile p {
  font-size: 0.92rem;
  color: var(--text-color-light);
  margin-bottom: 28px;
  max-width: 260px;
  line-height: 1.65;
}

/* ---- Edge-to-Edge Intro Bleed ---- */
.intro--bleed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  max-width: none;
  padding: 0;
}

.intro--bleed .intro__image {
  height: 720px;
  overflow: hidden;
}

.intro--bleed .intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.intro--bleed .intro__text {
  padding: 0 80px;
  max-width: 640px;
}

/* Slide-in animation — image from left, text from right */
.fade-up:has(.intro--bleed) {
  opacity: 1;
  transform: none;
}

.intro--bleed .intro__image,
.intro--bleed .intro__text {
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.intro--bleed .intro__image { transform: translateX(-70px); }
.intro--bleed .intro__text  { transform: translateX(70px); transition-delay: 0.15s; }

.fade-up.in-view .intro--bleed .intro__image,
.fade-up.in-view .intro--bleed .intro__text {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 968px) {
  .intro--bleed {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .intro--bleed .intro__image { height: 520px; }
  .intro--bleed .intro__text { padding: 0 30px; max-width: none; }
}

/* ---- Tablescape Themes ---- */
.themes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
}

.theme-tile {
  display: flex;
  flex-direction: column;
}

.theme-tile__image {
  overflow: hidden;
  margin-bottom: 22px;
  aspect-ratio: 4/5;
}

.theme-tile__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.theme-tile:hover .theme-tile__image img {
  transform: scale(1.04);
}

.theme-tile__content .subheading {
  display: block;
  margin-bottom: 8px;
}

.theme-tile__content h3 {
  margin-bottom: 10px;
  font-size: 1.6rem;
}

.theme-tile__content p {
  font-size: 0.95rem;
  color: var(--text-color-light);
  line-height: 1.65;
}

/* ---- Featured Theme ---- */
.theme-feature {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.theme-feature__intro p {
  margin-bottom: 28px;
  color: var(--text-color);
}

.theme-feature__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 560px;
}

.theme-feature__main {
  grid-row: span 2;
  overflow: hidden;
}

.theme-feature__thumb {
  overflow: hidden;
}

.theme-feature__main img,
.theme-feature__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.theme-feature__main:hover img,
.theme-feature__thumb:hover img {
  transform: scale(1.04);
}

/* ---- Picnic Editorial Grid ---- */
.picnic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}

.picnic-grid__item {
  overflow: hidden;
  position: relative;
}

.picnic-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.picnic-grid__item:hover img {
  transform: scale(1.04);
}

.picnic-grid__item--tall {
  grid-row: span 2;
}

.picnic-grid__item--wide {
  grid-column: span 2;
}

/* ---- Mood Boards ---- */
.moodboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.moodboard-grid__item {
  overflow: hidden;
  background: var(--card-background);
}

.moodboard-grid__item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.moodboard-grid__item:hover img {
  transform: scale(1.02);
}

/* ---- Gallery Grid ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.gallery-grid__item {
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
}

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

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

.gallery-grid__item--wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.gallery-grid__item--tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

/* Gallery filter tabs */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.gallery-filters .btn {
  padding: 15px 38px;
  font-size: 0.875rem;
  letter-spacing: 2.5px;
  border-color: #9CAB91;
  color: #9CAB91;
}

.gallery-filters .btn:hover,
.gallery-filters .btn.active {
  background: #9CAB91;
  border-color: #9CAB91;
  color: #ffffff;
  opacity: 1;
}

/* ---- Testimonials Carousel ---- */
.testimonials-carousel {
  position: relative;
  max-width: 780px;
  margin: 50px auto 0;
}

.testimonials-carousel__viewport {
  overflow: hidden;
  padding: 10px 0;
}

.testimonials-carousel__track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial {
  flex: 0 0 100%;
  padding: 20px 60px;
  text-align: center;
}

.testimonial__stars { display: none; }

.testimonial__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.7rem;
  line-height: 1.45;
  font-weight: 400;
  color: var(--heading-color);
  margin-bottom: 28px;
}

.testimonial__author {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-color-light);
}

.testimonials-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 12px;
  color: var(--heading-color);
  opacity: 0.4;
  transition: opacity var(--transition);
  z-index: 2;
}

.testimonials-carousel__arrow:hover { opacity: 1; }

.testimonials-carousel__arrow svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.2;
  fill: none;
}

.testimonials-carousel__arrow--prev { left: -10px; }
.testimonials-carousel__arrow--next { right: -10px; }

.testimonials-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.testimonials-carousel__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all var(--transition);
}

.testimonials-carousel__dot.is-active {
  background: var(--heading-color);
  transform: scale(1.4);
}

/* ---- CTA Banner ---- */
.cta-banner {
  position: relative;
  padding: 80px 0 100px;
  text-align: center;
  background: #ffffff;
}

.cta-banner::before {
  content: '';
  display: block;
  width: 80%;
  height: 5px;
  background: #9CAB91;
  border-radius: 999px;
  margin: 0 auto 60px;
  box-shadow: 0 14px 0 #9CAB91;
}

.cta-banner .container {
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  color: #2a2a2a;
  font-weight: 600;
  margin-bottom: 15px;
}

.cta-banner p {
  color: rgba(42, 42, 42, 0.7);
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.cta-banner .btn--primary {
  background: transparent;
  color: #9CAB91;
  border-color: #9CAB91;
}

.cta-banner .btn--primary:hover {
  background: #9CAB91;
  color: #ffffff;
  opacity: 1;
}

/* ---- About Page ---- */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-story img {
  width: 100%;
  height: 720px;
  object-fit: cover;
}

.about-bleed {
  width: 100%;
  overflow: hidden;
  margin: 0;
}

.about-bleed img {
  width: 100%;
  height: 60vh;
  max-height: 620px;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .about-bleed img {
    height: 50vh;
    min-height: 280px;
  }
}

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

.value-card {
  text-align: center;
  padding: 30px 20px;
}

.value-card__icon {
  font-size: 2rem;
  margin-bottom: 15px;
}

.value-card h4 {
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-color-light);
}

/* ---- Contact / Booking Form ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h3 {
  margin-bottom: 20px;
}

.contact-info__item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-info__item svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--button-background);
  margin-top: 3px;
}

.contact-form label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--text-color);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  background: var(--background);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-color);
  margin-bottom: 20px;
  transition: border-color var(--transition);
  border-radius: 0;
  -webkit-appearance: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--button-background);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ---- Page Header (inner pages) ---- */
.page-header {
  padding: 120px 0 60px;
  text-align: center;
  background: var(--background-warm);
}

.page-header .subheading {
  margin-bottom: 15px;
  display: block;
}

.page-header h1 {
  margin-bottom: 15px;
}

.page-header p {
  max-width: 550px;
  margin: 0 auto;
  color: var(--text-color-light);
}

/* Sage variant — green banner with subtle vertical tonal stripes
   and scalloped arch bottom edge (banner / bunting style) */
.page-header.page-header--sage {
  position: relative;
  overflow: hidden;
  background: #9CAB91;
  color: #ffffff;
  padding-bottom: 100px;
  --scallop-size: 30px;
  -webkit-mask:
    linear-gradient(#000 0 0) top / 100% calc(100% - var(--scallop-size)) no-repeat,
    radial-gradient(circle var(--scallop-size) at 50% 0,
      #000 calc(var(--scallop-size) - 1px),
      transparent var(--scallop-size)) bottom left / calc(var(--scallop-size) * 2) var(--scallop-size) repeat-x;
          mask:
    linear-gradient(#000 0 0) top / 100% calc(100% - var(--scallop-size)) no-repeat,
    radial-gradient(circle var(--scallop-size) at 50% 0,
      #000 calc(var(--scallop-size) - 1px),
      transparent var(--scallop-size)) bottom left / calc(var(--scallop-size) * 2) var(--scallop-size) repeat-x;
}
.page-header--sage::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    #9CAB91 0,
    #9CAB91 60px,
    #A8B69D 60px,
    #A8B69D 120px
  );
  z-index: 1;
}
.page-header--sage .container { position: relative; z-index: 2; }
.page-header--sage .subheading,
.page-header--sage h1 {
  color: #ffffff;
}
.page-header--sage p {
  color: rgba(255, 255, 255, 0.85);
}
.page-header--sage .divider {
  background: rgba(255, 255, 255, 0.7);
}

/* ---- Footer (sage banner-matching, condensed) ---- */
.footer {
  background: var(--footer-background);
  color: var(--footer-text-color);
  padding: 50px 0 22px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 30px;
  margin-bottom: 32px;
}

.footer__brand img {
  height: 38px;
  margin-bottom: 10px;
  filter: brightness(0) invert(1);
}

.footer__brand p {
  font-size: 0.85rem;
  color: var(--footer-text-color);
  opacity: 0.9;
}

.footer h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--footer-text-color);
}

.footer__links li {
  margin-bottom: 6px;
}

.footer__links a {
  font-size: 0.85rem;
  color: var(--footer-text-color);
  opacity: 0.9;
}

.footer__links a:hover {
  opacity: 1;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--footer-text-color);
  border-radius: 50%;
  color: var(--footer-text-color);
  opacity: 0.85;
  transition: all var(--transition);
}

.footer__social a:hover {
  opacity: 1;
  background: var(--footer-text-color);
  color: var(--footer-background);
}

.footer__social svg {
  width: 14px;
  height: 14px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  opacity: 0.85;
}

/* ---- Photo-backed section ---- */
.section--photo-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section--photo-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
  pointer-events: none;
}

.section--photo-bg > .container {
  position: relative;
  z-index: 1;
}

/* ---- Fade-up scroll animation ---- */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Motion: slow zoom + drawn divider (Option 2) ---- */
.motion-zoom .intro__image { overflow: hidden; }
.motion-zoom .intro__image img {
  transform: scale(1.08);
  opacity: 0;
  transition: transform 1.8s cubic-bezier(0.22, 0.61, 0.36, 1),
              opacity 1.2s ease-out;
}
.motion-zoom .intro__text .subheading,
.motion-zoom .intro__text h2,
.motion-zoom .intro__text p,
.motion-zoom .intro__text li,
.motion-zoom .intro__text .btn {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.motion-zoom .intro__text .divider {
  width: 0;
  transition: width 0.9s cubic-bezier(0.65, 0, 0.35, 1);
}
.motion-zoom.in-view .intro__image img { transform: scale(1); opacity: 1; }
.motion-zoom.in-view .intro__text .subheading { opacity: 1; transform: none; transition-delay: 0.2s; }
.motion-zoom.in-view .intro__text h2 { opacity: 1; transform: none; transition-delay: 0.35s; }
.motion-zoom.in-view .intro__text .divider { width: 60px; transition-delay: 0.55s; }
.motion-zoom.in-view .intro__text p:nth-of-type(1) { opacity: 1; transform: none; transition-delay: 0.85s; }
.motion-zoom.in-view .intro__text p:nth-of-type(2) { opacity: 1; transform: none; transition-delay: 0.95s; }
.motion-zoom.in-view .intro__text li:nth-child(1) { opacity: 1; transform: none; transition-delay: 1.05s; }
.motion-zoom.in-view .intro__text li:nth-child(2) { opacity: 1; transform: none; transition-delay: 1.15s; }
.motion-zoom.in-view .intro__text li:nth-child(3) { opacity: 1; transform: none; transition-delay: 1.25s; }
.motion-zoom.in-view .intro__text li:nth-child(4) { opacity: 1; transform: none; transition-delay: 1.35s; }
.motion-zoom.in-view .intro__text .btn { opacity: 1; transform: none; transition-delay: 1.5s; }

/* ---- Motion: counter-direction slide (Option 3) ---- */
.motion-slide .intro__image {
  transform: translateX(-70px);
  opacity: 0;
  transition: transform 1.1s cubic-bezier(0.22, 0.61, 0.36, 1),
              opacity 0.9s ease-out;
}
.motion-slide .intro__text {
  transform: translateX(70px);
  opacity: 0;
  transition: transform 1.1s cubic-bezier(0.22, 0.61, 0.36, 1),
              opacity 0.9s ease-out;
  transition-delay: 0.1s;
}
.motion-slide .intro__text li {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.motion-slide.in-view .intro__image,
.motion-slide.in-view .intro__text { transform: none; opacity: 1; }
.motion-slide.in-view .intro__text li:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.9s; }
.motion-slide.in-view .intro__text li:nth-child(2) { opacity: 1; transform: none; transition-delay: 1.0s; }
.motion-slide.in-view .intro__text li:nth-child(3) { opacity: 1; transform: none; transition-delay: 1.1s; }
.motion-slide.in-view .intro__text li:nth-child(4) { opacity: 1; transform: none; transition-delay: 1.2s; }

@media (prefers-reduced-motion: reduce) {
  .motion-zoom *,
  .motion-zoom *::before,
  .motion-zoom *::after,
  .motion-slide *,
  .motion-slide *::before,
  .motion-slide *::after {
    transition-duration: 0.01s !important;
  }
}

/* ---- Divider ---- */
.divider {
  width: 60px;
  height: 1.5px;
  background: #9CAB91;
  margin: 20px auto;
}

/* ---- Responsive ---- */
@media (max-width: 968px) {
  h1 { font-size: 3.6rem; }
  h2 { font-size: 2.8rem; }

  .intro,
  .about-story,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-grid .contact-form { order: 1; }
  .contact-grid .contact-info { order: 2; }

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

  .testimonial { padding: 20px 40px; }
  .testimonial__quote { font-size: 1.4rem; }

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

  .theme-feature {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .theme-feature__gallery {
    height: 480px;
  }

  .picnic-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .picnic-grid__item--tall {
    grid-row: span 2;
  }

  .picnic-grid__item--wide {
    grid-column: span 2;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

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

  .gallery-grid__item--wide {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 70px 0;
  }

  h1 { font-size: 2.8rem; }
  h2 { font-size: 2.2rem; }

  .header__inner { height: 55px; }
  .header__logo img { height: 22px; }
  .hero-scroll { margin-top: 55px; }
  .hero { min-height: 500px; }
  .page-header { padding: 110px 0 50px; }

  .nav__list {
    display: none;
    position: absolute;
    top: 55px;
    left: 0;
    width: 100%;
    background: var(--footer-background);
    flex-direction: column;
    padding: 20px 30px 30px;
    gap: 20px;
    border-bottom: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  }

  .nav__list.open {
    display: flex;
  }

  .nav__toggle {
    display: flex;
  }

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

  .testimonials-carousel__arrow--prev { left: -5px; }
  .testimonials-carousel__arrow--next { right: -5px; }
  .testimonial { padding: 10px 50px; }
  .testimonial__quote { font-size: 1.25rem; }

  .themes-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .theme-feature__gallery {
    height: 380px;
  }

  .moodboard-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .picnic-grid {
    grid-auto-rows: 180px;
  }

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

  .gallery-grid__item--wide {
    grid-column: span 1;
    aspect-ratio: 1;
  }

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

  .footer__bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .intro__image img,
  .about-story img {
    height: 350px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.9rem; }

  .hero { min-height: 450px; }
  .hero__logo { max-width: 576px; }

  .btn {
    padding: 12px 28px;
  }

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

/* ============================================
   Categories Gallery — hero panels with
   click-to-expand grids and hover-zoom tiles
   ============================================ */

.cat-stack {
  padding: 0;
}

/* Lift the page header above the first hero so the scallop arches
   sit on top of the Proposals image and the gaps between arches
   reveal it underneath. */
.page-header--sage {
  position: relative;
  z-index: 5;
}

.cat-hero {
  position: relative;
  width: 100%;
  height: 62vh;
  min-height: 480px;
  max-height: 720px;
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
}
.cat-stack > .cat-hero:first-of-type {
  margin-top: -30px;
}
.cat-hero + .cat-hero {
  margin-top: 4px;
}
.cat-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}
.cat-hero:hover .cat-hero__bg,
.cat-hero.is-open .cat-hero__bg {
  transform: scale(1.05);
}
.cat-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.15) 40%,
    rgba(0, 0, 0, 0.55) 100%
  );
  transition: background var(--transition);
  z-index: 1;
}
.cat-hero:hover .cat-hero__overlay {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.2) 40%,
    rgba(0, 0, 0, 0.6) 100%
  );
}
.cat-hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 40px 24px;
}
.cat-hero__number {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 24px;
}
.cat-hero__title {
  font-family: var(--font-display);
  font-size: 4.5rem;
  letter-spacing: -0.5px;
  line-height: 1;
  color: #fff;
  margin: 0 0 18px;
  transition: transform var(--transition);
}
.cat-hero:hover .cat-hero__title {
  transform: translateY(-4px);
}
.cat-hero__caption {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.02rem;
  line-height: 1.7;
  margin: 0 0 32px;
}
.cat-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}
.cat-hero__cta:hover {
  border-bottom-color: #fff;
  letter-spacing: 4px;
}
.cat-hero__cta-icon {
  display: inline-block;
  transition: transform var(--transition);
}
.cat-hero.is-open .cat-hero__cta-icon {
  transform: rotate(180deg);
}
.cat-hero.is-open .cat-hero__cta-label::before {
  content: "Close ";
}
.cat-hero.is-open .cat-hero__cta-label-default {
  display: none;
}

.cat-panel {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.5s ease 0.1s;
  background: var(--background-warm);
}
.cat-panel.is-open {
  max-height: 5000px;
  opacity: 1;
}
.cat-panel__inner {
  padding: 80px 0 90px;
}
.cat-panel__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 30px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-color-light);
  border: 1px dashed rgba(58, 53, 48, 0.2);
  background: rgba(255, 255, 255, 0.5);
}

.zoom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 40px 0;
}
.zoom-grid__item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.55s ease,
    opacity 0.4s ease,
    z-index 0s linear 0.55s;
  background: var(--card-background);
  will-change: transform;
}
.zoom-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.zoom-grid:hover .zoom-grid__item:not(:hover) {
  opacity: 0.85;
}
.zoom-grid__item:hover {
  transform: scale(1.04);
  z-index: 10;
  box-shadow: 0 14px 32px -14px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.5s ease,
    opacity 0.4s ease,
    z-index 0s linear 0s;
}
.zoom-grid__item:hover img {
  transform: scale(1.02);
}

.zoom-grid__item.col-first:hover { transform-origin: left center; }
.zoom-grid__item.col-last:hover  { transform-origin: right center; }
.zoom-grid__item.row-first:hover { transform-origin: center top; }
.zoom-grid__item.row-last:hover  { transform-origin: center bottom; }
.zoom-grid__item.col-first.row-first:hover { transform-origin: left top; }
.zoom-grid__item.col-last.row-first:hover  { transform-origin: right top; }
.zoom-grid__item.col-first.row-last:hover  { transform-origin: left bottom; }
.zoom-grid__item.col-last.row-last:hover   { transform-origin: right bottom; }

@media (max-width: 900px) {
  .cat-hero { height: 50vh; min-height: 360px; }
  .cat-hero__title { font-size: 3rem; }
  .zoom-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .zoom-grid__item:hover { transform: scale(1.03); }
}
@media (max-width: 560px) {
  .cat-hero { height: 44vh; min-height: 320px; }
  .cat-hero__title { font-size: 2.4rem; }
  .zoom-grid { grid-template-columns: repeat(2, 1fr); }
  .zoom-grid:hover .zoom-grid__item:not(:hover),
  .zoom-grid__item:hover { transform: none; opacity: 1; box-shadow: none; }
}

/* ============================================
   Carousel — looping coverflow inside category panels
   ============================================ */

.cat-panel__inner--carousel {
  padding: 70px 0 90px;
}

.cat-carousel {
  position: relative;
}
.cat-carousel__stage {
  position: relative;
}

.cat-carousel__viewport {
  overflow: hidden;
  margin: 0 -30px;
  padding: 80px 0;
}

.cat-carousel__track {
  display: flex;
  gap: 16px;
  align-items: center;
  transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  will-change: transform;
}
.cat-carousel.no-transition .cat-carousel__track,
.cat-carousel.no-transition .cat-carousel__slide {
  transition: none !important;
}

.cat-carousel__slide {
  flex: 0 0 calc((100% - 32px) / 3.2);
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--card-background);
  cursor: pointer;
  transform-origin: center center;
  transition:
    transform 0.5s cubic-bezier(0.33, 1, 0.68, 1),
    filter 0.5s cubic-bezier(0.33, 1, 0.68, 1),
    opacity 0.5s cubic-bezier(0.33, 1, 0.68, 1),
    box-shadow 0.5s ease;
  filter: blur(3px);
  opacity: 0.55;
  transform: scale(0.9);
}
.cat-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.cat-carousel__slide.is-active {
  filter: blur(0);
  opacity: 1;
  transform: scale(1.1);
  z-index: 5;
  box-shadow: 0 22px 45px -18px rgba(0, 0, 0, 0.3);
  cursor: default;
}

.cat-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(156, 171, 145, 0.5);
  background: rgba(255, 255, 255, 0.92);
  color: #9CAB91;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 10;
  box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.15);
}
.cat-carousel__btn--prev { left: 12px; }
.cat-carousel__btn--next { right: 12px; }
.cat-carousel__btn:hover {
  background: #9CAB91;
  color: #fff;
  border-color: #9CAB91;
}
.cat-carousel__btn svg {
  width: 18px;
  height: 18px;
  display: block;
}

.cat-carousel__progress {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(58, 53, 48, 0.55);
  margin-top: 30px;
}

@media (max-width: 900px) {
  .cat-carousel__slide {
    flex-basis: calc((100% - 16px) / 2.2);
  }
  .cat-carousel__slide.is-active { transform: scale(1.06); }
  .cat-panel__inner--carousel { padding: 50px 0 70px; }
  .cat-carousel__btn { width: 44px; height: 44px; }
  .cat-carousel__btn--prev { left: 6px; }
  .cat-carousel__btn--next { right: 6px; }
}
@media (max-width: 560px) {
  .cat-carousel__slide {
    flex-basis: 78%;
  }
  .cat-carousel__slide.is-active { transform: scale(1.04); }
}
