/* ================================
   JASSE — Editorial / Light Academia
   ================================ */

:root {
    /* Colors from Figma palette */
    --cream: #fdfbf7;
    --cream-deep: #f5f1e8;
    --ink: #1a1916;
    --ink-soft: #2a2924;
    --ink-muted: #5a564c;
    --gold: #b89a5c;
    --gold-dark: #8a7340;
    --olive: #3d4a35;
    --olive-dark: #2b3525;
    --rule: rgba(26, 25, 22, 0.12);
    --rule-soft: rgba(26, 25, 22, 0.06);

    /* Fonts */
    --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, monospace;

    /* Layout */
    --max-w: 1440px;
    --gutter: clamp(20px, 5vw, 80px);
}

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

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

body {
    background: var(--cream);
    color: var(--ink);
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    /* Subtle paper grain */
    background-image:
        radial-gradient(circle at 20% 30%, rgba(184, 154, 92, 0.025) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(61, 74, 53, 0.02) 0%, transparent 50%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ================================
   Typography
   ================================ */

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.05;
    color: var(--ink);
}

h1 { font-size: clamp(48px, 9vw, 144px); }
h2 { font-size: clamp(36px, 6vw, 88px); }
h3 { font-size: clamp(24px, 3.5vw, 44px); }
h4 { font-size: clamp(20px, 2.5vw, 28px); }

.italic { font-style: italic; }

.eyebrow {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-dark);
}

.lead {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 300;
    line-height: 1.4;
    color: var(--ink-soft);
}

/* ================================
   Layout helpers
   ================================ */

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

section {
    padding: clamp(80px, 12vh, 180px) 0;
}

/* ================================
   Navigation
   ================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 24px var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.4s ease;
}

.nav.scrolled {
    background: rgba(253, 251, 247, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px var(--gutter);
    border-bottom: 1px solid var(--rule-soft);
}

.nav__brand {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--ink);
}

.nav__brand .dot {
    color: var(--gold);
    margin-left: 1px;
}

.nav__links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav__links a {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-soft);
    transition: color 0.3s ease;
    position: relative;
}

.nav__links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }

.nav__menu {
    display: none;
}

@media (max-width: 768px) {
    .nav__links { display: none; }
    .nav__menu { display: block; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; }
}

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

.hero {
    min-height: 100vh;
    padding: 160px var(--gutter) 80px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(40px, 8vw, 120px);
    align-items: center;
    position: relative;
}

.hero__content {
    z-index: 2;
}

.hero__eyebrow {
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 1s 0.2s forwards;
}

.hero__title {
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 1.2s 0.4s forwards;
}

.hero__title .line {
    display: block;
    overflow: hidden;
}

.hero__title .accent {
    font-style: italic;
    color: var(--gold-dark);
    font-weight: 300;
}

.hero__pillars {
    display: flex;
    gap: 32px;
    margin: 48px 0 56px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1.2s 0.7s forwards;
}

.pillar {
    flex: 1;
    min-width: 140px;
    padding: 0 0 0 20px;
    border-left: 1px solid var(--rule);
    position: relative;
}

.pillar__num {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 8px;
}

.pillar__label {
    font-family: var(--font-display);
    font-size: 18px;
    font-style: italic;
    color: var(--ink-soft);
    line-height: 1.2;
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    opacity: 0;
    animation: fadeUp 1.2s 0.9s forwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    background: var(--ink);
    color: var(--cream);
    border-radius: 0;
    transition: transform 0.3s ease, background 0.3s ease;
    border: 1px solid var(--ink);
}

.btn:hover {
    background: var(--olive-dark);
    border-color: var(--olive-dark);
    transform: translateY(-2px);
}

.btn--ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}

.btn--ghost:hover {
    background: var(--ink);
    color: var(--cream);
}

.btn .arrow {
    transition: transform 0.3s ease;
}

.btn:hover .arrow {
    transform: translateX(4px);
}

.hero__visual {
    position: relative;
    height: 75vh;
    min-height: 500px;
    opacity: 0;
    animation: fadeIn 1.5s 0.6s forwards;
}

.hero__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(0.08) contrast(1.02);
}

.hero__visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(26, 25, 22, 0.08) 100%);
    pointer-events: none;
}

.hero__meta {
    position: absolute;
    bottom: -1px;
    left: -1px;
    right: -1px;
    padding: 20px 24px;
    background: var(--cream);
    border-top: 1px solid var(--ink);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero__meta span:last-child {
    color: var(--gold-dark);
}

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 140px;
    }
    .hero__visual {
        height: 60vh;
        min-height: 400px;
        order: -1;
    }
    .hero__pillars { gap: 16px; }
    .pillar { min-width: 100%; padding-left: 16px; }
}

/* ================================
   Manifesto strip
   ================================ */

.manifesto {
    background: var(--ink);
    color: var(--cream);
    padding: 32px 0;
    overflow: hidden;
    border-top: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
}

.manifesto__track {
    display: flex;
    gap: 80px;
    white-space: nowrap;
    animation: marquee 50s linear infinite;
    font-family: var(--font-display);
    font-size: clamp(20px, 2.5vw, 32px);
    font-style: italic;
    font-weight: 300;
}

.manifesto__track span {
    display: inline-flex;
    align-items: center;
    gap: 80px;
}

.manifesto__track .dot {
    color: var(--gold);
    font-size: 0.4em;
    vertical-align: middle;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ================================
   Section header
   ================================ */

.section-head {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: end;
}

.section-head__meta .eyebrow {
    margin-bottom: 12px;
    display: block;
}

.section-head__title {
    margin-bottom: 24px;
}

.section-head__title .italic {
    color: var(--gold-dark);
    font-weight: 300;
}

@media (max-width: 768px) {
    .section-head {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 48px;
    }
}

/* ================================
   WATCHES Section
   ================================ */

.watches {
    background: var(--cream);
    position: relative;
}

.watches::before {
    content: '';
    position: absolute;
    top: 0;
    left: var(--gutter);
    right: var(--gutter);
    height: 1px;
    background: var(--rule);
}

.watches__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 32px;
}

.watch-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.watch-card:nth-child(1) { grid-column: span 7; grid-row: span 2; aspect-ratio: 4/5; }
.watch-card:nth-child(2) { grid-column: span 5; aspect-ratio: 1/1; }
.watch-card:nth-child(3) { grid-column: span 5; aspect-ratio: 1/1; }

.watch-card__image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.watch-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    filter: sepia(0.05) contrast(1.02);
}

.watch-card:hover .watch-card__image img {
    transform: scale(1.05);
}

.watch-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 25, 22, 0.65) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    color: var(--cream);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.watch-card__name {
    font-family: var(--font-display);
    font-size: 24px;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 4px;
}

.watch-card__meta {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(253, 251, 247, 0.7);
}

.watches__footer {
    margin-top: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--rule);
}

.watches__footer p {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 20px;
    color: var(--ink-soft);
    max-width: 480px;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .watches__grid {
        grid-template-columns: 1fr;
    }
    .watch-card:nth-child(1),
    .watch-card:nth-child(2),
    .watch-card:nth-child(3) {
        grid-column: span 1;
        aspect-ratio: 4/5;
    }
    .watches__footer {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }
}

/* ================================
   COMMUNITY Section
   ================================ */

.community {
    background: var(--cream-deep);
    position: relative;
}

.community__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 8vw, 120px);
    align-items: center;
}

.community__content .eyebrow {
    margin-bottom: 24px;
    display: block;
}

.community__title {
    margin-bottom: 32px;
}

.community__title .italic {
    color: var(--olive);
    font-weight: 300;
}

.community__text {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 300;
    line-height: 1.5;
    color: var(--ink-soft);
    margin-bottom: 32px;
    max-width: 540px;
}

.community__list {
    list-style: none;
    margin: 40px 0;
    border-top: 1px solid var(--rule);
}

.community__list li {
    padding: 20px 0;
    border-bottom: 1px solid var(--rule);
    display: flex;
    align-items: center;
    gap: 24px;
}

.community__list .num {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--gold);
    min-width: 40px;
}

.community__list .text {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 300;
    color: var(--ink);
}

.community__visual {
    position: relative;
    height: 80vh;
    min-height: 500px;
}

.community__visual-main {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.community__visual-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(0.08) contrast(1.02);
}

.community__visual-accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 45%;
    aspect-ratio: 3/4;
    overflow: hidden;
    border: 8px solid var(--cream-deep);
    box-shadow: 0 30px 60px -20px rgba(26, 25, 22, 0.25);
}

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

@media (max-width: 900px) {
    .community__grid {
        grid-template-columns: 1fr;
    }
    .community__visual {
        height: 60vh;
        min-height: 400px;
    }
    .community__visual-accent {
        width: 50%;
        bottom: -20px;
        right: -20px;
    }
}

/* ================================
   QUOTE / Philosophy
   ================================ */

.philosophy {
    background: var(--ink);
    color: var(--cream);
    text-align: center;
    padding: clamp(120px, 18vh, 220px) 0;
}

.philosophy__mark {
    font-family: var(--font-display);
    font-size: 100px;
    line-height: 0.5;
    color: var(--gold);
    margin-bottom: 32px;
    font-style: italic;
}

.philosophy__quote {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 56px);
    font-weight: 300;
    font-style: italic;
    line-height: 1.25;
    max-width: 1000px;
    margin: 0 auto 40px;
    color: var(--cream);
}

.philosophy__quote em {
    color: var(--gold);
    font-style: italic;
}

.philosophy__attr {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(253, 251, 247, 0.5);
}

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

.footer {
    background: var(--cream);
    padding: 80px var(--gutter) 32px;
    border-top: 1px solid var(--rule);
}

.footer__main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--rule);
}

.footer__brand h3 {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.footer__brand h3 .dot { color: var(--gold); }

.footer__brand p {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 18px;
    color: var(--ink-muted);
    max-width: 380px;
}

.footer__col h4 {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 24px;
}

.footer__col ul {
    list-style: none;
}

.footer__col li {
    margin-bottom: 14px;
}

.footer__col a {
    font-size: 15px;
    color: var(--ink-soft);
    transition: color 0.3s ease;
}

.footer__col a:hover {
    color: var(--gold-dark);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-muted);
}

.footer__bottom-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

@media (max-width: 768px) {
    .footer__main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer__brand {
        grid-column: span 2;
    }
    .footer__bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    .footer__bottom-links { flex-wrap: wrap; justify-content: center; }
}

/* ================================
   Animations
   ================================ */

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger > * {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: 0.3s; }

.reveal-stagger.in-view > * {
    opacity: 1;
    transform: translateY(0);
}

/* ================================
   LEGAL pages (privacy, terms, etc.)
   ================================ */

.legal {
    padding: 160px var(--gutter) 80px;
    max-width: 880px;
    margin: 0 auto;
}

.legal__header {
    margin-bottom: 80px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--rule);
}

.legal__header .eyebrow {
    margin-bottom: 24px;
    display: block;
}

.legal__header h1 {
    font-size: clamp(40px, 6vw, 80px);
    margin-bottom: 16px;
}

.legal__header h1 .italic {
    color: var(--gold-dark);
    font-weight: 300;
}

.legal__updated {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-muted);
}

.legal__content h2 {
    font-size: clamp(24px, 3vw, 36px);
    margin: 64px 0 20px;
}

.legal__content h3 {
    font-size: clamp(18px, 2vw, 22px);
    font-family: var(--font-display);
    margin: 32px 0 16px;
    color: var(--ink);
}

.legal__content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink-soft);
    margin-bottom: 20px;
}

.legal__content ul, .legal__content ol {
    padding-left: 24px;
    margin-bottom: 20px;
}

.legal__content li {
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink-soft);
    margin-bottom: 8px;
}

.legal__content strong { color: var(--ink); font-weight: 500; }

.legal__content a {
    color: var(--gold-dark);
    border-bottom: 1px solid var(--gold);
    transition: color 0.3s ease;
}

.legal__content a:hover { color: var(--olive); }

.legal__toc {
    background: var(--cream-deep);
    padding: 32px;
    margin-bottom: 48px;
    border-left: 3px solid var(--gold);
}

.legal__toc h4 {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 16px;
}

.legal__toc ol {
    list-style: none;
    padding: 0;
    counter-reset: toc;
}

.legal__toc li {
    counter-increment: toc;
    margin-bottom: 6px;
    font-size: 15px;
}

.legal__toc li::before {
    content: counter(toc, decimal-leading-zero);
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--gold);
    margin-right: 12px;
}

.legal__toc a {
    color: var(--ink-soft);
    border: none;
}

.legal__toc a:hover { color: var(--gold-dark); }

/* ================================
   WATCH CAROUSEL
   ================================ */

.watch-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    outline: none;
}

.carousel__track {
    position: relative;
}

.carousel__slide {
    display: grid;
    grid-template-columns: 55% 45%;
    opacity: 0;
    pointer-events: none;
}

.carousel__slide:not(.active) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.carousel__slide.active {
    opacity: 1;
    pointer-events: auto;
}

.carousel__img-wrap {
    overflow: hidden;
    position: relative;
    background: var(--cream-deep);
    aspect-ratio: 3/2;
}

.carousel__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(0.05) contrast(1.02);
    transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel__img-wrap.no-image::after {
    content: '—';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 80px;
    font-style: italic;
    color: var(--rule);
}

.carousel__slide.active .carousel__img-wrap img {
    transform: scale(1.03);
}

.carousel__info {
    padding: clamp(24px, 4vw, 48px) clamp(24px, 4vw, 56px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    border-left: 1px solid var(--rule);
    background: var(--cream);
}

.carousel__num {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
}

.carousel__name {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.5vw, 64px);
    font-style: italic;
    font-weight: 300;
    color: var(--ink);
    line-height: 1;
    letter-spacing: -0.02em;
}

.carousel__cat {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-muted);
}

.carousel__controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0 0;
    border-top: 1px solid var(--rule);
}

.carousel__btn {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--ink-soft);
    transition: color 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
}

.carousel__btn:hover { color: var(--gold-dark); }

.carousel__counter {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.2em;
    color: var(--ink-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.carousel__counter-current {
    font-size: 24px;
    color: var(--ink);
    font-family: var(--font-display);
    font-style: italic;
    line-height: 1;
}

.carousel__sep { color: var(--rule); }

@media (max-width: 900px) {
    .carousel__slide {
        grid-template-columns: 1fr;
    }
    .carousel__img-wrap {
        aspect-ratio: 4/3;
    }
    .carousel__info {
        border-left: none;
        border-top: 1px solid var(--rule);
        padding: 24px 0;
        gap: 10px;
    }
}

/* ================================
   WATCH DETAIL (2-photo feature)
   ================================ */

.watch-detail {
    background: var(--cream-deep);
    padding: clamp(80px, 10vh, 140px) 0;
    position: relative;
}

.watch-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: var(--gutter);
    right: var(--gutter);
    height: 1px;
    background: var(--rule);
}

.watch-detail__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: clamp(20px, 3vw, 40px);
    align-items: end;
}

.watch-detail__photo {
    overflow: hidden;
}

.watch-detail__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(0.06) contrast(1.02);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}

.watch-detail__photo:hover img { transform: scale(1.04); }

.watch-detail__photo--main {
    aspect-ratio: 3/4;
    grid-row: span 2;
}

.watch-detail__photo--accent {
    aspect-ratio: 4/3;
}

.watch-detail__text {
    padding: 0 0 0 clamp(20px, 3vw, 40px);
    border-left: 1px solid var(--rule);
    align-self: start;
}

.watch-detail__text .eyebrow {
    display: block;
    margin-bottom: 20px;
}

.watch-detail__text h2 {
    font-size: clamp(28px, 4vw, 56px);
    margin-bottom: 20px;
}

.watch-detail__text h2 .italic { color: var(--gold-dark); }

.watch-detail__text .lead {
    font-size: clamp(16px, 1.6vw, 20px);
}

@media (max-width: 768px) {
    .watch-detail__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .watch-detail__photo--main {
        aspect-ratio: 4/3;
        grid-row: span 1;
    }
    .watch-detail__text {
        border-left: none;
        border-top: 1px solid var(--rule);
        padding: 28px 0 0;
    }
}
