/* ============================================
   LUCKY SHOT MINI GOLF — Main Stylesheet
   Brand green: #7EDCB4 | Deep green: #2A9D72
   Dark: #1C1C1C | Font: Nunito (Google Fonts)
   ============================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  --green-brand:   #7EDCB4;
  --green-dark:    #2A9D72;
  --green-deep:    #1E7A54;
  --green-light:   #F0FBF6;
  --dark:          #1C1C1C;
  --dark-mid:      #2E2E2E;
  --mid:           #555555;
  --muted:         #888888;
  --light:         #F8F9FA;
  --white:         #FFFFFF;
  --border:        #E5E7EB;
  --shadow:        0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:     0 8px 40px rgba(0,0,0,0.12);
  --radius:        12px;
  --radius-lg:     20px;
  --font-head:     'Nunito', sans-serif;
  --font-body:     'Inter', sans-serif;
  --transition:    all 0.25s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-dark); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--green-deep); }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; font-weight: 700; }
p { color: var(--mid); line-height: 1.75; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- Layout --- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
.container--narrow { max-width: 820px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 3rem 0; }
section.section--roomy { padding: 5rem 0; }
section.section--light { background: var(--green-light); }
section.section--dark { background: var(--dark); }
section.section--brand { background: var(--green-brand); }

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
  white-space: nowrap;
}
.btn--primary {
  background: var(--green-dark);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--green-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42,157,114,0.35);
}
.btn--outline {
  background: transparent;
  color: var(--green-dark);
  border: 2px solid var(--green-dark);
}
.btn--outline:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--white {
  background: var(--white);
  color: var(--green-dark);
}
.btn--white:hover {
  background: var(--green-light);
  color: var(--green-deep);
  transform: translateY(-2px);
}
.btn--dark {
  background: var(--dark);
  color: var(--white);
}
.btn--dark:hover {
  background: var(--dark-mid);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--lg { padding: 1rem 2.5rem; font-size: 1.1rem; }
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 2rem;
}
.nav__logo { flex-shrink: 0; }
.nav__logo img { height: 42px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex: 1;
  justify-content: center;
  min-width: 0;
}
.nav__links a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--dark);
  padding: 0.5rem 0.75rem;
  white-space: nowrap;
  border-radius: 8px;
  transition: var(--transition);
}
.nav__links a:hover, .nav__links a.active {
  color: var(--green-dark);
  background: var(--green-light);
}
.nav__cta { flex-shrink: 0; }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
  gap: 0.25rem;
}
.nav__mobile a {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--dark);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  display: block;
}
.nav__mobile a:hover { background: var(--green-light); color: var(--green-dark); }
.nav__mobile .btn { margin-top: 0.5rem; width: 100%; text-align: center; }

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
  background: var(--green-brand);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  pointer-events: none;
}
.hero__content { max-width: 700px; }
.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: rgba(255,255,255,0.5);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}
.hero h1 { color: var(--dark); margin-bottom: 1.25rem; }
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--dark-mid);
  margin-bottom: 2rem;
  max-width: 580px;
}
.hero__sub p { color: var(--dark-mid); }

/* Hero variant with full-bleed photo background */
.hero.hero--photo {
  background-color: #1a1a1a;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 540px;
  display: flex;
  align-items: center;
}
.hero.hero--photo::before {
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.20) 55%, rgba(0,0,0,0.05) 100%);
  border-radius: 0;
}
.hero.hero--photo.hero--lighter::before { background: linear-gradient(to right, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.10) 55%, rgba(0,0,0,0.02) 100%); }
.hero.hero--photo .hero__content {
  text-align: left;
  max-width: 420px;
}
.hero.hero--photo h1 {
  color: #ffffff !important;
}
.hero.hero--photo .hero__sub {
  color: #ffffff !important;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}
.hero.hero--photo .hero__eyebrow {
  color: rgba(255,255,255,0.75);
  background: rgba(0,0,0,0.4);
  border: none;
}
.hero.hero--photo .btn-group { justify-content: flex-start; }
.hero.hero--photo .hero__trust { justify-content: flex-start; }
.hero.hero--photo .trust-badge {
  background: rgba(0,0,0,0.4);
  color: #ffffff;
  border-color: rgba(255,255,255,0.25);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  background: rgba(255,255,255,0.7);
  color: var(--dark);
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.8);
}

/* ============================================
   SECTION: CHOOSE YOUR EXPERIENCE (Homepage tiles)
   ============================================ */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
  align-items: stretch;
}
/* Stretch the <a> wrapper so cards fill full grid row height */
.experience-grid > a {
  display: flex;
  height: 100%;
}
.experience-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: var(--shadow);
}
.experience-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-brand);
}
/* Experience card with photo */
.experience-card--photo {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.experience-card__img { overflow: hidden; border-radius: var(--radius-lg) var(--radius-lg) 0 0; flex-shrink: 0; }
.experience-card__img img { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform 0.5s ease; }
.experience-card--photo:hover .experience-card__img img { transform: scale(1.05); }
.experience-card--photo .experience-card__title,
.experience-card--photo p,
.experience-card--photo .experience-card__meta { padding: 0 1.5rem; }
.experience-card--photo .experience-card__title { padding-top: 1.25rem; }
/* Push meta to bottom by letting the description grow */
.experience-card--photo p { flex: 1; }
.experience-card--photo .experience-card__meta { padding-bottom: 1.25rem; margin-top: auto; }

.experience-card__icon { font-size: 2.5rem; line-height: 1; }
.experience-card__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--dark);
}
.experience-card p { font-size: 0.9rem; flex: 1; }
.experience-card__meta {
  font-size: 0.8rem;
  color: var(--green-dark);
  font-weight: 600;
  font-family: var(--font-head);
  padding: 0.35rem 0;
  border-top: 1px solid var(--border);
}

/* ============================================
   SECTION: FEATURES / INCLUSIONS
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--border);
}
.feature-card__icon { font-size: 2rem; margin-bottom: 0.75rem; }
.feature-card__photo { margin: -1.5rem -1.5rem 1rem; border-radius: var(--radius) var(--radius) 0 0; overflow: hidden; }
.feature-card__photo img { width: 100%; height: 200px; object-fit: cover; display: block; }

/* --- Occasion Photo Grid --- */
.occasion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
}
.occasion-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.occasion-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.occasion-card:hover img { transform: scale(1.04); }
.occasion-card__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.72));
  color: var(--white);
  padding: 1.75rem 0.9rem 0.75rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
}
@media (max-width: 900px) { .occasion-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .occasion-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; } }
.feature-card__title {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.feature-card p { font-size: 0.9rem; margin: 0; }

/* --- Package List (photo-left horizontal rows) --- */
/* Icon-based inclusion card grid (Office Fun Zone "Everything Delivered") */
.includes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.includes-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  border: 1px solid var(--border);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.includes-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.includes-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #E8F2EB;
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.includes-card__icon svg { width: 28px; height: 28px; }
.includes-card__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  line-height: 1.25;
}
.includes-card__desc {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.5;
  margin: 0;
}

.package-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}
.package-item {
  display: grid;
  grid-template-columns: 300px 1fr;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
}
.package-item__photo { overflow: hidden; }
.package-item__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.package-item:hover .package-item__photo img { transform: scale(1.03); }
a.package-item { text-decoration: none; color: inherit; transition: var(--transition); }
a.package-item:hover { border-color: var(--green-dark); box-shadow: var(--shadow); transform: translateY(-2px); }
.package-item__text {
  padding: 1.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.package-item__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.package-item__tag {
  font-size: 0.85rem;
  color: var(--green-dark);
  font-weight: 600;
  font-family: var(--font-head);
  margin-top: 0.75rem;
}
@media (max-width: 700px) {
  .package-item { grid-template-columns: 1fr; }
  .package-item__photo { height: 200px; }
}

/* ============================================
   SECTION: PRICING CARDS
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow);
}
.pricing-card--featured {
  border-color: var(--green-brand);
  position: relative;
}
.pricing-card--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-dark);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
}
.pricing-card__name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--dark);
}
.pricing-card__price {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2.4rem;
  color: var(--green-dark);
  line-height: 1;
}
.pricing-card__price span {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 500;
}
.pricing-card__note { font-size: 0.85rem; color: var(--muted); }
.pricing-card__includes {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pricing-card__includes li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--mid);
}
.pricing-card__includes li::before {
  content: '✔';
  color: var(--green-dark);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing-card .btn { width: 100%; text-align: center; }

/* ============================================
   SECTION: HOW IT WORKS
   ============================================ */
.steps-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 600px) {
  .steps-layout { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .steps-layout { grid-template-columns: 1.2fr repeat(4, 1fr); gap: 1.25rem; }
  .steps-layout--five { grid-template-columns: 1.2fr repeat(5, 1fr); }
}
.steps-layout__intro {
  text-align: left;
  padding: 0.75rem;
}
.steps-layout .step { opacity: 0; transform: translateY(14px); transition: opacity 0.5s ease, transform 0.5s ease; }
.steps-layout.is-visible .step { opacity: 1; transform: none; }
.steps-layout.is-visible .step:nth-child(2) { transition-delay: 0.08s; }
.steps-layout.is-visible .step:nth-child(3) { transition-delay: 0.16s; }
.steps-layout.is-visible .step:nth-child(4) { transition-delay: 0.24s; }
.steps-layout.is-visible .step:nth-child(5) { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .steps-layout .step { opacity: 1; transform: none; transition: none; }
}
.steps-layout .step { padding: 0.75rem; }
.steps-layout .step__bag { height: 150px; margin: 0 auto 0.5rem; }
.steps-layout .step__bag svg { width: 130px; height: 130px; }
.steps-layout .step__title { margin-bottom: 0.35rem; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
  position: relative;
}
.step {
  text-align: center;
  padding: 1.5rem;
}
/* Badge step icons */
.step__bag {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 180px;
  margin: 0 auto 1rem;
}
.step__bag svg {
  display: block;
  flex-shrink: 0;
  width: 160px;
  height: 160px;
}
.step__num {
  width: 52px;
  height: 52px;
  background: var(--green-brand);
  color: var(--dark);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.step__title {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.step p { font-size: 0.9rem; }

/* ============================================
   SECTION: TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial__photo { overflow: hidden; border-radius: var(--radius) var(--radius) 0 0; margin: -1.75rem -1.75rem 1.25rem; }
.testimonial__photo img { width: 100%; height: 180px; object-fit: cover; display: block; }
.testimonial__stars { color: #F59E0B; font-size: 1.1rem; letter-spacing: 2px; }
.testimonial__quote {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--mid);
  line-height: 1.8;
  flex: 1;
}
.testimonial__author {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--dark);
}

/* ============================================
   SECTION: CASE STUDY
   ============================================ */
.case-study {
  background: #243E2E;
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2.5rem;
}
.case-study__quote {
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.case-study__author {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--green-brand);
  font-size: 0.9rem;
}
.case-study__image {
  background: var(--dark-mid);
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.85rem;
  font-style: italic;
  text-align: center;
  padding: 1rem;
}
.case-study__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ============================================
   SECTION: FAQ ACCORDION
   ============================================ */
.faq-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item__question {
  width: 100%;
  text-align: left;
  background: var(--white);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  border: none;
  transition: var(--transition);
  gap: 1rem;
}
.faq-item__question:hover { background: var(--green-light); }
.faq-item__icon {
  font-size: 1.4rem;
  color: var(--green-dark);
  flex-shrink: 0;
  transition: var(--transition);
  line-height: 1;
}
.faq-item.open .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.75;
  background: var(--white);
}
.faq-item.open .faq-item__answer { display: block; }
.faq-category {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--dark);
  margin: 2rem 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--green-brand);
}

/* ============================================
   SECTION: CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--green-brand);
  padding: 4rem 0;
  text-align: center;
}
.cta-banner h2 { margin-bottom: 0.75rem; }
.cta-banner p { max-width: 500px; margin: 0 auto 2rem; color: var(--dark-mid); }
.cta-banner .btn-group { justify-content: center; }

/* ============================================
   SECTION: CONTACT FORM
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  margin-top: 2.5rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-info__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info__label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.15rem;
}
.contact-info__value { font-weight: 600; color: var(--dark); }
.form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-dark);
  box-shadow: 0 0 0 3px rgba(42,157,114,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; cursor: pointer; }
.form__note {
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
  margin-top: -0.5rem;
}

/* ============================================
   SECTION: SERVICE AREA
   ============================================ */
.service-area {
  background: var(--green-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 2rem;
}
.service-area h4 { margin-bottom: 0.75rem; }
.suburbs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.suburb-tag {
  background: var(--white);
  color: var(--dark);
  font-size: 0.8rem;
  font-family: var(--font-head);
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  border: 1px solid var(--border);
}

/* ============================================
   SECTION: SEASONAL CALENDAR
   ============================================ */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
.calendar-month {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: var(--transition);
}
.calendar-month:hover {
  border-color: var(--green-brand);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.calendar-month--featured {
  background: var(--green-brand);
  border-color: var(--green-brand);
}
.calendar-month--current {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}
.calendar-month--current .calendar-month__label,
.calendar-month--current .calendar-month__theme { color: var(--white); }
.calendar-month--current::after {
  content: '📍 This month';
  display: block;
  font-size: 0.7rem;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--green-brand);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.4rem;
}
.calendar-month__label {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-dark);
  margin-bottom: 0.25rem;
}
.calendar-month--featured .calendar-month__label { color: var(--green-deep); }
.calendar-month__theme {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
}
.calendar-month__icon { font-size: 1.5rem; margin-bottom: 0.5rem; }

/* ============================================
   MAGAZINE / EDITORIAL CALENDAR (Homepage)
   ============================================ */
.mag-calendar {
  border: 2px solid var(--dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 1.5rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.mag-calendar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.mag-month {
  padding: 1.1rem 0.9rem 1rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  background: var(--white);
  overflow: hidden;
  transition: background 0.2s ease;
}
.mag-month { transition: filter 0.2s ease, transform 0.15s ease; }
.mag-month:hover { filter: brightness(0.96) saturate(1.08); transform: translateY(-1px); }

/* Uniform tile tone (cream sand) — two highlight states do the visual work */
.mag-month { background: #F0E4C8; }

/* Celebrate section (dark display bg for seasonal calendar) */
section.section--celebrate {
  background: #243E2E;
}
.section--celebrate .section__header { color: #F4EAD5; }
.section--celebrate > .container > p { color: rgba(244,234,213,0.78); }
.section--celebrate .mag-calendar { border-color: rgba(244,234,213,0.12); }
.section--celebrate .mag-month { border-color: rgba(0,0,0,0.08); }

/* World Cup 2026 callout */
.mag-worldcup {
  margin: 1.5rem 0 0.25rem;
  padding: 2.5rem 2rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #F4EAD5;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}
.mag-worldcup::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 34, 27, 0.28);
  z-index: 1;
}
.mag-worldcup__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}
.mag-worldcup__eyebrow {
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-brand);
  margin-bottom: 0.4rem;
  font-weight: 700;
}
.mag-worldcup__title {
  font-size: 2rem;
  margin: 0 0 0.4rem;
  color: #F4EAD5;
  font-family: var(--font-head);
  font-weight: 800;
}
.mag-worldcup__dates {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--green-brand);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.mag-worldcup p {
  color: rgba(244,234,213,0.92);
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 560px;
}

/* "Next Up" spotlight (applied manually to May until JS) */
.mag-month--next { background: #2A9D72; position: relative; }
.mag-month--next .mag-month__num { color: rgba(244,234,213,0.2); }
.mag-month--next .mag-month__name,
.mag-month--next .mag-month__theme { color: #F4EAD5; }
.mag-month--next::before {
  content: 'Next Up';
  position: absolute;
  top: 0.45rem;
  left: 0.7rem;
  font-size: 0.55rem;
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #F4EAD5;
  background: rgba(255,255,255,0.15);
  padding: 0.12rem 0.4rem;
  border-radius: 3px;
}
.mag-month__num {
  position: absolute;
  top: 0.3rem;
  right: 0.7rem;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--border);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.mag-month__name {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-dark);
  margin-bottom: 0.35rem;
  position: relative;
}
.mag-month__icon {
  font-size: 1.5rem;
  margin: 0.25rem 0;
  display: flex;
  align-items: center;
  line-height: 1;
  color: #2A3D30;
}
.mag-month__icon svg { display: block; }
.mag-month--next .mag-month__icon,
.mag-month--featured .mag-month__icon { color: #F4EAD5; }
.mag-month__theme {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--dark);
  line-height: 1.3;
}
/* Featured month (July) */
.mag-month--featured { background: var(--green-brand); }
.mag-month--featured:hover { background: #6DD4A8; }
.mag-month--featured .mag-month__num { color: rgba(42,157,114,0.22); }
.mag-month--featured .mag-month__name { color: var(--green-deep); }
.mag-month--featured .mag-month__theme { color: var(--green-deep); }
/* Current month (added by JS) */
.mag-month--current { background: var(--dark) !important; }
.mag-month--current .mag-month__name { color: var(--green-brand); }
.mag-month--current .mag-month__theme { color: rgba(255,255,255,0.9); }
.mag-month--current .mag-month__num { color: rgba(255,255,255,0.08); }
.mag-month--current::after {
  content: '📍 This month';
  display: block;
  font-size: 0.6rem;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--green-brand);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.4rem;
}
@media (max-width: 900px) {
  .mag-calendar__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .mag-calendar__grid { grid-template-columns: repeat(2, 1fr); }
  .mag-month { padding: 0.85rem 0.7rem 0.8rem; }
  .mag-month__num { font-size: 1.6rem; }
  .mag-month__theme { font-size: 0.75rem; }
}

/* ============================================
   SECTION: WHY US (checklist)
   ============================================ */
.why-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.why-item__check {
  width: 28px;
  height: 28px;
  background: var(--green-brand);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.why-item__title {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.2rem;
}
.why-item p { font-size: 0.9rem; margin: 0; }

/* ============================================
   SECTION: PHOTO GALLERY
   ============================================ */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 2rem 0 1.5rem;
}
.filter-btn {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
  color: var(--mid);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--green-dark);
  color: var(--green-dark);
  background: var(--green-light);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--light);
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--muted);
  font-style: italic;
  text-align: center;
  padding: 1rem;
  background: var(--light);
}

/* ============================================
   SECTION: PAGE INTRO (non-hero pages)
   ============================================ */
.page-intro {
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid var(--border);
}
.breadcrumb {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--green-dark); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 4rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 280px;
}
.footer__logo { height: 84px; width: auto; margin-bottom: 1.25rem; }
.footer__heading {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-brand);
  margin-bottom: 1rem;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer__links a:hover { color: var(--white); }
.footer__contact a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.5rem;
}
.footer__contact a:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer__tagline {
  color: var(--green-brand);
  font-family: var(--font-head);
  font-weight: 700;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-green { color: var(--green-dark); }
.text-muted { color: var(--muted); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.section__header { margin-bottom: 0.5rem; }
.section__header + p { color: var(--mid); max-width: 600px; }
.section__header + p.text-center { margin: 0 auto; }
.divider {
  height: 3px;
  width: 50px;
  background: var(--green-brand);
  border-radius: 2px;
  margin: 0.75rem 0 1.25rem;
}
.divider--center { margin: 0.75rem auto 1.25rem; }
.highlight { color: var(--green-dark); }
.note-box {
  background: var(--green-light);
  border-left: 4px solid var(--green-brand);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9rem;
  color: var(--mid);
  margin-top: 1rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__mobile.open { display: flex; }
  .case-study { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  section { padding: 2.75rem 0; }
  .hero { padding: 2.75rem 0 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .case-study { padding: 2rem; }
}

/* ============================================
   RESPONSIVE — inline grid overrides
   Many sections set their grid columns via
   inline style attributes. Inline styles
   override CSS rules unless we use !important.
   The selectors target [style*=...] anywhere in
   the document so sections without a .container
   wrapper (e.g. hero-adjacent grids) are caught.
   ============================================ */
@media (max-width: 768px) {
  /* Two-column inline grids → stack on mobile */
  [style*="grid-template-columns:1fr 1fr"]:not([style*="1fr 1fr 1fr"]),
  [style*="grid-template-columns: 1fr 1fr"]:not([style*="1fr 1fr 1fr"]),
  [style*="grid-template-columns:1fr 1.4fr"],
  [style*="grid-template-columns: 1fr 1.4fr"],
  [style*="grid-template-columns:1.4fr 1fr"],
  [style*="grid-template-columns: 1.4fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  /* Three-column inline grids → 2-up on mobile */
  [style*="grid-template-columns:repeat(3,1fr)"],
  [style*="grid-template-columns:repeat(3, 1fr)"],
  [style*="grid-template-columns: repeat(3,1fr)"],
  [style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: 1fr 1fr !important;
  }
  /* Four-column inline grids (Tennis Australia case study) → stack on mobile */
  [style*="grid-template-columns:1fr 1fr 1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  /* Tennis Australia case study photos: cap height when stacked so they don't dominate the screen */
  [style*="grid-template-columns:1fr 1fr 1fr 1fr"] img,
  [style*="grid-template-columns: 1fr 1fr 1fr 1fr"] img {
    height: 240px !important;
  }
  /* Case study sections — force stack regardless of inline style */
  .case-study {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }
  /* Case study image keeps a sensible height when stacked so it doesn't squish */
  .case-study img,
  .case-study__image,
  .case-study__image img {
    height: auto;
    max-height: 320px;
    width: 100%;
    object-fit: cover;
  }
  /* Special Events grid (Seasonal Themes) — 2-up on mobile */
  .s-event-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  /* === Hero adjustments === */
  /* Universal min-height reduction on mobile (Contact dead-space, etc.) */
  .hero.hero--photo {
    min-height: 420px !important;
  }
  /* Corporate Events hero — crop bottom of photo */
  .hero.hero--photo[style*="20251019_103241"] {
    background-position: center 30% !important;
    min-height: 460px !important;
  }
  /* Kids Parties hero — pan to show more of the golf course */
  .hero.hero--photo[style*="KP3"] {
    background-position: center 70% !important;
  }
  /* Contact page hero — trim dead space at bottom */
  .hero.hero--photo[style*="09%20-%20About"] {
    min-height: 360px !important;
    background-position: center 35% !important;
  }
  /* Homepage MCG section — pan to show sign and ground more */
  section[style*="20250515_183235"] {
    background-position: 25% 50% !important;
    min-height: 480px !important;
  }

  /* === Pricing cards — slim, tighter padding, single column === */
  .pricing-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  .pricing-card {
    padding: 1.25rem 1.1rem !important;
  }

  /* === About page "Professionally run" credential cards — stack === */
  .features-grid {
    grid-template-columns: 1fr !important;
  }

  /* === Wedding "Every Celebration" photo frames — stack vertically, larger === */
  .w-frames-layout {
    flex-direction: column !important;
    align-items: center !important;
    gap: 1.5rem !important;
  }
  .w-photo-frame {
    flex: none !important;
    width: 100% !important;
    max-width: 320px !important;
    transform: none !important;
  }
  .w-photo-frame:nth-child(1),
  .w-photo-frame:nth-child(2),
  .w-photo-frame:nth-child(3) {
    transform: none !important;
  }

  /* === Wedding "first photo below hero" — show full image === */
  .content-with-image__img img {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    object-fit: contain !important;
  }

  /* Prevent any pricing/section content from spilling outside viewport */
  .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    overflow-x: hidden;
  }
  .pricing-card,
  .case-study,
  .feature-card {
    max-width: 100% !important;
    box-sizing: border-box;
  }
}
@media (max-width: 480px) {
  /* On the smallest phones: full single-column for everything */
  [style*="grid-template-columns:repeat(3,1fr)"],
  [style*="grid-template-columns:repeat(3, 1fr)"],
  [style*="grid-template-columns: repeat(3,1fr)"],
  [style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: 1fr !important;
  }
  .s-event-grid {
    grid-template-columns: 1fr !important;
  }
  .hero.hero--photo {
    min-height: 380px !important;
  }
}

/* ============================================
   PHOTO STRIP (full-width horizontal image row)
   ============================================ */
.photo-strip {
  display: flex;
  height: 280px;
  overflow: hidden;
}
.photo-strip__item {
  flex: 1;
  overflow: hidden;
  position: relative;
  min-width: 0;
}
.photo-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.photo-strip__item:hover img { transform: scale(1.06); }
.photo-strip:empty { display: none; }
@media (max-width: 900px) { .photo-strip { height: 220px; } }
@media (max-width: 600px) {
  .photo-strip { height: 160px; }
  /* Hide last 2 photos on mobile so it doesn't get too cramped */
  .photo-strip__item:nth-child(n+4) { display: none; }
}

/* ============================================
   TRUSTED BY LOGO STRIP
   ============================================ */
.trusted-by__label {
  text-align: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mid);
  margin-bottom: 1.75rem;
}
.trusted-by__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem 3.5rem;
}
.trusted-by__logo {
  height: 90px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  transition: var(--transition);
  filter: grayscale(100%);
  opacity: 0.75;
}
.trusted-by__logo:hover {
  transform: scale(1.05);
  filter: grayscale(100%);
  opacity: 1;
}
@media (max-width: 600px) {
  .trusted-by__logos { gap: 1.5rem 2rem; }
  .trusted-by__logo { height: 28px; }
}

/* ============================================
   CASE STUDY (inner page version — dark card)
   ============================================ */
.case-study {
  background: #243E2E;
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  margin-top: 0.5rem;
}
.case-study__label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-brand);
  margin-bottom: 1rem;
}
.case-study h2 { color: var(--white); margin-bottom: 0.5rem; }
.case-study p { color: rgba(255,255,255,0.82); }
.case-study__label { color: var(--green-brand); }
.case-study__company {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--green-brand);
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
}
.case-study__quote {
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.55;
  border-left: 3px solid var(--green-brand);
  padding-left: 1.5rem;
  margin: 1.5rem 0 0;
}
.case-study__quote cite {
  display: block;
  font-style: normal;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--green-brand);
  margin-top: 0.75rem;
}

/* ============================================
   THEME CALENDAR (Seasonal Themes page)
   ============================================ */
.theme-calendar {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.theme-month {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: var(--transition);
  position: relative;
}
.theme-month:hover {
  border-color: var(--green-brand);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.theme-month--featured {
  background: var(--green-brand);
  border-color: var(--green-brand);
}
.theme-month__badge {
  position: absolute;
  top: -12px;
  left: 1.5rem;
  background: var(--green-dark);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.7rem;
  padding: 0.2rem 0.75rem;
  border-radius: 50px;
  white-space: nowrap;
}
.theme-month__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.theme-month__icon { font-size: 1.5rem; line-height: 1; }
.theme-month__name {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-dark);
}
.theme-month--featured .theme-month__name { color: var(--green-deep); }
.theme-month__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.theme-month p { font-size: 0.875rem; margin: 0; }

/* ============================================
   GALLERY FILTER BUTTONS
   ============================================ */
.gallery-filter {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
  color: var(--mid);
}
.gallery-filter:hover,
.gallery-filter.active {
  border-color: var(--green-dark);
  color: var(--green-dark);
  background: var(--green-light);
}

/* ============================================
   CONTACT PAGE LAYOUT
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 2rem;
}
.contact-details-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-detail-block {
  background: var(--green-light);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.contact-detail-block h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.contact-detail-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--dark);
  font-weight: 600;
  font-family: var(--font-head);
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
}
.contact-detail-link:hover { color: var(--green-dark); }
.contact-detail-icon { font-size: 1.2rem; }
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* ============================================
   HIGHLIGHT BOX
   ============================================ */
.highlight-box {
  background: var(--green-light);
  border-left: 4px solid var(--green-brand);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin-top: 1rem;
}
.highlight-box p { color: var(--dark); margin: 0; }

/* ============================================
   FAQ SECTION HEADINGS
   ============================================ */
.faq-section-heading {
  font-size: 1.2rem;
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--dark);
  margin: 2.5rem 0 -0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--green-brand);
}

/* ============================================
   PRICING CARD TICK (explicit span version)
   ============================================ */
.pricing-card__tick {
  color: var(--green-dark);
  font-weight: 900;
  flex-shrink: 0;
  margin-right: 0.25rem;
}
/* Suppress ::before pseudo when explicit tick span is present */
.pricing-card__includes li:has(.pricing-card__tick)::before {
  display: none;
}

/* ============================================
   RESPONSIVE ADDITIONS
   ============================================ */
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
  .theme-calendar { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .theme-calendar { grid-template-columns: 1fr; }
  .case-study { padding: 1.5rem; }
}

/* ============================================
   SPLIT HERO (text left · photo right)
   ============================================ */
.hero__split {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero__split-img {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0,0,0,0.22);
  position: relative;
  z-index: 1;
}
.hero__split-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
@media (max-width: 900px) {
  .hero__split { grid-template-columns: 1fr; }
  .hero__split-img { display: none; }
}

/* ============================================
   FLANKED SECTION (photos · content · photos)
   ============================================ */
.flanked {
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  align-items: stretch;
  overflow: hidden;
}
.flanked__photos {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.flanked__photos img {
  flex: 1;
  width: 100%;
  object-fit: cover;
  display: block;
  min-height: 0;
}
.flanked__photos img + img {
  border-top: 4px solid var(--green-brand);
}
.flanked__content {
  padding: 4rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (max-width: 1100px) {
  .flanked { grid-template-columns: 1fr; }
  .flanked__photos--right { display: none; }
  .flanked__photos--left {
    flex-direction: row;
    height: 200px;
  }
  .flanked__photos--left img { flex: 1; height: 200px; }
  .flanked__content { padding: 3rem 1rem; }
}

/* ============================================
   CONTENT + SIDEBAR IMAGE (2-col text/image)
   ============================================ */
.content-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
}
.content-with-image--img-left .content-with-image__img { order: -1; }
.content-with-image__text {
  padding: 2.75rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.content-with-image__img { overflow: hidden; }
.content-with-image__img img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  display: block;
}
@media (max-width: 900px) {
  .content-with-image { grid-template-columns: 1fr; }
  .content-with-image__img { min-height: 260px; order: -1; }
  .content-with-image__text { padding: 2.5rem 1.5rem; }
}

/* ============================================
   FULL-BLEED BACKGROUND IMAGE SECTION
   ============================================ */
.img-flood {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 5rem 0;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.img-flood::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
  z-index: 0;
}
.img-flood--lighter::before { background: rgba(0, 0, 0, 0.18); }
.img-flood .container {
  position: relative;
  z-index: 1;
}
.img-flood h2,
.img-flood h3 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.img-flood p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto 1.75rem;
}
.btn--on-dark {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
}
.btn--on-dark:hover {
  background: var(--green-brand);
  border-color: var(--green-brand);
  color: var(--dark);
}
.btn--ghost-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}
.btn--ghost-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

/* ============================================
   UNBOXED IMAGE ROW (full-width, no borders)
   ============================================ */
.img-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  overflow: hidden;
  background: var(--dark);
}
.img-row--2 { grid-template-columns: repeat(2, 1fr); }
.img-row--3 { grid-template-columns: repeat(3, 1fr); }
.img-row--4 { grid-template-columns: repeat(4, 1fr); }
.img-row--5 { grid-template-columns: repeat(5, 1fr); }
.img-row img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.img-row img:hover { transform: scale(1.05); }
.img-row--tall img { height: 480px; }
@media (max-width: 900px) {
  .img-row--4,
  .img-row--5 { grid-template-columns: repeat(2, 1fr); }
  .img-row img { height: 240px; }
}
@media (max-width: 600px) {
  .img-row--3,
  .img-row--4,
  .img-row--5 { grid-template-columns: repeat(2, 1fr); }
  .img-row--2 { grid-template-columns: 1fr; }
  .img-row img { height: 180px; }
}
