/* ============================================================
   FALLOW — Brand Showcase Site
   Color palette: near-black warmth + burnt orange / dark amber
   ============================================================ */

:root {
    --bg:           #0b0806;
    --bg-2:         #100d0a;
    --bg-3:         #150f0b;
    --amber:        #c4601a;
    --amber-light:  #d4872a;
    --amber-dark:   #7a3209;
    --cream:        #ead6b8;
    --cream-muted:  #a89070;
    --text-muted:   #5a4733;
    --border:       rgba(196, 96, 26, 0.18);
    --border-hover: rgba(196, 96, 26, 0.5);
    --font-brand:   'UnifrakturMaguntia', cursive;
    --font-display: 'Cinzel', serif;
    --font-body:    'Crimson Pro', serif;
    --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
    /* 1px black outline via multi-shadow — readable on any background */
    --outline: -1px -1px 0 rgba(0,0,0,0.9), 1px -1px 0 rgba(0,0,0,0.9), -1px 1px 0 rgba(0,0,0,0.9), 1px 1px 0 rgba(0,0,0,0.9), 0 2px 10px rgba(0,0,0,0.55);
}

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

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg);
    color: var(--cream-muted);
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.85;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

/* ============================================================
   UTILITY
   ============================================================ */

.section-label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 1.4rem;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal--delay  { transition-delay: 0.18s; }
.reveal--delay-2 { transition-delay: 0.36s; }

.reveal-img {
    opacity: 0;
    transition: opacity 1.1s ease;
}

.reveal-img.visible { opacity: 1; }
.reveal-img--delay  { transition-delay: 0.2s; }

/* ============================================================
   NAV
   ============================================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.9rem 5rem;
    transition: background var(--transition), padding var(--transition);
}

.nav.scrolled {
    background: rgba(11, 8, 6, 0.96);
    backdrop-filter: blur(12px);
    padding: 1.2rem 5rem;
    border-bottom: 1px solid var(--border);
}

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

.nav__logo-img {
    height: 52px;
    width: auto;
    filter: sepia(0.4) saturate(1.6) brightness(0.9) drop-shadow(0 0 12px rgba(196, 96, 26, 0.25));
    transition: filter var(--transition);
}

.nav__logo:hover .nav__logo-img {
    filter: sepia(0.5) saturate(2) brightness(1) drop-shadow(0 0 18px rgba(196, 96, 26, 0.5));
}

.nav__links {
    display: flex;
    gap: 2.8rem;
    list-style: none;
}

.nav__links a {
    font-family: var(--font-display);
    font-size: 0.84rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    text-shadow: 0 1px 4px rgba(0,0,0,0.7), 0 0 1px rgba(0,0,0,0.9);
    transition: color var(--transition), text-shadow var(--transition);
}

.nav__links a:hover { color: var(--amber); text-shadow: none; }

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

.nav__burger span {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--cream);
    transition: var(--transition);
}

/* ============================================================
   MOBILE MENU
   ============================================================ */

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 150;
    background: rgba(11, 8, 6, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

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

.mobile-menu ul {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--cream);
    text-decoration: none;
    transition: color var(--transition);
}

.mobile-menu a:hover { color: var(--amber); }

/* ============================================================
   HERO
   ============================================================ */

.hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('../Brand_Images/Fallow2.jpeg');
    background-size: cover;
    background-position: center;
    will-change: transform;
}

/* dark warm gradient over hero image */
.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,
            rgba(11, 8, 6, 0.45) 0%,
            rgba(11, 8, 6, 0.2) 40%,
            rgba(11, 8, 6, 0.65) 80%,
            var(--bg) 100%
        ),
        radial-gradient(ellipse at center, transparent 30%, rgba(11, 8, 6, 0.5) 100%);
}

.hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hero__eyebrow {
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 0;
}

.hero__tagline {
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--cream);
    letter-spacing: 0.06em;
    margin-top: 0;
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 3.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    z-index: 1;
}

.hero__scroll-indicator span {
    font-family: var(--font-display);
    font-size: 0.5rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.hero__scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--amber), transparent);
    animation: scroll-pulse 2.2s ease-in-out infinite;
}

@keyframes scroll-pulse {
    0%, 100% { opacity: 0.25; transform: scaleY(0.8) translateY(0); }
    50%       { opacity: 1;    transform: scaleY(1.1) translateY(4px); }
}

/* ============================================================
   MANIFESTO STRIP
   ============================================================ */

.manifesto-strip {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 2.2rem 5rem;
    text-align: center;
}

.manifesto-strip p {
    font-family: var(--font-body);
    font-style: italic;
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--cream-muted);
    letter-spacing: 0.04em;
    max-width: 900px;
    margin: 0 auto;
}

/* ============================================================
   THE WORLD
   ============================================================ */

.world {
    padding: 9rem 5rem;
    background: var(--bg);
}

.world__inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 7rem;
    align-items: center;
}

.world__heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    color: var(--cream);
    line-height: 1.15;
    margin-bottom: 2.2rem;
}

.world__text p {
    margin-bottom: 1.4rem;
    font-size: 1.08rem;
}

.world__image {
    position: relative;
}

.world__image img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    filter: sepia(15%) brightness(0.88);
}

.world__image-border {
    position: absolute;
    inset: 10px -10px -10px 10px;
    border: 1px solid var(--border);
    z-index: -1;
    transition: var(--transition);
}

.world__image:hover .world__image-border {
    border-color: var(--border-hover);
    inset: 12px -12px -12px 12px;
}

/* ============================================================
   ATMOSPHERIC DIVIDER (Fallow6 — cosmic painting)
   ============================================================ */

.atm-divider {
    position: relative;
    height: 58vh;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.atm-divider__bg {
    position: absolute;
    inset: 0;
    background-image: url('../Brand_Images/Fallow6.jpeg');
    background-size: cover;
    background-position: center 40%;
    filter: brightness(0.38) saturate(0.7);
}

/* fade edges into background */
.atm-divider__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        var(--bg) 0%,
        transparent 18%,
        transparent 82%,
        var(--bg) 100%
    );
}

.atm-divider__quote {
    position: relative;
    z-index: 1;
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.4rem, 3.5vw, 2.4rem);
    color: #fff;
    text-align: center;
    max-width: 680px;
    padding: 0 3rem;
    line-height: 1.55;
    letter-spacing: 0.02em;
    text-shadow: var(--outline);
}

/* ============================================================
   FRAGRANCES
   ============================================================ */

.fragrances {
    padding: 8rem 5rem;
    background: var(--bg-2);
}

.fragrances__header {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 5.5rem;
}

.fragrances__header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 1.2rem;
}

.fragrances__header p {
    font-style: italic;
    font-size: 1.1rem;
}

.fragrances__grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    align-items: start;
}

/* ============================================================
   PRODUCT CARD
   ============================================================ */

.product-card {
    background: var(--bg-3);
    border: 1px solid var(--border);
    transition: border-color var(--transition), transform var(--transition);
    overflow: hidden;
}

.product-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-5px);
}

.product-card__img-wrap {    position: relative;    overflow: hidden;
    aspect-ratio: 3/4;
}

.product-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-card__img-wrap img {
    transform: scale(1.05);
}

.product-card[data-fragrance] { cursor: pointer; }

.product-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 8, 6, 0.88) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1.2rem;
    opacity: 0;
    transition: opacity var(--transition);
}

.product-card:hover .product-card__overlay { opacity: 1; }

.product-card__overlay span {
    font-family: var(--font-display);
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--amber);
}

.product-card__body {
    padding: 2rem 2rem 2.2rem;
}

.product-card__label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 0.7rem;
}

.product-card__name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.1rem;
    line-height: 1.3;
}

.product-card__desc {
    font-style: italic;
    font-weight: 500;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 1.6rem;
    line-height: 1.8;
}

.product-card__availability {
    margin-bottom: 1.5rem;
}

.product-card__avail-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.55rem;
}

.product-card__avail-label {
    font-family: var(--font-display);
    font-size: 0.66rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cream-muted);
}

.product-card__avail-count {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--amber);
    line-height: 1;
}

.product-card__avail-count em {
    font-style: normal;
    color: var(--cream-muted);
    font-size: 0.75rem;
}

.product-card__avail-count--soon {
    font-style: italic;
    color: var(--cream);
    letter-spacing: 0.06em;
}

.product-card__avail-bar {
    height: 2px;
    background: rgba(196, 96, 26, 0.12);
    position: relative;
    overflow: hidden;
}

/* bar animates in when the card scrolls into view */
.product-card__avail-fill {
    position: absolute;
    inset: 0 auto 0 0;
    width: var(--fill);
    background: linear-gradient(to right, var(--amber-dark), var(--amber));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.3s cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
}

.product-card.visible .product-card__avail-fill {
    transform: scaleX(1);
}

.product-card__notes {
    border-top: 1px solid var(--border);
    padding-top: 1.2rem;
}

.product-card__notes-label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 0.85rem;
}

.product-card__notes-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    list-style: none;
}

.product-card__notes-list li {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #fff;
    background: rgba(196, 96, 26, 0.1);
    border: 1px solid rgba(196, 96, 26, 0.3);
    padding: 0.22rem 0.65rem;
    line-height: 1.7;
    transition: border-color var(--transition), color var(--transition);
}

.product-card:hover .product-card__notes-list li {
    border-color: rgba(196, 96, 26, 0.5);
    color: #fff;
}

/* ============================================================
   GALLERY BREAK
   ============================================================ */

.gallery-break {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 55vh;
    min-height: 360px;
}

.gallery-break__pane {
    overflow: hidden;
    position: relative;
}

.gallery-break__pane img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) saturate(0.85);
    transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s ease;
}

.gallery-break__pane:hover img {
    transform: scale(1.04);
    filter: brightness(0.85) saturate(1);
}

/* ============================================================
   THE PERFUMER
   ============================================================ */

.perfumer {
    padding: 9rem 5rem;
    background: var(--bg);
}

.perfumer__inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 7rem;
    align-items: center;
}

.perfumer__image-col img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    filter: brightness(0.9) saturate(0.9);
}

.perfumer__text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.9rem);
    font-weight: 400;
    color: var(--cream);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.perfumer__text p {
    font-size: 1.06rem;
    margin-bottom: 1.4rem;
}

.perfumer__text blockquote {
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1.25rem, 2.5vw, 1.7rem);
    color: var(--amber-light);
    border-left: 2px solid var(--amber);
    padding: 0.4rem 0 0.4rem 1.6rem;
    margin: 2.2rem 0;
    line-height: 1.5;
}

.perfumer__teaser {
    color: var(--text-muted) !important;
    font-style: italic;
    font-size: 0.95rem !important;
    letter-spacing: 0.02em;
}

/* ============================================================
   CLOSING VISUAL — Fallow full-bleed (Fallow5 or brand image)
   ============================================================ */

.closing-visual {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.closing-visual__bg {
    position: absolute;
    inset: 0;
    background-image: url('../Brand_Images/Fallow5.jpeg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.3) saturate(0.6);
}

.closing-visual__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        var(--bg) 0%,
        transparent 20%,
        transparent 80%,
        var(--bg) 100%
    );
}

.closing-visual__text {
    position: relative;
    z-index: 1;
    text-align: center;
}

.closing-visual__brand-img {
    width: clamp(220px, 42vw, 540px);
    filter: sepia(0.5) saturate(1.8) brightness(0.92) drop-shadow(0 0 30px rgba(196, 96, 26, 0.35));
    display: block;
    margin: 0 auto 1.2rem;
}

.closing-visual__sub {
    font-style: italic;
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    color: #fff;
    letter-spacing: 0.15em;
    margin-top: 1.2rem;
    text-shadow: var(--outline);
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
    background: var(--bg-3);
    border-top: 1px solid var(--border);
    padding: 4.5rem 5rem;
    text-align: center;
}

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

.footer__logo {
    font-family: var(--font-brand);
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: none;
    color: var(--cream);
    margin-bottom: 0.3rem;
}

.footer__tagline {
    font-style: italic;
    font-size: 1rem;
    color: var(--cream-muted);
    margin-bottom: 1.8rem;
}

.footer__socials {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.2rem;
}

.footer__social-link {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-family: var(--font-display);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cream-muted);
    text-decoration: none;
    transition: color var(--transition);
}

.footer__social-link:hover { color: var(--amber); }

.footer__social-link svg { flex-shrink: 0; }

.footer__copy {
    font-family: var(--font-display);
    font-size: 0.66rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.footer__credit {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-style: italic;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    margin-top: 0.25rem;
    opacity: 0.6;
}

.footer__credit a {
    color: var(--cream-muted);
    text-decoration: none;
    transition: color var(--transition);
}

.footer__credit a:hover { color: var(--amber); }

/* ============================================================
   PAGE BANNER (inner pages)
   ============================================================ */

.nav__link--active { color: var(--amber) !important; }

.page-banner {
    position: relative;
    padding: 9rem 5rem 3.5rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--page-banner-bg);
    background-size: cover;
    background-position: center;
    filter: brightness(0.18) saturate(0.5);
}

.page-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--bg) 0%, transparent 35%, transparent 65%, var(--bg) 100%);
}

.page-banner .section-label,
.page-banner__title {
    position: relative;
    z-index: 1;
}

.page-banner__title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 0.6rem;
    line-height: 1.1;
    text-shadow: var(--outline);
}

/* ============================================================
   MODAL
   ============================================================ */

.modal {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal.open {
    opacity: 1;
    pointer-events: all;
}

.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 4, 3, 0.92);
    backdrop-filter: blur(6px);
}

.modal__panel {
    position: relative;
    z-index: 1;
    background: var(--bg-3);
    border: 1px solid var(--border);
    max-width: 940px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    display: grid;
    grid-template-columns: 2fr 3fr;
    transform: translateY(24px) scale(0.97);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.open .modal__panel {
    transform: translateY(0) scale(1);
}

.modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--cream-muted);
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color var(--transition), color var(--transition);
}

.modal__close:hover {
    border-color: var(--amber);
    color: var(--amber);
}

.modal__img-col {
    overflow: hidden;
}

.modal__img-col img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
    display: block;
}

.modal__body {
    padding: 3rem 2.5rem;
    overflow-y: auto;
    max-height: 90vh;
}

.modal__label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 0.7rem;
}

.modal__name {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.modal__desc {
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 400;
    font-size: 1.08rem;
    color: #fff;
    line-height: 1.85;
    border-left: 2px solid var(--amber-dark);
    padding-left: 1.3rem;
    margin-bottom: 2rem;
}

.modal__avail {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.5rem;
    margin-bottom: 1.8rem;
    border-bottom: 1px solid var(--border);
}

@media (max-width: 680px) {
    .modal { padding: 0; align-items: flex-end; }

    .modal__panel {
        grid-template-columns: 1fr;
        max-height: 80vh;
        border-radius: 14px 14px 0 0;
        border-left: none;
        border-right: none;
        border-bottom: none;
        transform: translateY(100%);
    }

    .modal.open .modal__panel { transform: translateY(0); }

    /* drag handle */
    .modal__panel::before {
        content: '';
        display: block;
        width: 36px;
        height: 3px;
        background: var(--border-hover);
        border-radius: 2px;
        margin: 0.75rem auto 0;
    }

    /* hide image — user already saw it on the card */
    .modal__img-col { display: none; }

    .modal__body { padding: 1.2rem 1.2rem 1.8rem; overflow-y: auto; }
    .modal__name { font-size: 1.15rem; margin-bottom: 0.7rem; }
    .modal__desc { font-size: 0.92rem; margin-bottom: 1rem; padding-left: 0.9rem; }
    .modal__close { top: 0.5rem; right: 0.75rem; width: 40px; height: 40px; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
    .nav        { padding: 1.4rem 3rem; }
    .nav.scrolled { padding: 0.9rem 3rem; }

    .world,
    .fragrances,
    .perfumer   { padding: 7rem 3rem; }

    .world__inner,
    .perfumer__inner { gap: 4rem; }

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

@media (max-width: 768px) {
    body { font-size: 17px; }

    /* nav */
    .nav        { padding: 1rem 1.5rem; }
    .nav.scrolled { padding: 0.75rem 1.5rem; }
    .nav__links { display: none; }
    .nav__burger {
        display: flex;
        padding: 10px; /* minimum 44px touch target with spans */
        margin-right: -10px;
    }

    /* hero */
    .hero { min-height: 100svh; }
    .hero__tagline { font-size: clamp(1.5rem, 7vw, 2.4rem); }
    .hero__scroll-indicator { bottom: 2.5rem; }

    /* manifesto */
    .manifesto-strip { padding: 1.8rem 1.5rem; }
    .manifesto-strip p { font-size: 0.98rem; }

    /* world */
    .world { padding: 5.5rem 1.5rem; }
    .world__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .world__image { order: -1; }
    /* avoid negative-margin border bleeding off-screen on mobile */
    .world__image-border { display: none; }

    /* atm divider */
    .atm-divider { height: 45vh; }
    .atm-divider__quote { font-size: 1.25rem; padding: 0 1.5rem; }

    /* fragrances */
    .fragrances { padding: 4.5rem 1.2rem; }
    .fragrances__header { margin-bottom: 2.5rem; }
    .fragrances__grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 1rem;
    }
    .product-card__img-wrap { aspect-ratio: 4/3; }
    .product-card__body { padding: 1.1rem 1.2rem 1.4rem; }
    .product-card__desc {
        font-size: 0.9rem;
        line-height: 1.65;
        margin-bottom: 1rem;
    }
    .product-card__notes-list { gap: 0.3rem; }
    .product-card__notes-list li { font-size: 0.8rem; padding: 0.16rem 0.5rem; }

    /* gallery */
    .gallery-break {
        grid-template-columns: 1fr;
        height: auto;
    }
    .gallery-break__pane { height: 52vw; min-height: 200px; }

    /* perfumer */
    .perfumer { padding: 5.5rem 1.5rem; }
    .perfumer__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .perfumer__image-col img {
        max-width: 260px;
        margin: 0 auto;
        aspect-ratio: 1;
    }

    /* closing visual */
    .closing-visual { height: 50vh; min-height: 280px; }
    .closing-visual__brand-img { width: min(78vw, 380px); }

    /* footer */
    .footer { padding: 3rem 1.5rem; }
    .footer__socials { gap: 1.5rem; }

    /* mobile menu links slightly smaller */
    .mobile-menu a { font-size: 1.4rem; }
}

@media (max-width: 480px) {
    .hero__eyebrow { letter-spacing: 0.28em; }

    .world__heading { font-size: 1.75rem; }

    /* revert to vertical card — show all content */
    .product-card { display: block; min-height: auto; }
    .product-card:hover { transform: none; }
    .product-card__img-wrap { aspect-ratio: 4/3; height: auto; min-height: auto; }
    .product-card__body { padding: 0.9rem 1rem 1.1rem; }
    .product-card__label { font-size: 0.62rem; margin-bottom: 0.35rem; }
    .product-card__name { font-size: 1rem; margin-bottom: 0.45rem; }
    .product-card__desc { font-size: 0.88rem; margin-bottom: 0.9rem; }
    .product-card__notes { display: block; }
    .product-card__availability { margin-bottom: 1.2rem; }

    .perfumer__text blockquote { font-size: 1.2rem; padding-left: 1.1rem; }

    .closing-visual__brand-img { width: 92vw; }

    .footer__logo { font-size: 1.8rem; }
}

/* disable parallax for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .hero__bg { transform: none !important; }
    .reveal, .reveal-img {
        transition: opacity 0.4s ease !important;
        transform: none !important;
    }
    .product-card__avail-fill { transition: transform 0.4s ease !important; }
}
