/* ============================================================
   Dueling Helmsing's STL — Mockup Theme
   Electric blue · black · charcoal · white
   ============================================================ */

:root {
    --blue: #0099ff;
    --blue-bright: #00bbff;
    --blue-glow: rgba(0, 153, 255, 0.45);
    --blue-border: rgba(0, 153, 255, 0.35);
    --blue-border-soft: rgba(0, 153, 255, 0.15);
    --black: #060608;
    --logo-black: #000000;
    --charcoal: #111118;
    --charcoal-mid: #1a1a24;
    --charcoal-light: #222230;
    --white: #ffffff;
    --gray-300: #b0b8c4;
    --gray-500: #7a8494;
    --font-display: 'Montserrat', system-ui, sans-serif;
    --font-body: 'Outfit', system-ui, sans-serif;
    --radius: 12px;
    --radius-sm: 8px;
    --glow: 0 0 20px rgba(0, 153, 255, 0.12), 0 0 40px rgba(0, 153, 255, 0.06);
    --transition: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--gray-300);
    background: var(--black);
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--blue-bright);
    text-decoration: none;
    transition: color var(--transition);
}

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

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ============================================================
   Shared: Cards, Buttons, Titles
   ============================================================ */

.card-glow {
    background: var(--charcoal);
    border: 1px solid var(--blue-border-soft);
    border-radius: var(--radius);
    box-shadow: var(--glow);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.card-glow:hover {
    border-color: var(--blue-border);
    box-shadow: 0 0 30px rgba(0, 153, 255, 0.18), 0 0 60px rgba(0, 153, 255, 0.08);
}

.col-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.col-title-center {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.5rem;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
    box-shadow: 0 4px 20px var(--blue-glow);
}

.btn-primary:hover {
    background: var(--blue-bright);
    border-color: var(--blue-bright);
    color: var(--white);
    box-shadow: 0 6px 28px var(--blue-glow);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--blue-bright);
    border-color: var(--blue-border);
}

.btn-outline:hover {
    background: rgba(0, 153, 255, 0.1);
    color: var(--white);
    border-color: var(--blue);
}

.btn-lg { padding: 0.85rem 2rem; font-size: 0.85rem; }
.btn-xs { padding: 0.3rem 0.75rem; font-size: 0.65rem; }
.btn-block { width: 100%; margin-top: 1rem; }
.btn-icon { width: 18px; height: 18px; }

.media-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--charcoal-mid);
    color: var(--gray-500);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    min-height: 160px;
    border: 1px dashed var(--blue-border-soft);
    border-radius: var(--radius-sm);
}

.media-placeholder svg { width: 40px; height: 40px; opacity: 0.4; }
.media-placeholder.wide { min-height: 220px; }

/* ============================================================
   Header
   ============================================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--logo-black);
    border-bottom: 1px solid var(--blue-border-soft);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 1rem;
}

.nav-logo-img {
    height: 48px;
    width: auto;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    list-style: none;
}

.nav-links a {
    color: var(--gray-300);
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.4rem 0.65rem;
    border-radius: 4px;
    transition: color var(--transition), background var(--transition);
}

.nav-links a:hover {
    color: var(--white);
    background: rgba(0, 153, 255, 0.08);
}

.nav-social {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-left: 0.75rem;
    border-left: 1px solid var(--blue-border-soft);
}

.nav-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--gray-300);
    border-radius: 50%;
    transition: color var(--transition), background var(--transition);
}

.nav-social a:hover {
    color: var(--blue-bright);
    background: rgba(0, 153, 255, 0.1);
}

.nav-social svg { width: 16px; height: 16px; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* ============================================================
   Hero — wings + seamless logo center
   ============================================================ */

.hero {
    position: relative;
    min-height: calc(100vh - 70px);
    margin-top: 70px;
    background: var(--logo-black);
    overflow: hidden;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 460px) 1fr;
    min-height: calc(100vh - 70px);
    align-items: stretch;
}

.hero-wing {
    position: relative;
    background: var(--logo-black);
    overflow: hidden;
}

.wing-art {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-wing-left .wing-art {
    object-position: right center;
}

.hero-wing-right .wing-art {
    object-position: left center;
}

.hero-wing::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-wing-left::after {
    background: linear-gradient(to right, transparent 45%, var(--logo-black) 100%);
}

.hero-wing-right::after {
    background: linear-gradient(to left, transparent 45%, var(--logo-black) 100%);
}

.hero-center {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.75rem;
    padding: 2rem 1.25rem 2.5rem;
    background: var(--logo-black);
}

.hero-logo {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.btn-hero {
    padding: 0.9rem 2.5rem;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.hero-floor-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        rgba(0, 153, 255, 0.3) 0%,
        rgba(0, 187, 255, 0.8) 50%,
        rgba(0, 153, 255, 0.3) 100%
    );
    box-shadow: 0 0 24px rgba(0, 153, 255, 0.5), 0 0 48px rgba(0, 153, 255, 0.2);
    z-index: 3;
}

/* ============================================================
   Info Grid (3 columns)
   ============================================================ */

.section {
    padding: 3.5rem 0;
}

.section-info-grid {
    background: var(--charcoal);
    border-top: 1px solid var(--blue-border-soft);
    border-bottom: 1px solid var(--blue-border-soft);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.info-col {
    padding: 1.5rem;
}

/* Shows list */
.shows-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.show-row {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
}

.show-date-badge {
    flex-shrink: 0;
    width: 52px;
    background: var(--blue);
    border-radius: var(--radius-sm);
    text-align: center;
    padding: 0.4rem 0.25rem;
    line-height: 1.1;
}

.show-month {
    display: block;
    font-family: var(--font-display);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.85);
}

.show-day {
    display: block;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--white);
}

.show-details h3 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.15rem;
}

.show-details p {
    font-size: 0.78rem;
    color: var(--gray-500);
    margin-bottom: 0.4rem;
}

.empty-msg {
    color: var(--gray-500);
    font-size: 0.85rem;
    padding: 1rem 0;
}

/* About thumb */
.about-thumb,
.featured-thumb {
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 1rem;
}

.about-thumb img,
.featured-thumb img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.about-snippet {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

/* Featured video */
.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: var(--black);
    border-radius: var(--radius-sm);
}

.video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-ph { aspect-ratio: 16 / 10; min-height: auto; }

.play-circle {
    width: 56px;
    height: 56px;
    color: var(--blue);
    opacity: 0.7;
}

.play-circle svg { width: 100%; height: 100%; }

/* ============================================================
   Book CTA Banner
   ============================================================ */

.section-book-cta {
    background: var(--black);
    padding: 3rem 0;
}

.book-cta-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    padding: 2.5rem;
    align-items: center;
}

.book-cta-left {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.cta-icon-ring {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--blue-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    box-shadow: 0 0 30px var(--blue-glow), inset 0 0 20px rgba(0, 153, 255, 0.08);
}

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

.cta-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.cta-desc {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 1.25rem;
    max-width: 420px;
}

.event-types {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    justify-content: center;
}

.event-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    width: 90px;
}

.event-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--blue-border-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    background: rgba(0, 153, 255, 0.06);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.event-type:hover .event-icon {
    border-color: var(--blue-border);
    box-shadow: 0 0 16px var(--blue-glow);
}

.event-icon svg { width: 22px; height: 22px; }

.event-type span {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--gray-500);
    line-height: 1.3;
}

/* ============================================================
   Split Section (What to Expect + Reviews)
   ============================================================ */

.section-split {
    background: var(--charcoal);
    border-top: 1px solid var(--blue-border-soft);
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.split-col {
    padding: 1.5rem;
}

.slideshow-placeholder {
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 1rem;
}

.slideshow-placeholder img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.split-desc {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.review-featured {
    padding: 1rem 0;
}

.review-featured p {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--gray-300);
    line-height: 1.75;
    margin: 0.75rem 0 1rem;
}

.review-featured footer {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.review-featured cite {
    font-style: normal;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--white);
}

.review-featured footer span {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.review-stars {
    color: var(--blue);
    font-size: 1rem;
    letter-spacing: 0.08em;
}

/* ============================================================
   About Full
   ============================================================ */

.section-about-full {
    background: var(--black);
}

.about-full-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 2rem;
    padding: 2rem;
    align-items: center;
}

.about-full-photo {
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.about-full-photo img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.about-full-text p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.8;
}

/* ============================================================
   Booking Form
   ============================================================ */

.section-book {
    background: var(--charcoal);
    border-top: 1px solid var(--blue-border-soft);
}

.book-form-wrap {
    max-width: 720px;
    margin: 0 auto;
    padding: 2.5rem;
}

.book-sub {
    text-align: center;
    color: var(--gray-500);
    font-size: 0.9rem;
    margin: -1rem 0 2rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-group label {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray-300);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 0.9rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--white);
    background: var(--charcoal-mid);
    border: 1px solid var(--blue-border-soft);
    border-radius: var(--radius-sm);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-500); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 153, 255, 0.12);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='https://www.w3.org/2000/svg' width='12' height='12' fill='%237a8494' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.9rem center;
    padding-right: 2.25rem;
}

.form-group select option { background: var(--charcoal); }

.form-group textarea { resize: vertical; min-height: 100px; }

.form-actions { text-align: center; margin-top: 0.5rem; }

.form-feedback {
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    text-align: center;
    margin-top: 0.5rem;
}

.form-feedback.success {
    background: rgba(34, 197, 94, 0.12);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.25);
}

.form-feedback.error {
    background: rgba(239, 68, 68, 0.12);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.25);
}

/* ============================================================
   Gallery
   ============================================================ */

.section-gallery {
    background: var(--black);
    border-top: 1px solid var(--blue-border-soft);
}

.section-gap { margin-top: 3rem; }

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
}

.gallery-card {
    overflow: hidden;
}

.gallery-card img,
.gallery-card .media-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.gallery-card figcaption,
.gallery-card h4 {
    padding: 0.75rem 1rem;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--gray-300);
}

/* ============================================================
   Reviews Full
   ============================================================ */

.section-reviews-full {
    background: var(--charcoal);
    border-top: 1px solid var(--blue-border-soft);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}

.review-card {
    padding: 1.5rem;
}

.review-card p {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--gray-300);
    line-height: 1.7;
    margin: 0.75rem 0 1rem;
}

.review-card footer {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.review-card cite {
    font-style: normal;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--white);
}

.review-card footer span {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* ============================================================
   Newsletter
   ============================================================ */

.newsletter-bar {
    background: var(--charcoal-mid);
    border-top: 1px solid var(--blue-border-soft);
    border-bottom: 1px solid var(--blue-border-soft);
    padding: 1.25rem 0;
}

.newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.newsletter-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
}

.newsletter-label svg {
    width: 20px;
    height: 20px;
    color: var(--blue);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    flex: 1;
    max-width: 420px;
}

.newsletter-form input {
    flex: 1;
    padding: 0.65rem 1rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--white);
    background: var(--charcoal);
    border: 1px solid var(--blue-border-soft);
    border-radius: var(--radius-sm);
}

.newsletter-form input::placeholder { color: var(--gray-500); }

.newsletter-form input:focus {
    outline: none;
    border-color: var(--blue);
}

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
    background: var(--black);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid var(--blue-border-soft);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.footer-logo {
    width: 160px;
    height: auto;
    filter: drop-shadow(0 0 12px var(--blue-glow));
}

.footer-col h3 {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col ul a,
.footer-contact li {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.footer-col ul a:hover { color: var(--blue-bright); }

.footer-social {
    display: flex;
    gap: 0.6rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--blue-border-soft);
    color: var(--gray-300);
    transition: all var(--transition);
}

.footer-social a:hover {
    border-color: var(--blue);
    color: var(--blue-bright);
    box-shadow: 0 0 12px var(--blue-glow);
}

.footer-social svg { width: 16px; height: 16px; }

.footer-copy {
    text-align: center;
    font-size: 0.78rem;
    color: var(--gray-500);
    padding-top: 1.5rem;
    border-top: 1px solid var(--blue-border-soft);
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 900px) {
    .hero-layout {
        display: block;
        position: relative;
        min-height: calc(100vh - 70px);
    }

    .hero-wing {
        position: absolute;
        top: 0;
        bottom: 0;
        width: 50%;
    }

    .hero-wing-left { left: 0; }
    .hero-wing-right { right: 0; }

    .hero-center {
        position: relative;
        z-index: 2;
        min-height: calc(100vh - 70px);
        padding: 1.5rem 1rem 2.5rem;
    }

    .hero-logo { max-width: min(340px, 88vw); }

    .info-grid { grid-template-columns: 1fr; }
    .book-cta-grid { grid-template-columns: 1fr; }
    .split-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-full-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }

    .nav-right {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(6, 6, 8, 0.98);
        flex-direction: column;
        padding: 1rem;
        gap: 0.75rem;
        border-bottom: 1px solid var(--blue-border-soft);
        transform: translateY(-130%);
        opacity: 0;
        transition: transform var(--transition), opacity var(--transition);
        pointer-events: none;
    }

    .nav-right.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 0.65rem 0.75rem;
        width: 100%;
    }

    .nav-social {
        border-left: none;
        padding-left: 0;
        justify-content: center;
    }

    .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .photo-grid { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .event-types { gap: 0.75rem; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-brand-col { display: flex; justify-content: center; }
    .footer-social { justify-content: center; }
    .newsletter-inner { flex-direction: column; }
    .newsletter-form { width: 100%; max-width: none; }
    .book-cta-left { flex-direction: column; align-items: center; text-align: center; }
    .cta-desc { max-width: none; }
}

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