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

:root {
    --primary-color: #ffffff;
    --secondary-color: #000000;
    --accent-color: #c23535;
    --text-dark: #ffffff;
    --text-light: #b0b0b0;
    --bg-light: #1a1a1a;
    --bg-dark: #000000;
    --bg-section: #0f0f0f;
    --border-color: #333333;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'proxima-nova', 'Proxima Nova', 'Montserrat', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    image-orientation: from-image;
}

a {
    color: inherit;
}

section[id],
#podcask {
    scroll-margin-top: 88px;
}

.skip-to-content {
    position: absolute;
    top: -9999px;
    left: 0;
    background: #000;
    color: #fff;
    padding: 8px 16px;
    z-index: 10000;
    font-weight: 600;
}

.skip-to-content:focus {
    top: 0;
}

.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.navbar.is-scrolled {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-image {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.35rem;
    align-items: center;
    margin-left: auto;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--accent-color);
}

.nav-link:hover::after,
.nav-link.is-active::after {
    width: 100%;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.65rem 1.25rem;
    background: var(--accent-color);
    color: #000;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    border-radius: 50px;
    letter-spacing: 0.02em;
    transition: var(--transition);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(194, 53, 53, 0.35);
}

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

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.hero {
    position: relative;
    z-index: 1;
    isolation: isolate;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: #fff;
}

.hero-background,
.hero-stills,
.hero-still,
.hero-video,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-background {
    z-index: -1;
    background: #000;
    overflow: hidden;
}

.hero > .container {
    position: relative;
    z-index: 3;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.hero.has-video .hero-video {
    display: block;
}

.hero.has-video .hero-stills {
    display: none;
}

.hero-still {
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1.2s ease, transform 8s ease;
}

.hero-still.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.7) 42%, rgba(0, 0, 0, 0.86) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 7rem 1rem 4rem;
    animation: fadeInUp 1s ease-out;
    text-shadow: 0 8px 32px rgba(0, 0, 0, 0.75);
}

.hero-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 1.25rem;
    color: #ffffff;
    text-shadow: 0 4px 28px rgba(0, 0, 0, 0.9);
}

.title-word {
    display: inline;
    white-space: nowrap;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.45rem);
    font-weight: 300;
    max-width: 620px;
    margin: 0 auto 2.5rem;
    color: #fff;
    opacity: 0.92;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    display: inline-block;
    border: 2px solid transparent;
    cursor: pointer;
    font-family: inherit;
    text-align: center;
}

.btn-primary {
    background: var(--accent-color);
    color: #000;
    box-shadow: 0 10px 30px rgba(194, 53, 53, 0.3);
    text-shadow: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(194, 53, 53, 0.4);
}

.btn-secondary {
    background: #fff;
    color: #000;
    border-color: #fff;
    text-shadow: none;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 4px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-kicker {
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.section-subtitle,
.section-lede {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
}

.about {
    position: relative;
    min-height: 100vh;
    color: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
}

.about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.7) 50%, rgba(10, 10, 10, 0.42) 100%);
    z-index: 1;
}

.about-overlay {
    position: relative;
    z-index: 2;
    max-width: 820px;
    text-align: center;
    padding: 6rem 40px;
}

.about-heading {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
}

.about-learn-more-button {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.9);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    margin-top: 1.25rem;
    transition: var(--transition);
}

.about-learn-more-button:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #000;
    transform: translateY(-2px);
}

.studio-points,
.studio-kit {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(18, 18, 18, 1) 0%, rgba(10, 10, 10, 1) 100%);
    padding: 5rem 0;
}

.studio-points::before,
.studio-points::after,
.studio-kit::before,
.studio-kit::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    pointer-events: none;
}

.studio-points::before,
.studio-kit::before {
    width: 420px;
    height: 420px;
    top: -120px;
    left: 10%;
    background: rgba(194, 53, 53, 0.4);
}

.studio-points::after,
.studio-kit::after {
    width: 520px;
    height: 520px;
    bottom: -160px;
    right: 12%;
    background: rgba(194, 53, 53, 0.25);
}

.studio-points > .container,
.studio-kit > .container {
    position: relative;
    z-index: 2;
}

.points-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.point-card,
.kit-grid li {
    background: #000;
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.point-card {
    padding: 2rem 1.75rem;
}

.point-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.point-card p {
    color: var(--text-light);
    font-size: 0.98rem;
}

.studio-kit .section-header {
    margin-bottom: 2.5rem;
}

.kit-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.kit-grid li {
    padding: 1.35rem 1.25rem;
    font-weight: 500;
    font-size: 0.98rem;
    line-height: 1.4;
    color: #fff;
}

.kit-grid li::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--accent-color);
    margin-bottom: 0.85rem;
}

.about-cask {
    position: relative;
    min-height: 88vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 6.5rem 0;
    background: #000;
}

.about-cask-stills,
.about-cask-still,
.about-cask-veil {
    position: absolute;
    inset: 0;
}

.about-cask-still {
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1.2s ease, transform 8s ease;
}

.about-cask-still.is-active {
    opacity: 1;
    transform: scale(1);
}

.about-cask-veil {
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(105deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.78) 38%, rgba(0, 0, 0, 0.42) 72%, rgba(0, 0, 0, 0.28) 100%);
}

.about-cask > .container {
    position: relative;
    z-index: 2;
}

.about-cask-copy {
    max-width: 640px;
}

.about-cask-brands {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.75rem;
    margin-bottom: 2rem;
}

.about-cask-logo {
    height: 68px;
    width: auto;
}

.about-podcask-logo {
    height: 112px;
    width: auto;
}

.about-cask-brand-rule {
    width: 1px;
    height: 64px;
    background: rgba(255, 255, 255, 0.18);
    flex-shrink: 0;
}

.about-cask-copy .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-cask-copy p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about-cask-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.about-cask-actions .about-learn-more-button,
.about-cask-actions .btn {
    margin-top: 0;
}

.podcask-listen {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin: 0.35rem 0 1.5rem;
}

.podcask-listen .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

.gallery {
    padding: 5rem 0 4.5rem;
    background: var(--bg-section);
    overflow: hidden;
}

.gallery .section-header {
    margin-bottom: 1.75rem;
}

.gallery-carousel {
    position: relative;
    width: 100%;
}

.gallery-viewport {
    overflow: hidden;
    width: 100%;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
}

.gallery-track {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0 23vw;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.gallery-slide {
    flex: 0 0 54vw;
    width: 54vw;
    aspect-ratio: 3 / 2;
    height: auto;
    border: 0;
    padding: 0;
    background: #111;
    overflow: hidden;
    cursor: pointer;
    border-radius: 14px;
    opacity: 0.28;
    transition: opacity 0.45s ease;
}

.gallery-slide:hover {
    opacity: 0.5;
}

.gallery-slide.is-active,
.gallery-slide.is-active:hover {
    opacity: 1;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-slide.is-active img {
    transform: scale(1.02);
}

.gallery-slide--portrait {
    flex: 0 0 27vw;
    width: 27vw;
    aspect-ratio: 3 / 4;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    cursor: pointer;
}

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

.gallery-arrow::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    top: 18px;
}

.gallery-arrow--prev::before {
    left: 19px;
    transform: rotate(-135deg);
}

.gallery-arrow--next::before {
    left: 14px;
    transform: rotate(45deg);
}

.gallery-arrow:hover {
    background: var(--accent-color);
    color: #000;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.25rem;
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 0;
    padding: 0;
    background: rgba(255, 255, 255, 0.28);
    cursor: pointer;
}

.gallery-dot.is-active {
    background: var(--accent-color);
    width: 22px;
    border-radius: 8px;
}

.pricing {
    padding: 5rem 0;
    background: #000;
}

.pricing-grid {
    display: grid;
    gap: 0.85rem;
}

.pricing-grid--sessions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-grid--hire {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: calc((100% - 0.85rem) * 2 / 3);
    margin: 0.85rem auto 0;
}

.price-card {
    background: var(--bg-section);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.15rem 1rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.price-card--featured {
    border-color: var(--accent-color);
    box-shadow: 0 0 28px rgba(194, 53, 53, 0.45), 0 8px 24px rgba(194, 53, 53, 0.18);
}

.price-label {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-color);
    font-weight: 600;
}

.price-card h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
}

.price-amount {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.price-amount span {
    display: inline;
    margin-left: 0.25rem;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-light);
}

.price-card ul {
    list-style: none;
    margin: 0.35rem 0 0.6rem;
    flex: 1;
}

.price-card li {
    color: var(--text-light);
    padding: 0.28rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.8rem;
}

.price-card li:last-child {
    border-bottom: 0;
}

.price-card .btn {
    width: 100%;
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
}

.pricing-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.88rem;
    max-width: 680px;
    margin: 1.75rem auto 0;
}

.faq {
    padding: 5rem 0;
    background: var(--bg-section);
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq details {
    background: #000;
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.faq details[open] {
    border-color: var(--accent-color);
}

.faq summary {
    cursor: pointer;
    list-style: none;
    position: relative;
    padding: 1.15rem 2.75rem 1.15rem 1.35rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.05rem;
}

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

.faq summary::after {
    content: '';
    position: absolute;
    right: 1.35rem;
    top: 50%;
    width: 8px;
    height: 8px;
    margin-top: -6px;
    border-right: 2px solid var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}

.faq details[open] summary::after {
    margin-top: -2px;
    transform: rotate(-135deg);
}

.faq summary:hover {
    color: var(--accent-color);
}

.faq details p {
    padding: 0 1.35rem 1.2rem;
    color: var(--text-light);
    font-size: 0.98rem;
    line-height: 1.7;
}

.contact {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    background: #000;
}

.contact-background {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.85) 60%, rgba(10, 10, 10, 0.95) 100%),
        url('images/gallery/web/studio-08.jpg') center / cover no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.9;
    filter: saturate(115%);
    z-index: 0;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact .section-header {
    margin-bottom: 2.75rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), #d64a4a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    flex-shrink: 0;
}

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

.contact-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-item p,
.contact-item a {
    color: var(--text-light);
    text-decoration: none;
}

.contact-item a:hover {
    color: #fff;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    touch-action: manipulation;
    accent-color: var(--accent-color);
}

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

.form-group {
    width: 100%;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-family: inherit;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    background: var(--bg-light);
    color: var(--primary-color);
    transition: var(--transition);
    color-scheme: dark;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23c23535' d='M1.4.6L6 5.2 10.6.6 12 2 6 8 0 2z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 1.15rem center;
    background-size: 12px 8px;
    padding-right: 2.75rem;
    cursor: pointer;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(194, 53, 53, 0.2);
    background: var(--bg-section);
}

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

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.contact-form .btn {
    min-height: 48px;
    width: 100%;
}

.form-privacy {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-top: -0.35rem;
}

.form-privacy a {
    color: #fff;
    text-decoration: underline;
}

.form-privacy a:hover {
    color: var(--accent-color);
}

.footer {
    background: #000;
    color: #fff;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-wordmark {
    height: 40px;
    width: auto;
    margin-bottom: 1.25rem;
}

.footer-brand h3 {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.footer-brand p,
.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-links h4,
.footer-social h4 {
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 0.85rem;
}

.social-links a {
    width: 42px;
    height: 42px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition);
}

.social-links svg {
    width: 18px;
    height: 18px;
}

.social-links a:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.footer-podcask {
    width: 92px;
    margin-top: 1.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.subpage {
    padding: 8.5rem 0 5rem;
    min-height: 70vh;
    background: var(--bg-section);
}

.subpage-copy {
    max-width: 720px;
}

.subpage-copy h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 1.25rem;
}

.subpage-copy p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.subpage-copy a {
    color: #fff;
}

.subpage-copy a:hover {
    color: var(--accent-color);
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5rem;
}

.lightbox[hidden] {
    display: none;
}

.lightbox img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close,
.lightbox-nav {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 0;
    color: #fff;
    cursor: pointer;
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.lightbox-close {
    top: 1.5rem;
    right: 1.5rem;
}

.lightbox-close::before,
.lightbox-close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 14px;
    right: 14px;
    height: 2px;
    background: #fff;
}

.lightbox-close::before { transform: rotate(45deg); }
.lightbox-close::after { transform: rotate(-45deg); }

.lightbox-prev,
.lightbox-next {
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }

.lightbox-prev::before,
.lightbox-next::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    top: 18px;
}

.lightbox-prev::before {
    left: 20px;
    transform: rotate(-135deg);
}

.lightbox-next::before {
    left: 14px;
    transform: rotate(45deg);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 8px); }
}

@media (max-width: 1100px) {
    .pricing-grid--hire {
        max-width: none;
    }

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

@media (max-width: 968px) {
    .nav-cta { display: none; }

    .menu-toggle { display: flex; }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        align-items: flex-start;
        padding: 1.25rem 1.5rem 1.75rem;
        gap: 1rem;
        display: none;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu.is-open { display: flex; }

    .points-grid,
    .contact-content,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .gallery-slide {
        flex: 0 0 88vw;
        width: 88vw;
        height: auto;
        aspect-ratio: 3 / 2;
    }

    .gallery-slide--portrait {
        flex: 0 0 44vw;
        width: 44vw;
        aspect-ratio: 3 / 4;
    }

    .gallery-track {
        padding: 0 6vw;
        gap: 0.75rem;
    }

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

    .contact {
        padding: 3.5rem 0;
    }

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

    .about,
    .about-overlay {
        min-height: auto;
    }

    .about-overlay { padding: 4.5rem 24px; }

    .about-cask {
        min-height: auto;
        padding: 5rem 0 4.5rem;
    }

    .about-cask-veil {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.78) 100%);
    }

    .contact-content {
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .pricing-grid--sessions,
    .pricing-grid--hire {
        grid-template-columns: 1fr;
        max-width: none;
    }
}

@media (max-width: 640px) {
    .hero-title { font-size: clamp(2.1rem, 11vw, 3.2rem); }

    .hero-buttons .btn { width: 100%; }

    .pricing-grid--sessions,
    .pricing-grid--hire {
        grid-template-columns: 1fr;
        max-width: none;
    }

    .about-cask-logo {
        height: 52px;
    }

    .about-podcask-logo {
        height: 88px;
    }

    .gallery-slide {
        flex: 0 0 92vw;
        width: 92vw;
        height: auto;
        aspect-ratio: 3 / 2;
        border-radius: 8px;
    }

    .gallery-slide--portrait {
        flex: 0 0 46vw;
        width: 46vw;
        aspect-ratio: 3 / 4;
    }

    .lightbox { padding: 4rem 1rem; }

    .price-amount { font-size: 1.45rem; }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .hero-content,
    .scroll-indicator {
        animation: none;
    }

    .hero-still,
    .about-cask-still {
        transform: none;
        transition: opacity 0.4s ease;
    }

    .hero-still.is-active,
    .about-cask-still.is-active {
        transform: none;
    }

    .gallery-track {
        transition: none;
    }

    .gallery-slide img {
        transition: none;
    }

    .gallery-slide.is-active img {
        transform: none;
    }

    .btn,
    .nav-cta,
    .about-learn-more-button {
        transition: none;
    }

    .btn:hover,
    .nav-cta:hover,
    .about-learn-more-button:hover {
        transform: none;
    }
}
