/*
Theme Name: My Sleepover Atelier
Theme URI: https://mysleepover.pt
Author: My Sleepover Atelier
Description: Custom theme for My Sleepover Atelier - Magical Sleepover Experiences in Porto
Version: 1.0
Text Domain: mysleepover
*/

/* ============================================
   RESET & TOKENS
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

:root {
    --font-sans: 'Manrope', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-display: 'Cormorant Garamond', 'Georgia', serif;
    --color-ink: #121212;
    --color-muted: #7d746d;
    --color-paper: #fdfbf8;
    --color-paper-soft: #fffdfa;
    --color-paper-deep: #f7f4ef;
    --color-paper-deeper: #efeae2;
    --color-line: rgba(18, 18, 18, 0.1);
    --shadow-soft: 0 24px 60px rgba(36, 28, 22, 0.08);
    --shadow-card-subtle: 0 18px 34px rgba(36, 28, 22, 0.05);
}

body {
    font-family: var(--font-sans);
    color: var(--color-ink);
    background: var(--color-paper-soft);
    line-height: 1.75;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
}

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

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    color: var(--color-ink);
    letter-spacing: -0.03em;
}

h1 { font-size: clamp(3.2rem, 6vw, 5.8rem); line-height: 0.94; }
h2 { font-size: clamp(2.6rem, 4vw, 4rem); line-height: 0.99; }
h3 { font-size: clamp(1.7rem, 2.3vw, 2.2rem); line-height: 1.02; }
h4 { font-size: 1.35rem; line-height: 1.12; }

p {
    color: #544d46;
    font-size: 1.03rem;
    line-height: 1.8;
}

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

.site-header .container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
    padding-top: 26px;
    padding-bottom: 20px;
}

.site-logo {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
    color: var(--color-ink);
    line-height: 1;
}

.site-logo-primary {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.8vw, 2.55rem);
    font-weight: 400;
    letter-spacing: -0.055em;
    line-height: 0.9;
}

.site-logo-secondary {
    display: block;
    padding-left: 0.44em;
    margin-top: 12px;
    font-family: var(--font-sans);
    font-size: clamp(0.5rem, 0.72vw, 0.68rem);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-muted);
    font-weight: 500;
}

.site-header-controls {
    display: flex;
    flex: 1;
    min-width: 0;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.language-switch {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #756d66;
}

.language-switch span {
    opacity: 0.35;
}

.language-switch a {
    opacity: 0.58;
    transition: opacity 0.25s ease, color 0.25s ease;
}

.language-switch a:hover,
.language-switch a.is-active {
    opacity: 1;
    color: var(--color-ink);
}

.main-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(30px, 2.8vw, 38px);
    align-items: center;
    justify-content: flex-end;
    padding-top: 0;
}

.main-nav a {
    position: relative;
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.26em;
    color: #4d4741;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 1px;
    background: currentColor;
    opacity: 0;
    transform: scaleX(0.6);
    transform-origin: center;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.main-nav a:hover,
.main-nav .current-menu-item a {
    color: var(--color-ink);
}

.main-nav a:hover::after,
.main-nav .current-menu-item a::after {
    opacity: 0.32;
    transform: scaleX(1);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--color-ink);
    cursor: pointer;
    padding: 4px;
}

/* ============================================
   SHARED BUTTONS
   ============================================ */
.btn-primary,
.btn-secondary,
.btn-add-to-cart,
.product-card .button,
.contact-form .wpcf7-submit,
.contact-form button,
.woocommerce ul.products li.product a.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.52);
    color: var(--color-ink);
    padding: 15px 24px;
    border: 1.2px solid rgba(18, 18, 18, 0.22);
    font-size: 0.74rem;
    letter-spacing: 0.22em;
    line-height: 1.15;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    text-align: center;
    font-family: var(--font-sans);
    font-weight: 600;
    box-shadow: 0 0 0 rgba(36, 28, 22, 0);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-add-to-cart:hover,
.product-card .button:hover,
.contact-form .wpcf7-submit:hover,
.contact-form button:hover,
.woocommerce ul.products li.product a.button:hover {
    background: var(--color-ink);
    color: #fff;
    border-color: var(--color-ink);
    box-shadow: 0 14px 26px rgba(36, 28, 22, 0.08);
    transform: translateY(-1px);
}

.btn-primary:active,
.btn-secondary:active,
.btn-add-to-cart:active,
.product-card .button:active,
.contact-form .wpcf7-submit:active,
.contact-form button:active,
.woocommerce ul.products li.product a.button:active {
    transform: translateY(0);
}

.btn-secondary-quiet {
    background: transparent;
}

.btn-add-to-cart,
.product-card .button,
.woocommerce ul.products li.product a.button {
    width: 100%;
    padding: 13px 14px;
}

/* ============================================
   HERO
   ============================================ */
.hero-section {
    min-height: auto;
    padding: 118px 0 96px;
    background: var(--color-paper);
    display: block;
}

.hero-content {
    width: min(1100px, calc(100% - 56px));
    margin: 0 auto;
    text-align: left;
}

.hero-content h1 {
    max-width: 520px;
    font-size: clamp(2.2rem, 4.4vw, 3.85rem);
    margin-bottom: 24px;
    letter-spacing: -0.035em;
    line-height: 1.08;
}

.hero-content p {
    max-width: 440px;
    margin: 0 0 28px;
    font-size: 1.02rem;
    color: #514943;
    line-height: 1.9;
}

.hero-content h1,
.teepees-section h2,
.how-it-works-section h2,
.shop-section h2,
.service-card h3,
.process-step h3,
.add-on-card h2,
.add-on-card h3 {
    text-wrap: balance;
}

/* ============================================
   HOMEPAGE SECTIONS
   ============================================ */
.teepees-section,
.shop-section,
.gallery-section,
.book-party-section,
.page-shell {
    background: var(--color-paper-soft);
}

.teepees-section,
.shop-section,
.contact-section,
.gallery-section,
.book-party-section,
.page-shell,
.shop-page-header {
    padding: 92px 0;
}

.teepees-section {
    text-align: center;
    border-top: 1px solid rgba(18, 18, 18, 0.06);
}

.teepees-section h2,
.shop-section h2,
.contact-section h2 {
    max-width: 620px;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    line-height: 1.08;
    letter-spacing: -0.025em;
    margin: 0 auto 22px;
}

.teepees-section p,
.shop-section p,
.contact-section p,
.page-shell-content p {
    max-width: 690px;
}

.teepees-section p,
.shop-section > .container > p {
    margin: 0 auto 38px;
}

.service-capacity {
    margin: -12px auto 10px;
    max-width: 620px;
    color: #575048;
}

.service-value-line {
    margin: -16px auto 16px;
    max-width: 620px;
    color: #5a524a;
}

.service-capacity-note {
    margin: 0 auto 30px;
    max-width: 620px;
    font-size: 0.9rem;
    line-height: 1.68;
    color: var(--color-muted);
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 10px;
}

.service-card {
    text-align: left;
    padding: 28px 24px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(18, 18, 18, 0.08);
    box-shadow: var(--shadow-soft);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.42rem;
    line-height: 1.02;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.service-card p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.68;
    color: #575048;
}

.how-it-works-section {
    background: var(--color-paper);
    padding: 92px 0;
    border-top: 1px solid rgba(18, 18, 18, 0.06);
}

.how-it-works-section h2 {
    text-align: center;
    margin: 0 auto 18px;
}

.how-it-works-intro,
.how-it-works-note {
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.how-it-works-intro {
    margin-bottom: 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
}

.process-step {
    text-align: left;
    padding: 24px 18px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(18, 18, 18, 0.08);
}

.process-step-number {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-muted);
}

.process-step h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    line-height: 1.02;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.process-step p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.62;
    color: #575048;
}

.how-it-works-note {
    margin-top: 28px;
    font-size: 0.86rem;
    line-height: 1.6;
    color: var(--color-muted);
}

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

.shop-intro {
    max-width: 980px;
    margin: 0 auto 54px;
}

.shop-intro-subtitle,
.shop-intro-copy,
.shop-intro-note {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.shop-intro-subtitle,
.shop-intro-note {
    max-width: 720px;
}

.shop-intro-subtitle {
    font-size: 1.02rem;
    line-height: 1.82;
    margin-bottom: 12px;
}

.shop-intro-copy {
    max-width: 760px;
    margin-bottom: 0;
}

.add-on-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 34px;
}

.add-on-card {
    text-align: left;
    padding: 28px 24px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(18, 18, 18, 0.08);
    box-shadow: var(--shadow-soft);
}

.add-on-card h2,
.add-on-card h3 {
    font-family: var(--font-display);
    font-size: 1.38rem;
    line-height: 1.04;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.add-on-card p {
    max-width: none;
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.68;
    color: #575048;
}

.shop-intro-note {
    margin-top: 28px;
    margin-bottom: 26px;
    font-size: 0.86rem;
    line-height: 1.6;
    color: var(--color-muted);
}

.add-on-cards--linked .add-on-card {
    display: block;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.add-on-card--linked {
    display: block;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.add-on-cards--linked .add-on-card:hover {
    transform: translateY(-2px);
    border-color: rgba(18, 18, 18, 0.18);
}

.add-on-card--linked:hover {
    transform: translateY(-2px);
    border-color: rgba(18, 18, 18, 0.18);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 46px;
}

.products-carousel {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0 20px;
    margin-bottom: 42px;
}

.products-carousel .product-card {
    min-width: 250px;
    scroll-snap-align: start;
    flex-shrink: 0;
}

.product-card {
    text-align: left;
    background: rgba(255, 255, 255, 0.72);
    padding: 18px;
    border: 1px solid rgba(18, 18, 18, 0.08);
}

.product-card .product-image {
    background: #f6f3ee;
    aspect-ratio: 1;
    margin-bottom: 18px;
    overflow: hidden;
    position: relative;
}

.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.04);
}

.product-card h3 {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 400;
    line-height: 1.04;
    letter-spacing: -0.025em;
    margin-bottom: 10px;
}

.product-card .price,
.woocommerce ul.products li.product .price {
    color: #37312d !important;
    font-size: 0.86rem !important;
    margin-bottom: 14px;
}

.product-card .price del {
    color: #8f867d;
    margin-right: 8px;
}

.product-card .price ins {
    text-decoration: none;
}

.contact-section,
.contact-page-section {
    background: var(--color-paper);
}

.page-shell-eyebrow,
.setup-panel-eyebrow,
.add-on-card-label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-muted);
    font-weight: 600;
}

.page-shell-eyebrow {
    text-align: center;
    margin-bottom: 16px;
}

.page-shell-lead {
    max-width: 760px;
    margin: 0 auto 38px;
    text-align: center;
}

.contact-page-shell {
    max-width: 760px;
    margin: 0 auto;
}

.contact-page-copy {
    width: min(100%, 720px);
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.contact-page-copy > * {
    margin-left: auto;
    margin-right: auto;
}

.contact-page-copy .page-shell-eyebrow,
.contact-page-copy h1 {
    text-align: center;
}

.contact-page-copy h1 {
    width: 100%;
    margin-bottom: 20px;
    text-wrap: balance;
}

.contact-page-intro {
    max-width: 560px;
    margin: 0 auto 8px;
    text-align: center;
    text-wrap: balance;
}

.contact-page-intro--secondary {
    max-width: 540px;
    margin-bottom: 0;
    color: #5d554e;
}

.contact-page-status {
    max-width: 520px;
    margin: 26px auto 0;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.58);
    color: #4e473f;
}

.contact-page-status--error {
    color: #8f3f3f;
}

.contact-quick-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    max-width: 720px;
    margin: 34px auto 0;
}

.contact-quick-link {
    display: grid;
    gap: 6px;
    padding: 18px 18px 16px;
    background: rgba(255, 255, 255, 0.42);
    border: 1px solid rgba(18, 18, 18, 0.06);
    text-decoration: none;
    color: inherit;
    text-align: left;
}

.contact-quick-label {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-muted);
    font-weight: 600;
}

.contact-quick-value {
    font-size: 1rem;
    line-height: 1.68;
    color: #4b433d;
}

.contact-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    max-width: 720px;
    margin: 22px auto 0;
    flex-wrap: wrap;
}

.contact-whatsapp-link {
    min-width: 260px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.54);
    border: 1px solid rgba(18, 18, 18, 0.06);
    padding: 28px;
    box-shadow: none;
}

.contact-form-shell {
    margin-top: 56px;
}

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

.contact-form .form-row--single {
    grid-template-columns: 1fr;
}

.contact-form label {
    display: block;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 7px;
    color: var(--color-muted);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid rgba(18, 18, 18, 0.14);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--color-ink);
    background: rgba(255, 255, 255, 0.78);
    transition: border-color 0.25s ease, background 0.25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-ink);
    background: rgba(255, 255, 255, 0.96);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
    margin-bottom: 16px;
}

.contact-form .btn-secondary {
    margin-top: 2px;
}

.contact-booking-note {
    margin: 18px auto 0;
    max-width: 520px;
    text-align: center;
    color: var(--color-muted);
}

.contact-booking-note a {
    text-decoration: underline;
    text-underline-offset: 0.16em;
}

/* ============================================
   GENERIC PAGES
   ============================================ */
.page-shell {
    min-height: 55vh;
}

.page-shell--extras {
    background: var(--color-paper);
}

.page-shell-title,
.contact-page-section h1,
.gallery-section h1,
.book-party-section h1,
.shop-page-header h1 {
    text-align: center;
    margin-bottom: 30px;
}

.page-shell-content {
    max-width: 780px;
    margin: 0 auto;
    text-align: left;
}

.page-shell-content > * + * {
    margin-top: 1.25rem;
}

.page-shell-content a {
    text-decoration: underline;
    text-underline-offset: 0.16em;
}

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

.add-on-card-label {
    margin-bottom: 18px;
}

.addon-page {
    background: var(--color-paper);
}

.addon-header {
    padding: 74px 0 20px;
}

.addon-header-shell {
    max-width: 1000px;
    margin: 0 auto;
}

.addon-header-copy {
    max-width: 720px;
    margin: 0 auto;
}

.addon-header-copy .page-shell-eyebrow,
.booking-page-copy .page-shell-eyebrow {
    text-align: center;
    margin-bottom: 14px;
}

.addon-header-copy h1,
.booking-page-copy h1 {
    text-align: center;
    margin-bottom: 18px;
}

.addon-intro,
.booking-page-intro {
    max-width: 520px;
    color: #514943;
}

.addon-intro {
    margin: 0 auto;
    text-align: center;
}

.booking-page-intro {
    margin-bottom: 0;
}

.addon-products {
    padding: 0 0 78px;
}

.addon-products-shell {
    max-width: 1000px;
    margin: 0 auto;
}

.addon-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 420px));
    justify-content: center;
    gap: 28px;
}

.addon-product-grid--single {
    grid-template-columns: minmax(360px, 480px);
}

.addon-product-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(18, 18, 18, 0.08);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    height: 100%;
}

.addon-product-card-media {
    aspect-ratio: 4 / 3;
    background: #f4efe8;
    width: 100%;
}

.addon-product-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.addon-product-card-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 24px;
    flex: 1;
}

.addon-product-card-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 0;
}

.addon-product-card-heading h2 {
    margin: 0;
    font-size: 1.38rem;
    line-height: 1.05;
}

.addon-product-card-price {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-muted);
    white-space: nowrap;
}

.addon-product-card-description {
    margin: 0;
    color: #575048;
    line-height: 1.7;
    flex: 1;
}

.addon-product-button {
    width: 100%;
    margin-top: auto;
}

.addon-product-button.is-selected {
    background: rgba(255, 255, 255, 0.52);
    color: var(--color-ink);
    border-color: rgba(18, 18, 18, 0.18);
    box-shadow: inset 0 0 0 1px rgba(18, 18, 18, 0.12);
}

.book-party-section {
    text-align: left;
    min-height: 0;
}

.booking-page-note,
.booking-page-footnote {
    font-size: 0.86rem;
    line-height: 1.6;
    color: var(--color-muted);
}

.booking-page-shell {
    max-width: 760px;
    margin: 0 auto 34px;
}

.booking-page-copy {
    text-align: center;
}

.booking-page-copy .page-shell-eyebrow,
.booking-page-copy h1,
.booking-page-intro {
    text-align: center;
}

.booking-page-copy h1 {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.booking-page-intro {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.booking-page-note {
    max-width: 560px;
    margin: 16px auto 0;
    text-align: center;
}

.booking-page-status {
    margin: 24px auto 0;
    max-width: 620px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(18, 18, 18, 0.08);
    text-align: left;
}

.booking-page-status--error {
    border-color: rgba(90, 45, 45, 0.18);
}

.booking-enquiry-form {
    margin-top: 0;
}

.form-card {
    max-width: 880px;
    margin: 0 auto;
}

.booking-form-card {
    max-width: 760px;
    padding: 40px;
}

.booking-form-section + .booking-form-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(18, 18, 18, 0.08);
}

.booking-form-section .page-shell-eyebrow {
    text-align: left;
    margin-bottom: 18px;
}

.booking-form-section .form-row:last-child {
    margin-bottom: 0;
}

.booking-field-hint {
    margin: 10px 0 0;
    font-size: 0.82rem;
    line-height: 1.6;
    color: var(--color-muted);
}

.booking-setup-summary {
    display: grid;
    gap: 16px;
}

.booking-setup-items {
    display: grid;
    gap: 12px;
}

.booking-setup-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(18, 18, 18, 0.08);
}

.booking-setup-line-copy {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    flex: 1;
    min-width: 0;
}

.booking-setup-line-label {
    color: var(--color-ink);
}

.booking-setup-line-price,
.booking-setup-total {
    font-family: var(--font-sans);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-muted);
    white-space: nowrap;
}

.booking-setup-remove {
    border: none;
    background: transparent;
    color: var(--color-ink);
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

.booking-setup-total {
    margin: 0;
    text-align: right;
}

.booking-form-actions {
    margin-top: 34px;
    padding-top: 28px;
    border-top: 1px solid rgba(18, 18, 18, 0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.booking-page-footnote {
    margin: 0;
}

.gallery-shell {
    max-width: 1080px;
}

.gallery-intro {
    max-width: 720px;
    margin: 0 auto 52px;
    text-align: center;
}

.gallery-intro p:last-child {
    margin: 0 auto;
    color: #575048;
}

.gallery-stories {
    display: grid;
    gap: 58px;
}

.gallery-story {
    display: grid;
    gap: 24px;
}

.gallery-story + .gallery-story {
    padding-top: 36px;
    border-top: 1px solid rgba(18, 18, 18, 0.08);
}

.gallery-story-copy {
    max-width: 640px;
}

.gallery-story-copy h2 {
    margin: 0 0 10px;
    font-size: clamp(1.55rem, 2.4vw, 2.15rem);
    line-height: 1.04;
    letter-spacing: -0.025em;
}

.gallery-story-copy p {
    margin: 0;
    color: #5f5750;
}

.gallery-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.95fr);
    gap: 20px;
    align-items: start;
}

.gallery-story-grid--count-1 {
    grid-template-columns: minmax(0, 1fr);
    max-width: 760px;
}

.gallery-story-grid--count-2 .gallery-shot.is-featured {
    grid-row: auto;
}

.gallery-shot {
    margin: 0;
}

.gallery-shot.is-featured {
    grid-row: span 2;
}

.gallery-shot-button {
    width: 100%;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    text-align: left;
}

.gallery-shot img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-shot-button:hover img,
.gallery-shot-button:focus-visible img {
    transform: translateY(-1px);
    opacity: 0.96;
}

.gallery-shot figcaption {
    margin-top: 10px;
    font-size: 0.84rem;
    line-height: 1.55;
    color: var(--color-muted);
}

.gallery-empty-state {
    max-width: 640px;
    margin: 0 auto;
    padding: 36px 0 10px;
    text-align: center;
}

.gallery-empty-state h2 {
    margin: 0 0 12px;
    font-size: clamp(1.4rem, 2.6vw, 1.95rem);
    line-height: 1.08;
}

.gallery-empty-state p {
    margin: 0 auto;
    color: #5f5750;
}

.gallery-story-teasers {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
}

.gallery-story-teaser {
    padding: 22px 18px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(18, 18, 18, 0.06);
    text-align: left;
}

.gallery-story-teaser h3 {
    margin: 0 0 10px;
    font-size: 1.05rem;
    line-height: 1.18;
    letter-spacing: -0.015em;
}

.gallery-story-teaser p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.65;
    color: #5f5750;
}

.gallery-cta {
    max-width: 360px;
    margin: 64px auto 0;
    padding-top: 36px;
    text-align: center;
    border-top: 1px solid rgba(18, 18, 18, 0.08);
}

.gallery-cta p {
    margin: 0 0 18px;
}

.gallery-cta .btn-secondary {
    min-width: 220px;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1200;
}

.gallery-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 18, 16, 0.82);
}

.gallery-lightbox-dialog {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100vw - 48px));
    height: min(88vh, 820px);
    margin: 6vh auto;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
}

.gallery-lightbox-figure {
    margin: 0;
    background: transparent;
}

.gallery-lightbox-figure img {
    width: 100%;
    max-height: 72vh;
    object-fit: contain;
    display: block;
}

.gallery-lightbox-caption-shell {
    margin-top: 16px;
    color: #f5efe7;
    text-align: center;
}

.gallery-lightbox-title,
.gallery-lightbox-caption {
    margin: 0;
}

.gallery-lightbox-title {
    font-size: 0.86rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.gallery-lightbox-caption {
    margin-top: 8px;
    color: rgba(245, 239, 231, 0.82);
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
    border: none;
    background: rgba(255, 253, 250, 0.14);
    color: #fffdfa;
    cursor: pointer;
}

.gallery-lightbox-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 44px;
    height: 44px;
    font-size: 1.65rem;
    line-height: 1;
}

.gallery-lightbox-nav {
    width: 46px;
    height: 46px;
    font-size: 1.3rem;
}

.gallery-lightbox-open {
    overflow: hidden;
}

.book-party-section {
    text-align: left;
    min-height: 0;
}

/* ============================================
   WOOCOMMERCE
   ============================================ */
.shop-page-header {
    text-align: center;
    background: var(--color-paper-soft);
}

.shop-page-products {
    padding: 0 0 92px;
    background: var(--color-paper-soft);
}

.shop-page-count,
.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
    color: var(--color-muted);
    font-size: 0.75rem !important;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-top: 12px;
    margin-bottom: 28px !important;
}

.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
}

.woocommerce ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    padding: 18px !important;
    float: none !important;
    text-align: left;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(18, 18, 18, 0.08);
}

.woocommerce ul.products li.product a img {
    margin-bottom: 18px !important;
    aspect-ratio: 1;
    object-fit: cover;
    background: #f6f3ee;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--font-display);
    font-size: 1.5rem !important;
    line-height: 1.02;
    letter-spacing: -0.025em;
    padding: 0 !important;
    margin-bottom: 10px !important;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    padding: 32px 0;
    text-align: center;
    color: var(--color-muted);
    font-size: 0.82rem;
    background: var(--color-paper-soft);
    border-top: 1px solid rgba(18, 18, 18, 0.08);
}

.setup-drawer-open {
    overflow: hidden;
}

.setup-launcher {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1200;
}

.setup-launcher-button {
    border: 1px solid rgba(18, 18, 18, 0.16);
    background: rgba(255, 253, 250, 0.96);
    padding: 13px 18px;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-ink);
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.setup-launcher-button:hover {
    background: rgba(255, 253, 250, 0.99);
    box-shadow: 0 20px 40px rgba(36, 28, 22, 0.12);
    transform: translateY(-1px);
}

.setup-drawer {
    position: fixed;
    inset: 0;
    z-index: 1250;
}

.setup-drawer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(18, 18, 18, 0.16);
}

.setup-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(420px, calc(100vw - 28px));
    height: 100%;
    background: rgba(255, 253, 250, 0.98);
    border-left: 1px solid rgba(18, 18, 18, 0.08);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.setup-panel-close {
    align-self: flex-end;
    border: none;
    background: transparent;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    color: var(--color-ink);
}

.setup-panel-eyebrow {
    margin-top: -10px;
}

.setup-panel-items {
    display: grid;
    gap: 12px;
}

.setup-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.setup-line span {
    font-size: 0.98rem;
    line-height: 1.68;
    color: #544d46;
}

.setup-line-remove {
    border: none;
    background: transparent;
    color: var(--color-ink);
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

.setup-panel-total {
    font-family: var(--font-display);
    font-size: 1.6rem;
    line-height: 1.02;
}

.setup-panel-note {
    font-size: 0.86rem;
    line-height: 1.6;
    color: var(--color-muted);
}

.setup-panel-actions {
    display: grid;
    gap: 10px;
}

.contact-form input[readonly] {
    cursor: pointer;
}

.flatpickr-calendar {
    background: rgba(255, 253, 250, 0.98);
    border: 1px solid rgba(18, 18, 18, 0.1);
    box-shadow: var(--shadow-soft);
}

.flatpickr-months .flatpickr-month,
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year,
.flatpickr-weekday {
    font-family: var(--font-sans);
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover {
    background: var(--color-ink);
    border-color: var(--color-ink);
}

.flatpickr-day.today {
    border-color: rgba(18, 18, 18, 0.38);
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
    color: rgba(18, 18, 18, 0.24);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .container {
        padding: 0 22px;
    }

    .products-grid,
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .gallery-story-grid {
        grid-template-columns: 1fr;
    }

    .contact-page-shell {
        max-width: 700px;
    }

    .contact-quick-links {
        grid-template-columns: 1fr;
    }

    .extras-overview-grid,
    .addon-product-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        max-width: 620px;
    }

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

    .gallery-story-grid--count-1 {
        max-width: none;
    }

    .gallery-story-teasers {
        grid-template-columns: 1fr;
    }

    .gallery-shot.is-featured {
        grid-row: auto;
    }

    .gallery-lightbox-dialog {
        width: min(100vw - 32px, 920px);
        grid-template-columns: 1fr;
        height: auto;
        margin: 4vh auto;
        padding: 56px 0 18px;
    }

    .gallery-lightbox-figure img {
        max-height: 66vh;
    }

    .gallery-lightbox-close {
        top: 4px;
        right: 0;
    }

    .gallery-lightbox-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .gallery-lightbox-nav--prev {
        left: 12px;
    }

    .gallery-lightbox-nav--next {
        right: 12px;
    }

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

    .booking-form-card {
        padding: 34px;
    }

    .setup-panel {
        width: min(420px, calc(100vw - 20px));
    }
}

@media (max-width: 768px) {
    .site-header .container {
        align-items: center;
        gap: 16px;
        padding-top: 18px;
        padding-bottom: 16px;
    }

    .site-header-controls {
        gap: 10px;
    }

    .site-logo-primary {
        font-size: 1.45rem;
    }

    .site-logo-secondary {
        margin-top: 9px;
        font-size: 0.48rem;
        letter-spacing: 0.18em;
        padding-left: 0.34em;
    }

    .language-switch {
        font-size: 0.62rem;
        letter-spacing: 0.14em;
        gap: 8px;
    }

    .menu-toggle {
        display: block;
        align-self: flex-end;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 253, 250, 0.98);
        border-top: 1px solid rgba(18, 18, 18, 0.08);
        box-shadow: 0 12px 24px rgba(18, 18, 18, 0.08);
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        padding: 22px;
        gap: 12px;
    }

    .main-nav a {
        letter-spacing: 0.22em;
    }

    .main-nav a::after {
        bottom: -4px;
    }

    .hero-section {
        padding: 96px 0 82px;
    }

    .hero-content {
        width: calc(100% - 44px);
    }

    .hero-content h1 {
        max-width: 360px;
        font-size: clamp(1.9rem, 7.4vw, 2.8rem);
        margin-bottom: 18px;
        line-height: 1.08;
    }

    .hero-content p {
        font-size: 0.96rem;
        max-width: 31ch;
        line-height: 1.82;
        margin-bottom: 32px;
    }

    .teepees-section,
    .shop-section,
    .contact-section,
    .gallery-section,
    .book-party-section,
    .page-shell,
    .shop-page-header,
    .shop-page-products {
        padding: 98px 0;
    }

    .site-footer {
        padding-bottom: calc(116px + env(safe-area-inset-bottom));
    }

    .teepees-section > .container > p:not(.service-capacity):not(.service-capacity-note):not(.service-value-line),
    .service-value-line,
    .how-it-works-intro,
    .shop-intro-subtitle,
    .shop-intro-copy,
    .booking-page-note {
        max-width: 31ch;
        line-height: 1.84;
    }

    .teepees-section > .container > p:not(.service-capacity):not(.service-capacity-note):not(.service-value-line) {
        margin-bottom: 28px;
    }

    .service-value-line {
        margin: -10px auto 14px;
    }

    .service-capacity {
        max-width: 28ch;
        margin: 0 auto 12px;
    }

    .service-capacity-note {
        max-width: 31ch;
        margin: 0 auto 38px;
    }

    .booking-page-note {
        margin-top: 14px;
    }

    .service-cards {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 22px;
    }

    .service-card {
        padding: 30px 24px 26px;
        background: rgba(255, 255, 255, 0.9);
        border-color: rgba(18, 18, 18, 0.1);
        box-shadow: var(--shadow-card-subtle);
    }

    .service-card:nth-child(odd) {
        background: rgba(247, 244, 239, 0.9);
    }

    .service-card h3 {
        font-size: 1.5rem;
        margin-bottom: 16px;
    }

    .service-card p {
        max-width: 28ch;
        line-height: 1.82;
        color: #6a625b;
    }

    .how-it-works-section {
        padding: 98px 0;
    }

    .how-it-works-section h2,
    .shop-section h2,
    .teepees-section h2 {
        margin-bottom: 24px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 38px;
    }

    .process-step {
        padding: 26px 22px 22px;
        background: rgba(255, 255, 255, 0.86);
        border-color: rgba(18, 18, 18, 0.1);
        box-shadow: var(--shadow-card-subtle);
    }

    .process-step h3 {
        font-size: 1.38rem;
        margin-bottom: 14px;
    }

    .process-step p {
        max-width: 30ch;
        line-height: 1.78;
        color: #69615a;
    }

    .shop-intro {
        margin-bottom: 52px;
    }

    .shop-intro-subtitle {
        margin-bottom: 16px;
    }

    .add-on-cards {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-top: 34px;
    }

    .add-on-card {
        padding: 28px 22px 24px;
        box-shadow: var(--shadow-card-subtle);
    }

    .add-on-card:nth-child(odd) {
        background: rgba(247, 244, 239, 0.9);
    }

    .add-on-card h2,
    .add-on-card h3 {
        font-size: 1.46rem;
        margin-bottom: 14px;
    }

    .add-on-card p {
        max-width: 30ch;
        line-height: 1.8;
        color: #686059;
    }

    .addon-header {
        padding: 64px 0 18px;
    }

    .addon-product-card-body {
        padding: 22px 20px;
    }

    .addon-product-card-heading {
        flex-direction: column;
        gap: 8px;
    }

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

    .booking-page-shell {
        margin-bottom: 26px;
    }

    .booking-form-card {
        padding: 28px 22px;
    }

    .booking-form-section + .booking-form-section {
        margin-top: 24px;
        padding-top: 24px;
    }

    .booking-form-actions {
        align-items: stretch;
    }

    .booking-setup-line-copy {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .setup-launcher {
        right: 16px;
        left: 16px;
        bottom: calc(12px + env(safe-area-inset-bottom));
    }

    .setup-launcher-button {
        width: 100%;
        padding: 11px 16px;
        border-width: 1.2px;
        background: rgba(255, 253, 250, 0.86);
        backdrop-filter: blur(10px);
        box-shadow: 0 12px 24px rgba(36, 28, 22, 0.12);
        font-size: 0.64rem;
        letter-spacing: 0.16em;
    }

    .setup-panel {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 18px;
    }

    .site-logo-primary {
        font-size: 1.28rem;
    }

    .site-logo-secondary {
        margin-top: 8px;
        font-size: 0.39rem;
        letter-spacing: 0.14em;
    }

    .hero-content {
        width: calc(100% - 36px);
    }

    .hero-content h1 {
        max-width: 260px;
        font-size: clamp(1.55rem, 8.8vw, 2.05rem);
        line-height: 1.1;
        letter-spacing: -0.03em;
    }

    .hero-content p {
        font-size: 0.89rem;
        line-height: 1.8;
        max-width: 29ch;
    }

    .teepees-section h2,
    .shop-section h2,
    .contact-section h2,
    .page-shell-title,
    .contact-page-section h1,
    .gallery-section h1,
    .book-party-section h1,
    .shop-page-header h1 {
        max-width: 250px;
        margin-left: auto;
        margin-right: auto;
        font-size: clamp(1.18rem, 6vw, 1.52rem);
        line-height: 1.14;
        letter-spacing: -0.005em;
    }

    .teepees-section h2,
    .shop-section h2,
    .contact-section h2 {
        max-width: 260px;
        font-size: clamp(1.2rem, 6.5vw, 1.5rem);
        line-height: 1.12;
        letter-spacing: 0;
    }

    .service-card,
    .process-step,
    .add-on-card {
        padding: 24px 20px;
    }

    .service-card h3,
    .process-step h3,
    .add-on-card h2,
    .add-on-card h3 {
        font-size: 1.32rem;
    }

    .service-card p,
    .process-step p,
    .add-on-card p {
        max-width: 27ch;
    }

    .setup-launcher {
        left: 14px;
        right: 14px;
        bottom: calc(10px + env(safe-area-inset-bottom));
    }

    .products-grid,
    .woocommerce ul.products {
        grid-template-columns: 1fr !important;
    }

    .gallery-shell {
        max-width: 100%;
    }

    .gallery-intro {
        margin-bottom: 38px;
    }

    .gallery-story {
        gap: 18px;
    }

    .gallery-story + .gallery-story {
        padding-top: 28px;
    }

    .gallery-story-copy h2,
    .gallery-empty-state h2 {
        font-size: clamp(1.15rem, 5.4vw, 1.45rem);
    }

    .gallery-story-grid {
        gap: 14px;
    }

    .gallery-shot figcaption {
        margin-top: 8px;
        font-size: 0.8rem;
    }

    .gallery-cta {
        margin-top: 44px;
        padding-top: 28px;
    }

    .gallery-lightbox-dialog {
        width: calc(100vw - 20px);
        padding-top: 54px;
    }

    .gallery-lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.05rem;
    }

    .gallery-lightbox-nav--prev {
        left: 6px;
    }

    .gallery-lightbox-nav--next {
        right: 6px;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .contact-page-intro {
        max-width: 320px;
    }

    .contact-form,
    .woocommerce ul.products li.product,
    .product-card {
        padding: 18px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-add-to-cart,
    .product-card .button,
    .contact-form .wpcf7-submit,
    .contact-form button,
    .woocommerce ul.products li.product a.button {
        width: 100%;
        padding: 16px 20px;
    }
}
