/* ===========================================================
   Love Israel Yoon — BASE (shared structure)
   Colours come from a theme file (theme-editorial / theme-luxe)
   via CSS custom properties. This file defines layout + behaviour.
   =========================================================== */

/* ---------- Fonts ---------- */
@font-face {
    font-family: 'Pally';
    src: url('../fonts/Pally-Regular.otf') format('opentype');
    font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Pally';
    src: url('../fonts/Pally-Medium.otf') format('opentype');
    font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Pally';
    src: url('../fonts/Pally-Bold.otf') format('opentype');
    font-weight: 700; font-style: normal; font-display: swap;
}

/* ---------- Theme fallbacks (overridden by theme file) ---------- */
:root {
    --bg: #FAF7F2;
    --text: #1A1714;
    --heading: #1A1714;
    --muted: rgba(26, 23, 20, 0.6);
    --hairline: rgba(26, 23, 20, 0.12);
    --accent: #00CCCC;
    --accent-2: #E8734A;
    --eyebrow: #00CCCC;
    --header-bg: rgba(250, 247, 242, 0.78);
    --overlay-text: #ffffff;
    --tab-active-bg: #1A1714;
    --tab-active-text: #FAF7F2;
    --lightbox-bg: rgba(20, 17, 14, 0.94);
    --placeholder: rgba(26, 23, 20, 0.06);
    --card-radius: 4px;
    --grain-opacity: 0.035;
    --shadow: 0 18px 50px rgba(0, 0, 0, 0.16);

    --header-h: 76px;
    --maxw: 1320px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    /* Latin glyphs use Pally; Korean falls back to clean system Hangul fonts */
    font-family: 'Pally', 'Pretendard', 'Apple SD Gothic Neo', 'Malgun Gothic', system-ui, sans-serif;
    font-weight: 400;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    transition: background-color 0.5s var(--ease), color 0.5s var(--ease);
}
body.no-scroll { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ---------- Film-grain texture overlay (premium warmth) ---------- */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: var(--grain-opacity);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Scroll progress bar ---------- */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 2px;
    width: 0%;
    background: var(--accent);
    z-index: 130;
    transition: width 0.1s linear;
}

/* ---------- Layout helpers ---------- */
.container {
    width: 100%;
    max-width: var(--maxw);
    margin-inline: auto;
    padding-inline: clamp(1.2rem, 5vw, 4rem);
}
.section { padding-block: clamp(5rem, 12vw, 10rem); }

/* ---------- Section heads with index labels ---------- */
.section-head {
    text-align: center;
    margin-bottom: clamp(2.4rem, 5vw, 4rem);
}
.eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--eyebrow);
    margin-bottom: 1rem;
}
.section-heading {
    font-weight: 700;
    font-size: clamp(2.2rem, 6vw, 3.8rem);
    letter-spacing: -0.025em;
    line-height: 1.02;
    color: var(--heading);
}
.section-intro {
    max-width: 40rem;
    margin: 1.2rem auto 0;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.8;
}

/* ===========================================================
   Variant switcher (preview only)
   =========================================================== */
.variant-switch {
    position: fixed;
    bottom: 1.4rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 140;
    display: flex;
    gap: 0.25rem;
    padding: 0.3rem;
    border-radius: 999px;
    background: var(--header-bg);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border: 1px solid var(--hairline);
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}
.variant-switch a {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 0.5rem 1.1rem;
    border-radius: 999px;
    transition: color 0.25s var(--ease), background-color 0.25s var(--ease);
}
.variant-switch a.active {
    color: var(--tab-active-text);
    background: var(--tab-active-bg);
}

/* ===========================================================
   Header
   =========================================================== */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    height: var(--header-h);
    display: flex;
    align-items: center;
    border-bottom: 1px solid transparent;
    transition: background-color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.brand {
    font-weight: 700;
    font-size: clamp(2.1rem, 4.8vw, 2.7rem);
    line-height: 1;
    letter-spacing: -0.01em;
    color: #fff;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
    transition: color 0.4s var(--ease), text-shadow 0.4s var(--ease);
    z-index: 120;
}
.site-header .nav-link,
.site-header .ig-link,
.site-header .lang-switch a {
    color: #fff;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
    transition: color 0.4s var(--ease), text-shadow 0.4s var(--ease);
}
.site-header.scrolled {
    background-color: var(--header-bg);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-bottom-color: var(--hairline);
}
.site-header.scrolled .brand,
.site-header.scrolled .nav-link,
.site-header.scrolled .ig-link,
.site-header.scrolled .lang-switch a {
    color: var(--text);
    text-shadow: none;
}

/* ---------- Language switch ---------- */
.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
}
.lang-switch a {
    opacity: 0.6;
    transition: opacity 0.25s var(--ease), color 0.25s var(--ease);
}
.lang-switch a.active { opacity: 1; }
.lang-switch a:hover { opacity: 1; color: var(--accent); }
.lang-switch .sep { opacity: 0.4; }

/* Mobile: language toggle sits beside the hamburger; hidden on desktop */
.header-actions { display: none; align-items: center; gap: 1.1rem; }
.lang-mobile { font-size: 0.9rem; }

.mobile-lang {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.6rem;
    font-size: 1rem;
    letter-spacing: 0.06em;
}
.mobile-lang a { color: var(--muted); transition: color 0.25s var(--ease); }
.mobile-lang a.active { color: var(--heading); }
.mobile-lang a:hover { color: var(--accent); }
.mobile-lang .sep { color: var(--muted); opacity: 0.5; }

.main-nav { display: flex; align-items: center; gap: clamp(1.4rem, 3vw, 2.4rem); }
.nav-link {
    position: relative;
    font-weight: 400;
    font-size: 0.98rem;
    padding-bottom: 3px;
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 1.5px;
    background-color: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.32s var(--ease);
}
.nav-link:hover { color: var(--accent); }
.nav-link:hover::after { transform: scaleX(1); }

.ig-link { display: inline-flex; align-items: center; transition: color 0.4s var(--ease), opacity 0.25s var(--ease); }
.ig-link:hover { opacity: 0.65; }
.ig-link svg { width: 22px; height: 22px; }

/* ---------- Hamburger ---------- */
.hamburger {
    display: none;
    position: relative;
    width: 30px; height: 22px;
    background: none; border: none; cursor: pointer; z-index: 120;
}
.hamburger span {
    position: absolute; left: 0;
    width: 100%; height: 2px;
    background-color: #fff;
    border-radius: 2px;
    transition: transform 0.35s var(--ease), opacity 0.25s var(--ease), background-color 0.4s var(--ease);
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }
.site-header.scrolled .hamburger span { background-color: var(--text); }
body.menu-open .hamburger span { background-color: var(--text); }
body.menu-open .hamburger span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
body.menu-open .hamburger span:nth-child(2) { opacity: 0; }
body.menu-open .hamburger span:nth-child(3) { bottom: auto; top: 50%; transform: translateY(-50%) rotate(-45deg); }

/* ===========================================================
   Mobile Nav Overlay
   =========================================================== */
.mobile-overlay {
    position: fixed; inset: 0; z-index: 110;
    background-color: var(--bg);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 1.6rem;
    opacity: 0; visibility: hidden;
    transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}
body.menu-open .mobile-overlay { opacity: 1; visibility: visible; }
.mobile-overlay a {
    font-weight: 700;
    font-size: clamp(1.8rem, 7vw, 2.4rem);
    letter-spacing: -0.01em;
    color: var(--heading);
    opacity: 0; transform: translateY(18px);
    transition: color 0.25s var(--ease);
}
.mobile-overlay a:hover { color: var(--accent); }
body.menu-open .mobile-overlay a { animation: fadeUp 0.5s var(--ease) forwards; }
body.menu-open .mobile-overlay a:nth-child(1) { animation-delay: 0.10s; }
body.menu-open .mobile-overlay a:nth-child(2) { animation-delay: 0.17s; }
body.menu-open .mobile-overlay a:nth-child(3) { animation-delay: 0.24s; }
body.menu-open .mobile-overlay a:nth-child(4) { animation-delay: 0.31s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ===========================================================
   Hero (with slow Ken Burns zoom)
   =========================================================== */
.hero { position: relative; height: 100vh; height: 100dvh; width: 100%; overflow: hidden; }
.hero img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 20%;
}
/* Desktop: slow vertical pan (top -> bottom and back) — a gentle "breathing" drift */
@media (prefers-reduced-motion: no-preference) and (min-width: 769px) {
    .hero img {
        animation: heroPan 30s ease-in-out infinite alternate;
    }
}
@keyframes heroPan {
    from { object-position: center 0%; }
    to   { object-position: center 100%; }
}
.scroll-hint {
    position: absolute; left: 50%; bottom: 2rem;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    color: #fff; text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4); z-index: 5;
}
.scroll-hint span { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; }
.scroll-hint svg { width: 20px; height: 20px; animation: bob 1.8s var(--ease) infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* ===========================================================
   Featured work (editorial showcase piece)
   =========================================================== */
.featured-work {
    position: relative;
    border-radius: var(--card-radius);
    overflow: hidden;
    cursor: zoom-in;
    margin-bottom: clamp(1.2rem, 3vw, 2rem);
    box-shadow: var(--shadow);
}
.featured-work img {
    width: 100%;
    max-height: 78vh;
    object-fit: cover;
    transition: transform 1.2s var(--ease-out);
}
.featured-work:hover img { transform: scale(1.04); }
.featured-work .gallery-overlay { opacity: 1; padding: clamp(1.4rem, 3vw, 2.6rem); }
.featured-work .gallery-overlay h3 { font-size: clamp(1.4rem, 3vw, 2.2rem); }

/* ===========================================================
   Works Gallery (masonry via CSS columns)
   =========================================================== */
.gallery { column-count: 2; column-gap: 1.2rem; }
.gallery-item {
    position: relative;
    break-inside: avoid;
    margin-bottom: 1.2rem;
    border-radius: var(--card-radius);
    overflow: hidden;
    cursor: zoom-in;
}
.gallery-item img {
    width: 100%; height: auto;
    border-radius: var(--card-radius);
    transition: transform 0.7s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-overlay {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 1.4rem;
    background: linear-gradient(to top, rgba(0,0,0,0.66) 0%, rgba(0,0,0,0.16) 42%, rgba(0,0,0,0) 72%);
    opacity: 0;
    transition: opacity 0.45s var(--ease);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h3 {
    font-weight: 700;
    font-size: clamp(1rem, 1.8vw, 1.35rem);
    color: var(--overlay-text);
    line-height: 1.15; letter-spacing: -0.01em;
}
.gallery-overlay p {
    font-weight: 400; font-size: 0.72rem;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(255,255,255,0.82); margin-top: 0.35rem;
}

/* ===========================================================
   Beyond the Canvas — tabbed categorised view
   =========================================================== */
.tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; margin-bottom: clamp(2.4rem, 4vw, 3.4rem); }
.tab-btn {
    font-family: inherit;
    font-weight: 400; font-size: 0.74rem;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--text);
    background: transparent;
    border: 1px solid var(--hairline);
    border-radius: 999px;
    padding: 0.62rem 1.35rem;
    cursor: pointer;
    transition: background-color 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.tab-btn:hover { border-color: var(--accent); color: var(--accent); }
.tab-btn.active { background-color: var(--tab-active-bg); color: var(--tab-active-text); border-color: var(--tab-active-bg); }

.tab-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.6vw, 2.2rem); }
.tab-card { transition: opacity 0.45s var(--ease), transform 0.45s var(--ease); }
.tab-card.hide { display: none; }
.tab-card.fade { opacity: 0; transform: translateY(14px); }
.tab-card .thumb {
    width: 100%;
    border-radius: var(--card-radius);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: var(--placeholder);
}
.tab-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out); }
.tab-card:hover .thumb img { transform: scale(1.04); }
.tab-card h3 { font-weight: 700; font-size: clamp(1rem, 1.7vw, 1.2rem); margin-top: 1rem; letter-spacing: -0.01em; color: var(--heading); }
.tab-card .meta { font-weight: 400; font-size: 0.84rem; color: var(--muted); margin-top: 0.25rem; }

/* placeholder note inside empty thumbs */
.thumb.is-placeholder {
    display: flex; align-items: center; justify-content: center;
    aspect-ratio: 3 / 4;
}
.thumb.is-placeholder span {
    font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
}

/* ===========================================================
   Meet Yoon
   =========================================================== */
.meet { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.meet-portrait {
    width: 100%; aspect-ratio: 4 / 5;
    border-radius: var(--card-radius);
    overflow: hidden;
    background-color: var(--placeholder);
    box-shadow: var(--shadow);
}
.meet-portrait img { width: 100%; height: 100%; object-fit: cover; }
.meet-text h2 { font-weight: 700; font-size: clamp(2rem, 4.5vw, 3rem); letter-spacing: -0.02em; margin-bottom: 1.4rem; line-height: 1.05; color: var(--heading); }
.meet-text .eyebrow { text-align: left; }
.meet-text p { color: var(--muted); font-size: 1.04rem; line-height: 1.9; margin-bottom: 1.1rem; }

/* ===========================================================
   Gifting band — gifted around the world
   =========================================================== */
.gifting { margin-top: clamp(4rem, 9vw, 7rem); }
.gifting-head { text-align: center; max-width: 44rem; margin: 0 auto clamp(2.4rem, 5vw, 3.4rem); }
.gifting-head h2 { font-weight: 700; font-size: clamp(1.7rem, 4vw, 2.6rem); letter-spacing: -0.02em; line-height: 1.1; color: var(--heading); margin-bottom: 1rem; }
.gifting-head p { color: var(--muted); font-size: 1.02rem; line-height: 1.8; }

.gifting-stats {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: clamp(2rem, 8vw, 6rem);
    margin-bottom: clamp(2.6rem, 6vw, 4rem);
}
.stat { text-align: center; }
.stat .num {
    display: block;
    font-weight: 700;
    font-size: clamp(2.4rem, 6vw, 3.8rem);
    letter-spacing: -0.02em;
    line-height: 1;
    color: var(--accent);
}
.stat .label {
    display: block; margin-top: 0.6rem;
    font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
}

.gifting-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(0.7rem, 1.6vw, 1.2rem);
}
.gifting-row figure {
    position: relative;
    border-radius: var(--card-radius);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: var(--placeholder);
}
.gifting-row img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out); }
.gifting-row figure:hover img { transform: scale(1.05); }
.gifting-row .is-placeholder { display: flex; align-items: center; justify-content: center; }
.gifting-row .is-placeholder span { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); text-align: center; padding: 0.5rem; }

/* ===========================================================
   Footer
   =========================================================== */
.site-footer { border-top: 1px solid var(--hairline); padding-block: clamp(2.6rem, 6vw, 4rem); text-align: center; }
.footer-brand { font-weight: 700; font-size: clamp(1.2rem, 3vw, 1.6rem); letter-spacing: -0.01em; margin-bottom: 1.2rem; color: var(--heading); }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.6rem; margin-bottom: 1.6rem; }
.footer-links a { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); transition: color 0.25s var(--ease); }
.footer-links a:hover { color: var(--accent-2); }
.copyright { font-size: 0.74rem; color: var(--muted); letter-spacing: 0.02em; max-width: 36rem; margin-inline: auto; }

/* ===========================================================
   Lightbox (with prev/next + counter)
   =========================================================== */
.lightbox {
    position: fixed; inset: 0; z-index: 200;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: clamp(1.5rem, 5vw, 4rem);
    background: var(--lightbox-bg);
    -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
    opacity: 0; visibility: hidden;
    transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-inner {
    display: flex; flex-direction: column; align-items: center;
    max-width: 100%; max-height: 100%;
    transform: scale(0.96);
    transition: transform 0.4s var(--ease-out);
}
.lightbox.open .lightbox-inner { transform: scale(1); }
.lightbox-inner img {
    max-width: min(90vw, 1100px); max-height: 78vh;
    width: auto; height: auto; object-fit: contain;
    border-radius: var(--card-radius);
    box-shadow: 0 30px 80px rgba(0,0,0,0.55);
}
.lightbox-caption { text-align: center; margin-top: 1.1rem; color: #FAF7F2; }
.lightbox-caption h3 { font-weight: 700; font-size: clamp(1.1rem, 2.4vw, 1.5rem); letter-spacing: -0.01em; }
.lightbox-caption p { font-weight: 400; font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(250,247,242,0.7); margin-top: 0.3rem; }

.lb-btn {
    position: absolute;
    display: flex; align-items: center; justify-content: center;
    width: 50px; height: 50px;
    background: rgba(250,247,242,0.1);
    border: none; border-radius: 50%;
    color: #FAF7F2; cursor: pointer;
    transition: background-color 0.25s var(--ease);
}
.lb-btn:hover { background: rgba(250,247,242,0.24); }
.lb-btn svg { width: 22px; height: 22px; }
.lightbox-close { top: clamp(1rem, 3vw, 2rem); right: clamp(1rem, 3vw, 2rem); }
.lightbox-prev { left: clamp(0.8rem, 3vw, 2.2rem); top: 50%; transform: translateY(-50%); }
.lightbox-next { right: clamp(0.8rem, 3vw, 2.2rem); top: 50%; transform: translateY(-50%); }
.lightbox-counter {
    position: absolute; bottom: clamp(1rem, 3vw, 2rem); left: 50%; transform: translateX(-50%);
    font-size: 0.74rem; letter-spacing: 0.18em; color: rgba(250,247,242,0.6);
}

/* ===========================================================
   Scroll reveal (fade + slide + soft blur)
   =========================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(6px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out), filter 0.9s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); filter: blur(0); }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
    .reveal { opacity: 1; transform: none; filter: none; }
    .hero img { animation: none; }
}

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 860px) {
    .tab-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .main-nav { display: none; }
    .header-actions { display: flex; }
    .hamburger { display: block; }

    .gallery { column-gap: 0.7rem; }
    .gallery-item { margin-bottom: 0.7rem; }
    .gallery-overlay { opacity: 1; }
    .gallery-item:hover img { transform: none; }
    .featured-work:hover img { transform: none; }

    .meet { grid-template-columns: 1fr; text-align: center; }
    .meet-text .eyebrow { text-align: center; }
    .meet-portrait { max-width: 340px; margin-inline: auto; }

    .gifting-row { grid-template-columns: repeat(2, 1fr); }
    .lightbox-prev { left: 0.6rem; }
    .lightbox-next { right: 0.6rem; }
}
