/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
    --color-primary:   #09B4FA;
    --color-pricing:   #398DC6;
    --color-pricing-bg: #E9FFF9;
    --color-orange:    #F9A042;
    --color-navy:      #181B2F;
    --color-mint:      #E8FBFF;
    --color-bg:        #ffffff;
    --color-text:      #333333;
    --color-text-light: #666666;
    --color-border:    #dddddd;
    --font-heading:    'Montserrat', sans-serif;
    --font-body:       'Roboto', sans-serif;
    --font-size-h1:    65px;
    --font-size-h2:    45px;
    --font-size-h3:    29px;
    --font-size-body:  23px;
    --font-size-small: 16px;
    --border-radius-btn: 0px;
    --max-width:       1200px;
    --section-padding: 80px 5%;
}

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

body {
    font-family: var(--font-body);
    font-size: var(--font-size-body);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--color-primary);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    border: none;
    border-radius: var(--border-radius-btn);
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease;
}
.btn:hover { background: #0898d4; text-decoration: none; }
.btn--white {
    background: #fff;
    color: var(--color-primary);
}
.btn--white:hover { background: #f0f0f0; text-decoration: none; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 5%;
    background: #fff;
    z-index: 100;
}
.site-logo img { height: 56px; width: auto; }

.site-nav { flex: 1; display: flex; justify-content: center; }
.site-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 32px;
    align-items: center;
}
.site-nav a {
    font-family: 'Montserrat Alternates', sans-serif;
    font-weight: 500;
    font-size: 18px;
    text-transform: capitalize;
    line-height: 1.2;
    color: #1EAAE6;
    text-decoration: none;
    padding-bottom: 4px;
    border-bottom: 3px solid transparent;
}
.site-nav a:hover,
.site-nav a:focus,
.site-nav a.is-active { color: var(--color-orange); border-bottom-color: var(--color-orange); text-decoration: none; }

@media (max-width: 1300px) {
    .site-nav a { font-size: 18px; }
}

.site-header__contact {
    text-align: right;
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-text);
    white-space: nowrap;
}
.site-header__contact a { color: var(--color-text); }
.site-header__contact a:hover { color: var(--color-primary); }

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    width: 36px;
    height: 36px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Page Section Base
   ========================================================================== */
.page-section { padding: var(--section-padding); }
.page-section--gray { background: #f7f7f7; }
.page-section--primary { background: var(--color-primary); color: #fff; }

.section-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-header h1,
.section-header h2 { font-size: var(--font-size-h2); margin-bottom: 16px; }
.section-header p  { font-size: var(--font-size-body); max-width: 760px; margin: 0 auto; }

/* ==========================================================================
   Hero (Homepage)
   ========================================================================== */
.hero {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 560px;
    background-color: var(--color-navy);
    background-image: url('/wp-content/uploads/2023/08/confetti-blue3.jpg');
    background-size: cover;
    background-position: center;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(var(--color-orange) 0%, #72CDF4 100%);
    opacity: 0.5;
    z-index: 0;
}
.hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 6% 60px 5%;
}
.hero__image {
    position: relative;
    z-index: 1;
}
.hero__image img { width: 100%; height: 100%; object-fit: cover; }
.hero h1 {
    font-size: var(--font-size-h1);
    font-weight: 500;
    color: var(--color-navy);
    margin-bottom: 36px;
}
.hero .btn { align-self: flex-start; }

@media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; min-height: 0; }
    .hero__image { min-height: 320px; }
}

/* ==========================================================================
   Get In Touch bar
   ========================================================================== */
.get-in-touch {
    background: var(--color-orange);
    color: #fff;
    padding: 28px 5%;
    text-align: center;
}
.get-in-touch__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
.get-in-touch strong { font-family: var(--font-heading); font-weight: 700; font-size: 22px; }
.get-in-touch a { color: #fff; font-size: 17px; }
.get-in-touch a:hover { text-decoration: underline; }

/* ==========================================================================
   Homepage: Intro (2-col)
   ========================================================================== */
.home-intro {
    padding: var(--section-padding);
}
.home-intro__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.home-intro__text p  { font-size: var(--font-size-body); line-height: 1.6; }
.home-intro__image img { width: 100%; border-radius: 4px; }

/* ==========================================================================
   Homepage: Mission statement + booking-open banner
   ========================================================================== */
.home-mission {
    background: var(--color-mint);
    padding: var(--section-padding);
    text-align: center;
}
.home-mission__inner { max-width: 900px; margin: 0 auto; }
.home-mission p { font-size: 20px; color: var(--color-navy); line-height: 1.6; margin-bottom: 40px; }
.home-mission__banner {
    background: var(--color-primary);
    color: #fff;
    display: inline-block;
    padding: 24px 48px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 18px;
    line-height: 1.6;
}

/* ==========================================================================
   Homepage: Reviews
   ========================================================================== */
.home-reviews {
    background: #f7f7f7;
    padding: var(--section-padding);
    text-align: center;
}
.home-reviews__inner { max-width: var(--max-width); margin: 0 auto; }
.home-reviews h2 { font-size: var(--font-size-h2); margin-bottom: 40px; }
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: left;
}
.review-card {
    background: #fff;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.10);
}
.review-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.review-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.review-card__name { font-family: var(--font-heading); font-weight: 700; font-size: 16px; }
.review-card__date { font-size: 13px; color: var(--color-text-light); }
.review-card__google { width: 24px; height: 24px; margin-left: auto; flex-shrink: 0; }
.review-card__stars { color: #FBBC05; font-size: 18px; letter-spacing: 2px; margin-bottom: 10px; }
.review-card__text { font-size: 15px; line-height: 1.6; color: var(--color-text-light); }
@media (max-width: 1024px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .reviews-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Homepage: Book Celebration (2-col text + image)
   ========================================================================== */
.home-book { padding: var(--section-padding); }
.home-book__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}
.home-book__text h2 {
    font-size: var(--font-size-h1);
    font-weight: 500;
    color: var(--color-navy);
    margin-bottom: 24px;
}
.home-book__text p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 32px;
}
.home-book__image img { width: 100%; border-radius: 4px; }

/* ==========================================================================
   Homepage: Packages Overview (heading + 3 cards)
   ========================================================================== */
.home-packages { padding: var(--section-padding); text-align: center; }
.home-packages__inner {
    max-width: var(--max-width);
    margin: 0 auto;
}
.home-packages h2 {
    font-size: var(--font-size-h2);
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 20px;
}
.home-packages__intro {
    max-width: 760px;
    margin: 0 auto 32px;
    font-size: 17px;
    line-height: 1.6;
    color: var(--color-text);
}
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 48px;
    text-align: center;
}
.package-card {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 300px;
    display: flex;
    align-items: center;
}
.package-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 0;
}
.package-card__inner {
    position: relative;
    z-index: 1;
    padding: 28px;
    color: #fff;
    text-align: center;
    width: 100%;
}
.package-card h3 { font-size: 30px; font-weight: 500; color: #fff; margin-bottom: 10px; }
.package-card p  { font-size: 15px; line-height: 1.5; }

/* ==========================================================================
   Homepage: Why Choose (heading left, icon list right)
   ========================================================================== */
.home-why { padding: var(--section-padding); }
.home-why__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}
.home-why__heading {
    background: var(--color-mint);
    padding: 40px;
    height: 100%;
    display: flex;
    align-items: center;
}
.home-why h2 { font-size: var(--font-size-h2); font-weight: 600; color: var(--color-navy); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.why-item__icon {
    width: 18px;
    height: 18px;
    background: var(--color-orange);
    margin-bottom: 16px;
}
.why-item h3 { font-size: 18px; font-weight: 700; color: var(--color-text); margin-bottom: 10px; }
.why-item p  { font-size: 15px; line-height: 1.6; color: var(--color-text-light); }

/* ==========================================================================
   Homepage: Not Ready To Book CTA (2-col image + text)
   ========================================================================== */
.home-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}
.home-cta__image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.home-cta__text {
    background: var(--color-mint);
    padding: 80px 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.home-cta__text h2 {
    font-size: var(--font-size-h2);
    font-weight: 600;
    color: var(--color-pricing);
    margin-bottom: 20px;
}
.home-cta__text p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 28px;
}
.home-cta__text .btn { align-self: flex-start; }

@media (max-width: 900px) {
    .home-book__inner,
    .home-why__inner,
    .home-cta { grid-template-columns: 1fr; }
    .home-cta__image { min-height: 260px; }
}

/* ==========================================================================
   Pricing Page
   ========================================================================== */
.pricing-page { padding: 48px 0; }
.pricing-page__inner { max-width: var(--max-width); margin: 0 auto; }

.page-hero--pricing {
    min-height: 460px;
    align-items: flex-start;
    padding-top: 90px;
}
.page-hero--pricing::before { background: rgba(255,255,255,0.35); }
.page-hero--pricing .page-hero__inner { max-width: var(--max-width); margin: 0 auto; position: relative; z-index: 1; }
.page-hero--pricing h1 {
    font-size: 58px;
    font-weight: 500;
    color: var(--color-navy);
    max-width: 640px;
    margin-bottom: 20px;
}
.page-hero--pricing p { font-size: 17px; font-weight: 600; color: var(--color-navy); max-width: 560px; line-height: 1.6; }

.addons-banner { background: var(--color-orange); padding: 32px 5%; text-align: center; }
.addons-banner h2 { color: #fff; font-size: 28px; font-weight: 600; }

.pricing-addons { padding: 56px 5%; background: #FCE9CC; }
.pricing-addons__inner { max-width: var(--max-width); margin: 0 auto; }
.pricing-addons > .pricing-addons__inner > h3 { text-align: center; font-size: 26px; font-weight: 600; color: var(--color-navy); margin-bottom: 40px; }
.addons-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 48px;
    align-items: center;
}
.addons-intro { font-size: 19px; font-weight: 600; color: var(--color-navy); line-height: 1.6; }
.addons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.addon-card { text-align: center; }
.addon-card__icon { font-size: 40px; margin-bottom: 8px; }
.addon-card h4   { font-size: 17px; font-weight: 600; color: var(--color-navy); margin-bottom: 4px; }
.addon-card p    { font-size: 14px; color: var(--color-text); }

.custom-pricing-cta { padding: 64px 5%; text-align: center; }
.custom-pricing-cta h2 { font-size: var(--font-size-h2); font-weight: 600; color: var(--color-navy); margin-bottom: 28px; }

@media (max-width: 900px) {
    .addons-layout { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Interior Page Hero (small banner w/ bg image + title)
   ========================================================================== */
.page-hero {
    position: relative;
    min-height: 180px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    padding: 40px 5%;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.55);
}
.page-hero h1 {
    position: relative;
    z-index: 1;
    font-size: var(--font-size-h2);
    font-weight: 700;
    color: var(--color-navy);
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
}

/* ==========================================================================
   Party Experience Page
   ========================================================================== */
.experience-intro {
    background: var(--color-mint);
    padding: var(--section-padding);
}
.experience-intro__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.experience-intro__text p { font-size: 20px; line-height: 1.6; color: var(--color-navy); }
.experience-intro__cta {
    position: relative;
    min-height: 250px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 32px;
}
.experience-intro__cta::before { content:''; position:absolute; inset:0; background: rgba(232,251,255,0.55); }
.experience-intro__cta a {
    position: relative;
    z-index: 1;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 22px;
    line-height: 1.4;
    color: var(--color-navy);
    text-decoration: underline;
}

.themes-section { padding: var(--section-padding); }
.themes-section__inner { max-width: var(--max-width); margin: 0 auto; }
.themes-section__inner h2 { font-size: var(--font-size-h2); font-weight: 700; color: var(--color-navy); margin-bottom: 20px; }
.themes-section__intro { font-size: 18px; line-height: 1.6; color: var(--color-text); margin-bottom: 48px; }

.themes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}
.theme-card {
    border: 1px solid var(--color-border);
    height: 420px;
    perspective: 1500px;
    cursor: pointer;
}
.theme-card__flip {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.4, 0.2, 0.2, 1);
}
.theme-card:hover .theme-card__flip,
.theme-card.is-flipped .theme-card__flip,
.theme-card:focus-visible .theme-card__flip {
    transform: rotateY(180deg);
}
.theme-card__header,
.theme-card__body {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}
.theme-card__header {
    /* Source images are wide banner graphics (photo + title text); show
       the full banner shrunk to fit rather than cropping. */
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #fff;
}
.theme-card__body {
    transform: rotateY(180deg);
    padding: 32px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transition: opacity 0s 0.3s;
}
.theme-card:hover .theme-card__body,
.theme-card.is-flipped .theme-card__body,
.theme-card:focus-visible .theme-card__body {
    opacity: 1;
    transition-delay: 0s;
}
.theme-card__body h3 { font-size: 24px; font-weight: 600; margin-bottom: 16px; }
.theme-card__body p  { font-size: 17px; line-height: 1.6; }

@media (max-width: 768px) {
    .experience-intro__inner { grid-template-columns: 1fr; }
    .themes-grid { grid-template-columns: 1fr; }
    .theme-card { height: 380px; }
}

/* ==========================================================================
   Book Now Page
   ========================================================================== */
.booknow-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    background: #FFF5BC;
}
.booknow-hero__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 6% 60px 5%;
}
.booknow-hero__text h1 { font-size: 52px; font-weight: 500; color: var(--color-pricing); margin-bottom: 20px; }
.booknow-hero__text p { font-size: 16px; color: var(--color-pricing); opacity: 0.85; line-height: 1.6; max-width: 420px; }
.booknow-hero__image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.book-now-page { padding: var(--section-padding); background: var(--color-mint); }
.book-now-page__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}
.book-now__contact h2  { font-size: 32px; font-weight: 700; color: var(--color-navy); margin-bottom: 24px; }
.book-now__contact p   { font-size: 17px; line-height: 1.6; }
.book-now__contact a   { color: var(--color-text); }
.book-now__label { font-weight: 700; text-decoration: underline; margin-top: 20px; margin-bottom: 4px !important; }

@media (max-width: 900px) {
    .booknow-hero { grid-template-columns: 1fr; }
    .booknow-hero__image { min-height: 280px; }
}

/* ==========================================================================
   Photo Gallery
   ========================================================================== */
.gallery-page { padding: 32px 5% 80px; }
.gallery-page__inner { max-width: 1320px; margin: 0 auto; }

.gallery-filters {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 32px;
}
.gallery-filter {
    padding: 8px 0;
    border: none;
    border-bottom: 2px solid transparent;
    background: none;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 18px;
    cursor: pointer;
}
.gallery-filter.active,
.gallery-filter:hover {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 2px;
}

@media (max-width: 900px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   Photo Gallery Lightbox
   ========================================================================== */
body.pak-lightbox-open { overflow: hidden; }

.pak-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}
.pak-lightbox.is-open { display: flex; }

.pak-lightbox__img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    box-shadow: 0 4px 40px rgba(0,0,0,0.5);
}

.pak-lightbox__close,
.pak-lightbox__prev,
.pak-lightbox__next {
    position: absolute;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    line-height: 1;
}
.pak-lightbox__close {
    top: 20px;
    right: 24px;
    font-size: 40px;
}
.pak-lightbox__prev,
.pak-lightbox__next {
    top: 50%;
    transform: translateY(-50%);
    font-size: 60px;
    padding: 0 16px;
}
.pak-lightbox__prev { left: 10px; }
.pak-lightbox__next { right: 10px; }
.pak-lightbox__close:hover,
.pak-lightbox__prev:hover,
.pak-lightbox__next:hover { color: var(--color-orange); }

.pak-lightbox__counter {
    position: absolute;
    top: 24px;
    left: 24px;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 15px;
    letter-spacing: 0.5px;
}

@media (max-width: 600px) {
    .pak-lightbox__prev,
    .pak-lightbox__next { font-size: 40px; padding: 0 8px; }
}

/* ==========================================================================
   Jobs Page
   ========================================================================== */
.jobs-hero { background: var(--color-mint); padding: 70px 5%; }
.jobs-hero__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: center;
}
.jobs-hero__text h1 { font-size: var(--font-size-h1); font-weight: 500; color: var(--color-navy); margin-bottom: 24px; }
.jobs-hero__text p { font-size: 20px; color: var(--color-navy); line-height: 1.5; margin-bottom: 10px; }
.jobs-hero__image img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: 4px; }

.dotted-divider {
    height: 24px;
    background-image: radial-gradient(circle, var(--color-orange) 3px, transparent 3px);
    background-size: 24px 24px;
    background-position: center;
}

.jobs-page { padding: 70px 5%; }
.jobs-page__inner { max-width: 900px; margin: 0 auto; }
.jobs-page h2 { font-size: var(--font-size-h2); font-weight: 600; color: var(--color-navy); margin-bottom: 24px; }
.jobs-page p { font-size: 17px; line-height: 1.7; color: var(--color-text); margin-bottom: 20px; }
.jobs-page__cta { margin-top: 32px; }
.jobs-page__cta a { color: var(--color-orange); text-decoration: underline; font-weight: 500; }

@media (max-width: 768px) {
    .jobs-hero__inner { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Waiver Pages
   ========================================================================== */
.waiver-page { padding: var(--section-padding); }
.waiver-page__inner { max-width: 900px; margin: 0 auto; }
.waiver-page h1 { font-size: var(--font-size-h2); margin-bottom: 32px; }
.waiver-text { font-size: 16px; line-height: 1.8; color: var(--color-text); margin-bottom: 40px; }
.waiver-text p  { margin-bottom: 16px; }
.waiver-text ol { padding-left: 24px; margin-bottom: 16px; }
.waiver-text li { margin-bottom: 8px; }

/* ==========================================================================
   CTA Block (reusable template-parts/cta-consult.php)
   ========================================================================== */
.cta-consult {
    background: var(--color-primary);
    color: #fff;
    text-align: center;
    padding: 60px 5%;
}
.cta-consult h2 { font-size: 28px; margin-bottom: 12px; }
.cta-consult p  { font-size: 19px; margin-bottom: 24px; max-width: 600px; margin-left: auto; margin-right: auto; }
.btn--white {
    background: #fff;
    color: var(--color-primary);
}
.btn--white:hover { background: #f0f0f0; text-decoration: none; }

/* ==========================================================================
   Generic Page Fallback
   ========================================================================== */
.generic-page { padding: var(--section-padding); }
.generic-page__inner { max-width: 900px; margin: 0 auto; }
.generic-page h1 { font-size: var(--font-size-h2); margin-bottom: 32px; }
.generic-page .entry-content { font-size: 18px; line-height: 1.7; }

/* ==========================================================================
   404 Page
   ========================================================================== */
.page-404 { padding: 120px 5%; text-align: center; }
.page-404 h1 { font-size: 80px; color: var(--color-primary); margin-bottom: 16px; }
.page-404 p  { font-size: 22px; margin-bottom: 32px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: var(--color-orange);
    color: #fff;
    padding: 40px 5% 28px;
    text-align: center;
}
.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}
.footer-row { font-size: 16px; margin-bottom: 14px; }
.footer-row a { color: #fff; text-decoration: none; }
.footer-row a:hover { text-decoration: underline; }
.footer-row--contact a { margin: 0 16px; }
.footer-row--waivers a { margin: 0 16px; }
.footer-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.4);
    max-width: var(--max-width);
    margin: 20px auto;
}
.footer-copy { font-size: 14px; margin-bottom: 0; }
.footer-credit {
    text-align: center;
    font-size: 11px;
    color: #333;
    padding: 8px 5%;
    background: #fff;
}

/* ==========================================================================
   Responsive — Tablet (≤1024px)
   ========================================================================== */
@media (max-width: 1024px) {
    :root {
        --font-size-h1: 48px;
        --font-size-h2: 36px;
        --font-size-body: 20px;
        --section-padding: 60px 5%;
    }
    .themes-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   Responsive — Mobile (≤767px)
   ========================================================================== */
@media (max-width: 767px) {
    :root {
        --font-size-h1: 36px;
        --font-size-h2: 28px;
        --font-size-body: 18px;
        --section-padding: 48px 5%;
    }

    .nav-toggle { display: flex; }

    .site-header { flex-wrap: wrap; position: relative; }
    .site-header__contact { display: none; }

    .site-nav {
        display: none;
        flex: 0 0 100%;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-top: 1px solid var(--color-border);
        padding: 16px 5%;
        z-index: 99;
    }
    .site-nav.is-open { display: block; }
    .site-nav ul { flex-direction: column; gap: 0; align-items: flex-start; }
    .site-nav li { width: 100%; border-bottom: 1px solid var(--color-border); }
    .site-nav a { display: block; padding: 12px 0; }

    .home-intro__inner,
    .home-book__inner,
    .home-why__inner,
    .home-cta,
    .book-now-page__inner { grid-template-columns: 1fr; }

    .packages-grid,
    .testimonials-grid { grid-template-columns: 1fr; }

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

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

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

@media (max-width: 480px) {
    .addons-grid  { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
}
