/* ================================================================
   Happy Hooligans K9 Training — Main Stylesheet
   Brand: Orange #D4844A · Grey #6E8091 · Cream #FAF7F3
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,600&family=Lato:wght@300;400;700;900&family=Satisfy&display=swap');

/* ─── CSS VARIABLES ─── */
:root {
  --orange:       #D4844A;
  --orange-dark:  #B3692E;
  --orange-light: #EFC9A3;
  --orange-pale:  #FBF1E8;
  --grey:         #6E8091;
  --grey-dark:    #3D5060;
  --grey-mid:     #8DA0B0;
  --grey-light:   #C4D2DC;
  --grey-pale:    #EEF2F5;
  --cream:        #FAF7F3;
  --dark:         #2C3640;
  --white:        #FFFFFF;
  --nav-h:        80px;
  --radius:       20px;
  --radius-sm:    10px;
  --shadow:       0 4px 24px rgba(44,54,64,0.10);
  --shadow-lg:    0 10px 44px rgba(44,54,64,0.18);
  --transition:   0.3s ease;
}

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
input, textarea { font-family: inherit; }

/* ─── BASE ─── */
body {
  font-family: 'Lato', sans-serif;
  line-height: 1.75;
  color: var(--dark);
  background: var(--cream);
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.15; }
h1 { font-size: clamp(2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }

/* Satisfy script — always uppercase in headers */
.satisfy {
  font-family: 'Satisfy', cursive;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─── LAYOUT ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 52px);
}

.section-pad     { padding: 84px 0; }
.section-pad-lg  { padding: 108px 0; }
.section-pad-sm  { padding: 52px 0; }

/* ─── TEXTURE OVERLAYS — large overlapping circles (brand style) ─── */
.tex { position: relative; overflow: hidden; }

/* Large grey circle — back layer, bottom-right */
.tex::after {
  content: '';
  position: absolute;
  width: 580px; height: 580px;
  border-radius: 50%;
  background-image: url('../images/gray_3.png');
  background-size: cover;
  background-position: center;
  opacity: 0.20;
  pointer-events: none;
  z-index: 0;
  right: -140px; bottom: -160px;
}

/* Smaller orange circle — front layer, overlapping */
.tex::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background-image: url('../images/orange_3.png');
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
  right: 110px; bottom: -60px;
}

/* FAQ — swap colours and anchor to top-right so it reads differently */
.faq-section.tex::after {
  background-image: url('../images/orange_3.png');
  opacity: 0.18;
  right: -120px; top: -140px; bottom: auto;
}
.faq-section.tex::before {
  background-image: url('../images/gray_3.png');
  opacity: 0.15;
  right: 130px; top: -40px; bottom: auto;
}

.tex > * { position: relative; z-index: 1; }

/* ─── SECTION LABELS & TITLES ─── */
.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header h2 { margin-bottom: 12px; }
.section-header p {
  color: #5a6a78;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  max-width: 620px;
}
.section-header.center p { margin: 0 auto; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(212,132,74,0.38);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,132,74,0.48);
}
.btn-outline {
  border: 2px solid var(--orange);
  color: var(--orange);
}
.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-ghost {
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

/* ─── NAVIGATION ─── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(250,247,243,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: box-shadow var(--transition);
}
.site-nav.scrolled { box-shadow: 0 2px 20px rgba(44,54,64,0.12); }

.nav-inner {
  width: 100%; max-width: 1340px; margin: 0 auto;
  padding: 0 clamp(18px,4vw,52px);
  display: flex; align-items: center; gap: 20px;
}
.nav-logo { flex-shrink: 0; }
.nav-logo img {
  height: 54px;  /* horizontal logo needs less height, more width */
  width: auto;
  max-width: 280px;
}

.nav-links {
  display: flex; align-items: center; gap: 4px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.88rem; font-weight: 700; letter-spacing: 0.03em;
  color: var(--dark);
  padding: 7px 13px; border-radius: 8px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--orange); background: var(--orange-pale); }
.nav-links a.nav-cta {
  background: var(--orange);
  color: var(--white);
  padding: 9px 22px;
  border-radius: 50px;
  margin-left: 8px;
  box-shadow: 0 3px 12px rgba(212,132,74,0.32);
}
.nav-links a.nav-cta:hover {
  background: var(--orange-dark);
  color: var(--white);
}

.nav-socials {
  display: flex; align-items: center; gap: 8px; margin-left: 16px;
}
.nav-socials a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(168,188,204,0.16);
  display: flex; align-items: center; justify-content: center;
  /* Lighter version of the logo grey (#6E8091) */
  color: #9DB4C4; font-size: 0.88rem;
  transition: background var(--transition), color var(--transition);
}
.nav-socials a:hover {
  background: var(--orange);
  color: var(--white);
}

.nav-toggle {
  display: none; flex-direction: column;
  justify-content: center; gap: 5px;
  width: 40px; height: 40px; padding: 6px;
  margin-left: 8px;
}
.nav-toggle span {
  display: block; width: 100%; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: all 0.3s ease; transform-origin: center;
}

/* ─── HERO CAROUSEL ─── */
.page-body { padding-top: var(--nav-h); }

.hero {
  position: relative;
  height: calc(100vh - var(--nav-h));
  min-height: 520px;
  max-height: 900px;
  overflow: hidden;
}
.hero-slides { height: 100%; position: relative; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.3s ease;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(
    125deg,
    rgba(44,54,64,0.72) 0%,
    rgba(61,80,96,0.45) 50%,
    rgba(212,132,74,0.18) 100%
  );
  display: flex; align-items: center;
}
.hero-content {
  padding: 0 clamp(24px, 6vw, 80px);
  color: var(--white);
  max-width: 720px;
}
.hero-content .satisfy {
  font-size: clamp(1.1rem, 2.5vw, 1.7rem);
  color: var(--orange-light);
  margin-bottom: 10px;
  display: block;
}
.hero-content h1 {
  font-size: clamp(2.4rem, 6.5vw, 5.2rem);
  font-weight: 700;
  line-height: 1.0;
  margin-bottom: 14px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.hero-content p {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 34px;
  font-weight: 300;
  max-width: 460px;
  line-height: 1.7;
}

.hero-dots {
  position: absolute; bottom: 76px; left: clamp(24px,6vw,80px);
  z-index: 3; display: flex; gap: 10px; align-items: center;
}
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.45); cursor: pointer;
  transition: all var(--transition); border: none; padding: 0;
}
.hero-dot.active {
  background: var(--orange); width: 28px; border-radius: 5px;
}

.hero-wave {
  position: absolute; bottom: -2px; left: 0; right: 0; z-index: 3;
  line-height: 0; pointer-events: none;
}
.hero-wave svg { display: block; width: 100%; }

/* ─── WAVE DIVIDERS ─── */
.wave-divider { line-height: 0; overflow: hidden; }
.wave-divider svg { display: block; width: 100%; }

/* ─── INTRO ─── */
.intro-section { background: var(--cream); padding: 72px 0 56px; }
.intro-inner {
  max-width: 780px; margin: 0 auto; text-align: center;
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  color: #4a5d6a; line-height: 1.9;
}

/* ─── SERVICE CARDS (home) ─── */
.services-home { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 36px 24px 28px;
  text-align: center;
  border: 1px solid rgba(212,132,74,0.12);
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.service-card-img {
  width: 165px; height: 165px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 22px;
  border: 5px solid var(--orange-light);
  box-shadow: 0 4px 18px rgba(212,132,74,0.2);
}
.service-card-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card-img img {
  width: 82%; height: 82%; object-fit: cover;
}
.service-card h3 { color: var(--dark); margin-bottom: 10px; font-size: 1.2rem; }
.service-card p { color: #5a6a78; font-size: 0.92rem; line-height: 1.7; }
.services-cta { text-align: center; margin-top: 52px; }

/* ─── WHY JOIN ─── */
.why-section { background: var(--grey-pale); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px; margin-top: 48px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 26px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 5px solid var(--orange);
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.why-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--orange-pale);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; font-size: 1.7rem;
}
.why-card h3 {
  color: var(--orange);
  font-size: 0.82rem; font-weight: 900;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 10px; font-family: 'Lato', sans-serif;
}
.why-card p { color: #5a6a78; font-size: 0.92rem; }

/* ─── STATS ─── */
.stats-section {
  background: var(--grey-dark);
  color: var(--white);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
/* Decorative blobs */
.stats-section::before,
.stats-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
  pointer-events: none;
}
.stats-section::before {
  width: 400px; height: 400px;
  background: var(--orange);
  top: -150px; left: -100px;
}
.stats-section::after {
  width: 300px; height: 300px;
  background: var(--grey-mid);
  bottom: -120px; right: -80px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px; text-align: center;
}
.stat-item {}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7);
  margin-top: 10px;
  display: block;
}

/* ─── TESTIMONIALS MOSAIC ─── */
.testimonials-section { background: var(--cream); }
/* CSS columns masonry — cards naturally flow to fill height without gaps */
.testimonials-mosaic {
  column-count: 3;
  column-gap: 22px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--orange);
  display: flex; flex-direction: column;
  break-inside: avoid;
  margin-bottom: 22px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.t-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem; line-height: 0.6;
  color: var(--orange-light);
  margin-bottom: 14px;
}
.t-text {
  font-size: 0.92rem; color: #4a5d6a;
  font-style: italic; line-height: 1.8;
  flex: 1; margin-bottom: 22px;
}
.t-author {
  display: flex; align-items: center; gap: 12px; margin-top: auto;
}
.t-author-img {
  width: 50px; height: 50px; border-radius: 50%; overflow: hidden;
  flex-shrink: 0; border: 3px solid var(--orange-light);
}
.t-author-img img { width: 100%; height: 100%; object-fit: cover; }
.t-author-name { font-weight: 700; font-size: 0.88rem; color: var(--dark); }
.t-author-pet { font-size: 0.8rem; color: var(--grey); }
.t-stars { color: var(--orange); font-size: 0.78rem; margin-bottom: 2px; }

/* ─── FAQ ─── */
.faq-section { background: var(--orange-pale); }
.faq-wrap { max-width: 820px; margin: 44px auto 0; }
.faq-item { border-bottom: 1px solid var(--orange-light); }
.faq-question {
  width: 100%; text-align: left;
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-weight: 700; font-size: 0.97rem; color: var(--dark);
  background: none; transition: color var(--transition);
}
.faq-question:hover { color: var(--orange); }
.faq-icon {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.3rem; line-height: 1;
  transition: transform var(--transition), background var(--transition);
  font-family: 'Lato', sans-serif; font-weight: 300;
  padding-bottom: 1px;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg); background: var(--orange-dark);
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.42s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 500px; padding-bottom: 22px; }
.faq-answer p { color: #5a6a78; font-size: 0.93rem; line-height: 1.8; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  height: clamp(300px, 40vw, 420px);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.page-hero-bg {
  position: absolute; inset: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center; /* vertically centred */
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(44,54,64,0.65), rgba(110,128,145,0.5));
}
.page-hero-content {
  position: relative; z-index: 1;
  text-align: center; color: var(--white); padding: 0 24px;
}
.page-hero-content .satisfy {
  color: var(--orange-light);
  font-size: clamp(1rem, 2vw, 1.4rem);
  display: block; margin-bottom: 6px;
}
.page-hero-content h1 {
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

/* Organic wave edge at the bottom of every page-hero */
.page-hero-wave {
  position: absolute; bottom: -2px; left: 0; right: 0; z-index: 3;
  line-height: 0; pointer-events: none;
}
.page-hero-wave svg { display: block; width: 100%; }

/* ─── SERVICES PAGE ─── */
.services-list { margin-top: 60px; }
.service-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 52px;
  align-items: center; margin-bottom: 72px;
}
.service-row.flip { }
.service-row.flip .service-row-img { order: 2; }
.service-row.flip .service-row-text { order: 1; }
.service-row-img {
  border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.service-row-img img { width: 100%; height: 100%; object-fit: cover; }
.badge {
  display: inline-block;
  background: var(--orange); color: var(--white);
  padding: 4px 16px; border-radius: 50px;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  margin-bottom: 12px;
}
.badge.full { background: var(--grey); }
.service-row-text h3 { margin-bottom: 12px; color: var(--dark); }
.service-row-text p { color: #5a6a78; margin-bottom: 16px; font-size: 0.95rem; }
.service-details {
  background: var(--grey-pale); border-radius: var(--radius-sm);
  padding: 16px 20px; font-size: 0.88rem; color: #5a6a78;
}
.service-details p { margin-bottom: 4px; }
.service-details strong { color: var(--dark); }
.service-details ul { margin: 8px 0 0 18px; list-style: disc; }
.service-details li { margin-bottom: 3px; }
.service-details a { color: var(--orange); font-weight: 700; }
.service-details a:hover { text-decoration: underline; }

/* ─── SPECIAL EVENTS PAGE ─── */
.events-section { }
.events-col-header {
  font-family: 'Satisfy', cursive;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--orange);
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.events-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  margin-top: 52px; align-items: start;
}
.event-card {
  background: var(--white);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.event-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.event-card-img { height: 230px; overflow: hidden; }
.event-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.event-card:hover .event-card-img img { transform: scale(1.04); }
.event-card-body { padding: 28px 26px; }
.event-card-body h3 { margin-bottom: 4px; color: var(--dark); }
.event-date {
  color: var(--orange); font-size: 0.84rem;
  font-weight: 700; letter-spacing: 0.05em;
  display: block; margin-bottom: 12px;
}
.event-card-body p { font-size: 0.92rem; color: #5a6a78; margin-bottom: 14px; }
.event-badge {
  display: inline-block;
  background: var(--grey); color: var(--white);
  padding: 3px 14px; border-radius: 50px;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
}

/* ─── ABOUT PAGE — bracket image layout ─── */
/* Desktop: [2 imgs side-by-side] [text] [2 imgs side-by-side] */
.about-bracket-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  gap: 32px;
  align-items: center;
}
.about-bracket-col {
  display: flex;
  flex-direction: column; /* stacked */
  gap: 14px;
}
.about-bracket-col img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center center;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}
.about-text h2 { margin-bottom: 18px; }
.about-text .section-label { margin-bottom: 4px; }
.about-text p { color: #5a6a78; margin-bottom: 16px; font-size: 0.97rem; }
.about-text a { color: var(--orange); font-weight: 700; }
.about-text a:hover { text-decoration: underline; }
/* Preserve button colours inside about-text */
.about-text a.btn-primary { color: var(--white); text-decoration: none; }
.about-text a.btn-primary:hover { text-decoration: none; }
.about-text a.btn-outline { color: var(--orange); text-decoration: none; }

.what-sets { background: var(--grey-pale); }
.what-sets-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px; margin-top: 44px;
}
.what-set-item {
  background: var(--white); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow);
  border-top: 4px solid var(--orange);
}
.what-set-item h4 {
  color: var(--orange); margin-bottom: 8px;
  font-size: 1rem; font-family: 'Lato', sans-serif; font-weight: 900;
}
.what-set-item p { font-size: 0.92rem; color: #5a6a78; }

.about-gallery-section { background: var(--cream); }
/* ─── VIDEO SLIDER (About page) ─── */
.video-slider-section { background: var(--cream); }
.video-slider-wrap {
  position: relative; margin-top: 44px;
}
.video-slider-track-outer {
  overflow: hidden;
  border-radius: var(--radius);
}
.video-slider-track {
  display: flex; gap: 20px;
  transition: transform 0.5s ease;
}
.video-thumb {
  flex: 0 0 calc(33.333% - 14px);
  position: relative; cursor: pointer;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.video-thumb:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); }
.video-thumb img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.video-thumb:hover img { transform: scale(1.06); }
.video-play-btn {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(44,54,64,0.35);
  transition: background var(--transition);
}
.video-thumb:hover .video-play-btn { background: rgba(44,54,64,0.55); }
.video-play-btn::after {
  content: '';
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(212,132,74,0.92);
  display: flex; align-items: center; justify-content: center;
  border: 3px solid rgba(255,255,255,0.8);
  /* Play triangle */
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center 50%;
  background-size: 30px 30px;
}

.video-slider-prev,
.video-slider-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 2;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
  color: var(--dark); font-size: 1rem;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  border: none; cursor: pointer;
}
.video-slider-prev { left: -22px; }
.video-slider-next { right: -22px; }
.video-slider-prev:hover, .video-slider-next:hover {
  background: var(--orange); color: var(--white);
  box-shadow: 0 4px 18px rgba(212,132,74,0.35);
}

/* ─── VIDEO MODAL ─── */
.video-modal-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(20,28,36,0.88);
  align-items: center; justify-content: center;
  padding: 20px;
}
.video-modal-overlay.open { display: flex; }
.video-modal {
  position: relative;
  width: 100%; max-width: 860px;
  background: var(--dark);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
.video-modal-iframe-wrap {
  position: relative; width: 100%; padding-top: 56.25%;
}
.video-modal-iframe-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: none;
}
.video-modal-close {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.15); color: var(--white);
  font-size: 1.1rem; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background var(--transition);
  border: none;
}
.video-modal-close:hover { background: var(--orange); }
.video-modal-nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 20px;
  background: var(--grey-dark);
}
.video-modal-nav button {
  color: rgba(255,255,255,0.75); font-size: 0.88rem; font-weight: 700;
  padding: 6px 16px; border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer; transition: all var(--transition); background: none;
}
.video-modal-nav button:hover { background: var(--orange); color: var(--white); border-color: transparent; }
.video-modal-counter { color: rgba(255,255,255,0.5); font-size: 0.82rem; }
.video-yt-link {
  color: rgba(255,255,255,0.8); font-size: 0.85rem; font-weight: 700;
  display: flex; align-items: center; gap: 6px;
  padding: 6px 16px; border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.25);
  transition: all var(--transition);
}
.video-yt-link:hover { background: #FF0000; border-color: #FF0000; color: var(--white); }

/* Legacy gallery grid (keep for optional static gallery) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px; margin-top: 36px;
}
.gallery-item {
  border-radius: 16px; overflow: hidden;
  aspect-ratio: 1; box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item:hover { transform: scale(1.04); box-shadow: var(--shadow-lg); }

/* ─── CONTACT PAGE ─── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center;
}
.contact-img {
  border-radius: 24px; overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 3/4;
}
.contact-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.contact-info-block {
  margin-bottom: 36px;
}
.contact-info-block h2 { margin-bottom: 10px; }
.contact-info-block p { color: #5a6a78; font-size: 1rem; margin-bottom: 8px; }
.contact-info-block a { color: var(--orange); font-weight: 700; }
.contact-info-block a:hover { text-decoration: underline; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 0.82rem; font-weight: 700; color: var(--dark); letter-spacing: 0.03em; }
.form-field span.req { color: var(--orange); }
.form-field input,
.form-field textarea {
  padding: 12px 16px;
  border: 2px solid var(--grey-light);
  border-radius: var(--radius-sm);
  font-size: 0.95rem; color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(212,132,74,0.14);
}
.form-field textarea { resize: vertical; min-height: 130px; }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--grey-dark);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 28px;
  position: relative; overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  width: 350px; height: 350px; border-radius: 50%;
  background: var(--orange); opacity: 0.05;
  top: -120px; right: -100px; pointer-events: none;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 48px; margin-bottom: 52px;
}
.footer-logo img {
  height: 64px; width: auto; margin-bottom: 16px;
}
.footer-tagline {
  font-style: italic; color: rgba(255,255,255,0.6);
  font-size: 0.88rem; line-height: 1.7; max-width: 240px;
}
.footer-socials {
  display: flex; gap: 10px; margin-top: 20px;
}
.footer-socials a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65); font-size: 0.9rem;
  transition: background var(--transition), color var(--transition);
}
.footer-socials a:hover { background: var(--orange); color: var(--white); }
.footer-col-title {
  font-size: 0.73rem; font-weight: 900;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  font-size: 0.88rem; color: rgba(255,255,255,0.62);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 26px;
  display: flex; justify-content: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.38);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .testimonials-mosaic { column-count: 2; }
  .about-bracket-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-bracket-col { flex-direction: row; }
  .about-bracket-col img { aspect-ratio: 1; }
  .service-row { grid-template-columns: 1fr; gap: 28px; }
  .service-row.flip .service-row-img { order: 0; }
  .service-row.flip .service-row-text { order: 0; }
  .events-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-img { aspect-ratio: 16/9; max-height: 380px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .video-thumb { flex: 0 0 calc(50% - 10px); }
  .video-slider-prev { left: -16px; }
  .video-slider-next { right: -16px; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; gap: 4px;
    background: var(--cream);
    padding: 16px 20px 24px;
    box-shadow: 0 8px 24px rgba(44,54,64,0.12);
    border-top: 1px solid var(--grey-light);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; border-radius: 10px; }
  .nav-links a.nav-cta { text-align: center; margin-left: 0; margin-top: 4px; }
  .nav-socials { display: none; }
  .nav-toggle { display: flex; }
  .testimonials-mosaic { column-count: 1; }
  .form-row-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .stat-number { font-size: clamp(2rem, 8vw, 3rem); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-bracket-col { flex-direction: column; }
  /* Hero: shorter on mobile to reduce side-crop */
  .hero {
    height: 56vh;
    min-height: 420px;
  }
  .hero-content h1 { font-size: clamp(1.8rem, 8vw, 3rem); }
  .video-thumb { flex: 0 0 calc(100% - 0px); }
  .video-slider-prev { left: 8px; }
  .video-slider-next { right: 8px; }
}

@media (max-width: 520px) {
  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero { height: 52vh; min-height: 380px; }
  .page-hero { height: clamp(240px, 45vw, 300px); }
}
