@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;1,500&display=swap");

:root {
    --ink: #20252c;
    --ink-soft: #5d625f;
    --paper: #fbfaf7;
    --cream: #f1ece3;
    --sage-paper: #f3f5f0;
    --taupe: #b9a384;
    --taupe-dark: #846738;
    --navy: #1d2735;
    --line: rgba(48, 51, 48, 0.15);
    --white: #ffffff;
    --capture-color: #6e8ead;
    --host-color: #86aa76;
    --celebrate-color: #f28b2d;
    --production-color: #b783c7;
    --capture-overlay: rgba(42, 82, 125, 0.76);
    --host-overlay: rgba(66, 122, 58, 0.76);
    --celebrate-overlay: rgba(204, 120, 42, 0.78);
    --production-overlay: rgba(132, 62, 143, 0.78);
    --success: #2f6845;
    --error: #923f3b;
    --shadow: 0 18px 40px rgba(46, 42, 35, 0.12);
    --experience-color: var(--taupe);
    --experience-overlay: var(--capture-overlay);
}

.service-capture {
    --experience-color: var(--capture-color);
}

.service-host {
    --experience-color: var(--host-color);
}

.service-celebrate {
    --experience-color: var(--celebrate-color);
}

.service-production {
    --experience-color: var(--production-color);
}

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

html {
    scroll-behavior: smooth;
}

[id] {
    scroll-margin-top: 132px;
}

body {
    color: var(--ink);
    background: var(--paper);
    font-family: "DM Sans", Arial, sans-serif;
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
}

button,
input,
select,
textarea {
    color: inherit;
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}

.sr-only,
.comparison-table caption {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.eyebrow {
    color: var(--taupe-dark);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    letter-spacing: 0;
}

h2 {
    font-size: 3.7rem;
    font-weight: 600;
    line-height: 1.04;
}

h2 em {
    color: var(--taupe-dark);
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 500;
}

.section {
    padding: 104px 0;
}

.section-heading {
    display: grid;
    max-width: 720px;
    gap: 16px;
    margin-bottom: 48px;
}

.section-heading p:last-child,
.section-intro>p:last-child {
    max-width: 620px;
    color: var(--ink-soft);
}

.section-heading.compact {
    margin-inline: auto;
    text-align: center;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border: 1px solid var(--taupe-dark);
    border-radius: 999px;
    background: var(--taupe);
    color: var(--white);
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(42, 35, 24, 0.2);
}

.button-small {
    min-height: 40px;
    padding-inline: 20px;
    font-size: 0.9rem;
}

.button-light {
    border-color: var(--white);
    background: var(--white);
    color: var(--ink);
}

.button-ghost {
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
}

.button-muted {
    border-color: var(--taupe);
    background: var(--taupe);
}

/* Header */
.site-header {
    position: sticky;
    z-index: 20;
    top: 0;
    border-bottom: 1px solid var(--line);
    background: rgba(251, 250, 247, 0.96);
    backdrop-filter: blur(14px);
}

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

.header-main,
.nav-list,
.header-book {
    transition: min-height 220ms ease, padding 220ms ease, font-size 220ms ease;
}

.brand,
.footer-brand {
    color: var(--ink);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0;
    text-decoration: none;
}

.header-main .brand {
    grid-column: 2;
    justify-self: center;
}

.header-book {
    grid-column: 3;
    justify-self: end;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
}

.menu-toggle span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: var(--ink);
    transition: transform 180ms ease, opacity 180ms ease;
}

.site-nav {
    border-top: 1px solid var(--line);
}

.nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    min-height: 54px;
    list-style: none;
}

.nav-list a,
.nav-dropdown-toggle {
    border: 0;
    background: transparent;
    color: var(--ink);
    font-size: 0.93rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 160ms ease;
}

.nav-list a:hover,
.nav-list a:focus-visible,
.nav-list a[aria-current="page"],
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible {
    color: var(--taupe-dark);
}

.nav-dropdown {
    position: relative;
    display: flex;
    align-self: stretch;
    align-items: center;
}

.nav-dropdown-toggle span {
    display: none;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    display: grid;
    width: 210px;
    gap: 4px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
    list-style: none;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -8px);
    transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown-menu a {
    display: block;
    padding: 8px 10px;
    border-radius: 5px;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
    background: var(--cream);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

@media (min-width: 721px) {
    .site-header.is-compact .header-main {
        min-height: 52px;
    }

    .site-header.is-compact .nav-list {
        min-height: 40px;
    }

    .site-header.is-compact .header-book {
        min-height: 34px;
        padding-inline: 17px;
        font-size: 0.82rem;
    }
}

@media (min-width: 1000px) {
    .site-header.is-compact .header-main {
        min-height: 58px;
    }

    .site-header.is-compact .header-main .brand {
        grid-column: 1;
        justify-self: start;
    }

    .site-header.is-compact .site-nav {
        position: absolute;
        top: 0;
        left: 50%;
        border-top: 0;
        transform: translateX(-50%);
    }

    .site-header.is-compact .nav-list {
        width: max-content;
        min-height: 58px;
        gap: 28px;
        padding-inline: 0;
    }
}

/* Hero */
.hero {
    position: relative;
    display: grid;
    min-height: 680px;
    place-items: center;
    overflow: hidden;
    background: url("../media/Main%20Cover.webp") center 46% / cover;
    color: var(--white);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(22, 24, 25, 0.74), rgba(22, 24, 25, 0.2) 66%, rgba(22, 24, 25, 0.34)),
        linear-gradient(0deg, rgba(22, 24, 25, 0.44), transparent 65%);
}

.hero-content {
    position: relative;
    padding-block: 88px;
}

.hero .eyebrow {
    color: #e7d8c1;
}

.hero h1 {
    display: grid;
    margin-top: 16px;
    color: var(--white);
    font-size: 7rem;
    font-weight: 700;
    line-height: 0.82;
    text-transform: uppercase;
}

.hero h1 span:last-child {
    padding-left: 70px;
}

.hero h1 strong {
    font-size: 0.57em;
    font-weight: 600;
}

.hero-subtitle {
    max-width: 530px;
    margin-top: 38px;
    font-size: 1.3rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

/* Experience tiles */
.experiences {
    background: var(--paper);
}

.experience-layout {
    display: grid;
    grid-template-columns: minmax(240px, 0.8fr) minmax(580px, 1.35fr);
    gap: 72px;
    align-items: center;
}

.experience-intro,
.section-intro {
    display: grid;
    gap: 15px;
    align-content: start;
}

.experience-grid,
.experience-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

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

.experience-card {
    position: relative;
    display: flex;
    min-height: 260px;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: 24px;
    color: var(--white);
    text-decoration: none;
}

.experience-strip .experience-card {
    min-height: 150px;
    justify-content: center;
    padding: 18px;
    text-align: center;
}

.experience-card img,
.experience-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.experience-card img {
    object-fit: cover;
    transition: transform 400ms ease;
}

.experience-overlay {
    background: var(--capture-overlay);
    transition: opacity 220ms ease;
}

.experience-host .experience-overlay {
    background: var(--host-overlay);
}

.experience-celebrate .experience-overlay {
    background: var(--celebrate-overlay);
}

.experience-production .experience-overlay {
    background: var(--production-overlay);
}

.experience-card:hover img,
.experience-card:focus-visible img {
    transform: scale(1.06);
}

.experience-card:hover .experience-overlay,
.experience-card:focus-visible .experience-overlay,
.experience-card.is-active .experience-overlay {
    opacity: 0.9;
}

.experience-name,
.experience-copy {
    position: relative;
}

.experience-name {
    max-width: 270px;
    font-size: 1.38rem;
    font-weight: 700;
    line-height: 1.12;
}

.experience-strip .experience-name {
    margin-inline: auto;
    font-size: 1rem;
}

.experience-copy {
    max-width: 240px;
    margin-top: 8px;
    font-size: 0.86rem;
}

/* Service pages */
.service-banner {
    background: var(--experience-color);
    color: var(--white);
    text-align: center;
}

.service-banner .container {
    padding: 24px 0;
}

.service-banner h1 {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.12;
}

.service-overview {
    padding: 42px 0 92px;
    background: var(--paper);
}

.service-capture .service-overview,
.service-host .service-overview,
.service-celebrate .service-overview {
    background: var(--white);
}

.service-topline {
    max-width: 940px;
    margin: 0 auto 44px;
    color: var(--ink);
    font-size: 1.05rem;
    text-align: center;
}

.service-summary {
    max-width: 960px;
    margin: 0 auto 48px;
    padding: 22px 26px;
    border-left: 4px solid var(--experience-color);
    background: var(--white);
    box-shadow: var(--shadow);
}

.service-summary h2 {
    margin-bottom: 3px;
    font-size: 1rem;
    line-height: 1.35;
}

.service-summary p {
    color: var(--ink-soft);
    font-size: 0.94rem;
}

.service-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: 48px;
    align-items: start;
}

.service-details h2 {
    margin-bottom: 18px;
    font-size: 1.45rem;
}

.service-list {
    display: grid;
    gap: 11px;
    list-style: none;
}

.service-list li {
    position: relative;
    padding-left: 22px;
    color: var(--ink-soft);
    font-size: 0.95rem;
    line-height: 1.72;
}

.service-list li::before {
    position: absolute;
    top: 0.76em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--experience-color);
    content: "";
}

.service-media-panel {
    display: grid;
    gap: 14px;
}

.service-feature-image,
.service-media-grid img,
.setup-gallery img,
.setup-image,
.video-callout img,
.production-gallery img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.service-feature-image {
    aspect-ratio: 4 / 3;
}

.capture-equipment-image {
    aspect-ratio: auto;
    object-fit: contain;
    background: var(--white);
}

.service-media-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.service-media-grid img {
    aspect-ratio: 1;
}

.equipment-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    align-content: start;
}

.equipment-gallery-image {
    width: 100%;
    aspect-ratio: 1.83;
    object-fit: contain;
}

.equipment-gallery-image:first-child {
    grid-column: 1 / -1;
}

.host-summary {
    max-width: 980px;
    margin: 0 auto 42px;
}

.host-summary h2 {
    margin-bottom: 2px;
    font-size: 1.05rem;
    line-height: 1.35;
}

.host-summary p {
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.host-overview-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
    gap: 52px;
    align-items: start;
}

.host-details h2 {
    margin-bottom: 20px;
    font-size: 1.7rem;
}

.host-equipment-list {
    display: grid;
    gap: 12px;
    list-style: none;
}

.host-equipment-list li {
    color: var(--ink-soft);
    font-size: 0.95rem;
    line-height: 1.7;
}

.host-equipment-list li::before {
    content: "- ";
}

.host-equipment-list .host-note {
    color: var(--ink);
    font-weight: 700;
}

.host-equipment-list .host-note::before {
    content: "";
}

.host-visual-stack {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.host-visual-stack.equipment-gallery {
    display: grid;
}

.host-visual {
    width: 100%;
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.host-equipment-image {
    height: auto;
    object-fit: contain;
}

/* Add-ons */
.addons-section {
    padding: 92px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

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

.addon-card,
.info-card,
.production-notes article,
.rate-card,
.booking-form,
.contact-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.addon-card {
    display: grid;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.addon-card-content {
    display: grid;
    gap: 10px;
    padding: 20px;
}

.addon-card h3 {
    font-size: 1rem;
    line-height: 1.35;
}

.addon-card p {
    color: var(--ink-soft);
    font-size: 0.92rem;
}

.studio-info-section {
    padding: 78px 0;
    background: var(--sage-paper);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.info-card {
    padding: 20px;
}

.info-card h2 {
    margin-bottom: 8px;
    color: var(--taupe-dark);
    font-size: 1rem;
}

.info-card p {
    color: var(--ink-soft);
    font-size: 0.9rem;
}

/* Setup and service media sections */
.setup-section {
    padding: 88px 0;
    background: var(--cream);
}

.setup-section .section-heading {
    margin-bottom: 28px;
}

.setup-options {
    display: grid;
    max-width: 960px;
    gap: 12px;
    margin: 0 auto 38px;
    color: var(--ink-soft);
    list-style-position: inside;
    text-align: center;
}

.setup-image {
    max-width: 1080px;
    margin-inline: auto;
    aspect-ratio: 1.66;
}

.setup-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    max-width: 1080px;
    margin-inline: auto;
}

.setup-gallery img {
    aspect-ratio: 1.62;
}

.host-setup-heading {
    display: grid;
    gap: 10px;
    max-width: 980px;
    margin: 0 auto 24px;
    text-align: center;
}

.host-setup-heading h2 {
    font-size: 1.8rem;
    line-height: 1.28;
}

.host-setup-heading p {
    color: var(--ink-soft);
}

.host-setup-options {
    gap: 16px;
    margin-bottom: 34px;
}

.host-setup-gallery {
    gap: 4px;
}

.setup-tile {
    position: relative;
    margin: 0;
    overflow: hidden;
}

.setup-tile img {
    display: block;
    width: 100%;
    aspect-ratio: 1.62;
    border-radius: 0;
    box-shadow: none;
}

.setup-number {
    position: absolute;
    top: 12px;
    left: 16px;
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}

.setup-tile:nth-child(2) .setup-number {
    top: auto;
    right: 16px;
    bottom: 12px;
    left: auto;
}

.setup-tile:nth-child(3) .setup-number {
    top: auto;
    bottom: 12px;
}

.setup-tile:nth-child(4) .setup-number {
    right: 16px;
    left: auto;
}

.video-section {
    padding: 76px 0;
    background: var(--paper);
}

.video-callout {
    display: grid;
    max-width: 920px;
    grid-template-columns: minmax(240px, 0.6fr) minmax(320px, 1fr);
    gap: 44px;
    align-items: center;
}

.video-callout img {
    aspect-ratio: 1;
}

.video-callout div {
    display: grid;
    gap: 12px;
}

.video-callout h2 {
    font-size: 2.2rem;
}

.video-callout p:last-child {
    color: var(--ink-soft);
}

.host-waiting-section {
    padding-top: 18px;
}

.host-waiting-heading {
    max-width: 980px;
    margin: 0 auto 26px;
    text-align: center;
}

.host-waiting-heading h2 {
    font-size: 1.85rem;
    line-height: 1.25;
}

.host-waiting-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
}

.host-waiting-image {
    width: min(190px, 34vw);
    aspect-ratio: 0.74;
    border-radius: 0;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.host-youtube-link {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    color: var(--ink);
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
}

.host-youtube-link img {
    width: 74px;
    height: 52px;
    object-fit: contain;
}

/* Production */
.production-section {
    padding: 42px 0 88px;
    background: var(--paper);
}

.comparison-wrapper {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.comparison-table {
    width: 100%;
    min-width: 820px;
    border-collapse: collapse;
    background: var(--white);
}

.comparison-table th,
.comparison-table td {
    padding: 14px 16px;
    border: 1px solid rgba(48, 51, 48, 0.18);
    font-size: 0.9rem;
    line-height: 1.35;
    vertical-align: top;
}

.comparison-table thead th {
    background: #f5f0f7;
    color: var(--ink);
    text-align: center;
}

.comparison-table thead th:first-child,
.comparison-table tbody th {
    width: 42%;
    background: #fffdfb;
    text-align: left;
}

.comparison-table tbody td {
    color: var(--ink);
    font-weight: 600;
    text-align: center;
}

.comparison-table tbody td:nth-child(2) {
    background: #dbe8fb;
}

.comparison-table tbody td:nth-child(3) {
    background: #e8def1;
}

.comparison-rate td {
    color: var(--navy);
}

.comparison-rate span {
    color: var(--ink-soft);
    font-size: 0.78rem;
    font-weight: 600;
}

.mobile-package-grid {
    display: none;
}

.mobile-package-card {
    display: grid;
    gap: 12px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.mobile-package-card h2 {
    font-size: 1.45rem;
}

.mobile-package-rate {
    color: var(--production-color);
    font-weight: 700;
}

.mobile-package-ideal {
    color: var(--ink);
    font-weight: 700;
}

.mobile-package-card ul {
    display: grid;
    gap: 9px;
    padding-left: 18px;
    color: var(--ink-soft);
    font-size: 0.92rem;
}

.production-notes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 30px;
}

.production-notes article {
    padding: 22px;
}

.production-notes h2 {
    margin-bottom: 8px;
    color: var(--taupe-dark);
    font-size: 1.05rem;
}

.production-notes p {
    color: var(--ink-soft);
    font-size: 0.92rem;
}

.hourly-rates {
    display: grid;
    gap: 18px;
    max-width: 760px;
    margin: 64px auto 0;
    color: var(--ink-soft);
    text-align: center;
}

.hourly-rates h2 {
    color: var(--ink);
    font-size: 1.35rem;
}

.hourly-rates div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}

.hourly-rates div p+p {
    border-left: 3px solid var(--taupe-dark);
}

.production-gallery {
    overflow: hidden;
    background: var(--white);
}

.production-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.production-gallery-grid img {
    width: 100%;
    height: 250px;
    border-radius: 0;
    box-shadow: none;
}

.page-actions {
    display: flex;
    justify-content: center;
    gap: 92px;
    padding: 22px 24px 86px;
    background: var(--paper);
}

/* Venue */
.venue-section {
    background: var(--cream);
}

.venue-preview-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1.1fr);
    gap: 58px;
    align-items: center;
}

.venue-preview-card,
.venue-map-preview {
    color: var(--ink);
    text-decoration: none;
}

.venue-preview-card {
    position: relative;
    display: grid;
    min-height: 320px;
    overflow: hidden;
    border-radius: 8px;
    place-items: center;
    color: var(--white);
    box-shadow: var(--shadow);
}

.venue-preview-card::after {
    position: absolute;
    inset: 0;
    background: rgba(32, 37, 44, 0.35);
    content: "";
    transition: background 180ms ease;
}

.venue-preview-card img,
.venue-map-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.venue-preview-card img {
    position: absolute;
    inset: 0;
    transition: transform 400ms ease;
}

.venue-preview-card span {
    position: relative;
    z-index: 1;
    font-size: 2rem;
    font-weight: 500;
}

.venue-preview-card:hover img,
.venue-preview-card:focus-visible img {
    transform: scale(1.05);
}

.venue-preview-card:hover::after,
.venue-preview-card:focus-visible::after {
    background: rgba(32, 37, 44, 0.48);
}

.venue-map-preview {
    display: grid;
    gap: 8px;
    justify-items: center;
    text-align: center;
}

.venue-map-preview p {
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.venue-map-preview strong {
    color: var(--ink);
}

.venue-map-preview img {
    max-height: 320px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.venue-page {
    --experience-color: var(--taupe);
}

.venue-banner {
    background: #cbbda7;
    color: var(--white);
    text-align: center;
}

.venue-banner .container {
    padding: 22px 0;
}

.venue-banner h1 {
    font-size: 1.8rem;
    font-weight: 500;
}

.venue-tour-intro,
.venue-location-section,
.venue-amenities-section,
.venue-rules-section,
.venue-faq-section {
    padding: 76px 0;
    background: var(--paper);
}

.youtube-callout {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 14px;
    margin: 0 auto 34px;
    color: var(--ink);
    font-weight: 700;
    text-decoration: none;
}

.youtube-icon-image {
    display: block;
    width: 54px;
    height: 38px;
    flex: 0 0 auto;
    object-fit: contain;
}

.venue-tour-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.venue-tour-grid img {
    width: 100%;
    aspect-ratio: 1.45;
    object-fit: cover;
}

.venue-process-section {
    padding: 44px 0 72px;
    background: var(--cream);
}

.venue-process-label {
    width: min(430px, 100%);
    margin-bottom: 28px;
    padding: 18px 28px;
    border-radius: 0 999px 999px 0;
    background: var(--taupe);
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
}

.venue-process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    list-style: none;
}

.venue-process-steps li {
    position: relative;
    display: grid;
    gap: 12px;
    align-content: start;
}

.venue-process-steps li:not(:last-child)::after {
    position: absolute;
    top: 22px;
    right: -8px;
    width: calc(100% - 54px);
    border-top: 2px solid var(--ink);
    content: "";
    opacity: 0.7;
    transform: translateX(50%);
}

.venue-process-steps span {
    position: relative;
    z-index: 1;
    display: grid;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--taupe);
    color: var(--white);
    font-weight: 700;
    place-items: center;
}

.venue-process-steps p {
    max-width: 180px;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.35;
}

.venue-location-layout,
.venue-amenities-layout,
.venue-text-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
    gap: 72px;
    align-items: start;
}

.venue-section-copy {
    max-width: 590px;
    margin: 16px 0 28px;
    color: var(--ink-soft);
}

.venue-location-media {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 14px;
}

.venue-location-media a,
.venue-location-media img,
.floor-plan-card {
    overflow: hidden;
    border-radius: 8px;
}

.venue-location-media img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.venue-location-icon {
    object-fit: contain !important;
    padding: 24px;
    background: var(--white);
}

.operation-card {
    display: grid;
    gap: 20px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.operation-card h2 {
    font-size: 1.7rem;
}

.operation-card dl {
    display: grid;
    gap: 8px;
}

.operation-card dl div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 7px;
}

.operation-card dt {
    font-weight: 700;
}

.operation-card dd {
    color: var(--ink-soft);
}

.parking-note {
    display: grid;
    gap: 2px;
    padding: 14px 16px;
    border-left: 4px solid var(--taupe);
    background: var(--cream);
}

.parking-note span {
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.venue-amenities-section,
.venue-faq-section {
    background: var(--cream);
}

.amenities-list,
.rules-list {
    display: grid;
    gap: 10px;
    padding-left: 20px;
    color: var(--ink-soft);
}

.floor-plan-card {
    display: grid;
    gap: 12px;
    padding: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.floor-plan-card img {
    width: 100%;
    object-fit: contain;
}

.floor-plan-card figcaption {
    color: var(--taupe-dark);
    font-weight: 700;
    text-align: center;
}

.venue-text-layout {
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
}

.venue-faq-list {
    border-top: 1px solid var(--line);
}

.venue-faq-list details {
    border-bottom: 1px solid var(--line);
}

.venue-faq-list summary {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 0;
    font-weight: 700;
    list-style: none;
    cursor: pointer;
}

.venue-faq-list summary::-webkit-details-marker {
    display: none;
}

.venue-faq-list summary::after {
    color: var(--taupe-dark);
    content: "+";
    font-size: 1.25rem;
    line-height: 1;
}

.venue-faq-list details[open] summary::after {
    content: "-";
}

.venue-faq-list p {
    padding: 0 0 18px;
    color: var(--ink-soft);
}

.venue-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 240px);
    gap: 12px;
}

.venue-photo {
    overflow: hidden;
    border-radius: 8px;
}

.venue-photo-feature {
    grid-column: span 2;
    grid-row: span 2;
}

.venue-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease;
}

.venue-photo:hover img {
    transform: scale(1.05);
}

.venue-details {
    display: grid;
    grid-template-columns: 1fr minmax(360px, 0.9fr);
    gap: 64px;
    align-items: center;
    padding-top: 68px;
}

.venue-copy {
    display: grid;
    gap: 15px;
}

.venue-copy h3 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2.7rem;
    font-weight: 500;
    line-height: 1.08;
}

.venue-copy>p:not(.eyebrow) {
    max-width: 590px;
    color: var(--ink-soft);
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 24px;
    margin-top: 8px;
    list-style: none;
}

.feature-list li::before {
    margin-right: 8px;
    color: var(--taupe-dark);
    content: "+";
    font-weight: 700;
}

.map-card {
    position: relative;
    overflow: hidden;
    border: 12px solid var(--white);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
    text-decoration: none;
}

.map-card img {
    width: 100%;
    aspect-ratio: 1.32;
    object-fit: cover;
}

.map-card span {
    display: block;
    padding: 14px 10px 4px;
    font-size: 0.88rem;
    font-weight: 700;
    text-align: center;
}

/* Pricing */
.pricing-section {
    background: var(--paper);
}

.pricing-banner {
    background: var(--taupe);
    color: var(--white);
    text-align: center;
}

.pricing-banner .container {
    padding: 24px 0;
}

.pricing-banner h1 {
    font-size: 2rem;
    font-weight: 500;
}

.pricing-process-section {
    background: var(--paper);
}

.pricing-page-rates {
    padding: 76px 0 46px;
    background: var(--paper);
    text-align: center;
}

.pricing-page-rates h2 {
    margin-bottom: 34px;
    font-size: 1.6rem;
    font-weight: 500;
}

.pricing-rate-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1040px;
    margin: 0 auto 34px;
}

.pricing-rate-row p {
    display: grid;
    min-height: 74px;
    align-items: center;
    padding: 0 28px;
    color: var(--ink);
    font-size: 1rem;
}

.pricing-rate-row p+p {
    border-left: 4px solid var(--taupe-dark);
}

.pricing-payment-line {
    color: var(--ink-soft);
    font-size: 0.92rem;
}

.pricing-payment-line a {
    color: var(--ink);
    font-weight: 700;
}

.pricing-production-button {
    max-width: 280px;
    min-height: 66px;
    margin-top: 68px;
    border-width: 4px;
    border-color: var(--taupe-dark);
    background: var(--taupe);
    font-size: 1rem;
    line-height: 1.25;
    white-space: normal;
}

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

.rate-card {
    display: grid;
    min-height: 250px;
    align-content: center;
    justify-items: center;
    padding: 28px;
    text-align: center;
}

.rate-number {
    color: var(--taupe-dark);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 5rem;
    line-height: 0.9;
}

.rate-unit {
    margin: 12px 0;
    color: var(--taupe-dark);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
}

.rate-card p {
    font-size: 0.96rem;
}

.payment-note {
    margin-top: 24px;
    color: var(--ink-soft);
    font-size: 0.9rem;
    text-align: center;
}

.payment-note a {
    color: var(--taupe-dark);
    font-weight: 700;
}

/* Booking steps */
.booking-process {
    padding: 0 0 46px;
    background: var(--white);
}

.booking-process .container {
    width: min(100% - 48px, 1200px);
    margin-inline: auto;
}

.booking-process-graphic {
    display: block;
    width: 100%;
    height: auto;
}

.booking-process picture {
    display: block;
}

.steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    list-style: none;
}

.steps li {
    position: relative;
    display: grid;
    gap: 16px;
    align-content: start;
}

.steps li:not(:last-child)::after {
    position: absolute;
    top: 23px;
    right: -9px;
    width: calc(100% - 58px);
    border-top: 1px solid rgba(255, 255, 255, 0.72);
    content: "";
    transform: translateX(50%);
}

.step-number {
    position: relative;
    z-index: 1;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 50%;
    background: var(--white);
    color: var(--taupe-dark);
    font-size: 1.2rem;
    font-weight: 700;
}

.steps p {
    max-width: 180px;
    color: var(--white);
    font-size: 0.94rem;
    font-weight: 600;
    line-height: 1.32;
}

/* Form */
.booking-section {
    background: var(--paper);
}

.booking-layout {
    display: grid;
    grid-template-columns: minmax(240px, 0.68fr) minmax(590px, 1.32fr);
    gap: 72px;
    align-items: start;
}

.booking-intro {
    position: sticky;
    top: 166px;
    display: grid;
    gap: 17px;
}

.booking-intro>p:not(.eyebrow) {
    color: var(--ink-soft);
}

.booking-note {
    display: grid;
    gap: 3px;
    margin-top: 10px;
    padding: 16px 18px;
    border-left: 3px solid var(--taupe);
    background: var(--cream);
    font-size: 0.88rem;
}

.booking-form {
    padding: 38px;
    box-shadow: var(--shadow);
}

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

.form-field {
    display: grid;
    gap: 7px;
}

.form-field span {
    color: var(--ink-soft);
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 11px 2px;
    border: 0;
    border-bottom: 1px solid #cfc4b3;
    border-radius: 0;
    background: transparent;
    outline: 0;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-field textarea {
    min-height: 128px;
    padding: 12px;
    border: 1px solid #cfc4b3;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--taupe-dark);
    box-shadow: 0 1px var(--taupe-dark);
}

.form-field textarea:focus {
    box-shadow: 0 0 0 1px var(--taupe-dark);
}

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

.form-field-honeypot {
    position: absolute;
    left: -9999px;
}

.consent {
    display: flex;
    gap: 9px;
    align-items: start;
    margin: 22px 0 18px;
    color: var(--ink-soft);
    font-size: 0.82rem;
}

.consent input {
    margin-top: 3px;
}

.submit-button {
    border: 0;
}

.submit-button:disabled {
    cursor: wait;
    opacity: 0.65;
}

.form-status {
    display: none;
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.form-status.success,
.form-status.error {
    display: block;
}

.form-status.success {
    background: #eef8f0;
    color: var(--success);
}

.form-status.error {
    background: #fbefed;
    color: var(--error);
}

/* FAQ */
.faq-section {
    background: var(--cream);
}

.faq-layout {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 72px;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 0;
    font-weight: 700;
    list-style: none;
    cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    color: var(--taupe-dark);
    content: "+";
    font-size: 1.35rem;
    line-height: 1;
}

.faq-list details[open] summary::after {
    content: "-";
}

.faq-list p {
    max-width: 680px;
    padding: 0 0 20px;
    color: var(--ink-soft);
}

/* Contact */
.contact-section {
    background: var(--paper);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(480px, 1.18fr);
    gap: 72px;
    align-items: center;
}

.contact-button {
    width: fit-content;
    margin-top: 8px;
}

.contact-cards {
    display: grid;
    gap: 12px;
}

.contact-card {
    display: grid;
    gap: 4px;
    padding: 22px 24px;
    color: var(--ink);
    text-decoration: none;
    transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.contact-card:hover,
.contact-card:focus-visible {
    border-color: var(--taupe);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.contact-card span {
    color: var(--taupe-dark);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-card strong {
    font-size: 1.05rem;
}

/* Contact page */
.contact-page-main {
    padding: 44px 0 0;
}

.contact-page-section {
    padding-top: 34px;
}

.contact-page-shell {
    width: min(100%, 760px);
    margin: 0 auto;
    text-align: center;
}

.contact-page-heading {
    display: grid;
    gap: 16px;
    margin-bottom: 34px;
}

.contact-page-heading h1 {
    font-size: 1.9rem;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-page-heading p {
    color: var(--ink-soft);
    font-size: 1.05rem;
}

.contact-page-heading .contact-page-note {
    max-width: 680px;
    margin: 0 auto;
    font-size: 0.96rem;
}

.contact-page-form {
    padding: 0;
    box-shadow: none;
}

.contact-page-form .form-grid {
    grid-template-columns: 1fr;
    gap: 28px;
}

.contact-page-form .form-field {
    gap: 10px;
    text-align: left;
}

.contact-page-form .form-field span {
    color: var(--ink);
    font-size: 0.9rem;
    text-transform: none;
}

.contact-page-form .form-field input,
.contact-page-form .form-field textarea {
    padding: 14px 16px;
    border: 1px solid #d7d0c4;
    border-radius: 2px;
    background: var(--white);
    box-shadow: none;
}

.contact-page-form .form-field textarea {
    min-height: 146px;
}

.contact-page-form .submit-button {
    width: 100%;
    margin-top: 8px;
    background: var(--navy);
    color: var(--white);
}

.contact-page-form .submit-button:hover,
.contact-page-form .submit-button:focus-visible {
    background: #273245;
}

.contact-page-map {
    display: grid;
    gap: 22px;
    margin-top: 54px;
    text-align: center;
}

.contact-page-map h2 {
    font-size: 1.9rem;
}

.contact-page-map address,
.contact-page-directions {
    color: var(--ink);
    font-size: 1.05rem;
    font-style: italic;
}

.contact-page-map a {
    color: var(--taupe-dark);
}

.contact-page-map-card {
    overflow: hidden;
    border-radius: 6px;
    box-shadow: var(--shadow);
}

.contact-page-map-card img {
    width: 100%;
    aspect-ratio: 1.2 / 1;
    object-fit: cover;
}

/* Footer */
.footer {
    padding: 72px 0 20px;
    background: var(--navy);
    color: #d7c7aa;
}

.footer-layout {
    display: grid;
    grid-template-columns: 1.15fr 1.25fr 1fr 0.85fr;
    gap: 42px;
}

.footer-brand {
    display: inline-block;
    margin-bottom: 13px;
    color: var(--white);
    font-size: 2.4rem;
}

.footer h2 {
    margin-bottom: 12px;
    color: var(--white);
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
}

.footer address {
    font-style: normal;
}

.footer a {
    display: block;
    width: fit-content;
    color: #d7c7aa;
    text-decoration-color: rgba(215, 199, 170, 0.5);
    text-underline-offset: 3px;
}

.footer a:hover,
.footer a:focus-visible {
    color: var(--white);
}

.footer p,
.footer a {
    font-size: 0.92rem;
}

.footer p+p,
.footer address+p {
    margin-top: 13px;
}

.social-links {
    display: flex;
    gap: 14px;
    margin-top: 13px;
}

.footer-bottom {
    padding-top: 46px;
    margin-top: 46px;
    border-top: 1px solid rgba(215, 199, 170, 0.2);
}

.footer-bottom p {
    font-size: 0.74rem;
}

@media (max-width: 1080px) {
    h2 {
        font-size: 3rem;
    }

    .experience-layout,
    .booking-layout,
    .faq-layout,
    .contact-layout,
    .service-grid,
    .host-overview-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .booking-intro {
        position: static;
    }

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

    .venue-details,
    .production-notes,
    .venue-preview-layout,
    .venue-location-layout,
    .venue-amenities-layout,
    .venue-text-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .venue-process-steps {
        grid-template-columns: repeat(3, 1fr);
    }

    .venue-process-steps li:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 920px) {
    .section {
        padding: 86px 0;
    }

    .hero h1 {
        font-size: 5.3rem;
    }

    .hero h1 span:last-child {
        padding-left: 0;
    }

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

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

    .addons-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-page-main {
        padding-top: 24px;
    }

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

    .host-waiting-layout {
        flex-direction: column;
    }
}

@media (max-width: 720px) {
    [id] {
        scroll-margin-top: 84px;
    }

    .container {
        width: min(100% - 32px, 620px);
    }

    h2 {
        font-size: 2.25rem;
    }

    .section,
    .service-overview,
    .addons-section,
    .setup-section,
    .video-section,
    .production-section,
    .studio-info-section,
    .venue-tour-intro,
    .venue-location-section,
    .venue-amenities-section,
    .venue-rules-section,
    .venue-faq-section {
        padding: 68px 0;
    }

    .header-main {
        min-height: 66px;
        grid-template-columns: 1fr auto auto;
        gap: 10px;
    }

    .site-header {
        background: var(--paper);
        backdrop-filter: none;
    }

    .header-main .brand {
        grid-column: 1;
        justify-self: start;
    }

    .menu-toggle {
        display: block;
    }

    .menu-open .menu-toggle span:nth-child(2) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-open .menu-toggle span:nth-child(3) {
        opacity: 0;
    }

    .menu-open .menu-toggle span:nth-child(4) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .site-nav {
        position: absolute;
        z-index: 1;
        top: 100%;
        right: 0;
        left: 0;
        height: calc(100dvh - 66px);
        overflow-y: auto;
        visibility: hidden;
        border-top: 1px solid var(--line);
        background: var(--paper);
        opacity: 0;
        transition: opacity 180ms ease, visibility 180ms ease;
    }

    .menu-open .site-nav {
        visibility: visible;
        opacity: 1;
    }

    .nav-list {
        display: grid;
        width: 100%;
        min-height: 0;
        align-content: start;
        justify-content: stretch;
        gap: 0;
        padding: 8px 16px 14px;
        margin: 0;
        background: var(--paper);
        box-shadow: 0 14px 24px rgba(29, 39, 53, 0.16);
    }

    .nav-list>li {
        border-bottom: 1px solid var(--line);
    }

    .nav-dropdown {
        display: block;
    }

    .nav-list a,
    .nav-dropdown-toggle {
        display: flex;
        width: 100%;
        justify-content: space-between;
        padding: 15px 0;
        font-size: 1.05rem;
        text-align: left;
    }

    .nav-dropdown-toggle span {
        display: inline;
    }

    .nav-dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        gap: 0;
        padding: 4px 14px 10px;
        border: 0;
        border-left: 3px solid var(--taupe);
        border-radius: 0;
        background: var(--cream);
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        display: grid;
        transform: none;
    }

    .nav-dropdown-menu a {
        padding: 8px 0;
        font-size: 0.95rem;
    }

    .hero {
        min-height: 600px;
        background-position: 58% center;
    }

    .hero h1 {
        font-size: 4.2rem;
    }

    .hero h1 strong {
        display: block;
        margin-top: 12px;
        font-size: 0.54em;
    }

    .contact-page-section {
        padding-top: 10px;
    }

    .contact-page-heading {
        gap: 12px;
        margin-bottom: 26px;
    }

    .contact-page-heading h1,
    .contact-page-map h2 {
        font-size: 1.5rem;
    }

    .contact-page-heading p,
    .contact-page-map address,
    .contact-page-directions {
        font-size: 0.98rem;
    }

    .contact-page-form .form-grid {
        gap: 20px;
    }

    .hero-subtitle {
        max-width: 360px;
        font-size: 1.1rem;
    }

    .hero-actions {
        display: grid;
        max-width: 270px;
    }

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

    .experience-card {
        min-height: 220px;
    }

    .experience-strip .experience-card {
        min-height: 118px;
        padding: 14px;
    }

    .experience-strip .experience-name {
        max-width: 130px;
        font-size: 0.86rem;
    }

    .service-banner h1 {
        font-size: 1.65rem;
    }

    .service-topline {
        margin-bottom: 30px;
        font-size: 0.98rem;
    }

    .host-details h2,
    .host-setup-heading h2,
    .host-waiting-heading h2 {
        font-size: 1.45rem;
    }

    .service-summary,
    .booking-form {
        padding: 22px 18px;
    }

    .service-media-grid,
    .equipment-gallery,
    .form-grid,
    .info-grid,
    .hourly-rates div,
    .setup-gallery,
    .venue-location-media,
    .venue-tour-grid,
    .venue-process-steps {
        grid-template-columns: 1fr;
    }

    .equipment-gallery-image:first-child {
        grid-column: auto;
    }

    .youtube-callout {
        align-items: flex-start;
        margin-inline: 0;
    }

    .venue-preview-card {
        min-height: 260px;
    }

    .venue-preview-card span {
        font-size: 1.7rem;
    }

    .venue-map-preview img {
        max-height: none;
    }

    .venue-process-section {
        padding: 36px 0 58px;
    }

    .venue-process-label {
        border-radius: 999px;
        margin-inline: auto;
        text-align: center;
    }

    .venue-process-steps {
        gap: 18px;
    }

    .venue-process-steps li {
        grid-template-columns: 44px 1fr;
        align-items: center;
    }

    .venue-process-steps p {
        max-width: none;
    }

    .venue-location-media img {
        height: auto;
        aspect-ratio: 1.32;
    }

    .operation-card dl div {
        display: grid;
        gap: 0;
    }

    .setup-options {
        text-align: left;
    }

    .setup-image {
        aspect-ratio: 1.32;
    }

    .setup-gallery img,
    .production-gallery-grid img {
        aspect-ratio: 1.32;
        height: auto;
    }

    .setup-number {
        top: 10px;
        left: 12px;
        font-size: 2.8rem;
    }

    .host-waiting-image {
        width: min(210px, 100%);
    }

    .host-youtube-link {
        gap: 14px;
        font-size: 1rem;
    }

    .video-callout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .video-callout h2 {
        font-size: 1.85rem;
    }

    .hourly-rates div p+p {
        padding-top: 14px;
        border-top: 3px solid var(--taupe-dark);
        border-left: 0;
    }

    .comparison-wrapper {
        display: none;
    }

    .mobile-package-grid {
        display: grid;
        gap: 16px;
    }

    .venue-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 235px repeat(2, 150px);
        gap: 8px;
    }

    .venue-photo-feature {
        grid-column: span 2;
        grid-row: span 1;
    }

    .venue-details {
        grid-template-columns: 1fr;
        padding-top: 46px;
    }

    .venue-copy h3 {
        font-size: 2.1rem;
    }

    .feature-list,
    .steps {
        grid-template-columns: 1fr;
    }

    .rate-card {
        min-height: 190px;
    }

    .rate-number {
        font-size: 4rem;
    }

    .steps {
        gap: 18px;
    }

    .steps li {
        grid-template-columns: 48px 1fr;
        align-items: center;
    }

    .steps li:not(:last-child)::after {
        top: 48px;
        right: auto;
        bottom: -18px;
        left: 24px;
        width: auto;
        border-top: 0;
        border-left: 1px solid rgba(255, 255, 255, 0.72);
        transform: none;
    }

    .steps p {
        max-width: none;
    }

    .page-actions {
        gap: 18px;
        padding-bottom: 66px;
    }

    .footer {
        padding-top: 58px;
    }

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

@media (max-width: 430px) {
    .header-book {
        min-height: 36px;
        padding-inline: 14px;
        font-size: 0.82rem;
    }

    .hero h1 {
        font-size: 3.45rem;
    }

    .experience-strip .experience-name {
        max-width: 112px;
        font-size: 0.8rem;
    }

    .page-actions {
        display: grid;
    }
}
