/*
Theme Name: Hens Knights NZ
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300&family=Inter:wght@400;700&family=Inter+Tight:wght@400&family=Open+Sans:wght@500&display=swap');

:root {
  --black: #000000;
  --white: #FFFFFF;
  --red: #F70101;
  --dark-red: #B7000A;
  --gray: #E6E5E5;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #000;
  background: #fff;
}

a {
  color: var(--dark-red);
  text-decoration: none;
}

a:hover {
  color: var(--red);
}

h1, h2, h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

/* LAYOUT */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* HEADER */
.site-header {
  background: var(--black);
  border-bottom: 0px solid var(--gray);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}

.logo img {
  height: 60px;
  width: auto;
  display: block;
}

.logo span {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  color: var(--black);
  text-decoration: none;
}

.highlight {
  color: var(--dark-red);
}

/* NAV */
.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 28px;
  align-items: center;
}

.main-nav a {
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: 15px;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--dark-red);
}

/* DROPDOWN - DESKTOP */
.has-dropdown {
  position: relative;
}

.main-nav .has-dropdown .dropdown {
  display: none;
  position: absolute;
  top: 100%;           
  left: 0;
  padding-top: 10px;   
  background: var(--black);
  border: 1px solid var(--gray);
  border-radius: 8px;
  min-width: 200px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  flex-direction: column;
  gap: 0 !important;
  z-index: 200;
}

.dropdown li a {
  display: block;
  padding: 10px 16px;
  font-weight: 400;
  white-space: nowrap;
}

.dropdown li a:hover {
  background: var(--black);
  color: var(--dark-red);
}

.main-nav .has-dropdown:hover .dropdown {
  display: flex;
}

/* MEGAMENU - DESKTOP */
.megamenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--black);
  border: 1px solid var(--gray);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  padding: 24px;
  gap: 40px;
  z-index: 200;
  min-width: 600px;
}

.has-megamenu:hover .megamenu {
  display: flex;
}

.megamenu-compact {
  min-width: 0;
  width: max-content;
}

.megamenu-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.megamenu-col a {
  font-weight: 400 !important;
  font-size: 14px !important;
  color: var(--white) !important;
  white-space: nowrap;
  padding: 4px 0;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.megamenu-col a:hover {
  color: var(--dark-red) !important;
  border-bottom-color: var(--dark-red);
}

.megamenu-col h4 {
  margin: 0 0 8px 0;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark-red);
}

/* HAMBURGER BUTTON */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 300;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s ease;
  transform-origin: center;
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* HERO */
.hero {
  background: #000;
  color: #fff;
  padding: 40px 20px;
  min-height: 90vh;        /* ← makes hero at least full screen height */
  align-items: center;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-text {
  flex: 1;
  text-align: left;
}

.hero-text h1 {
  font-size: 46px;
  color: var(--white);
  margin-top: 0;
}

.hero-text p {
  font-family: 'Inter Tight', sans-serif;
  color: rgba(255,255,255,0.8);
}

.tagline {
  font-family: 'Inter Tight', sans-serif;
  text-align: left;
  max-width: 1200px;
  margin: 30px auto 0;
  line-height: 1.7;
  opacity: 0.85;
}

/* CAROUSEL */
.hero-carousel-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  border-radius: 12px;
}

.hero-carousel {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 12px;
  width: max-content;
}

.carousel-track img {
  width: 250px;
  height: 225px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

/* Scroll left (row 1) */
@keyframes scrollLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Scroll right (row 2) */
@keyframes scrollRight {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.track-left {
  animation: scrollLeft 30s linear infinite;
}

.track-right {
  animation: scrollRight 30s linear infinite;
}


/* BUTTON */
.btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 26px;
  background: var(--dark-red);
  border: 2px solid var(--white);
  color: var(--white);
  text-decoration: none;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn:hover {
  background: var(--red);
  color: var(--white);
}

/* SECTIONS */
section:not(.hero) {
  padding: 60px 20px;
}

/* DARK SECTIONS */
.dark-section {
  background: var(--black);
  color: var(--white);
}

.dark-section h1,
.dark-section h2,
.dark-section h3,
.dark-section p {
  color: var(--white);
}

.dark-section .card {
  background: var(--gray);
  color: var(--black);
}

.dark-section .card h3 {
  color: var(--dark-red);
  font-weight: bold;
}

.dark-section .card p {
  color: var(--black);
}

/* CARD STYLES */
.card {
  background: var(--gray);
  border: 1px solid #000;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: 0.2s ease;
}

.tips-card-image {
  margin: -25px -25px 15px;
  border-radius: 9px 9px 0 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.tips-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--dark-red);
  font-weight: bold;
}

.card p {
  margin: 0;
  opacity: 0.8;
}

/* GRID */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* PRICING CARDS */
.pricing-section h2,
.pricing-section .tagline {
  color: var(--white);
}

.pricing-card .price-package-note {
  margin: 0 0 14px;
  font-size: 13px;
  font-style: italic;
  opacity: 0.75;
}

.pricing-card .price-tier {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,0.15);
}

.pricing-card .price-tier:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.pricing-card .price-tier-label {
  font-weight: 700;
  margin: 0 0 4px;
  opacity: 1;
}

.pricing-card .price-amount {
  font-size: 28px;
  font-weight: 800;
  color: var(--dark-red);
  margin: 0 0 10px;
}

.pricing-card .price-line {
  margin: 0 0 4px;
  opacity: 0.85;
  font-size: 14px;
}

.pricing-card .price-line.is-total {
  font-weight: 700;
  opacity: 1;
  margin-top: 8px;
}

.pricing-card .btn {
  border-color: var(--black);
}

.pricing-card {
  display: flex;
  flex-direction: column;
}

.pricing-card .price-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding-top: 20px;
  margin-top: auto;
}

.pricing-card .price-actions .btn {
  margin-top: 0;
}

.price-more-info-link {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  color: var(--dark-red);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

.price-more-info-link:hover {
  color: var(--red);
}

.pricing-modal-cta {
  text-align: center;
  margin-top: 10px;
}

/* INCLUSIONS */
.inclusions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.inclusion-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.inclusion-icon {
  font-size: 22px;
  color: var(--dark-red);
  flex-shrink: 0;
  line-height: 1.3;
}

.inclusion-item h3 {
  margin: 0;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.5;
}

/* GALLERY GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.gallery-grid img:first-child,
.gallery-grid img:nth-child(5) {
  grid-column: span 2;
}

/* FAQ */
.faq-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--gray);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--black);
}

.faq-question::after {
  content: '▾';
  font-size: 14px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.is-open .faq-question::after {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 20px 18px;
}

.faq-answer p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.85;
}

.faq-item.is-open .faq-answer {
  display: block;
}

/* MAP */
.map-wrap {
  margin-top: 30px;
  border-radius: 12px;
  overflow: hidden;
}

/* PAGE HERO (inner pages) */
section.page-hero {
  background: #000;
  color: #fff;
  padding: 60px 20px;
}

.page-hero-inner {
  display: flex;
  align-items: stretch;
  gap: 50px;
}

.page-hero-text {
  flex: 1.2;
}

.page-hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark-red);
  margin: 0 0 10px;
  font-family: 'Inter', sans-serif;
}

.page-hero-text h1 {
  font-size: 40px;
  color: var(--white);
  margin: 0 0 16px;
}

.page-hero-text p {
  font-family: 'Inter Tight', sans-serif;
  color: rgba(255,255,255,0.8);
}

.page-hero-image {
  flex: 1;
  position: relative;
}

.page-hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  border-radius: 15px;
  display: block;
}

.page-hero-tagline {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  opacity: 1;
}

.page-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.page-hero-ctas .btn {
  margin-top: 0;
}

.cta-short {
  display: none;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

/* LIGHT SECTION (matches hensknights.com.au team/section background) */
.light-section {
  background: var(--gray);
}

/* BLACK SECTION + rounded inset card (matches hensknights.com.au team panel) */
section.black-section {
  background: var(--black);
  padding: 72px 20px;
}

.container.card-panel {
  background: var(--gray);
  border-radius: 15px;
  padding: 50px 40px;
}

/* MEMBER GRID (clickable avatar tiles) */
.member-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 2%;
  margin-top: 30px;
}

.member-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  width: 22%;
}

.member-tile-avatar {
  display: block;
  width: 100%;
  height: 350px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 20px 5px rgba(0,0,0,0.2);
}

.member-tile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.member-tile-name {
  color: var(--black);
  font-weight: 700;
  font-size: 24px;
  font-family: 'Inter', sans-serif;
  text-align: center;
}

.costume-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.costume-tags span {
  background: var(--black);
  color: var(--white);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
}

/* MEMBER MODAL (matches hensknights.com.au team popup) */
.member-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgb(11,11,11);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 20px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}

.member-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.member-modal {
  background: var(--gray);
  border-radius: 10px;
  max-width: 1100px;
  width: 100%;
  padding: 40px;
  margin: 40px auto;
  position: relative;
  transform: scale(0.92);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.member-modal-overlay.is-open .member-modal {
  transform: scale(1);
  opacity: 1;
}

.member-modal-close {
  position: absolute;
  top: 6px;
  right: 10px;
  width: 44px;
  height: 44px;
  border-radius: 0;
  border: none;
  background: none;
  color: #333;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  opacity: 0.65;
  display: flex;
  align-items: center;
  justify-content: center;
}

.member-modal-close:hover {
  opacity: 1;
}

.member-modal-body {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}

.member-slider {
  display: flex;
  gap: 30px;
}

.member-slider-main {
  flex: 1;
  min-height: 350px;
  position: relative;
}

.member-slider-main img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 10px;
  box-shadow: 0 0 20px 0 rgba(0,0,0,0.2);
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.member-slider-main img.is-active {
  opacity: 1;
}

.member-slider-thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 20%;
  flex-shrink: 0;
}

.member-slider-thumbs img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  object-position: center top;
  border-radius: 10px;
  box-shadow: 0 0 20px 0 rgba(0,0,0,0.2);
  cursor: pointer;
}

.member-slider-thumbs img.is-active {
  opacity: 0.5;
  pointer-events: none;
}

.member-info h3 {
  margin: 0 0 10px;
  color: var(--black);
  font-size: 32px;
  font-weight: 700;
}

.member-bio p {
  margin: 0 0 1em;
  font-size: 18px;
  line-height: 1.6;
  color: var(--black);
}

.member-bio strong {
  font-weight: 700;
}

.member-bio ul {
  margin: 0 0 1em;
  padding-left: 20px;
}

.member-bio li {
  font-size: 18px;
  line-height: 1.6;
  color: var(--black);
}

.member-info .btn {
  margin-top: 10px;
  border: 1px solid var(--black);
}

.member-info .btn:hover {
  border-color: var(--black);
  color: var(--black);
}

/* PLACEHOLDER TILE (performer with no photos yet) */
.member-tile-placeholder {
  cursor: default;
}

.member-tile-avatar-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
}

.member-tile-avatar-placeholder .placeholder-text {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.5;
}

/* LOCATION CARDS */
.location-card h3 {
  margin: 0 0 12px;
  font-size: 16px;
  color: var(--dark-red);
  font-weight: bold;
}

.location-card iframe {
  display: block;
}

/* OCCASION CARDS (flip on hover / tap) */
.occasion-row {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 20px;
  margin-top: 20px;
}

.occasion-card {
  position: relative;
  flex: 0 0 240px;
  height: 420px;
  border-radius: 12px;
  overflow: hidden;
  scroll-snap-align: start;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

.occasion-face {
  position: absolute;
  inset: 0;
  transition: transform 0.4s ease;
  display: flex;
  flex-direction: column;
}

.occasion-front {
  background: var(--gray);
  transform: translateY(0);
}

.occasion-front h3 {
  text-align: center;
  padding: 18px 14px 10px;
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}

.occasion-front h3 span {
  color: var(--dark-red);
}

.occasion-front img {
  flex: 1;
  width: 100%;
  object-fit: cover;
}

.occasion-back {
  background: var(--black);
  color: var(--white);
  transform: translateY(-100%);
  align-items: center;
  justify-content: center;
  padding: 30px;
  text-align: center;
}

.occasion-back p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

@media (hover: hover) {
  .occasion-card:hover .occasion-front { transform: translateY(100%); }
  .occasion-card:hover .occasion-back { transform: translateY(0); }
}

.occasion-card.is-flipped .occasion-front { transform: translateY(100%); }
.occasion-card.is-flipped .occasion-back { transform: translateY(0); }

/* FOOTER */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 60px 20px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark-red);
  margin: 0 0 16px;
}

.footer-col p {
  margin: 0 0 6px;
  font-size: 14px;
  opacity: 0.85;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul a {
  color: var(--white);
  font-size: 14px;
  opacity: 0.85;
}

.footer-col ul a:hover {
  color: var(--dark-red);
  opacity: 1;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.footer-socials a:hover {
  background: var(--dark-red);
  color: var(--white);
}

.footer-bottom {
  margin: 20px -20px -20px;
  padding: 24px 0 4px;
  background: var(--white);
  text-align: center;
}

.footer-bottom p {
  margin: 0 0 6px;
  color: var(--black);
  font-size: 13px;
  opacity: 0.7;
}

.footer-mobile-cta {
  display: block;
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 500;
  margin: 0;
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.footer-mobile-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* MOBILE */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--black);
    border-top: 1px solid var(--gray);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    z-index: 99;
  }

  .main-nav.is-open {
    display: block;
    max-height: calc(100vh - 92px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
  }

  .main-nav ul li a {
    display: block;
    padding: 12px 20px;
    font-size: 16px;
  }

  .main-nav .has-dropdown .dropdown {
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: var(--black);
    min-width: unset;
    display: none;
    flex-direction: column;
  }

  .main-nav .has-dropdown.is-open .dropdown {
    display: flex;
  }

  .dropdown li a {
    padding-left: 36px;
    font-size: 15px;
  }

  .arrow {
    display: inline-block;
    transition: transform 0.2s ease;
  }

  .has-dropdown.is-open .arrow {
    transform: rotate(180deg);
  }

  /* MEGAMENU - MOBILE */
  .megamenu {
    position: static;
    flex-direction: column;
    gap: 0;
    min-width: unset;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: var(--black);
    padding: 0;
    transform: none;
    display: none;
  }

  .has-megamenu.is-open .megamenu {
    display: flex;
  }

  .megamenu-col {
    gap: 0;
  }

  .megamenu-col a {
    display: block;
    padding: 10px 20px 10px 36px !important;
    white-space: normal;
  }

  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    flex-direction: column;
  }

  .hero-text {
    order: 1;     /* ← moves text below */
    text-align: center;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-carousel-wrap {
    order: -1;    /* ← moves carousel to the top */
    width: 100%;
  }

  .carousel-left {
    display: none;   /* ← hides the second carousel on mobile */
  }

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

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

  .gallery-grid img:first-child,
  .gallery-grid img:nth-child(5) {
    grid-column: span 1;
  }

  section.page-hero {
    padding-top: 30px;
  }

  .page-hero-inner {
    flex-direction: column;
  }

  .page-hero-text {
    order: 1;
    text-align: center;
  }

  .page-hero-text h1 {
    font-size: 30px;
  }

  .page-hero-ctas {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 10px;
  }

  .page-hero-ctas .btn {
    flex: 1 1 0;
    padding: 14px 10px;
    font-size: 14px;
    text-align: center;
    white-space: nowrap;
  }

  .cta-full {
    display: none;
  }

  .cta-short {
    display: inline;
  }

  .page-hero-image {
    flex: 0 0 auto;
    order: -1;
    width: 100%;
    height: 240px;
  }

  .member-tile {
    width: calc(50% - 10px);
  }

  .member-tile-avatar {
    height: 250px;
  }

  .member-tile-name {
    font-size: 18px;
  }

  .member-modal {
    padding: 50px 20px 30px;
    margin: 0 auto;
    transform: scale(0.92);
  }

  .member-modal-overlay.is-open .member-modal {
    transform: scale(1);
  }

  .member-slider {
    flex-direction: column;
  }

  .member-slider-main {
    min-height: 260px;
  }

  .member-slider-thumbs {
    flex-direction: row;
    width: 100%;
  }

  .member-slider-thumbs img {
    width: 60px;
    height: 60px;
  }

  .member-info h3 {
    font-size: 24px;
  }

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

  .occasion-card {
    flex-basis: 190px;
    height: 340px;
  }

  .occasion-front h3 {
    font-size: 17px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 20px;
  }

  .footer-col:first-child {
    grid-column: 1 / -1;
  }

  section.black-section {
    padding: 32px 12px;
  }

  .container.card-panel {
    padding: 24px 16px;
  }

}

/* DESKTOP / LAPTOP */
@media (min-width: 769px) {

  .footer-col p,
  .footer-col ul a {
    font-size: 17px;
  }

  .footer-bottom p {
    font-size: 15px;
  }

}

/* BLOG POST BODY */
.blog-body h2 {
  margin-top: 40px;
  margin-bottom: 14px;
}

.blog-body h2:first-child {
  margin-top: 0;
}

.blog-body h3 {
  margin-top: 28px;
  margin-bottom: 10px;
  color: var(--dark-red);
}

.blog-body p {
  margin-bottom: 16px;
  line-height: 1.7;
}

.blog-body .ul-layout {
  margin: 0 0 20px;
  padding-left: 22px;
}

.blog-body .ul-layout li {
  margin-bottom: 10px;
  line-height: 1.7;
}