/* ============================================
   BOTTLED CREATIVE - Global Styles
   Design System: "The Rugged Editorial"
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    /* Core Palette */
    --background: #121410;
    --surface: #121410;
    --surface-dim: #121410;
    --surface-container-lowest: #0D0F0B;
    --surface-container-low: #1a1c18;
    --surface-container: #1e201c;
    --surface-container-high: #292b26;
    --surface-container-highest: #333531;
    --surface-bright: #383a35;
    --surface-variant: #333531;

    --primary: #C1CAB0;
    --primary-container: #39412e;
    --primary-fixed: #dde6cb;
    --primary-fixed-dim: #c1cab0;

    --secondary: #E2C19B;
    --secondary-container: #594325;
    --secondary-fixed: #ffddb6;

    --tertiary: #c4c8bb;
    --tertiary-container: #3b3f35;

    --on-primary: #2b3321;
    --on-secondary: #412d11;
    --on-tertiary: #2e3228;
    --on-surface: #e3e3dc;
    --on-surface-variant: #c6c7be;
    --on-background: #e3e3dc;
    --on-primary-container: #a4ac94;

    --outline: #909189;
    --outline-variant: #454841;

    --error: #ffb4ab;
    --inverse-surface: #e3e3dc;
    --inverse-on-surface: #2f312d;
    --inverse-primary: #59614c;

    /* Typography */
    --font-headline: 'Epilogue', sans-serif;
    --font-body: 'Manrope', sans-serif;
    --font-label: 'Manrope', sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--background);
    color: var(--on-surface);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

::selection {
    background-color: var(--primary);
    color: var(--on-primary);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
}

/* --- Utility Classes --- */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 4rem;
    }
}

@media (min-width: 1200px) {
    .container {
        padding: 0 6rem;
    }
}

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

/* --- Typography --- */
.font-headline { font-family: var(--font-headline); }
.font-body { font-family: var(--font-body); }
.font-label { font-family: var(--font-label); }

.label-sm {
    font-family: var(--font-label);
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.label-xs {
    font-family: var(--font-label);
    font-size: 0.5rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

/* --- Navigation --- */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(18, 20, 16, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

@media (min-width: 768px) {
    .nav {
        padding: 1.5rem 4rem;
    }
}

@media (min-width: 1200px) {
    .nav {
        padding: 1.5rem 6rem;
    }
}

.nav__logo {
    display: flex;
    align-items: center;
    height: 32px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.nav__logo:hover {
    opacity: 1;
}

.nav__logo-img {
    height: 58px;
    width: auto;
    display: block;
}

.nav__logo-text {
    font-family: var(--font-headline);
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--primary);
    text-transform: uppercase;
}

.nav__links {
    display: none;
    gap: 2.5rem;
    align-items: center;
    list-style: none;
}

@media (min-width: 768px) {
    .nav__links {
        display: flex;
    }
}

.nav__link {
    font-family: var(--font-headline);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: rgba(193, 202, 176, 0.5);
    transition: color 0.3s ease;
    padding-bottom: 0.25rem;
}

.nav__link:hover {
    color: var(--secondary);
}

.nav__link--active {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}

.nav__hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    color: var(--primary);
    font-size: 1.5rem;
    transition: transform 0.2s ease;
}

.nav__hamburger:active {
    transform: scale(0.9);
}

@media (min-width: 768px) {
    .nav__hamburger {
        display: none;
    }
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 15, 11, 0.97);
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu__close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    color: var(--primary);
    font-size: 2rem;
}

.mobile-menu__link {
    font-family: var(--font-headline);
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--on-surface);
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.mobile-menu__link:hover {
    color: var(--secondary);
}

/* --- Buttons --- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--primary);
    color: var(--on-primary);
    padding: 1.15rem 2.75rem;
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    transition: background-color 0.3s ease, transform 0.15s ease;
}

.btn-primary:hover {
    background-color: var(--secondary);
}

.btn-primary:active {
    transform: scale(0.97);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    color: var(--on-surface);
    padding: 1.15rem 2.75rem;
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid rgba(144, 145, 137, 0.4);
    transition: border-color 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* --- Hero Sections --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero--centered {
    align-items: center;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18, 20, 16, 0.7) 0%, rgba(18, 20, 16, 0.15) 35%, rgba(18, 20, 16, 0) 65%, rgba(18, 20, 16, 0.1) 100%);
}

.hero__content {
    position: relative;
    z-index: 10;
    padding: 0 2rem 4rem;
    max-width: 900px;
}

@media (min-width: 768px) {
    .hero__content {
        padding: 0 6rem 6rem;
    }
}

.hero__eyebrow {
    font-family: var(--font-label);
    font-size: 0.625rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 1rem;
    display: block;
}

.hero__title {
    font-family: var(--font-headline);
    font-size: clamp(2.8rem, 8vw, 7rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.9;
    letter-spacing: -0.03em;
    color: var(--on-surface);
    margin-bottom: 1.5rem;
}

.hero__title span {
    color: var(--primary);
}

.hero__subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--on-surface-variant);
    max-width: 540px;
    line-height: 1.7;
    margin-top: 1.5rem;
}

.hero__actions {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 3rem;
}

@media (min-width: 640px) {
    .hero__actions {
        flex-direction: row;
        align-items: center;
    }
}

/* Text outline effect */
.text-outline {
    -webkit-text-stroke: 1.5px rgba(193, 202, 176, 0.35);
    color: transparent;
}

/* --- Sections --- */
.section {
    padding: 6rem 2rem;
}

@media (min-width: 768px) {
    .section {
        padding: 8rem 4rem;
    }
}

@media (min-width: 1200px) {
    .section {
        padding: 8rem 6rem;
    }
}

.section--dark {
    background-color: var(--surface-container-lowest);
}

.section--mid {
    background-color: var(--surface-container);
}

.section__eyebrow {
    font-family: var(--font-label);
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 2rem;
    display: block;
}

.section__title {
    font-family: var(--font-headline);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--on-surface);
    margin-bottom: 1.5rem;
}

.section__divider {
    height: 3px;
    width: 4rem;
    background-color: var(--primary);
    margin-top: 0.5rem;
}

/* --- Grid Layouts --- */
.grid-12 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .grid-12 {
        grid-template-columns: repeat(12, 1fr);
        gap: 1.5rem;
    }
}

/* --- Cards --- */
.card {
    background-color: var(--surface-container);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: background-color 0.3s ease;
}

.card:hover {
    background-color: var(--surface-container-high);
}

/* --- Bento Grid --- */
.bento {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
}

@media (min-width: 768px) {
    .bento {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* --- Footer --- */
.footer {
    background-color: var(--surface-container-lowest);
    padding: 4rem 2rem;
}

@media (min-width: 768px) {
    .footer {
        padding: 4rem 4rem;
    }
}

@media (min-width: 1200px) {
    .footer {
        padding: 4rem 6rem;
    }
}

.footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer__inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer__brand {
    font-family: var(--font-headline);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.footer__logo-img {
    height: 24px;
    width: auto;
    display: block;
    opacity: 0.8;
}

.footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.footer__link {
    font-family: var(--font-label);
    font-size: 0.625rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(193, 202, 176, 0.35);
    transition: color 0.3s ease, opacity 0.3s ease;
    opacity: 0.8;
}

.footer__link:hover {
    color: var(--secondary);
    opacity: 1;
}

.footer__copy {
    font-family: var(--font-label);
    font-size: 0.625rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(193, 202, 176, 0.35);
}

/* --- Image Treatment --- */
.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-grayscale {
    filter: grayscale(30%);
    transition: filter 0.7s ease;
}

.img-grayscale:hover {
    filter: grayscale(0%);
}

/* --- Project Cards (Our Work) --- */
.project {
    position: relative;
    overflow: hidden;
    background-color: var(--surface-container-low);
}

.project__image {
    overflow: hidden;
}

.project__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.project:hover .project__image img {
    transform: scale(1.05);
}

.project__info {
    padding: 2rem;
}

.project__client {
    font-family: var(--font-label);
    font-size: 0.625rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.project__title {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.project__desc {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--on-surface-variant);
    margin-top: 0.75rem;
    line-height: 1.6;
}

/* --- Expandable Project Sections --- */
.project-expand {
    border-bottom: 1px solid rgba(69, 72, 65, 0.2);
}

.project-expand__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.project-expand__header:hover {
    color: var(--secondary);
}

.project-expand__header:hover .project-expand__icon {
    color: var(--secondary);
}

.project-expand__client {
    font-family: var(--font-headline);
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 0.25rem;
}

.project-expand__title {
    font-family: var(--font-label);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--secondary);
}

.project-expand__icon {
    font-size: 2rem;
    color: var(--primary);
    transition: transform 0.4s ease, color 0.3s ease;
}

.project-expand.active .project-expand__icon {
    transform: rotate(45deg);
}

.project-expand__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-expand.active .project-expand__body {
    max-height: 3000px;
}

.project-expand__content {
    padding-bottom: 3rem;
}

.project-expand__gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .project-expand__gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .project-expand__gallery {
        grid-template-columns: repeat(4, 1fr);
    }
}

.project-expand__gallery img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-expand__gallery img:hover {
    transform: scale(1.03);
}

.project-expand__video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    margin-top: 1.5rem;
    background-color: var(--surface-container);
}

.project-expand__video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* --- Chemical Cocktail --- */
.chemical-item {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(69, 72, 65, 0.2);
}

@media (min-width: 768px) {
    .chemical-item {
        flex-direction: row;
        align-items: flex-start;
        gap: 2.5rem;
    }
}

.chemical-item__number {
    font-family: var(--font-headline);
    font-size: 2.5rem;
    font-weight: 800;
    -webkit-text-stroke: 1px rgba(193, 202, 176, 0.3);
    color: transparent;
    transition: color 0.3s ease, -webkit-text-stroke-color 0.3s ease;
    min-width: 3rem;
}

.chemical-item:hover .chemical-item__number {
    color: var(--primary);
    -webkit-text-stroke-color: var(--primary);
}

.chemical-item__name {
    font-family: var(--font-headline);
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 0.25rem;
}

.chemical-item__subtitle {
    font-family: var(--font-headline);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.chemical-item__desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--on-surface-variant);
    line-height: 1.6;
}

/* --- Contact Form --- */
.form__group {
    margin-bottom: 2.5rem;
}

.form__label {
    font-family: var(--font-label);
    font-size: 0.625rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--on-surface-variant);
    display: block;
    margin-bottom: 0.5rem;
}

.form__input,
.form__textarea,
.form__select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(69, 72, 65, 0.4);
    padding: 0.75rem 0;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--on-surface);
    transition: border-color 0.3s ease;
    outline: none;
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
    border-color: var(--primary);
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: rgba(144, 145, 137, 0.3);
}

.form__textarea {
    resize: none;
    min-height: 120px;
}

.form__select {
    appearance: none;
    cursor: pointer;
}

.form__select option {
    background-color: var(--surface-container);
}

/* --- Core Values Grid --- */
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.value-card {
    background-color: var(--surface);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 300px;
    transition: background-color 0.3s ease;
}

.value-card:hover {
    background-color: var(--surface-container-high);
}

.value-card:nth-child(2) {
    background-color: var(--surface-container-high);
}

.value-card:nth-child(4) {
    background-color: var(--surface-container-highest);
}

@media (min-width: 1024px) {
    .value-card:nth-child(3) {
        transform: translateY(2rem);
    }
    .value-card:nth-child(4) {
        transform: translateY(4rem);
    }
}

.value-card__number {
    font-family: var(--font-label);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--secondary);
    text-transform: uppercase;
}

.value-card__title {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.value-card__desc {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--on-surface-variant);
    line-height: 1.6;
}

/* --- Scroll Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* --- Lightbox --- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 500;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox__img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox__close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

/* --- Why Bottled Section --- */
.why-item {
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(69, 72, 65, 0.15);
}

.why-item__title {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.why-item__desc {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--on-surface-variant);
    line-height: 1.7;
    max-width: 600px;
}

/* --- CTA Section --- */
.cta-section {
    padding: 8rem 2rem;
    text-align: center;
    background-color: var(--surface-container);
}

@media (min-width: 768px) {
    .cta-section {
        padding: 8rem 4rem;
    }
}

.cta-section__title {
    font-family: var(--font-headline);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section__actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .cta-section__actions {
        flex-direction: row;
    }
}

/* --- Material Symbols --- */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    vertical-align: middle;
}

/* --- Service Card --- */
.service-block {
    background-color: var(--surface-container);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-block__number {
    font-family: var(--font-label);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.service-block__title {
    font-family: var(--font-headline);
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin-bottom: 1rem;
}

.service-block__desc {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--on-surface-variant);
    line-height: 1.7;
    max-width: 500px;
}

.service-block__list {
    list-style: none;
    margin-top: 1.5rem;
}

.service-block__list li {
    font-family: var(--font-label);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(144, 145, 137, 0.7);
    padding: 0.4rem 0;
}

/* --- Play Button --- */
.play-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.play-btn__circle {
    width: 3rem;
    height: 3rem;
    border: 1px solid rgba(144, 145, 137, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.play-btn:hover .play-btn__circle {
    background-color: rgba(227, 227, 220, 0.05);
}

.play-btn__label {
    font-family: var(--font-label);
    font-size: 0.625rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--on-surface-variant);
}

/* --- Stat Block --- */
.stat {
    padding-top: 1.5rem;
}

.stat__value {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    font-weight: 800;
}

.stat__label {
    font-family: var(--font-label);
    font-size: 0.625rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-top: 0.25rem;
}

/* ============================================
   HOMEPAGE - MISSION SECTION
   ============================================ */
.hp-mission {
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hp-mission__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hp-mission__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35) saturate(0.8);
}

.hp-mission__bg-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(18,20,16,0.92) 0%, rgba(18,20,16,0.6) 50%, rgba(18,20,16,0.3) 100%);
}

.hp-mission__inner {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
}

.hp-mission__text {
    max-width: 600px;
}

.hp-mission__headline {
    font-family: var(--font-headline);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hp-mission__body {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--on-surface-variant);
    line-height: 1.8;
    max-width: 520px;
}

/* Accent column: quote card + thumbnail */
.hp-mission__accent {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hp-mission__quote-card {
    position: relative;
    background: rgba(193, 202, 176, 0.08);
    border: 1px solid rgba(193, 202, 176, 0.12);
    border-radius: 6px;
    padding: 2rem 2rem 2rem 2.5rem;
    overflow: hidden;
}

.hp-mission__watermark {
    position: absolute;
    right: -10px;
    bottom: -10px;
    height: 80px;
    width: auto;
    opacity: 0.06;
    pointer-events: none;
}

.hp-mission__quote-text {
    font-family: var(--font-headline);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--secondary);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.hp-mission__thumb {
    overflow: hidden;
    border-radius: 6px;
    height: 200px;
}

.hp-mission__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    cursor: pointer;
}

.hp-mission__thumb:hover img {
    transform: scale(1.04);
}

@media (min-width: 768px) {
    .hp-mission__inner {
        padding: 8rem 4rem;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 5rem;
    }
    .hp-mission__thumb {
        height: 240px;
    }
}

/* ============================================
   HOMEPAGE - IDENTITY CARDS
   ============================================ */
.hp-cards {
    padding: 0 2rem 4rem;
    background-color: var(--surface);
}

.hp-cards__inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
}

.hp-card {
    position: relative;
    overflow: hidden;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hp-card__img {
    position: absolute;
    inset: 0;
}

.hp-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    transition: opacity 0.5s ease, transform 0.7s ease;
}

.hp-card:hover .hp-card__img img {
    opacity: 0.45;
    transform: scale(1.03);
}

.hp-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18,20,16,0.95) 10%, rgba(18,20,16,0.4) 60%, transparent 100%);
}

.hp-card__content {
    position: relative;
    z-index: 2;
    padding: 2.5rem;
}

.hp-card__title {
    font-family: var(--font-headline);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    line-height: 1.1;
}

.hp-card__quote {
    font-family: var(--font-headline);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.hp-card__desc {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--on-surface-variant);
    line-height: 1.6;
    max-width: 400px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.hp-card:hover .hp-card__desc {
    opacity: 1;
}

@media (min-width: 768px) {
    .hp-cards { padding: 0 4rem 4rem; }
    .hp-cards__inner {
        grid-template-columns: repeat(3, 1fr);
    }
    .hp-card { min-height: 420px; }
}

/* ============================================
   HOMEPAGE - PHOTO GALLERY
   ============================================ */
.hp-gallery {
    padding: 4rem 2rem;
    background-color: var(--surface-container-lowest);
}

.hp-gallery__inner {
    max-width: 1400px;
    margin: 0 auto;
}

.hp-gallery__heading {
    font-family: var(--font-headline);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.hp-gallery__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
}

.hp-gallery__item {
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.hp-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    cursor: pointer;
}

.hp-gallery__item:hover img {
    transform: scale(1.04);
}

@media (min-width: 768px) {
    .hp-gallery { padding: 5rem 4rem; }
    .hp-gallery__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ============================================
   HOMEPAGE - FEATURED WORK + CTA
   ============================================ */
.hp-featured {
    padding: 4rem 2rem 4rem;
    background-color: var(--surface);
}

.hp-featured__inner {
    max-width: 1400px;
    margin: 0 auto;
}

.hp-featured__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
}

.hp-featured__main {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.hp-featured__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: transform 0.7s ease;
}

.hp-featured__main:hover img {
    transform: scale(1.04);
}

.hp-featured__main-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--background) 0%, transparent 60%);
}

.hp-featured__main-label {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    z-index: 2;
}

.hp-featured__main-label span {
    font-family: var(--font-label);
    font-size: 0.625rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
}

.hp-featured__main-label h4 {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
}

.hp-featured__side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

.hp-featured__side-card {
    background-color: var(--surface-container);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 200px;
}

.hp-featured__side-card h4 {
    font-family: var(--font-headline);
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.hp-featured__side-card p {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--on-surface-variant);
}

.hp-featured__side-img {
    overflow: hidden;
    min-height: 200px;
    position: relative;
}

.hp-featured__side-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: transform 0.7s ease;
}

.hp-featured__side-img:hover img {
    transform: scale(1.04);
}

@media (min-width: 768px) {
    .hp-featured { padding: 4rem 4rem; }
    .hp-featured__grid {
        grid-template-columns: 7fr 5fr;
    }
    .hp-featured__side {
        grid-template-columns: 1fr;
    }
}

/* CTA Bar */
.hp-cta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--surface-container-highest);
    padding: 2.5rem 3rem;
    margin-top: 4px;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.4s ease;
}

.hp-cta-bar:hover {
    background-color: var(--primary);
}

.hp-cta-bar:hover h3,
.hp-cta-bar:hover span {
    color: var(--on-primary);
}

.hp-cta-bar:hover p {
    color: rgba(43, 51, 33, 0.7);
}

.hp-cta-bar h3 {
    font-family: var(--font-headline);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.hp-cta-bar p {
    font-family: var(--font-label);
    font-size: 0.625rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 0.4rem;
    color: var(--on-surface-variant);
    transition: color 0.3s ease;
}

.hp-cta-bar .material-symbols-outlined {
    font-size: 2rem;
    transition: color 0.3s ease;
}

/* Mission 2-col responsive */
@media (max-width: 767px) {
    .hp-mission-cols {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
}

/* ============================================
   ABOUT PAGE - WHY CHOOSE BOTTLED
   ============================================ */
.abt-why {
    padding: 6rem 2rem;
    background-color: var(--surface);
}

.abt-why__inner {
    max-width: 1400px;
    margin: 0 auto;
}

.abt-why__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.abt-why__card {
    position: relative;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 6px;
}

.abt-why__card-img {
    position: absolute;
    inset: 0;
}

.abt-why__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
    transition: opacity 0.5s ease, transform 0.7s ease;
}

.abt-why__card:hover .abt-why__card-img img {
    opacity: 0.6;
    transform: scale(1.03);
}

.abt-why__card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18,20,16,0.75) 0%, rgba(18,20,16,0.2) 45%, transparent 100%);
}

.abt-why__card-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem;
}

.abt-why__card-content h3 {
    font-family: var(--font-headline);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    line-height: 1.15;
}

.abt-why__card-content p {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--on-surface-variant);
    line-height: 1.6;
    max-width: 450px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.abt-why__card:hover .abt-why__card-content p {
    opacity: 1;
}

@media (min-width: 768px) {
    .abt-why { padding: 8rem 4rem; }
    .abt-why__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
    .abt-why__card {
        min-height: 420px;
    }
}

/* ============================================
   ABOUT PAGE - FOUNDER BIO
   ============================================ */
.abt-founder {
    padding: 6rem 2rem;
    background-color: var(--surface-container-lowest);
}

.abt-founder__inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.abt-founder__portrait {
    position: relative;
    overflow: hidden;
    max-height: 550px;
}

.abt-founder__portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    max-height: 550px;
    transition: transform 0.7s ease;
}

.abt-founder__portrait:hover img {
    transform: scale(1.02);
}

.abt-founder__badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    font-family: var(--font-label);
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background-color: rgba(18, 20, 16, 0.8);
    backdrop-filter: blur(8px);
    color: var(--primary);
    padding: 0.5rem 1.25rem;
}

.abt-founder__label {
    font-family: var(--font-label);
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--secondary);
    display: block;
    margin-bottom: 1.5rem;
}

.abt-founder__headline {
    font-family: var(--font-headline);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1.5rem;
}

.abt-founder__text p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--on-surface-variant);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.abt-founder__stats {
    display: flex;
    gap: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(69, 72, 65, 0.2);
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .abt-founder { padding: 8rem 4rem; }
    .abt-founder__inner {
        grid-template-columns: 5fr 7fr;
        gap: 4rem;
    }
}

/* Responsive helper */
.md-show { display: none; }
@media (min-width: 768px) {
    .md-show { display: block; }
}

/* About page photo strip mobile fix */
@media (max-width: 767px) {
    .about-photo-strip {
        grid-template-columns: 1fr !important;
    }
    .about-photo-strip > div {
        height: 200px !important;
    }
    .about-photo-strip-2col {
        grid-template-columns: 1fr !important;
    }
    .about-photo-strip-2col > div {
        height: 220px !important;
    }
}

/* ============================================
   MOBILE LAYOUT FIXES (< 768px)
   Overrides inline grid-template-columns that
   would otherwise squash content on small screens.
   ============================================ */
@media (max-width: 767px) {
    /* Larger touch target for hamburger */
    .nav__hamburger {
        min-width: 44px;
        min-height: 44px;
        padding: 0.5rem;
    }

    /* index.html — Chemical Cocktail section */
    .cocktail-layout {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    .cocktail-logo {
        display: none !important;
    }

    /* our-work.html — project galleries */
    .ow-grid-3 {
        grid-template-columns: 1fr !important;
        gap: 0.5rem !important;
    }
    .ow-grid-3 > div {
        aspect-ratio: auto !important;
    }

    .ow-tactacam-grid {
        grid-template-columns: 1fr !important;
    }
    .ow-tactacam-grid > div {
        grid-column: 1 / -1 !important;
        aspect-ratio: 3/2 !important;
    }

    /* our-work.html — project header should wrap and stay readable */
    .project-expand__header {
        gap: 1rem;
    }
    .project-expand__client {
        font-size: 1.25rem !important;
        line-height: 1.15;
        word-break: break-word;
    }

    /* contact.html — stack name/email side-by-side grid */
    .contact-form-row {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    /* Reduce over-padded inline wrappers on what-we-do.html */
    [style*="padding: 3rem"] {
        padding: 1.5rem !important;
    }

    /* Section horizontal padding tighter for mobile */
    .section {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    /* Hero titles shouldn't overflow */
    .hero__title {
        word-break: break-word;
    }

    /* Nav logo size on tight screens */
    .nav__logo-img {
        max-height: 32px;
        width: auto;
    }

    /* about.html — center white church building on mobile */
    .about-church-photo {
        object-position: 80% 95% !important;
    }
}
