:root {
    --ink: #3A3A3A;
    --bg: #FFFFFF;
    --muted: #6B6B6B;
    --line: #E4E4E4;
    --accent: #2F6BFF;
    --radius-pill: 999px;
    --maxw: 1040px;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 17px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0;
}

p { color: var(--muted); margin: 0 0 1.1em; max-width: 62ch; }
a { color: var(--ink); }

section, footer.site {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 56px 40px;
}

/* NAV */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg);
    margin: 0;
    padding: 0;
    transition: box-shadow .3s ease;
}
.navInner {
    max-width: var(--maxw);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 40px;
    transition: padding .3s ease;
}
.navbar.scrolled .navInner { padding: 10px 40px; }
.navbar.scrolled {
    box-shadow: 0 1px 0 var(--line);
}
.navLogoClau .avatar {
    height: 110px; width: 92px; object-fit: cover;
    border-radius: 14px; display: block;
    transition: height .3s ease, width .3s ease, border-radius .3s ease;
}
.navbar.scrolled .navLogoClau .avatar {
    height: 44px; width: 44px; border-radius: 10px;
}
.navActions { display: flex; align-items: center; gap: 28px; }
.navbar ul { list-style: none; display: flex; flex-direction: row; gap: 8px; margin: 0; padding: 0; }
.navbar li { text-transform: uppercase; font-size: 13px; font-weight: 700; letter-spacing: .04em; }
.navbar ul a { display: block; color: var(--ink); text-decoration: none; padding: 10px 14px; transition: color .15s; }
.navbar ul a:hover { color: var(--accent); }
.nav-cta { margin: 0; padding: 14px 24px; font-size: 12px; }
.langToggle {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--ink);
    border-radius: var(--radius-pill);
    overflow: hidden;
}
.langToggle button {
    background: transparent;
    border: none;
    color: var(--ink);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    padding: 8px 11px;
    cursor: pointer;
    transition: background .15s, color .15s;
}
.langToggle button.active { background: var(--ink); color: #fff; }
.langToggle button:not(.active):hover { background: #F5F4F1; }

.hasDropdown { position: relative; }
.dropdown {
    gap: 2px;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 10px;
    min-width: 170px;
    box-shadow: 0 14px 32px rgba(17,17,17,.12);
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
    pointer-events: none;
}
@media (min-width: 861px) {
    .dropdown {
        display: flex;
        flex-direction: column;
        min-width: max-content;
    }
}
.hasDropdown:hover .dropdown,
.hasDropdown:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
.dropdown li { text-transform: none; }
.dropdown a {
    display: block;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: normal;
    color: var(--ink);
}
.dropdown a:hover { color: var(--accent); background: #F5F4F1; }

/* HERO */
.hero {
    padding-top: 32px;
    padding-bottom: 40px;
}
.hero h1 {
    font-size: clamp(38px, 5.6vw, 78px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 40px;
    max-width: none;
    font-weight: 800;
    color: var(--ink);
}
.hero h1 .muted { color: #A9A6A2; font-weight: 800; }
.hero h1 .icon-img { height: 0.9em; width: auto; vertical-align: middle; display: inline-block; }
.hero p { font-size: 17px; max-width: 68ch; }
.hero p strong { color: var(--ink); }

.btn-pill, .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    box-sizing: border-box;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .04em;
    padding: 0 26px;
    border-radius: var(--radius-pill);
    border: 1.5px solid var(--ink);
    transition: opacity .15s, background .15s, color .15s;
}
.btn-pill {
    background: var(--ink);
    color: #fff;
}
.btn-pill:hover { opacity: .78; }

/* DESCRIBE */
.describe { border-top: 1px solid var(--line); }
.describe h2 { font-size: clamp(22px, 2.6vw, 28px); margin-bottom: 16px; }
.describe p { max-width: 72ch; }

/* CERAMICS */
.ceramics { border-top: 1px solid var(--line); }
.ceramics h2 { font-size: clamp(26px, 3.4vw, 34px); text-transform: uppercase; }
.ceramics .sub { margin-top: 6px; font-size: 15px; }
.ceramicsGrid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 32px;
    margin: 24px 0 28px;
    align-items: start;
}
.cgLeft {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 18px;
    display: block;
}
.cgRightCol { display: flex; flex-direction: column; }
.cgRight {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 18px;
    display: block;
    transition: height .6s cubic-bezier(.4,0,.2,1);
}
.cgRight.shrink { height: 220px; }
.cgText {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height .6s cubic-bezier(.4,0,.2,1), opacity .5s ease .1s, margin-top .6s ease;
}
.cgText.visible {
    max-height: 600px;
    opacity: 1;
    margin-top: 20px;
}
.pixelsTitle {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--ink);
    margin: 0 0 16px;
}
@media (max-width: 720px) {
    .ceramicsGrid { grid-template-columns: 1fr; }
    .cgLeft { height: 260px; }
}

/* PROJECTS */
.projects { border-top: 1px solid var(--line); }
.projectsHead { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 26px; }
.projectsHead h2 { font-size: clamp(26px, 3.4vw, 34px); text-transform: uppercase; }
.viewAll { font-size: 13px; font-weight: 700; text-decoration: none; color: var(--muted); }

.projectsGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.projectCard { text-decoration: none; color: var(--ink); display: block; }
.projectCard img {
    width: 100%; height: 170px; object-fit: cover;
    border-radius: 14px; display: block; margin-bottom: 14px;
    transition: transform .2s ease;
}
.projectCard:hover img { transform: translateY(-3px); }
.projectCard h3 { font-size: 14px; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 8px; }
.projectCard p { font-size: 15px; margin-bottom: 8px; }
.projectCard .tags { font-size: 12px; color: var(--muted); }

/* TOOLS */
.tools { border-top: 1px solid var(--line); }
.tools h3 { font-size: 16px; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 16px; }
.toolsList { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 18px; }
.toolsList li { font-size: 15px; }

/* CONTACT */
.contact { border-top: 1px solid var(--line); text-align: center; padding-top: 72px; padding-bottom: 72px; }
.contact h2 { font-size: 16px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 700; }
.contactEmail, .contactPhone {
    display: block; text-decoration: none; color: var(--ink);
    font-weight: 800; letter-spacing: -0.01em;
}
.contactEmail { font-size: clamp(22px, 3.6vw, 34px); margin-bottom: 6px; }
.contactPhone { font-size: clamp(20px, 3.2vw, 30px); }

/* FOOTER */
footer.site {
    border-top: 1px solid var(--line);
    display: flex; flex-wrap: wrap; gap: 14px;
    justify-content: space-between;
    font-size: 13px; color: var(--muted);
    padding-top: 24px; padding-bottom: 40px;
}
footer.site a { color: var(--muted); text-decoration: none; }
footer.site a:hover { color: var(--ink); }

@media (max-width: 720px) {
    .projectsGrid, .ceramicsGrid { grid-template-columns: 1fr; }
}

/* CREATIVE SPACE — marquee bar */
.marqueeBar {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 40px;
    border-bottom: 1px solid var(--line);
    max-width: none;
    overflow: hidden;
}
.marqueeLabel {
    display: flex; align-items: center; gap: 8px;
    flex: none;
    font-size: 22px; font-weight: 800; text-transform: uppercase;
    letter-spacing: -0.01em; color: var(--ink);
}
.marqueeLabel .marqueeIcon { height: 22px; width: auto; }
.marquee { overflow: hidden; flex: 1; -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); }
.marquee-track {
    display: inline-flex;
    white-space: nowrap;
    animation: marquee-scroll 22s linear infinite;
}
.marquee-track span {
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: #A9A6A2;
}
@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .marquee-track { animation: none; }
}

/* CREATIVE SPACE — split panel */
.splitPanel {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 0;
    max-width: none;
    padding: 0;
    height: 70vh;
    min-height: 420px;
}
.splitLeft, .splitRight {
    overflow: hidden;
    position: relative;
}
.splitLeft img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.splitRight {
    background: #3C3831;
    display: flex; align-items: center; justify-content: center;
}
.splitLogo { width: 60%; max-width: 320px; display: block; }

.ceramicsCopy { padding-top: 56px; }
.ceramicsCopy h2 { font-size: clamp(26px, 3.4vw, 34px); text-transform: uppercase; margin-bottom: 18px; }
.ceramicsCopy p { max-width: 68ch; }

@media (max-width: 720px) {
    .splitPanel { grid-template-columns: 1fr; height: auto; }
    .splitLeft, .splitRight { height: 320px; }
}

/* HERO — tagline + CTAs (Figma update) */
.heroTagline {
    font-size: 18px;
    color: var(--muted);
    max-width: 60ch;
    margin-top: 8px;
}
.heroTagline .dotsep { display: block; margin-top: 6px; font-size: 14px; text-transform: uppercase; letter-spacing: .05em; color: #A9A6A2; }
.heroCtas { display: flex; gap: 14px; margin-top: 20px; }
.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--ink);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .04em;
    padding: 13px 26px;
    border: 1.5px solid var(--ink);
    border-radius: var(--radius-pill);
    transition: background .15s, color .15s;
}
.btn-outline:hover { background: var(--ink); color: #fff; }

/* BIO — two columns */
.bioCols {
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding-top: 48px;
    padding-bottom: 48px;
}
.bioCol p { font-size: 16px; max-width: none; margin: 0; }
.bioCol p strong { color: var(--ink); }
@media (max-width: 720px) {
    .bioCols { grid-template-columns: 1fr; gap: 24px; }
}

/* FEATURED CASE STUDY */
.featuredCase {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    align-items: center;
    text-decoration: none;
    color: var(--ink);
    background: #FFFFFF;
    box-shadow: 0 10px 30px rgba(17, 17, 17, 0.08);
    border-radius: 22px;
    padding: 20px;
    margin-bottom: 40px;
}
.featuredCase img {
    width: 100%; height: 280px; object-fit: cover;
    border-radius: 16px; display: block;
}
.featuredCaseText h3 {
    font-size: clamp(18px, 1.9vw, 24px);
    text-transform: none;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}
.featuredCaseText p { font-size: 15px; margin-bottom: 10px; }
.featuredCaseText .tags { font-size: 12px; color: var(--muted); }
@media (max-width: 720px) {
    .featuredCase { grid-template-columns: 1fr; }
    .featuredCase img { height: 200px; }
}

/* CONTACT heading — now a full sentence, not a small label */
.contact h2 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #A9A6A2;
    font-weight: 400;
}

/* ABOUT ME */
.cvPlaceholder {
    border: 1.5px dashed var(--line);
    border-radius: 16px;
    padding: 32px;
    margin-top: 20px;
}
.cvPlaceholder p { max-width: 60ch; margin: 0; }

.cvBlock { margin-top: 40px; }
.cvItem { margin-bottom: 26px; }
.cvItem:last-child { margin-bottom: 0; }
.cvItemHead {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}
.cvItemHead strong { color: var(--ink); font-size: 16px; }
.cvItemHead span { font-size: 13px; color: var(--muted); white-space: nowrap; }
.cvItem p { font-size: 15px; margin-bottom: 6px; max-width: 68ch; }
.cvSkillsGrid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.cvSkillsGrid li { font-size: 15px; color: var(--muted); }
@media (max-width: 720px) {
    .cvSkillsGrid { grid-template-columns: 1fr; }
}

.methodRow { display: grid; grid-template-columns: 1fr 2.2fr; gap: 32px; margin-top: 24px; }
.methodIntro p { max-width: 32ch; }
.methodList { display: flex; flex-direction: column; gap: 32px; }
.methodLabel {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--muted);
    margin-bottom: 8px;
}
.methodItem p { max-width: 70ch; }
@media (max-width: 720px) {
    .methodRow { grid-template-columns: 1fr; }
}

/* DOGFY CASE STUDY */
.caseMeta {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding-top: 24px;
    padding-bottom: 24px;
}
.caseMeta span { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); margin-bottom: 6px; }
.caseMeta p { margin: 0; font-size: 15px; color: var(--ink); max-width: none; }

.challengeList { list-style: none; counter-reset: challenge; padding: 0; margin: 20px 0 0; display: flex; flex-direction: column; gap: 18px; }
.challengeList li { counter-increment: challenge; position: relative; padding-left: 40px; font-size: 15px; color: var(--muted); max-width: 75ch; }
.challengeList li::before {
    content: counter(challenge);
    position: absolute; left: 0; top: 0;
    width: 26px; height: 26px; border-radius: 50%;
    background: var(--ink); color: #fff;
    font-size: 12px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.challengeList li strong { color: var(--ink); }
.designQuestion {
    margin-top: 24px;
    padding: 18px 20px;
    background: #F5F4F1;
    border-radius: 14px;
    font-size: 15px;
    color: var(--ink);
    max-width: 75ch;
}

.insightBox {
    margin-top: 28px;
    padding: 24px 26px;
    border: 1.5px solid var(--ink);
    border-radius: 18px;
}
.insightLabel { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); margin-bottom: 10px; }
.insightBox p { font-size: 16px; color: var(--ink); max-width: 75ch; margin-bottom: 10px; }
.insightBox p:last-child { margin-bottom: 0; }

.phaseList { display: flex; flex-direction: column; margin-top: 24px; }
.phaseItem { display: flex; gap: 20px; padding: 18px 0; border-top: 1px solid var(--line); }
.phaseItem:last-child { border-bottom: 1px solid var(--line); }
.phaseItem.highlight { background: #F5F4F1; border-radius: 14px; padding: 18px 16px; border-top: none; }
.phaseNum {
    flex: none;
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--ink); color: #fff;
    font-size: 13px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.phaseItem strong { display: block; margin-bottom: 4px; font-size: 15px; color: var(--ink); }
.phaseItem p { margin: 0; font-size: 14px; max-width: 65ch; }
.phaseItem em { font-style: normal; color: var(--ink); font-weight: 600; }

.frictionTable { margin-top: 20px; display: flex; flex-direction: column; }
.frictionRow { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: 14px 0; border-top: 1px solid var(--line); }
.frictionRow:last-child { border-bottom: 1px solid var(--line); }
.frictionRow span:first-child { font-weight: 700; font-size: 14px; color: var(--ink); }
.frictionRow span:last-child { font-size: 14px; color: var(--muted); }

.resultsGrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 20px; }
.resultCard { padding: 22px; border-radius: 16px; background: #F5F4F1; }
.resultCard h3 { font-size: 15px; margin-bottom: 8px; }
.resultCard p { margin: 0; font-size: 14px; }
.resultCard.pending { background: transparent; border: 1.5px dashed var(--line); }
@media (max-width: 720px) {
    .caseMeta { grid-template-columns: 1fr 1fr; }
    .resultsGrid { grid-template-columns: 1fr; }
    .frictionRow { grid-template-columns: 1fr; }
}

/* CHORESCORE — before/after blocks */
.beforeAfterBlock { margin-top: 28px; }
.beforeAfterBlock:first-of-type { margin-top: 20px; }
.beforeAfterBlock img { width: 100%; border-radius: 16px; display: block; background: #fff; border: 1px solid var(--line); }
.beforeAfterBlock p { margin-top: 12px; font-size: 14px; max-width: 70ch; }

/* CONFIDENTIAL PROJECT NOTICE */
.confidentialBox {
    margin-top: 20px;
    padding: 32px;
    border: 1.5px dashed var(--line);
    border-radius: 18px;
    text-align: center;
}
.confidentialBox p { max-width: 55ch; margin: 0 auto 18px; font-size: 15px; }

/* CHORESCORE — prototype flow videos */
.flowGrid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 20px; }
.flowItem video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    background: #111;
}
.flowLabel {
    display: block;
    margin-top: 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--muted);
}
.flowItem p { margin-top: 6px; font-size: 14px; max-width: 55ch; }
.beforeAfterBlock .flowLabel { margin-top: 12px; }
@media (max-width: 720px) {
    .flowGrid { grid-template-columns: 1fr; }
}

/* MOBILE / TABLET — hamburger menu */
.navInner { position: relative; }
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 110;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    transition: transform .2s ease, opacity .2s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
    .hamburger { display: flex; }
    .navActions {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        background: #fff;
        padding: 22px 24px 30px;
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        box-shadow: 0 16px 32px rgba(17,17,17,.1);
        z-index: 100;
    }
    .navActions.open { display: flex; }
    .navActions ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        width: 100%;
    }
    .navActions ul a { padding: 6px 0; font-size: 15px; }
    .dropdown {
        display: flex;
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
        box-shadow: none;
        border: none;
        padding: 6px 0 0 14px;
        min-width: 0;
    }
    .dropdown a { color: #9f9f9f; }
    .langToggle { margin: 2px 0; }
    .nav-cta { width: 100%; text-align: center; }
}

/* CREATIVE SPACE — Seramics project page palette */
.ooHeroFull {
    position: relative;
    width: 100%;
    margin-bottom: 8px;
}
.ooHeroFullImg {
    width: 100%;
    height: 62vh;
    min-height: 380px;
    object-fit: cover;
    display: block;
    filter: brightness(0.6);
}
.ooHeroFullText {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 0 40px;
    max-width: var(--maxw);
    margin: 0 auto;
}
.ooHeroTitle h1 {
    font-size: clamp(30px, 4vw, 48px);
    text-transform: uppercase;
    color: #FFFFFF;
    letter-spacing: -0.01em;
    line-height: 1.05;
    margin-bottom: 14px;
}
.ooHeroBy {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #EDE7E2;
    margin: 0;
}
.ooHeroBy .pink { color: #F2B9D2; }
.ooHeroCopy { flex: none; max-width: 420px; }
.ooHeroCopy p { color: #EDE7E2; font-size: 18px; line-height: 1.5; margin: 0; }
@media (max-width: 860px) {
    .ooHeroFullText { flex-direction: column; align-items: center; text-align: center; justify-content: center; gap: 24px; padding: 0 24px; }
    .ooHeroCopy { max-width: none; }
}
.igWidget {
    background: #F1EDE7;
    border-radius: 20px;
    padding: 28px 32px;
    margin: 24px auto 0;
    max-width: 380px;
    text-align: center;
    box-shadow: 0 16px 36px rgba(0,0,0,.28);
}
.igHandle { margin: 0; font-size: 22px; font-weight: 800; color: #1A1A1A; }
.igFollow { margin: 6px 0 16px; font-size: 14px; color: #5A5A5A; }
.igWidget .btn-pill { margin: 0; padding: 12px 22px; font-size: 13px; }
@media (max-width: 720px) {
    .ooHeroFullText { padding: 0 24px; }
}

.ooHeroWrap { position: relative; margin-bottom: 60px; }

.potReveal { padding-top: 48px; padding-bottom: 48px; }
.potStack {
    position: relative;
    width: 260px;
    height: 260px;
    margin: -110px auto 0;
    z-index: 3;
}
.potImg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.potOverlay {
    opacity: 0;
    transition: opacity 1.1s ease;
}
.potOverlay.visible { opacity: 1; }
@media (max-width: 480px) {
    .potStack { width: 190px; height: 190px; margin-top: -80px; }
}
@media (max-width: 860px) {
    .ooHeroWrap { margin-bottom: 0; }
}

.ooQuote {
    background: #DCEFF3;
    border-radius: 16px;
    padding: 22px 26px;
}
.ooQuote p { margin: 0; font-size: 15px; color: #1F3A40; max-width: 70ch; }
.ooQuote em { font-style: normal; font-weight: 700; }

.ooStep { display: flex; gap: 24px; align-items: flex-start; }
.ooStepBody { flex: 1; min-width: 0; }
.ooStepNum {
    flex: none;
    font-size: 15px;
    font-weight: 800;
    color: #F2B9D2;
    background: #2E2A26;
    width: 34px; height: 34px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.ooStepBody h2 {
    font-size: clamp(20px, 2.4vw, 26px);
    text-transform: uppercase;
    margin-bottom: 12px;
    color: var(--ink);
}
.ooStepBody p { max-width: none; margin-bottom: 10px; }
.ooStepTwoCol {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    align-items: start;
}
.ooStepTwoColText {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}
.ooStepImgCol { width: 100%; margin-top: 0; }
@media (max-width: 860px) {
    .ooStepTwoCol { grid-template-columns: 1fr; }
    .ooStepTwoColText { grid-template-columns: 1fr; }
}
.ooStepImg { width: 100%; max-width: 520px; border-radius: 16px; display: block; border: 1px solid var(--line); }
.ooStepGrid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
.ooStepGrid2 img { width: 100%; border-radius: 16px; display: block; }
@media (max-width: 720px) {
    .ooStep { flex-direction: column; }
    .ooStepGrid2 { grid-template-columns: 1fr; }
}

.ooFooterNote {
    background: #FBEAF0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 56px 40px;
    text-align: center;
}
.ooFooterNote p {
    max-width: 46ch;
    margin: 0 auto;
    font-size: 18px;
    font-weight: 700;
    color: #2E2A26;
    line-height: 1.5;
}

/* CREATIVE SPACE — Instagram reels showcase */
.igReelsGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}
.igReelCard {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.igReelThumb {
    aspect-ratio: 3 / 5;
    width: 100%;
    background-color: #2E2A26;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s ease;
}
.igReelCard:hover .igReelThumb { transform: translateY(-3px); }
.igReelPlay {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(0,0,0,.45);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
}
.igReelLabel { font-size: 13px; font-weight: 700; color: var(--ink); }
@media (max-width: 720px) {
    .igReelsGrid { grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
    .igReelLabel { font-size: 11px; }
}

.igModalOverlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(20,18,16,.6);
    z-index: 200;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.igModalOverlay.open { display: flex; }
.igModal {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    max-width: 420px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
}
.igModal h3 { font-size: 20px; margin-bottom: 12px; }
.igModal p { font-size: 15px; margin-bottom: 20px; white-space: pre-line; }
.igModalClose {
    position: absolute;
    top: 16px; right: 16px;
    background: none; border: none;
    font-size: 22px; line-height: 1;
    cursor: pointer;
    color: var(--muted);
}
