/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
    --color-dark: #1f2933;
    --color-text: #334155;
    --color-muted: #64748b;
    --color-light: #f8fafc;
    --color-soft: #eef6f5;
    --color-white: #ffffff;
    --color-primary: #2f8f83;
    --color-primary-dark: #1f6f66;
    --color-accent: #f59e0b;
    --color-border: #e2e8f0;
    --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.08);
    --shadow-card: 0 12px 32px rgba(15, 23, 42, 0.07);
    --radius-large: 28px;
    --radius-medium: 18px;
    --radius-small: 12px;
    --container: 1140px;
}

/* ============================================================
   RESET
   ============================================================ */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--color-text);
    background: var(--color-white);
    line-height: 1.6;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
}

.narrow {
    max-width: 820px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 14px 24px;
    border: 1px solid var(--color-primary);
    border-radius: 999px;
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: 800;
    cursor: pointer;
    transition: 0.2s ease;
    box-shadow: 0 12px 25px rgba(47, 143, 131, 0.22);
}

.btn:hover {
    transform: translateY(-1px);
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}

.btn-small {
    min-height: 46px;
    padding: 13px 24px;
    font-size: 14px;
    box-shadow: 0 14px 30px rgba(44, 143, 130, 0.18);
}

.btn-outline {
    background: var(--color-white);
    color: var(--color-primary-dark);
    box-shadow: none;
}

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

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border);
}

.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--color-dark);
    font-weight: 800;
}

.brand-mark {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: var(--color-white);
    font-size: 14px;
    letter-spacing: 0.5px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}

.desktop-language-switch {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px;
    background: rgba(15, 23, 42, 0.035);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 999px;
}

.desktop-language-switch a {
    min-width: 34px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: rgba(23, 33, 43, 0.72);
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    transition: background-color 0.22s ease, color 0.22s ease;
}

.desktop-language-switch a:hover {
    background: rgba(44, 143, 130, 0.08);
    color: var(--color-primary);
}

.desktop-language-switch a.active {
    background: var(--color-white);
    color: var(--color-dark);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}

.desktop-language-switch span,
.mobile-language-dropdown {
    display: none;
}

.header-phone {
    display: inline-flex;
    align-items: center;
    color: rgba(23, 33, 43, 0.72);
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    transition: color 0.22s ease;
}

.header-phone:hover {
    color: var(--color-primary);
}

/* ============================================================
   HERO (standard)
   ============================================================ */
.hero {
    padding: 70px 0 56px;
    background:
        radial-gradient(circle at top left, rgba(47, 143, 131, 0.16), transparent 32%),
        linear-gradient(180deg, #f6fbfa 0%, #ffffff 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 48px;
}

.eyebrow,
.section-label {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--color-primary-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 720px;
    color: var(--color-dark);
    font-size: clamp(38px, 4.8vw, 58px);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.hero-text {
    max-width: 620px;
    margin-top: 24px;
    color: var(--color-text);
    font-size: 19px;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 28px 0;
}

.hero-tags span {
    padding: 9px 13px;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: var(--color-white);
    color: var(--color-dark);
    font-size: 14px;
    font-weight: 700;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 32px;
}

.hero-info {
    max-width: 620px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.hero-info div {
    padding: 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-small);
    background: var(--color-white);
    box-shadow: var(--shadow-card);
}

.hero-info strong {
    display: block;
    color: var(--color-dark);
    font-size: 14px;
}

.hero-info span {
    display: block;
    margin-top: 4px;
    color: var(--color-muted);
    font-size: 14px;
}

.hero-image {
    position: relative;
}

.hero-image::before {
    content: "";
    position: absolute;
    inset: 22px -18px -18px 22px;
    border-radius: var(--radius-large);
    background: var(--color-accent);
    opacity: 0.22;
}

.hero-image img {
    position: relative;
    width: 100%;
    min-height: 520px;
    object-fit: cover;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-soft);
}

/* ============================================================
   HERO COVER (full-bleed variant)
   ============================================================ */
.hero-cover {
    position: relative;
    min-height: calc(100vh - 78px);
    display: flex;
    align-items: center;
    padding: 82px 0 70px;
    background:
        linear-gradient(90deg,
            rgba(3, 24, 20, 0.94) 0%,
            rgba(3, 24, 20, 0.86) 32%,
            rgba(3, 24, 20, 0.56) 56%,
            rgba(3, 24, 20, 0.18) 100%),
        url("../img/hero.png") center / cover;
    overflow: hidden;
}

.hero-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.26), transparent 28%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.24));
    pointer-events: none;
}

.hero-cover-inner {
    position: relative;
    z-index: 2;
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
}

.hero-cover .hero-content {
    max-width: 720px;
}

.hero-cover .eyebrow {
    min-height: 38px;
    align-items: center;
    margin-bottom: 34px;
    padding: 10px 20px;
    border-radius: 999px;
    background: rgba(47, 143, 131, 0.9);
    color: var(--color-white);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.04em;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.hero-cover h1 {
    max-width: 720px;
    color: var(--color-white);
    font-size: clamp(46px, 6vw, 78px);
    line-height: 1.05;
    letter-spacing: -0.055em;
    text-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.hero-cover .hero-text {
    max-width: 650px;
    margin-top: 28px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    line-height: 1.75;
    text-shadow: 0 10px 26px rgba(0, 0, 0, 0.32);
}

.hero-cover .hero-tags {
    gap: 12px;
    margin: 34px 0 32px;
}

.hero-cover .hero-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: var(--color-dark);
    font-size: 15px;
    font-weight: 900;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}

.hero-cover .hero-actions {
    gap: 16px;
    margin-bottom: 48px;
}

.hero-cover .hero-primary-btn {
    min-width: 260px;
    min-height: 58px;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 28px;
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
    font-size: 17px;
    box-shadow: 0 20px 46px rgba(47, 143, 131, 0.34);
}

.hero-cover .hero-primary-btn span {
    font-size: 25px;
    line-height: 1;
    transition: transform 0.22s ease;
}

.hero-cover .hero-primary-btn:hover span {
    transform: translateX(4px);
}

.hero-cover .hero-whatsapp-btn {
    min-width: 260px;
    min-height: 58px;
    padding: 16px 28px;
    background: rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 255, 255, 0.74);
    color: var(--color-white);
    font-size: 17px;
    box-shadow: none;
    backdrop-filter: blur(8px);
}

.hero-cover .hero-whatsapp-btn:hover {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(255, 255, 255, 0.96);
    color: var(--color-dark);
}

.hero-cover .hero-info {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    max-width: 650px;
}

.hero-cover .hero-info a {
    display: block;
}

.hero-cover .hero-info div {
    position: relative;
    min-height: 118px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 14px;
    row-gap: 4px;
    padding: 22px 24px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.18);
    transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.hero-cover .hero-info div:hover {
    transform: translateY(-3px);
    background: var(--color-white);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.22);
}

.hero-cover .hero-info-icon {
    grid-row: 1 / 3;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-dark);
    font-size: 24px;
    line-height: 1;
}

.hero-cover .hero-info strong {
    display: block;
    color: var(--color-dark);
    font-size: 17px;
    font-weight: 900;
    line-height: 1.2;
}

.hero-cover .hero-info span:not(.hero-info-icon) {
    display: block;
    margin-top: 2px;
    color: var(--color-text);
    font-size: 14px;
    line-height: 1.3;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
    padding: 18px 0;
    background: var(--color-dark);
    color: var(--color-white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    text-align: center;
    font-weight: 800;
}

.trust-grid div {
    padding: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

/* ============================================================
   SECTIONS (general)
   ============================================================ */
.section {
    padding: 84px 0;
}

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

.section-heading {
    max-width: 820px;
    margin: 0 auto 42px;
    text-align: center;
}

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

/* Shared heading styles */
.intro-section h2,
.section-heading h2,
.info-card h2,
.organizer-content h2,
.registration-content h2,
.faq-section h2 {
    color: var(--color-dark);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.12;
    letter-spacing: -0.03em;
}

/* Shared paragraph styles */
.intro-section p,
.section-heading p,
.info-card p,
.organizer-content p,
.registration-content p {
    margin-top: 18px;
    color: var(--color-muted);
    font-size: 18px;
}

/* ============================================================
   INTRO BENEFITS
   ============================================================ */
.intro-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 36px;
}

.intro-benefit-card {
    padding: 24px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-medium);
    background: var(--color-white);
    text-align: left;
    box-shadow: var(--shadow-card);
}

.intro-benefit-card>span {
    display: none;
}

.intro-benefit-card span {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--color-primary-dark);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.intro-benefit-card h3 {
    margin-top: 0;
    color: var(--color-dark);
    font-size: 20px;
    line-height: 1.25;
}

.intro-benefit-card p {
    margin-top: 10px;
    color: var(--color-muted);
    font-size: 15px;
}

.intro-benefit-icon {
    width: 68px;
    height: 68px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 999px;
    background: rgba(47, 143, 131, 0.1);
    color: var(--color-primary-dark);
}

.intro-benefit-icon svg {
    width: 34px;
    height: 34px;
}

/* ============================================================
   INTRO SHIFT LIST
   ============================================================ */
.intro-shift-list {
    display: grid;
    gap: 14px;
    max-width: 840px;
    margin: 34px auto 0;
    padding: 24px 30px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.94), rgba(20, 83, 76, 0.88)),
        rgba(15, 23, 42, 0.94);
    box-shadow: 0 22px 54px rgba(15, 23, 42, 0.14);
    text-align: left;
}

.intro-shift-list li {
    display: grid;
    grid-template-columns: 38px 1fr;
    align-items: center;
    gap: 14px;
    color: var(--color-white);
}

.intro-shift-list li span {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(47, 143, 131, 0.95);
    font-size: 18px;
    line-height: 1;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.intro-shift-list li strong {
    color: rgba(255, 255, 255, 0.92);
    font-size: 17px;
    font-weight: 750;
    line-height: 1.55;
}

/* ============================================================
   PROGRAM
   ============================================================ */
.program-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.program-card {
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-large);
    background: var(--color-white);
    box-shadow: var(--shadow-card);
}

.program-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
}

.program-content {
    padding: 30px;
}

.program-icon {
    display: inline-flex;
    margin-bottom: 12px;
    font-size: 34px;
}

.program-card h3 {
    color: var(--color-dark);
    font-size: 28px;
    line-height: 1.2;
}

.program-card p {
    margin-top: 14px;
    color: var(--color-muted);
}

.program-card ul {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}

/* Shared check-list item styles */
.program-card li,
.check-list li {
    position: relative;
    padding-left: 24px;
    color: var(--color-text);
    font-weight: 700;
}

.program-card li::before,
.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 900;
}

/* ============================================================
   SCHEDULE (card grid)
   ============================================================ */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.schedule-card {
    min-height: 220px;
    padding: 24px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-medium);
    background: var(--color-white);
    box-shadow: var(--shadow-card);
}

.schedule-card span {
    color: var(--color-primary-dark);
    font-size: 14px;
    font-weight: 900;
}

.schedule-card h3 {
    margin-top: 12px;
    color: var(--color-dark);
    font-size: 20px;
    line-height: 1.25;
}

.schedule-card p {
    margin-top: 12px;
    color: var(--color-muted);
    font-size: 15px;
}

.schedule-note {
    max-width: 760px;
    margin: 28px auto 0;
    padding: 16px 22px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-small);
    background: var(--color-white);
    color: var(--color-muted);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    box-shadow: var(--shadow-card);
}

/* ============================================================
   SCHEDULE TIMELINE
   ============================================================ */
.schedule-timeline {
    max-width: 1120px;
    margin: 0 auto;
    padding: 26px 30px 22px;
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.08), transparent 28%),
        linear-gradient(180deg, #fffdf5 0%, #fbfff8 100%);
    border: 1px solid rgba(47, 143, 131, 0.1);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07);
}

.schedule-timeline-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.schedule-timeline-header span {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--color-dark);
    font-size: 27px;
    font-weight: 900;
    line-height: 1.2;
}

.schedule-timeline-header span::before,
.schedule-timeline-note::before,
.schedule-timeline-note::after {
    color: #7aa56c;
    font-size: 26px;
    font-weight: 900;
    line-height: 1;
}

.schedule-timeline-header span::before {
    content: "‹";
}

.schedule-timeline-header span::after {
    content: "›";
}

.schedule-timeline-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    align-items: start;
}

.schedule-timeline-track::before {
    content: "";
    position: absolute;
    top: 17px;
    left: 7%;
    right: 7%;
    border-top: 2px dotted rgba(47, 143, 131, 0.32);
    z-index: 0;
}

.schedule-timeline-item {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    gap: 10px;
}

.schedule-step-number {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}

.schedule-timeline-item:nth-child(1) .schedule-step-number,
.schedule-timeline-item:nth-child(5) .schedule-step-number {
    background: #6aa65c;
}

.schedule-timeline-item:nth-child(2) .schedule-step-number {
    background: #6fa8c9;
}

.schedule-timeline-item:nth-child(3) .schedule-step-number {
    background: #f5b63f;
}

.schedule-timeline-item:nth-child(4) .schedule-step-number {
    background: #ef7d63;
}

.schedule-step-card {
    width: 100%;
    min-height: 96px;
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    column-gap: 12px;
    padding: 16px 14px;
    border-radius: 18px;
    background: rgba(248, 252, 246, 0.92);
    border: 1px solid rgba(106, 166, 92, 0.18);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.schedule-timeline-item:nth-child(2) .schedule-step-card {
    background: rgba(245, 250, 253, 0.94);
    border-color: rgba(111, 168, 201, 0.2);
}

.schedule-timeline-item:nth-child(3) .schedule-step-card {
    background: rgba(255, 250, 235, 0.94);
    border-color: rgba(245, 182, 63, 0.24);
}

.schedule-timeline-item:nth-child(4) .schedule-step-card {
    background: rgba(255, 247, 244, 0.94);
    border-color: rgba(239, 125, 99, 0.22);
}

.schedule-timeline-item:nth-child(5) .schedule-step-card {
    background: rgba(248, 252, 246, 0.94);
    border-color: rgba(106, 166, 92, 0.2);
}

.schedule-step-icon {
    grid-row: 1 / 3;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--color-primary-dark);
    background: rgba(47, 143, 131, 0.1);
    font-size: 23px;
    line-height: 1;
}

.schedule-step-card strong {
    display: block;
    color: var(--color-dark);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.2;
}

.schedule-step-card p {
    margin: 2px 0 0;
    color: var(--color-dark);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.25;
}

.schedule-timeline-note {
    position: relative;
    width: fit-content;
    margin: 18px auto 0;
    padding: 0 34px;
    color: var(--color-dark);
    font-size: 17px;
    font-weight: 800;
    text-align: center;
}

.schedule-timeline-note::before,
.schedule-timeline-note::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
}

.schedule-timeline-note::before {
    content: "‹";
    left: 0;
}

.schedule-timeline-note::after {
    content: "›";
    right: 0;
}

/* ============================================================
   GALLERY SLIDER
   ============================================================ */
.gallery-slider {
    position: relative;
    margin-top: 54px;
}

.gallery-slider-viewport {
    overflow: hidden;
    padding: 22px 8px 34px;
}

.gallery-slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.45s ease;
}

.gallery-slide {
    flex: 0 0 calc((100% - 48px) / 3);
}

.polaroid-photo {
    position: relative;
    padding: 12px 12px 34px;
    border-radius: 10px;
    background: var(--color-white);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
    transform: rotate(-2deg);
}

.gallery-slide:nth-child(2n) .polaroid-photo {
    transform: rotate(2deg);
}

.gallery-slide:nth-child(3n) .polaroid-photo {
    transform: rotate(-1.5deg);
}

.gallery-slide:nth-child(4n) .polaroid-photo {
    transform: rotate(1.5deg);
}

.polaroid-photo::before {
    content: "";
    position: absolute;
    top: -14px;
    left: 50%;
    z-index: 2;
    width: 74px;
    height: 26px;
    border-radius: 4px;
    background: rgba(246, 221, 164, 0.78);
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.08);
    transform: translateX(-50%) rotate(-4deg);
}

.gallery-slide:nth-child(2n) .polaroid-photo::before {
    transform: translateX(-50%) rotate(5deg);
}

.gallery-slide:nth-child(3n) .polaroid-photo::before {
    transform: translateX(-50%) rotate(3deg);
}

.gallery-slide:nth-child(4n) .polaroid-photo::before {
    transform: translateX(-50%) rotate(-5deg);
}

.polaroid-photo img {
    width: 100%;
    height: 220px;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 6px;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(21, 94, 84, 0.22);
    border-radius: 50%;
    background: var(--color-white);
    color: var(--color-primary);
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
    transform: translateY(-50%);
    transition: 0.25s ease;
}

.gallery-arrow:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.gallery-arrow-prev {
    left: -22px;
}

.gallery-arrow-next {
    right: -22px;
}

/* ============================================================
   GALLERY SECTION (layout variant)
   ============================================================ */
.gallery-section {
    position: relative;
    overflow: hidden;
    padding: 72px 0;
    background:
        radial-gradient(circle at 12% 82%, rgba(245, 182, 63, 0.12), transparent 15%),
        radial-gradient(circle at 92% 18%, rgba(47, 143, 131, 0.09), transparent 18%),
        linear-gradient(180deg, #fffdf3 0%, #fbfff7 100%);
}

.gallery-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    align-items: center;
    gap: 46px;
}

.gallery-copy {
    position: relative;
    min-height: 230px;
    text-align: left;
}

.gallery-copy .section-label {
    margin-bottom: 12px;
    color: var(--color-primary-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.18em;
}

.gallery-copy h2 {
    color: var(--color-dark);
    font-size: clamp(28px, 2.15vw, 34px);
    line-height: 1.08;
    letter-spacing: -0.035em;
    white-space: nowrap;
}

.gallery-copy p {
    max-width: 270px;
    margin-top: 14px;
    color: var(--color-muted);
    font-size: 15px;
    line-height: 1.55;
}

.gallery-copy::before {
    content: "☼";
    position: absolute;
    left: 18px;
    bottom: 0;
    color: rgba(245, 182, 63, 0.72);
    font-size: 48px;
    font-weight: 400;
    line-height: 1;
}

.gallery-copy::after {
    content: "↝";
    position: absolute;
    right: 10px;
    bottom: 6px;
    color: rgba(47, 143, 131, 0.78);
    font-size: 58px;
    line-height: 1;
    transform: rotate(-8deg);
}

/* Gallery section slider overrides */
.gallery-section .gallery-slider {
    min-width: 0;
    margin-top: 0;
}

.gallery-section .gallery-slider-viewport {
    padding: 28px 8px 34px;
}

.gallery-section .gallery-slider-track {
    gap: 18px;
}

.gallery-section .gallery-slide {
    flex: 0 0 calc((100% - 36px) / 3);
    padding: 0 2px;
}

.gallery-section .polaroid-photo {
    padding: 10px 10px 28px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.13);
}

.gallery-section .polaroid-photo::before {
    background: rgba(245, 222, 164, 0.86);
    box-shadow: 0 5px 12px rgba(15, 23, 42, 0.08);
}

.gallery-section .polaroid-photo img {
    height: 190px;
    border-radius: 7px;
}

.gallery-section .gallery-arrow {
    width: 40px;
    height: 40px;
    border-color: rgba(47, 143, 131, 0.18);
    background: rgba(255, 255, 255, 0.96);
    color: var(--color-primary-dark);
    font-size: 30px;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.11);
    transition: background-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.gallery-section .gallery-arrow:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-50%) scale(1.04);
}

.gallery-section .gallery-arrow-prev {
    left: -16px;
}

.gallery-section .gallery-arrow-next {
    right: -16px;
}

/* ============================================================
   INFO / ORGANIZER
   ============================================================ */
.info-grid,
.organizer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
}

.info-card {
    padding: 36px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-large);
    background: var(--color-white);
    box-shadow: var(--shadow-card);
}

.image-card {
    padding: 0;
    overflow: hidden;
}

.image-card img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}

.check-list {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.check-list li {
    padding-left: 28px;
    color: var(--color-dark);
}

.organizer-image {
    height: 500px;
    overflow: hidden;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-soft);
}

.organizer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.organizer-content {
    padding: 12px;
}

.note {
    padding: 18px;
    border-left: 4px solid var(--color-primary);
    border-radius: var(--radius-small);
    background: var(--color-light);
    color: var(--color-dark) !important;
    font-weight: 700;
}

/* ============================================================
   INFO SECTION (location layout)
   ============================================================ */
.info-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 82%, rgba(47, 143, 131, 0.08), transparent 18%),
        linear-gradient(180deg, #ffffff 0%, #f8fbf8 100%);
}

.location-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: stretch;
    gap: 26px;
}

.location-card {
    padding: 42px 42px 34px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 22px 54px rgba(15, 23, 42, 0.08);
}

.location-card .section-label {
    margin-bottom: 14px;
    color: var(--color-primary-dark);
}

.location-card h2 {
    max-width: none;
    color: var(--color-dark);
    font-size: clamp(34px, 3.2vw, 44px);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.location-card>p {
    max-width: 520px;
    margin-top: 18px;
    color: var(--color-muted);
    font-size: 17px;
    line-height: 1.65;
}

.location-list {
    display: grid;
    gap: 0;
    margin-top: 28px;
}

.location-list li {
    display: grid;
    grid-template-columns: 46px 1fr;
    align-items: center;
    gap: 14px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.location-list li:last-child {
    border-bottom: 0;
}

.location-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(47, 143, 131, 0.1);
    color: var(--color-primary-dark);
    font-size: 20px;
    line-height: 1;
}

.location-list strong {
    display: block;
    color: var(--color-dark);
    font-size: 18px;
    font-weight: 900;
    line-height: 1.2;
}

.location-list p {
    margin: 3px 0 0;
    color: var(--color-muted);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
}

.location-image {
    overflow: hidden;
    min-height: 520px;
    border-radius: 28px;
    box-shadow: 0 22px 54px rgba(15, 23, 42, 0.1);
}

.location-image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    display: block;
    object-fit: cover;
    object-position: center;
}

.location-bottom-bar {
    grid-column: 1 / -1;
    width: min(820px, 100%);
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    justify-self: center;
    margin-top: -2px;
    padding: 10px 24px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(47, 143, 131, 0.14);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
    color: var(--color-dark);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
}

.location-bottom-bar span {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-dark);
    font-size: 16px;
    line-height: 1;
}

.location-bottom-bar strong {
    position: relative;
    padding-right: 18px;
    color: var(--color-primary-dark);
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
}

.location-bottom-bar strong::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 22px;
    background: rgba(47, 143, 131, 0.16);
    transform: translateY(-50%);
}

.location-bottom-bar p {
    margin: 0;
    color: var(--color-muted);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    white-space: nowrap;
}

/* ============================================================
   DETAILS / DATES & PRICING
   ============================================================ */
.details-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.25fr 1.05fr;
    gap: 24px;
    align-items: flex-start;
}

.details-card {
    position: relative;
    overflow: hidden;
    padding: 34px 36px;
    border: 1px solid rgba(44, 143, 130, 0.14);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
}

.details-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(44, 143, 130, 0.08), transparent 34%);
    pointer-events: none;
}

.details-card.highlighted {
    border-color: rgba(44, 143, 130, 0.2);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(240, 249, 247, 0.92));
    box-shadow: 0 22px 54px rgba(44, 143, 130, 0.12);
}

.details-card h3 {
    position: relative;
    margin-bottom: 20px;
    color: var(--color-dark);
    font-size: 30px;
    line-height: 1.25;
    letter-spacing: 0.02em;
}

.details-card ul {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.details-card li {
    position: relative;
    padding-left: 28px;
    color: var(--color-text);
    font-size: 18px;
    line-height: 1.6;
}

.details-card li::before {
    content: "";
    position: absolute;
    top: 13px;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--color-primary);
    box-shadow: 0 0 0 5px rgba(44, 143, 130, 0.08);
}

.date-select-list {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.date-select-button {
    width: 100%;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 11px 14px 11px 18px;
    border: 1px solid rgba(44, 143, 130, 0.16);
    border-radius: 17px;
    background: rgba(44, 143, 130, 0.055);
    color: var(--color-dark);
    font-family: inherit;
    font-size: 17px;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
    transition: transform 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.date-select-arrow {
    display: none;
}

.date-select-button::after {
    content: "→";
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--color-white);
    color: var(--color-primary);
    font-size: 15px;
    line-height: 1;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
    transition: transform 0.22s ease, background-color 0.22s ease, color 0.22s ease;
}

.date-select-button:hover {
    transform: translateY(-2px);
    background: rgba(44, 143, 130, 0.1);
    border-color: rgba(44, 143, 130, 0.34);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.09);
}

.date-select-button:hover::after {
    transform: translateX(3px);
}

.date-select-button:focus-visible {
    outline: 3px solid rgba(44, 143, 130, 0.24);
    outline-offset: 3px;
}

.date-select-button.is-selected {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 16px 34px rgba(44, 143, 130, 0.2);
}

.date-select-button.is-selected::after {
    content: "✓";
    background: rgba(255, 255, 255, 0.18);
    color: var(--color-white);
}

.center-action {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

/* ============================================================
   SAFETY / PRICE INCLUDES
   ============================================================ */
.safety-section {
    background: var(--color-soft);
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.safety-grid div {
    padding: 24px;
    border: 1px solid rgba(47, 143, 131, 0.18);
    border-radius: var(--radius-medium);
    background: var(--color-white);
    color: var(--color-dark);
    font-weight: 900;
    text-align: center;
    box-shadow: var(--shadow-card);
}

/* ============================================================
   STEPS
   ============================================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.step-card {
    padding: 26px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-medium);
    background: var(--color-white);
    box-shadow: var(--shadow-card);
}

.step-card span {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: 900;
}

.step-card h3 {
    margin-top: 18px;
    color: var(--color-dark);
    font-size: 21px;
}

.step-card p {
    margin-top: 10px;
    color: var(--color-muted);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
    background: var(--color-white);
}

.faq-list {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

details {
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-small);
    background: var(--color-light);
}

summary {
    padding: 20px 22px;
    color: var(--color-dark);
    font-weight: 900;
    cursor: pointer;
}

details p {
    padding: 0 22px 20px;
    color: var(--color-muted);
}

/* ============================================================
   BOOKING SECTION
   ============================================================ */
.booking-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 14%, rgba(245, 182, 63, 0.12), transparent 12%),
        radial-gradient(circle at 92% 12%, rgba(47, 143, 131, 0.1), transparent 14%),
        linear-gradient(180deg, #fffdf5 0%, #fbfff8 100%);
}

.booking-section::before {
    content: "☼";
    position: absolute;
    left: 10%;
    top: 88px;
    color: rgba(245, 182, 63, 0.68);
    font-size: 58px;
    line-height: 1;
}

.booking-section::after {
    content: "↝";
    position: absolute;
    right: 12%;
    top: 96px;
    color: rgba(47, 143, 131, 0.68);
    font-size: 74px;
    line-height: 1;
    transform: rotate(8deg);
}

.booking-heading {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto 34px;
    text-align: center;
}

.booking-heading .section-label {
    margin-bottom: 10px;
    color: var(--color-primary-dark);
}

.booking-heading h2 {
    color: var(--color-dark);
    font-size: clamp(36px, 4.5vw, 56px);
    line-height: 1.06;
    letter-spacing: -0.045em;
}

.booking-heading p {
    max-width: 760px;
    margin: 14px auto 0;
    color: var(--color-muted);
    font-size: 18px;
    line-height: 1.55;
    font-weight: 700;
}

.booking-grid {
    position: relative;
    z-index: 1;
    display: grid !important;
    grid-template-columns: 0.9fr 1.12fr 0.98fr;
    gap: 22px;
    align-items: start !important;
}

.booking-card,
.booking-dates-card,
.booking-price-card,
.booking-safety-card {
    height: auto !important;
    min-height: 0 !important;
    display: block !important;
}

.booking-card {
    position: relative;
    overflow: hidden;
    padding: 24px !important;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
}

.booking-card-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px !important;
}

.booking-card-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(47, 143, 131, 0.1);
    color: var(--color-primary-dark);
}

.booking-card-icon.filled {
    background: var(--color-primary);
    color: var(--color-white);
}

.booking-card-icon svg {
    width: 26px;
    height: 26px;
}

.booking-card-title h3 {
    color: var(--color-dark);
    font-size: 26px !important;
    line-height: 1.12;
    letter-spacing: -0.025em;
}

.booking-section .date-select-list {
    display: grid !important;
    gap: 9px !important;
}

.booking-section .date-select-button {
    width: 100%;
    min-height: 48px !important;
    display: grid !important;
    grid-template-columns: 32px 1fr 30px;
    align-items: center;
    gap: 10px;
    padding: 9px 11px !important;
    border-radius: 13px;
    background: rgba(248, 252, 246, 0.95);
    border: 1px solid rgba(47, 143, 131, 0.12);
    color: var(--color-dark);
    font-family: inherit;
    font-size: 15px;
    font-weight: 900;
    text-align: left;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
    transition: background-color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.booking-section .date-select-button::before {
    content: "▣";
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: rgba(47, 143, 131, 0.1);
    color: var(--color-primary-dark);
    font-size: 15px;
}

.booking-section .date-select-button::after {
    content: "→";
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    border-radius: 999px;
    background: rgba(47, 143, 131, 0.08);
    color: var(--color-primary-dark);
    font-size: 18px;
    line-height: 1;
    transition: transform 0.22s ease, background-color 0.22s ease;
}

.booking-section .date-select-button:hover {
    transform: translateY(-1px);
    background: var(--color-white);
    border-color: rgba(47, 143, 131, 0.28);
}

.booking-section .date-select-button:hover::after {
    transform: translateX(3px);
    background: rgba(47, 143, 131, 0.14);
}

.booking-section .date-select-button.is-selected {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.booking-section .date-select-button.is-selected::before,
.booking-section .date-select-button.is-selected::after {
    background: rgba(255, 255, 255, 0.18);
    color: var(--color-white);
}

.booking-section .date-select-arrow {
    display: none !important;
}

.booking-info-note {
    display: grid;
    grid-template-columns: 34px 1fr;
    align-items: center;
    gap: 12px;
    margin-top: 16px !important;
    padding: 13px;
    border-radius: 13px;
    background: rgba(47, 143, 131, 0.08);
    border: 1px solid rgba(47, 143, 131, 0.1);
}

.booking-info-note span {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 2px solid var(--color-primary-dark);
    color: var(--color-primary-dark);
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
}

.booking-info-note p {
    margin: 0;
    color: var(--color-dark);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
}

.booking-price-list {
    display: grid;
    gap: 0;
    margin-bottom: 15px !important;
}

.booking-price-list>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 8px 0 !important;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.booking-price-list span {
    display: grid;
    gap: 2px;
}

.booking-price-list strong {
    color: var(--color-dark);
    font-size: 15px !important;
    font-weight: 900;
}

.booking-price-list>div>strong {
    color: var(--color-primary-dark);
    white-space: nowrap;
}

.booking-price-list small {
    color: var(--color-muted);
    font-size: 11px !important;
    font-weight: 800;
}

.booking-discounts h4 {
    margin: 0 0 6px !important;
    color: var(--color-primary-dark);
    font-size: 15px !important;
    font-weight: 900;
}

.booking-discount-item {
    display: grid;
    grid-template-columns: 34px 1fr !important;
    align-items: center;
    gap: 10px !important;
    padding: 8px 0 !important;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.booking-small-icon {
    width: 32px !important;
    height: 32px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(47, 143, 131, 0.1);
    color: var(--color-primary-dark);
    font-size: 15px !important;
}

.booking-discount-item strong {
    display: block;
    color: var(--color-dark);
    font-size: 14px !important;
    font-weight: 900;
    line-height: 1.22 !important;
}

.booking-discount-item p {
    margin: 2px 0 0 !important;
    color: var(--color-muted);
    font-size: 12px !important;
    font-weight: 700;
    line-height: 1.25 !important;
}

.booking-warning {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px !important;
    padding: 9px 11px !important;
    border-radius: 12px;
    background: rgba(245, 182, 63, 0.17);
    color: var(--color-dark);
}

.booking-warning span {
    width: 22px !important;
    height: 22px !important;
    flex: 0 0 22px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 2px solid #f5b63f;
    color: #b7791f;
    font-weight: 900;
}

.booking-warning strong {
    font-size: 13px !important;
    font-weight: 900;
}

.booking-reservation-note {
    display: grid;
    grid-template-columns: 30px 1fr !important;
    align-items: center;
    gap: 10px !important;
    margin-top: 10px !important;
    padding: 10px 11px !important;
    border-radius: 13px;
    background: rgba(47, 143, 131, 0.08);
    border: 1px solid rgba(47, 143, 131, 0.12);
}

.booking-reservation-note>span {
    width: 28px !important;
    height: 28px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: 900;
}

.booking-reservation-note strong {
    display: block;
    color: var(--color-primary-dark);
    font-size: 13px !important;
    font-weight: 900;
}

.booking-reservation-note p {
    margin: 2px 0 0;
    color: var(--color-muted);
    font-size: 11px !important;
    font-weight: 700;
    line-height: 1.25 !important;
}

.booking-check-list {
    display: grid !important;
    gap: 14px !important;
    margin-top: 20px !important;
    align-content: start !important;
}

.booking-check-list li {
    position: relative;
    padding-left: 32px;
    color: var(--color-dark);
    font-size: 15px !important;
    font-weight: 800;
    line-height: 1.35 !important;
}

.booking-check-list li::before {
    content: "✓";
    position: absolute;
    top: -1px;
    left: 0;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(47, 143, 131, 0.12);
    color: var(--color-primary-dark);
    font-size: 13px;
    font-weight: 900;
}

.booking-safety-illustration {
    display: none !important;
}

.booking-action {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    gap: 10px;
    margin-top: 26px !important;
}

.booking-main-btn {
    min-width: 340px;
    min-height: 54px;
    padding: 15px 28px;
    border-radius: 999px;
    box-shadow: 0 18px 40px rgba(47, 143, 131, 0.22);
}

.booking-action p {
    margin: 0;
    color: var(--color-muted);
    font-size: 14px;
    font-weight: 800;
}

/* ============================================================
   INCLUDED SECTION
   ============================================================ */
.included-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 18%, rgba(245, 182, 63, 0.12), transparent 12%),
        radial-gradient(circle at 92% 16%, rgba(47, 143, 131, 0.1), transparent 14%),
        linear-gradient(180deg, #fffdf5 0%, #fbfff8 100%);
}

.included-heading {
    max-width: 860px;
    margin: 0 auto 34px;
    text-align: center;
}

.included-heading .section-label {
    margin-bottom: 10px;
    color: var(--color-primary-dark);
}

.included-heading h2 {
    color: var(--color-dark);
    font-size: clamp(38px, 4.8vw, 58px);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.included-heading p {
    max-width: 760px;
    margin: 14px auto 0;
    color: var(--color-muted);
    font-size: 18px;
    line-height: 1.55;
    font-weight: 700;
}

.included-heading strong {
    display: block;
    margin-top: 10px;
    color: var(--color-primary-dark);
    font-size: 16px;
    font-weight: 900;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.included-card {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 18px;
    align-items: start;
    padding: 26px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07);
}

.included-icon {
    width: 66px;
    height: 66px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(47, 143, 131, 0.1);
    color: var(--color-primary-dark);
}

.included-icon svg {
    width: 36px;
    height: 36px;
}

.included-card h3 {
    margin: 0 0 10px;
    color: var(--color-dark);
    font-size: 20px;
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.included-card p {
    margin: 0;
    color: var(--color-muted);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.55;
}

.included-note {
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    padding: 18px 24px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(47, 143, 131, 0.14);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
}

.included-note-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
}

.included-note p {
    margin: 0;
    color: var(--color-dark);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.45;
}

/* ============================================================
   SIGNUP SECTION
   ============================================================ */
.signup-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 14%, rgba(245, 182, 63, 0.1), transparent 12%),
        radial-gradient(circle at 90% 12%, rgba(47, 143, 131, 0.08), transparent 14%),
        linear-gradient(180deg, #fffdf5 0%, #fbfff8 100%);
}

.signup-heading {
    max-width: 900px;
    margin: 0 auto 34px;
    text-align: center;
}

.signup-heading .section-label {
    margin-bottom: 10px;
    color: var(--color-primary-dark);
}

.signup-heading h2 {
    color: var(--color-dark);
    font-size: clamp(38px, 4.8vw, 58px);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.signup-heading p {
    max-width: 760px;
    margin: 14px auto 0;
    color: var(--color-muted);
    font-size: 18px;
    line-height: 1.55;
    font-weight: 700;
}

.signup-heading p strong {
    color: var(--color-primary-dark);
    font-weight: 900;
}

.signup-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.signup-step-card {
    position: relative;
    min-height: 240px;
    padding: 28px 24px 26px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.07);
}

.signup-step-number {
    position: absolute;
    top: 24px;
    left: 24px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 10px 22px rgba(47, 143, 131, 0.2);
}

.signup-step-icon {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(47, 143, 131, 0.1);
    color: var(--color-primary-dark);
}

.signup-step-icon svg {
    width: 36px;
    height: 36px;
}

.signup-step-card h3 {
    margin: 98px 0 14px;
    color: var(--color-dark);
    font-size: 21px;
    font-weight: 900;
    line-height: 1.22;
    letter-spacing: -0.02em;
}

.signup-step-card p {
    margin: 0;
    color: var(--color-muted);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
}

.signup-step-card p strong {
    color: var(--color-primary-dark);
    font-weight: 900;
}

/* ============================================================
   REGISTRATION
   ============================================================ */
.registration-section {
    background: linear-gradient(180deg, rgba(240, 249, 247, 0.72), rgba(255, 255, 255, 1));
}

.registration-layout {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.registration-content {
    position: relative;
    overflow: hidden;
    padding: 44px 48px;
    border-radius: 30px;
    background: var(--color-dark);
    color: var(--color-white);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
}

.registration-content::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(44, 143, 130, 0.28), transparent 34%),
        radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.08), transparent 30%);
    pointer-events: none;
}

.registration-content .section-label,
.registration-content h2,
.registration-content p,
.registration-content .contact-box {
    position: relative;
}

.registration-content .section-label {
    color: #b6f3ec;
}

.registration-content h2 {
    max-width: 760px;
    margin-bottom: 18px;
    color: var(--color-white);
}

.registration-content p {
    max-width: 780px;
    color: rgba(255, 255, 255, 0.82);
}

.contact-box {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.contact-box a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-white);
    font-size: 15px;
    font-weight: 800;
}

.registration-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 24px;
    padding: 38px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 30px;
    background: var(--color-white);
    color: var(--color-text);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.form-group {
    display: grid;
    gap: 8px;
}

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

.form-group-full {
    grid-column: 1 / -1;
}

label {
    color: var(--color-dark);
    font-size: 14px;
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-small);
    background: rgba(248, 250, 252, 0.9);
    color: var(--color-dark);
    font: inherit;
    outline: none;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--color-primary);
    background: var(--color-white);
}

textarea {
    resize: vertical;
}

.form-help {
    margin: -4px 0 12px;
    color: var(--color-muted);
    font-size: 14px;
    font-weight: 600;
}

.date-options {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.date-option {
    min-height: 64px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 10px;
    padding: 14px 15px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-small);
    background: var(--color-light);
    color: var(--color-dark);
    font-weight: 800;
    cursor: pointer;
    transition: 0.2s ease;
}

.date-option:hover {
    border-color: var(--color-primary);
    background: var(--color-white);
}

.date-option input {
    width: auto;
    accent-color: var(--color-primary);
}

.checkbox {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 10px;
    color: var(--color-muted);
    font-weight: 600;
}

.checkbox input {
    width: auto;
    margin-top: 5px;
}

.registration-form .checkbox {
    grid-column: 1 / 2;
    align-self: center;
    margin: 0;
}

.registration-form .form-btn {
    grid-column: 2 / 3;
    justify-self: end;
    align-self: center;
    width: auto;
    min-width: 220px;
    padding-left: 32px;
    padding-right: 32px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    padding: 34px 0;
    background: #111827;
    color: var(--color-white);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer p {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.68);
}

.footer a {
    display: block;
    color: rgba(255, 255, 255, 0.86);
    font-weight: 700;
    text-align: right;
}

/* ============================================================
   FLOATING PHONE
   ============================================================ */
.floating-phone {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 30;
    display: none;
    padding: 13px 18px;
    border-radius: 999px;
    background: var(--color-accent);
    color: var(--color-dark);
    font-weight: 900;
    box-shadow: 0 12px 25px rgba(15, 23, 42, 0.18);
}

/* ============================================================
   RESPONSIVE — ≤ 1100px
   ============================================================ */
@media (max-width: 1100px) {
    .details-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .details-card {
        padding: 30px;
    }

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

    .booking-card {
        padding: 22px !important;
    }

    .gallery-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .gallery-copy {
        min-height: auto;
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
    }

    .gallery-copy h2 {
        white-space: normal;
    }

    .gallery-copy p {
        max-width: 620px;
        margin-left: auto;
        margin-right: auto;
    }

    .gallery-copy::before,
    .gallery-copy::after {
        display: none;
    }

    .gallery-section .gallery-slide {
        flex: 0 0 calc((100% - 36px) / 3);
    }

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

    .signup-steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .signup-step-card {
        min-height: 230px;
    }
}

/* ============================================================
   RESPONSIVE — ≤ 1024px
   ============================================================ */
@media (max-width: 1024px) {

    .hero-grid,
    .info-grid,
    .organizer-grid {
        grid-template-columns: 1fr;
    }

    .hero-image img,
    .image-card img {
        min-height: auto;
        height: 420px;
    }

    .organizer-image {
        height: 450px;
    }

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

    .gallery-slide {
        flex: 0 0 calc((100% - 24px) / 2);
    }

    .polaroid-photo img {
        height: 240px;
    }

    .hero-cover {
        min-height: auto;
        padding: 72px 0 64px;
        background-position: 62% center;
    }

    .hero-cover .hero-content {
        max-width: 680px;
    }

    .hero-cover h1 {
        font-size: clamp(42px, 7vw, 64px);
    }

    .hero-cover .hero-info {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .schedule-timeline {
        padding: 28px 22px 24px;
    }

    .schedule-timeline-track {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .schedule-timeline-track::before {
        display: none;
    }

    .schedule-timeline-item:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        width: 100%;
        justify-self: center;
    }

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

    .location-image {
        min-height: 420px;
    }

    .location-image img {
        min-height: 420px;
    }

    .location-bottom-bar {
        margin-top: 0;
    }
}

/* ============================================================
   RESPONSIVE — ≤ 992px
   ============================================================ */
@media (max-width: 992px) {
    .registration-content {
        padding: 38px 34px;
    }

    .registration-form {
        grid-template-columns: 1fr;
        padding: 32px;
    }

    .registration-form .checkbox,
    .registration-form .form-btn {
        grid-column: 1 / -1;
    }

    .registration-form .form-btn {
        justify-self: end;
        width: auto;
        min-width: 190px;
    }

    .date-options {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .organizer-section .organizer-image {
        min-height: 360px;
    }

    .organizer-section .organizer-image img {
        min-height: 360px;
        object-fit: cover;
        object-position: center;
    }
}

/* ============================================================
   RESPONSIVE — ≤ 900px
   ============================================================ */
@media (max-width: 900px) {
    .header-inner {
        gap: 18px;
    }

    .header-actions {
        gap: 12px;
    }

    .desktop-language-switch {
        padding: 5px;
    }

    .desktop-language-switch a {
        min-width: 31px;
        height: 28px;
        font-size: 13px;
    }
}

/* ============================================================
   RESPONSIVE — ≤ 768px
   ============================================================ */
@media (max-width: 768px) {

    /* Header */
    .site-header {
        padding: 14px 0;
    }

    .header-inner {
        min-height: auto;
        display: grid;
        grid-template-columns: auto auto 1fr;
        align-items: center;
        gap: 18px;
    }

    .brand {
        grid-column: 1;
        grid-row: 1;
        min-width: 0;
    }

    .brand span:not(.brand-mark) {
        display: none;
    }

    .header-actions {
        display: contents;
    }

    .desktop-language-switch,
    .header-phone {
        display: none;
    }

    .mobile-language-dropdown {
        position: relative;
        grid-column: 2;
        grid-row: 1;
        display: inline-flex;
        justify-self: start;
        margin-left: 8px;
    }

    .mobile-language-toggle {
        min-height: 38px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 9px 12px;
        border: 1px solid rgba(44, 143, 130, 0.14);
        border-radius: 999px;
        background: rgba(44, 143, 130, 0.06);
        color: var(--color-dark);
        font-family: inherit;
        font-size: 13px;
        font-weight: 800;
        line-height: 1;
        cursor: pointer;
    }

    .mobile-language-arrow {
        color: var(--color-primary);
        font-size: 12px;
        line-height: 1;
    }

    .mobile-language-menu {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        z-index: 20;
        min-width: 76px;
        display: none;
        flex-direction: column;
        padding: 7px;
        border: 1px solid rgba(44, 143, 130, 0.14);
        border-radius: 16px;
        background: var(--color-white);
        box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
    }

    .mobile-language-dropdown.is-open .mobile-language-menu {
        display: flex;
    }

    .mobile-language-menu a {
        min-height: 34px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px 12px;
        border-radius: 12px;
        color: var(--color-dark);
        font-size: 13px;
        font-weight: 800;
    }

    .mobile-language-menu a:hover {
        background: rgba(44, 143, 130, 0.08);
        color: var(--color-primary);
    }

    .header-actions .btn-small {
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
        min-height: 44px;
        padding: 11px 18px;
        border-radius: 999px;
        font-size: 14px;
        white-space: nowrap;
    }

    /* Hero */
    .hero {
        padding: 44px 0 42px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero-text {
        font-size: 17px;
    }

    .hero-info,
    .trust-grid,
    .program-grid,
    .schedule-grid,
    .safety-grid,
    .steps-grid,
    .intro-benefits,
    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-image img,
    .image-card img {
        height: 360px;
    }

    /* Sections */
    .section {
        padding: 58px 0;
    }

    .section-heading {
        margin-bottom: 30px;
    }

    .program-content,
    .info-card,
    .registration-form {
        padding: 24px;
    }

    /* Organizer */
    .organizer-image {
        height: 360px;
    }

    .organizer-image img {
        object-position: center top;
    }

    .organizer-section .organizer-image {
        height: 360px !important;
        min-height: 0 !important;
        overflow: hidden;
        border-radius: 24px;
    }

    .organizer-section .organizer-image img {
        width: 100%;
        height: 100% !important;
        min-height: 0 !important;
        display: block;
        object-fit: cover;
        object-position: center top;
    }

    /* Gallery */
    .gallery-section {
        padding: 58px 0;
    }

    .gallery-layout {
        gap: 22px;
    }

    .gallery-copy h2 {
        font-size: 34px;
    }

    .gallery-copy p {
        font-size: 16px;
    }

    .gallery-slider {
        margin-top: 42px;
    }

    .gallery-slider-viewport {
        padding: 20px 0 30px;
    }

    .gallery-section .gallery-slider-viewport {
        padding: 24px 0 32px;
    }

    .gallery-slider-track {
        gap: 18px;
    }

    .gallery-slide,
    .gallery-section .gallery-slide {
        flex: 0 0 100%;
    }

    .polaroid-photo,
    .gallery-slide:nth-child(2n) .polaroid-photo,
    .gallery-slide:nth-child(3n) .polaroid-photo,
    .gallery-slide:nth-child(4n) .polaroid-photo,
    .gallery-section .polaroid-photo {
        transform: rotate(0deg);
    }

    .polaroid-photo img {
        height: 230px;
    }

    .gallery-section .polaroid-photo img {
        height: 230px;
    }

    .gallery-arrow {
        width: 38px;
        height: 38px;
        font-size: 30px;
    }

    .gallery-arrow-prev {
        left: 8px;
    }

    .gallery-arrow-next {
        right: 8px;
    }

    .gallery-section .gallery-arrow {
        width: 38px;
        height: 38px;
        font-size: 29px;
    }

    .gallery-section .gallery-arrow-prev {
        left: 8px;
    }

    .gallery-section .gallery-arrow-next {
        right: 8px;
    }

    /* Details / dates */
    .details-card {
        padding: 26px 22px;
        border-radius: 22px;
    }

    .details-card h3 {
        margin-bottom: 16px;
        font-size: 26px;
    }

    .details-card li {
        font-size: 16px;
    }

    .date-select-button {
        min-height: 52px;
        padding: 11px 13px 11px 16px;
        border-radius: 15px;
        font-size: 16px;
    }

    .date-select-button::after {
        width: 26px;
        height: 26px;
        flex-basis: 26px;
        font-size: 14px;
    }

    /* Footer */
    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer a {
        text-align: left;
    }

    /* Floating phone */
    .floating-phone {
        display: inline-flex;
    }

    /* Hero cover */
    .hero-cover {
        padding: 58px 0 54px;
        background:
            linear-gradient(180deg,
                rgba(3, 24, 20, 0.94) 0%,
                rgba(3, 24, 20, 0.84) 46%,
                rgba(3, 24, 20, 0.58) 100%),
            url("../img/hero.png") center / cover;
    }

    .hero-cover .eyebrow {
        min-height: 34px;
        margin-bottom: 24px;
        padding: 9px 16px;
        font-size: 11px;
    }

    .hero-cover h1 {
        font-size: clamp(38px, 12vw, 54px);
        letter-spacing: -0.045em;
    }

    .hero-cover .hero-text {
        margin-top: 22px;
        font-size: 17px;
        line-height: 1.65;
    }

    .hero-cover .hero-tags {
        gap: 10px;
        margin: 26px 0 28px;
    }

    .hero-cover .hero-tags span {
        min-height: 38px;
        padding: 9px 14px;
        font-size: 13px;
    }

    .hero-cover .hero-actions {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 34px;
    }

    .hero-cover .hero-primary-btn,
    .hero-cover .hero-whatsapp-btn {
        width: 100%;
        min-width: 0;
        min-height: 54px;
        font-size: 15px;
    }

    .hero-cover .hero-info {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hero-cover .hero-info div {
        min-height: auto;
        padding: 18px 20px;
    }

    /* Intro */
    .intro-shift-list {
        max-width: 100%;
        margin-top: 28px;
        padding: 22px 18px;
        border-radius: 22px;
    }

    .intro-shift-list li {
        grid-template-columns: 34px 1fr;
        gap: 12px;
    }

    .intro-shift-list li span {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }

    .intro-shift-list li strong {
        font-size: 16px;
    }

    .intro-benefit-icon {
        width: 58px;
        height: 58px;
        margin-bottom: 18px;
    }

    .intro-benefit-icon svg {
        width: 30px;
        height: 30px;
    }

    /* Schedule timeline */
    .schedule-timeline {
        padding: 26px 18px 22px;
        border-radius: 22px;
    }

    .schedule-timeline-header span {
        font-size: 24px;
    }

    .schedule-timeline-track {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .schedule-timeline-item,
    .schedule-timeline-item:last-child {
        max-width: none;
        width: 100%;
        grid-column: auto;
        grid-template-columns: 34px 1fr;
        align-items: center;
        justify-items: stretch;
        gap: 12px;
    }

    .schedule-step-number {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }

    .schedule-step-card {
        min-height: auto;
        padding: 15px;
    }

    .schedule-step-icon {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }

    .schedule-step-card strong {
        font-size: 15px;
    }

    .schedule-timeline-note {
        width: auto;
        padding: 0 24px;
        font-size: 15px;
        line-height: 1.45;
    }

    /* Location */
    .location-card {
        padding: 32px 24px 26px;
        border-radius: 24px;
    }

    .location-card h2 {
        font-size: 34px;
        white-space: normal;
    }

    .location-card>p {
        font-size: 16px;
    }

    .location-list li {
        grid-template-columns: 40px 1fr;
        gap: 12px;
        padding: 12px 0;
    }

    .location-icon {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .location-list strong {
        font-size: 16px;
    }

    .location-list p {
        font-size: 13px;
    }

    .location-image {
        min-height: 320px;
        border-radius: 24px;
    }

    .location-image img {
        min-height: 320px;
    }

    .location-bottom-bar {
        width: 100%;
        flex-wrap: wrap;
        gap: 8px 12px;
        min-height: auto;
        padding: 14px 16px;
        white-space: normal;
        overflow: visible;
    }

    .location-bottom-bar strong {
        padding-right: 0;
        white-space: normal;
        line-height: 1.3;
    }

    .location-bottom-bar strong::after {
        display: none;
    }

    .location-bottom-bar p {
        width: 100%;
        line-height: 1.4;
        white-space: normal;
    }

    /* Booking */
    .booking-section::before,
    .booking-section::after {
        display: none;
    }

    .booking-heading {
        margin-bottom: 28px;
    }

    .booking-heading h2 {
        font-size: 34px;
    }

    .booking-heading p {
        font-size: 16px;
    }

    .booking-card {
        padding: 22px 18px !important;
        border-radius: 22px;
    }

    .booking-card-title h3 {
        font-size: 24px !important;
    }

    .booking-card-icon {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    .booking-card-icon svg {
        width: 24px;
        height: 24px;
    }

    .booking-price-list>div {
        align-items: flex-start;
    }

    .booking-main-btn {
        width: 100%;
        min-width: 0;
    }

    /* Included */
    .included-heading {
        margin-bottom: 28px;
    }

    .included-heading h2 {
        font-size: 36px;
    }

    .included-heading p {
        font-size: 16px;
    }

    .included-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .included-card {
        grid-template-columns: 58px 1fr;
        gap: 14px;
        padding: 22px 18px;
        border-radius: 20px;
    }

    .included-icon {
        width: 54px;
        height: 54px;
    }

    .included-icon svg {
        width: 30px;
        height: 30px;
    }

    .included-card h3 {
        font-size: 18px;
    }

    .included-card p {
        font-size: 14px;
    }

    .included-note {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        padding: 18px;
    }

    /* Signup */
    .signup-heading {
        margin-bottom: 28px;
    }

    .signup-heading h2 {
        font-size: 36px;
    }

    .signup-heading p {
        font-size: 16px;
    }

    .signup-steps-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .signup-step-card {
        min-height: auto;
        padding: 26px 22px 24px;
        border-radius: 22px;
    }

    .signup-step-number {
        top: 22px;
        left: 22px;
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .signup-step-icon {
        top: 20px;
        right: 22px;
        width: 62px;
        height: 62px;
    }

    .signup-step-icon svg {
        width: 32px;
        height: 32px;
    }

    .signup-step-card h3 {
        margin-top: 86px;
        font-size: 20px;
    }
}

/* ============================================================
   RESPONSIVE — ≤ 640px
   ============================================================ */
@media (max-width: 640px) {
    .registration-layout {
        gap: 22px;
    }

    .registration-content {
        padding: 32px 24px;
        border-radius: 24px;
    }

    .contact-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-box a {
        width: 100%;
        justify-content: center;
        border-radius: 18px;
    }

    .registration-form {
        padding: 26px 20px;
        border-radius: 24px;
    }

    .date-options {
        grid-template-columns: 1fr;
    }

    .registration-form .form-btn {
        width: 100%;
        justify-self: stretch;
    }

    .organizer-section .organizer-image {
        min-height: 300px;
    }

    .organizer-section .organizer-image img {
        min-height: 300px;
    }
}

/* ============================================================
   RESPONSIVE — ≤ 480px
   ============================================================ */
@media (max-width: 480px) {
    .container {
        width: min(100% - 24px, var(--container));
    }

    .hero h1 {
        font-size: 34px;
    }

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

    .btn {
        width: 100%;
    }

    .header-actions .btn {
        width: auto;
    }

    .hero-image img,
    .image-card img {
        height: 300px;
    }

    .hero-cover {
        padding: 46px 0 44px;
    }

    .hero-cover-inner {
        width: min(100% - 24px, var(--container));
    }

    .hero-cover h1 {
        font-size: 38px;
    }

    .hero-cover .hero-text {
        font-size: 16px;
    }

    .organizer-section .organizer-image {
        height: 330px !important;
    }

    .organizer-section .organizer-image img {
        object-position: center top;
    }
}

/* ============================================================
   RESPONSIVE — ≤ 420px
   ============================================================ */
@media (max-width: 420px) {
    .header-inner {
        gap: 10px;
    }

    .mobile-language-dropdown {
        margin-left: 6px;
    }

    .mobile-language-toggle {
        min-height: 36px;
        padding: 8px 10px;
        font-size: 12px;
    }

    .header-actions .btn-small {
        min-height: 42px;
        padding: 10px 15px;
        font-size: 13px;
    }
}

/* ============================================================
   RESPONSIVE — ≥ 769px (min-width)
   ============================================================ */
@media (min-width: 769px) {
    .location-card h2 {
        white-space: nowrap;
    }
}

/* ============================================================
   RESPONSIVE — ≥ 993px (min-width)
   ============================================================ */
@media (min-width: 993px) {
    .organizer-grid {
        align-items: stretch;
    }

    .organizer-section .organizer-image {
        height: 100%;
        min-height: 420px;
    }

    .organizer-section .organizer-image img {
        width: 100%;
        height: 100%;
        min-height: 420px;
        display: block;
        object-fit: cover;
        object-position: center;
    }

    .organizer-content {
        align-self: center;
    }
}

/* ============================================================
   RESPONSIVE — ≥ 1101px (min-width)
   ============================================================ */
@media (min-width: 1101px) {
    .hero-cover .hero-tags {
        flex-wrap: nowrap;
        width: max-content;
        max-width: calc(100vw - 110px);
    }

    .hero-cover .hero-tags span {
        white-space: nowrap;
        padding-left: 17px;
        padding-right: 17px;
    }

    .booking-grid {
        align-items: start !important;
    }

    .booking-dates-card,
    .booking-safety-card {
        min-height: 455px !important;
    }

    .booking-dates-card {
        display: flex !important;
        flex-direction: column !important;
    }

    .booking-dates-card .booking-info-note {
        margin-top: auto !important;
    }

    .booking-safety-card {
        display: flex !important;
        flex-direction: column !important;
    }

    .booking-safety-card .booking-check-list {
        flex: 1 !important;
        display: grid !important;
        align-content: space-around !important;
        gap: 16px !important;
    }

    .booking-price-card {
        height: auto !important;
        min-height: 0 !important;
    }
}

.program-card {
    overflow: hidden;
}

.program-card>img.program-image-focus-left {
    width: 128% !important;
    max-width: none !important;
    height: 220px !important;
    display: block !important;
    object-fit: cover !important;
    object-position: left center !important;
    transform: translateX(0) !important;
}

.program-grid .program-card:first-child>img {
    object-position: center 42% !important;
}

.gallery-section {
    position: relative;
    overflow: hidden;
    padding: 72px 0;
    background:
        radial-gradient(circle at 12% 82%, rgba(245, 182, 63, 0.12), transparent 15%),
        radial-gradient(circle at 92% 18%, rgba(47, 143, 131, 0.09), transparent 18%),
        linear-gradient(180deg, #fffdf3 0%, #fbfff7 100%);
}

.gallery-layout {
    display: block;
}

.gallery-copy {
    max-width: 760px;
    min-height: auto;
    margin: 0 auto 34px;
    text-align: center;
}

.gallery-copy .section-label {
    justify-content: center;
    margin-bottom: 12px;
    color: var(--color-primary-dark, #1f6f66);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.18em;
}

.gallery-copy h2 {
    color: var(--color-dark, #1f2933);
    font-size: clamp(34px, 4.2vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.04em;
    white-space: normal;
}

.gallery-copy p {
    max-width: 620px;
    margin: 16px auto 0;
    color: var(--color-muted, #64748b);
    font-size: 17px;
    line-height: 1.6;
}

.gallery-copy::before,
.gallery-copy::after {
    display: none;
}

.gallery-slider {
    position: relative;
    min-width: 0;
    margin-top: 0;
}

.gallery-slider-viewport {
    overflow: hidden;
    padding: 28px 8px 38px;
}

.gallery-slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.45s ease;
}

.gallery-slide {
    flex: 0 0 calc((100% - 48px) / 3);
    padding: 0 2px;
}

.gallery-section .polaroid-photo {
    position: relative;
    padding: 12px 12px 34px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.13);
    transform: rotate(-2deg);
}

.gallery-slide:nth-child(2n) .polaroid-photo {
    transform: rotate(2deg);
}

.gallery-slide:nth-child(3n) .polaroid-photo {
    transform: rotate(-1.5deg);
}

.gallery-slide:nth-child(4n) .polaroid-photo {
    transform: rotate(1.5deg);
}

.gallery-section .polaroid-photo img {
    width: 100%;
    height: 220px;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 7px;
}

.gallery-section .gallery-arrow-prev {
    left: -22px;
}

.gallery-section .gallery-arrow-next {
    right: -22px;
}

@media (max-width: 1024px) {
    .gallery-slide {
        flex: 0 0 calc((100% - 24px) / 2);
    }

    .gallery-section .polaroid-photo img {
        height: 240px;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 58px 0;
    }

    .gallery-copy {
        margin-bottom: 26px;
    }

    .gallery-copy h2 {
        font-size: 34px;
    }

    .gallery-copy p {
        font-size: 16px;
    }

    .gallery-slider-viewport {
        padding: 24px 0 32px;
    }

    .gallery-slide {
        flex: 0 0 100%;
    }

    .gallery-section .polaroid-photo,
    .gallery-slide:nth-child(2n) .polaroid-photo,
    .gallery-slide:nth-child(3n) .polaroid-photo,
    .gallery-slide:nth-child(4n) .polaroid-photo {
        transform: rotate(0deg);
    }

    .gallery-section .polaroid-photo img {
        height: 230px;
    }

    .gallery-section .gallery-arrow-prev {
        left: 8px;
    }

    .gallery-section .gallery-arrow-next {
        right: 8px;
    }
}

.booking-section .date-select-button {
    grid-template-columns: 1fr 30px !important;
    padding-left: 20px !important;
}

.booking-section .date-select-button::before {
    display: none !important;
    content: none !important;
}

.signup-step-number {
    display: none !important;
}

.signup-steps-grid {
    position: relative;
    overflow: visible;
}

.signup-step-card {
    position: relative;
    overflow: visible;
    min-height: 260px;
    padding: 34px 26px 30px !important;
    text-align: left;
}

.signup-step-icon {
    position: static !important;
    width: 76px;
    height: 76px;
    margin: 0 0 28px !important;
}

.signup-step-icon svg {
    width: 38px;
    height: 38px;
}

.signup-step-card h3 {
    margin: 0 0 14px !important;
}

.signup-step-card:not(:last-child)::after {
    content: "→";
    position: absolute;
    top: 50%;
    right: -34px;
    z-index: 3;
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--color-primary, #2f8f83);
    color: var(--color-white, #ffffff);
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 14px 30px rgba(47, 143, 131, 0.22);
    transform: translateY(-50%);
}

@media (max-width: 1100px) {
    .signup-step-card:not(:last-child)::after {
        display: none;
    }

    .signup-step-card {
        min-height: 240px;
    }
}

@media (max-width: 768px) {
    .signup-step-card {
        min-height: auto;
        padding: 28px 22px 26px !important;
    }

    .signup-step-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 22px !important;
    }

    .signup-step-icon svg {
        width: 32px;
        height: 32px;
    }

    .signup-step-card:not(:last-child)::after {
        content: "↓";
        top: auto;
        right: 50%;
        bottom: -28px;
        display: inline-flex;
        width: 40px;
        height: 40px;
        font-size: 21px;
        transform: translateX(50%);
    }

    .signup-steps-grid {
        gap: 34px;
    }
}

.signup-steps-grid {
    position: relative;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    padding-top: 58px;
}

.signup-steps-grid::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 8%;
    right: 8%;
    border-top: 3px dotted rgba(47, 143, 131, 0.28);
}

.signup-step-card {
    min-height: 215px !important;
    padding: 26px 22px 24px !important;
    border-radius: 22px;
}

.signup-step-card:not(:last-child)::after {
    display: none !important;
}

.signup-step-number {
    position: absolute;
    top: -58px;
    left: 50%;
    z-index: 2;
    width: 42px;
    height: 42px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--color-primary, #2f8f83);
    color: var(--color-white, #ffffff);
    font-size: 17px;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 10px 24px rgba(47, 143, 131, 0.2);
    transform: translateX(-50%);
}

.signup-step-card:nth-child(1) .signup-step-number {
    background: #6aa65c;
}

.signup-step-card:nth-child(2) .signup-step-number {
    background: #6fa8c9;
}

.signup-step-card:nth-child(3) .signup-step-number {
    background: #f5b63f;
}

.signup-step-card:nth-child(4) .signup-step-number {
    background: #ef7d63;
}

.signup-step-icon {
    position: static !important;
    width: 64px;
    height: 64px;
    margin: 0 auto 22px !important;
}

.signup-step-icon svg {
    width: 32px;
    height: 32px;
}

.signup-step-card h3 {
    margin: 0 0 12px !important;
    font-size: 20px;
    text-align: center;
}

.signup-step-card p {
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}

@media (max-width: 1100px) {
    .signup-steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding-top: 0;
        gap: 18px;
    }

    .signup-steps-grid::before {
        display: none;
    }

    .signup-step-number {
        position: static;
        width: 38px;
        height: 38px;
        margin: 0 auto 16px;
        transform: none;
    }

    .signup-step-icon {
        margin-bottom: 18px !important;
    }
}

@media (max-width: 768px) {
    .signup-steps-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .signup-step-card {
        min-height: auto !important;
        padding: 24px 20px 22px !important;
    }

    .signup-step-number {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }

    .signup-step-icon {
        width: 58px;
        height: 58px;
    }

    .signup-step-icon svg {
        width: 30px;
        height: 30px;
    }

    .signup-step-card h3 {
        font-size: 20px;
    }
}

.booking-section::before,
.booking-section::after {
    display: none;
}

.gallery-section .polaroid-photo img {
    filter: brightness(1.07) contrast(1.04) saturate(1.08);
}

.schedule-step-card {
    align-items: start;
    grid-template-columns: 42px 1fr;
    row-gap: 4px;
    min-height: 210px;
    padding: 18px 16px;
}

.schedule-step-card strong {
    align-self: end;
}

.schedule-step-card p {
    margin: 0;
    align-self: start;
}

.schedule-step-card small {
    grid-column: 1 / -1;
    display: block;
    margin-top: 12px;
    color: var(--color-text, #334155);
    font-size: 14px;
    font-weight: 650;
    line-height: 1.45;
}

@media (max-width: 1024px) {
    .schedule-step-card {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .schedule-step-card small {
        grid-column: 2;
        margin-top: 4px;
        font-size: 14px;
        line-height: 1.45;
    }
}

.brand-logo {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    display: block;
    object-fit: contain;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

@media (max-width: 768px) {
    .brand-logo {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
    }
}