/*
Theme Name: Bona Fide Studio
Theme URI: https://bonafidestudio.ca/
Description: Custom theme for Bona Fide Studio — a corporate branding agency.
Version: 1.1.0
Author: Bona Fide Studio
Author URI: https://bonafidestudio.ca/
Text Domain: bonafide-studio
*/

/* ─── FONTS ─── */
@font-face {
    font-family: 'Coco Gothic';
    src: url('fonts/Coco-Gothic-Regular-trial.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Coco Gothic';
    src: url('fonts/Coco-Gothic-Bold-trial.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Coco Gothic';
    src: url('fonts/Coco-Gothic-Heavy-trial.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* ─── HEADING FONT OVERRIDE ─── */
.nav-logo,
.hero-title,
.h2,
.pillar-tile-name,
.brand-name,
.pkg-name,
.info-card h4,
.print-main h3,
.print-side-title,
.manifesto-title,
.positioning-big,
.cta-title,
.footer-brand,
.photo-break__text,
.quiz-question__text,
.quiz-result__title {
    font-family: 'Coco Gothic', sans-serif !important;
    text-transform: uppercase;
    line-height: 1.15;
    overflow: visible;
    padding-top: 0.05em;
}
/* Numbers stay on Questrial — Coco Gothic trial may not include numerals */
.h-stat-num,
.tl-num,
.d-num,
.cfg-step__title {
    font-family: 'Questrial', sans-serif !important;
}

/* ─── VARIABLES ─── */
:root {
    --white: #FFFFFF;
    --black: #1A1A17;
    --terracotta: #923E0F;
    --terra-mid: #A8502A;
    --terra-light: #C27A5A;
    --caramel: #7A3310;
    --beige: #ECEAE6;
    --beige-mid: #E0DEDA;
    --beige-dark: #C5C1BB;
    --cream: #F4F3F1;
    --olive: #4A4A4A;
    --olive-light: #6A6A6A;
    --sand: #F4F3F1;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-xl: 48px;
    --radius-pill: 999px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    background: var(--cream);
    color: var(--black);
    font-family: 'Questrial', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
}

/* ─── ADMIN BAR FIX ─── */
body.admin-bar nav { top: 32px; }
body.admin-bar nav.nav-scrolled { top: 48px; }

/* ─── NAV ─── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    border: none;
    border-bottom: 1px solid rgba(221, 208, 190, 0.3);
    padding: 0 56px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 auto;
    max-width: 100%;
}

nav.nav-scrolled {
    top: 16px;
    left: 4%;
    right: 4%;
    max-width: 1100px;
    height: 60px;
    padding: 0 24px;
    border: 1px solid rgba(221, 208, 190, 0.5);
    border-bottom: 1px solid rgba(221, 208, 190, 0.5);
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
    margin: 0 auto;
}

.nav-logo {
    font-family: 'Questrial', sans-serif;
    font-weight: 900;
    font-size: 22px;
    text-transform: uppercase;
    color: var(--black);
    letter-spacing: 1px;
}

.nav-logo span { color: var(--terracotta); }
.nav-logo a { color: inherit; text-decoration: none; }
.nav-logo-img { height: 56px; width: auto; display: block; transition: opacity 0.35s ease; }
.nav-logo-icon { position: absolute; top: 50%; left: 0; transform: translateY(-50%); height: 36px; opacity: 0; }
.nav-logo a { position: relative; display: flex; align-items: center; }
nav.nav-scrolled .nav-logo-full { opacity: 0; }
nav.nav-scrolled .nav-logo-icon { opacity: 1; }

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--black);
    text-decoration: none;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.nav-links a:hover { opacity: 1; }

.nav-cta {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: var(--terracotta);
    color: var(--white) !important;
    opacity: 1 !important;
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s !important;
}

.nav-cta:hover { background: var(--caramel) !important; color: var(--white) !important; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(146, 62, 15, 0.3); }

/* ─── WP Menu Reset ─── */
.nav-links .sub-menu { display: none; }
.nav-links li { list-style: none; }

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    background: var(--terracotta);
    display: flex;
    align-items: center;
    padding: 120px 64px 100px;
    position: relative;
    overflow: hidden;
}

/* Hero circles now injected as real elements by animations.js for GSAP animation */
.js-ready .hero::before,
.js-ready .hero::after { display: none; }

.hero::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px; left: 30%;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: rgba(0,0,0,0.06);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 28px;
    display: inline-block;
    background: rgba(255,255,255,0.08);
    padding: 8px 20px;
    border-radius: var(--radius-pill);
}

.hero-title {
    font-family: 'Questrial', sans-serif;
    font-weight: 900;
    font-size: clamp(64px, 10vw, 140px);
    line-height: 1.1;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 40px;
}

.hero-title em {
    font-style: normal;
    color: var(--beige);
    display: block;
}

.hero-bottom {
    display: flex;
    align-items: flex-end;
    gap: 64px;
    flex-wrap: wrap;
}

.hero-sub {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255,255,255,0.82);
    line-height: 1.8;
    max-width: 480px;
}

.hero-stats {
    display: flex;
    gap: 36px;
    flex-shrink: 0;
}

.h-stat { background: rgba(255,255,255,0.08); border-radius: var(--radius-pill); padding: 14px 28px; display: flex; align-items: center; gap: 12px; transition: transform 0.3s, background 0.3s; }
.h-stat:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); }
.h-stat-num { font-family: 'Questrial', sans-serif; font-weight: 900; font-size: 40px; color: var(--white); line-height: 1; }
.h-stat-label { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.6); letter-spacing: 2px; margin-top: 4px; }

/* ─── SHARED ─── */
.section { padding: 100px 64px; }
.section-inner { max-width: 1400px; margin: 0 auto; }

.label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 16px;
    display: inline-block;
    background: rgba(146, 62, 15, 0.08);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
}

.h2 {
    font-family: 'Questrial', sans-serif;
    font-weight: 900;
    font-size: clamp(40px, 5vw, 78px);
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: 2px;
    color: var(--black);
    margin-bottom: 20px;
}

.h2 span { color: var(--terracotta); }

.intro {
    font-size: 17px;
    font-weight: 300;
    color: #777;
    line-height: 1.85;
    max-width: 600px;
    margin-bottom: 64px;
}

.divider-warm {
    height: 1px;
    background: linear-gradient(to right, var(--beige-dark), transparent);
    margin: 0 64px;
}

/* ─── PILLARS OVERVIEW ─── */
.pillars-overview { background: var(--white); border: none; outline: none; box-shadow: none; margin-top: -2px; padding-top: 102px; }

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pillar-tile {
    background: var(--cream);
    padding: 48px 36px;
    border-radius: var(--radius-lg);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}
.pillar-tile::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--terracotta);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}
a.pillar-tile { text-decoration: none; color: inherit; display: block; }
.pillar-tile:hover::before { transform: scaleX(1); }
.pillar-tile:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,0.08); }
.pillar-tile.warm { background: var(--beige); }
.pillar-tile.warm:hover { background: var(--beige-mid); }

.pillar-tile-num {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 20px;
    display: inline-block;
    background: rgba(146, 62, 15, 0.08);
    padding: 5px 14px;
    border-radius: var(--radius-pill);
}

.pillar-tile-name {
    font-family: 'Questrial', sans-serif;
    font-weight: 900;
    font-size: 32px;
    text-transform: uppercase;
    line-height: 1.05;
    color: var(--black);
    margin-bottom: 14px;
}

.pillar-tile-tagline {
    font-size: 15px;
    font-weight: 300;
    color: #888;
    line-height: 1.7;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.pillar-dot-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pillar-dot-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    font-weight: 300;
    color: #666;
    line-height: 1.5;
}
.pillar-dot-item::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--terracotta);
    margin-top: 7px;
    flex-shrink: 0;
}

.pillar-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--beige-dark);
    color: var(--caramel);
    padding: 8px 20px;
    margin-top: 28px;
    border-radius: var(--radius-pill);
    transition: all 0.3s;
}
.pillar-tile:hover .pillar-tag {
    background: var(--terracotta);
    color: var(--white);
    border-color: var(--terracotta);
}

/* ─── BRAND DEV ─── */
.brand-section { background: var(--cream); }

.brand-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.brand-card {
    background: var(--white);
    padding: 44px 36px;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-lg);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.brand-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.08);
}

.brand-card.hero-card {
    background: var(--terracotta);
    border-color: transparent;
}

.brand-card.hero-card:hover {
    box-shadow: 0 24px 60px rgba(146, 62, 15, 0.25);
}

.brand-tier {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 18px;
    display: inline-block;
    background: rgba(146, 62, 15, 0.08);
    padding: 5px 14px;
    border-radius: var(--radius-pill);
}

.brand-card.hero-card .brand-tier { color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.1); }

.brand-name {
    font-family: 'Questrial', sans-serif;
    font-weight: 900;
    font-size: 30px;
    text-transform: uppercase;
    line-height: 1.05;
    color: var(--black);
    margin-bottom: 10px;
}

.brand-card.hero-card .brand-name { color: var(--white); }

.brand-for {
    font-size: 14px;
    font-weight: 300;
    color: #888;
    line-height: 1.6;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    font-style: italic;
}

.brand-card.hero-card .brand-for {
    color: rgba(255,255,255,0.7);
    border-bottom-color: rgba(255,255,255,0.15);
}

.includes-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 16px;
}

.brand-card.hero-card .includes-label { color: rgba(255,255,255,0.6); }

.deliv-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }

.deliv-item {
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.brand-card.hero-card .deliv-item { border-bottom-color: rgba(255,255,255,0.1); }

.deliv-strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 2px;
}

.brand-card.hero-card .deliv-strong { color: var(--white); }

.deliv-text {
    font-size: 13px;
    font-weight: 300;
    color: #999;
    line-height: 1.5;
}

.brand-card.hero-card .deliv-text { color: rgba(255,255,255,0.65); }

.outcome-box {
    background: var(--cream);
    border-left: 4px solid var(--terracotta);
    padding: 18px 22px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.brand-card.hero-card .outcome-box {
    background: rgba(0,0,0,0.15);
    border-left-color: var(--beige);
}

.outcome-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 5px;
}

.brand-card.hero-card .outcome-label { color: rgba(255,255,255,0.6); }

.outcome-text {
    font-size: 14px;
    font-weight: 300;
    color: #666;
    line-height: 1.6;
}

.brand-card.hero-card .outcome-text { color: rgba(255,255,255,0.85); }

/* ─── STRATEGY ─── */
.strategy-section { background: var(--cream); }

.pkg-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 52px;
    flex-wrap: wrap;
}

.pkg-tab {
    padding: 14px 28px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(255,255,255,0.6);
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: var(--radius-pill);
    font-family: 'Questrial', sans-serif;
    color: var(--black);
    transition: all 0.3s;
}

.pkg-tab.active { background: var(--terracotta); color: var(--white); border-color: var(--terracotta); }
.pkg-tab:hover:not(.active) { border-color: var(--terracotta); background: var(--white); }

.pkg-panel { display: none; }
.pkg-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }

.pkg-tier-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 10px;
    display: inline-block;
    background: rgba(146, 62, 15, 0.08);
    padding: 5px 14px;
    border-radius: var(--radius-pill);
}

.pkg-name {
    font-family: 'Questrial', sans-serif;
    font-weight: 900;
    font-size: 48px;
    text-transform: uppercase;
    line-height: 1.1;
    color: var(--black);
    margin-bottom: 20px;
}

.pkg-desc {
    font-size: 16px;
    font-weight: 300;
    color: #777;
    line-height: 1.85;
    margin-bottom: 36px;
}

.mkt-deliv-list { list-style: none; display: flex; flex-direction: column; }

.mkt-deliv-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.d-num {
    width: 32px; height: 32px;
    background: var(--terracotta);
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    margin-top: 1px;
}

.d-body strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 2px;
}

.d-body span {
    font-size: 14px;
    font-weight: 300;
    color: #999;
    line-height: 1.5;
}

.info-card {
    background: var(--white);
    border: none;
    padding: 32px;
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.info-card h4 {
    font-family: 'Questrial', sans-serif;
    font-weight: 900;
    font-size: 20px;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 10px;
}

.info-card p {
    font-size: 15px;
    font-weight: 300;
    color: #777;
    line-height: 1.75;
}

.timeline-bar {
    background: var(--terracotta);
    padding: 22px 32px;
    display: flex;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.tl-step { flex: 1; text-align: center; position: relative; }
.tl-step:not(:last-child)::after {
    content: '\2192';
    position: absolute;
    right: -10px; top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

.tl-num {
    font-family: 'Questrial', sans-serif;
    font-weight: 900;
    font-size: 20px;
    color: var(--white);
}

.tl-label {
    font-size: 12px;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    letter-spacing: 1px;
    margin-top: 3px;
}

.outcome-strip-warm {
    background: var(--terracotta);
    padding: 18px 32px;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    margin-top: 0;
}

.outcome-strip-warm p {
    font-size: 15px;
    font-weight: 300;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
}

.outcome-strip-warm strong { font-weight: 700; color: var(--white); }

/* ─── PRINTING ─── */
.printing-section { background: var(--cream); }

.print-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

.print-main {
    background: var(--white);
    padding: 56px;
    border-radius: var(--radius-lg);
}

.print-main h3 {
    font-family: 'Questrial', sans-serif;
    font-weight: 900;
    font-size: 42px;
    text-transform: uppercase;
    color: var(--black);
    line-height: 1.0;
    margin-bottom: 16px;
}

.print-main p {
    font-size: 16px;
    font-weight: 300;
    color: #777;
    line-height: 1.85;
    margin-bottom: 36px;
}

.merch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.merch-tile {
    background: var(--cream);
    padding: 20px 14px;
    text-align: center;
    border-radius: var(--radius-md);
    transition: transform 0.3s, box-shadow 0.3s;
}

.merch-tile:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.06); }
.merch-icon { font-size: 22px; margin-bottom: 8px; }
.merch-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--black); }

.print-side {
    background: var(--terracotta);
    padding: 56px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: var(--radius-lg);
}

.print-side-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 14px;
}

.print-side-title {
    font-family: 'Questrial', sans-serif;
    font-weight: 900;
    font-size: 38px;
    text-transform: uppercase;
    line-height: 1.0;
    color: var(--white);
    margin-bottom: 18px;
}

.print-side-body {
    font-size: 15px;
    font-weight: 300;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    margin-bottom: 32px;
}

.shopify-badge {
    background: rgba(0,0,0,0.15);
    padding: 10px 18px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    display: inline-block;
    border-radius: var(--radius-pill);
}

/* ─── MANIFESTO ─── */
.manifesto-section {
    background: var(--terracotta);
    padding: 100px 64px;
    text-align: center;
}

.manifesto-inner { max-width: 960px; margin: 0 auto; }

.manifesto-title {
    font-family: 'Questrial', sans-serif;
    font-weight: 900;
    font-size: clamp(52px, 8vw, 110px);
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 56px;
}

.manifesto-title em { font-style: normal; color: var(--beige); }

.manifesto-line {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255,255,255,0.85);
    line-height: 1.85;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.manifesto-line strong { font-weight: 700; color: var(--white); }

.positioning-box {
    background: rgba(0,0,0,0.12);
    padding: 56px;
    margin-top: 64px;
    text-align: left;
    border-radius: var(--radius-xl);
}

.positioning-big {
    font-family: 'Questrial', sans-serif;
    font-weight: 900;
    font-size: clamp(28px, 3vw, 46px);
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 24px;
}

.positioning-big span { color: var(--beige); }

.positioning-body {
    font-size: 17px;
    font-weight: 300;
    color: rgba(255,255,255,0.82);
    line-height: 1.9;
    max-width: 760px;
}

.positioning-body strong { font-weight: 700; color: var(--white); }

/* ─── CLIENTS ─── */
.clients-section { background: var(--white); }

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.portfolio-item {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-placeholder {
    width: 100%;
    height: 100%;
    background: var(--cream);
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.05);
}

.portfolio-overlay {
    display: none;
}

.portfolio-name {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
}

.portfolio-ind {
    font-size: 12px;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
}

/* ─── CTA ─── */
.cta-section {
    background: var(--white);
    padding: 100px 64px;
    text-align: center;
}

.cta-inner { max-width: 700px; margin: 0 auto; }

.cta-title {
    font-family: 'Questrial', sans-serif;
    font-weight: 900;
    font-size: clamp(40px, 5vw, 72px);
    text-transform: uppercase;
    color: var(--black);
    line-height: 1.1;
    margin-bottom: 24px;
}

.cta-title span { color: var(--terracotta); }

.cta-sub {
    font-size: 17px;
    font-weight: 300;
    color: #888;
    line-height: 1.8;
    margin-bottom: 48px;
}

.cta-btn {
    display: inline-block;
    background: var(--terracotta);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 18px 48px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-btn:hover { background: var(--caramel); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(146, 62, 15, 0.3); }

.cta-note {
    font-size: 14px;
    font-weight: 300;
    color: #aaa;
    margin-top: 20px;
    letter-spacing: 1px;
}

/* ─── FOOTER ─── */
footer {
    background: #2C2C2A;
    padding: 64px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-brand {
    font-family: 'Questrial', sans-serif;
    font-weight: 900;
    font-size: 52px;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.1;
}

.footer-brand span { color: var(--beige); }

.footer-tagline {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 10px;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: right;
}

.footer-list li {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    letter-spacing: 1px;
}

.footer-list li.hl {
    color: var(--beige);
    font-weight: 700;
    margin-top: 8px;
    background: rgba(255,255,255,0.08);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    display: inline-block;
}

.footer-bottom {
    width: 100%;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    margin-top: 24px;
}

.footer-copyright {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1px;
}

/* ─── PHOTO BREAKS ─── */
.photo-break {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.photo-break--full { min-height: 60vh; }
.photo-break--half { min-height: 35vh; }

.photo-break__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0; left: 0;
}

.photo-break__placeholder {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0; left: 0;
}

.photo-break__overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-break__text {
    font-family: 'Questrial', sans-serif;
    font-weight: 900;
    font-size: clamp(32px, 5vw, 64px);
    text-transform: uppercase;
    color: var(--white);
    text-align: center;
    padding: 0 24px;
}

/* ─── BRAND QUIZ ─── */
.brand-quiz-section {
    background: var(--terracotta);
    position: relative;
    padding: 0 !important;
    overflow: hidden;
}
.brand-quiz-section .section-inner {
    position: relative;
    z-index: 2;
    max-width: 100%;
    padding: 0;
    margin: 0;
}
.quiz-layout {
    display: grid;
    grid-template-columns: 3fr 9fr;
    gap: 0;
    align-items: stretch;
    width: 100%;
}
.quiz-layout__image {
    overflow: hidden;
    margin: 0;
    line-height: 0;
    height: 100%;
}
.quiz-layout__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.quiz-layout__placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.08);
}
.quiz-layout__content {
    padding: 48px;
}
.brand-quiz-section .label {
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.9);
}
.brand-quiz-section .intro,
.brand-quiz-section .quiz-progress__text,
.brand-quiz-section .quiz-lead__text,
.brand-quiz-section .quiz-result__desc {
    color: rgba(255,255,255,0.85);
}
.brand-quiz-section .h2 {
    color: var(--white);
}
.brand-quiz-section .h2 span {
    color: var(--white);
}
.brand-quiz-section .quiz-start-btn {
    background: var(--white);
    color: var(--black);
}
.brand-quiz-section .quiz-question__text {
    color: var(--white);
}
.brand-quiz-section .quiz-option {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.2);
}
.brand-quiz-section .quiz-option .quiz-option__label {
    color: var(--white);
}
.brand-quiz-section .quiz-option:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.35);
}
.brand-quiz-section .quiz-option.selected {
    background: #2C2C2A;
    border-color: #2C2C2A;
}
.brand-quiz-section .quiz-lead {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.15);
}
.brand-quiz-section .quiz-lead__input {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    color: var(--white);
}
.brand-quiz-section .quiz-lead__input::placeholder {
    color: rgba(255,255,255,0.5);
}
.brand-quiz-section .quiz-result__title {
    color: var(--beige);
}
.brand-quiz-section .quiz-result__cta,
.brand-quiz-section .quiz-lead__btn {
    background: var(--white);
    color: var(--black);
}
.brand-quiz-section .quiz-result__cta:hover,
.brand-quiz-section .quiz-lead__btn:hover {
    background: var(--black);
    color: var(--white);
}
.brand-quiz-section .quiz-result__restart {
    background: var(--white);
    border-color: var(--white);
    color: var(--black);
}
.brand-quiz-section .quiz-result__restart:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}
.brand-quiz-section .quiz-progress__bar {
    background: rgba(255,255,255,0.15);
}
.brand-quiz-section .quiz-progress__fill {
    background: var(--white);
}

/* Quiz back button */
.quiz-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    font-family: 'Questrial', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    padding: 8px 0;
    margin-bottom: 20px;
    transition: color 0.2s;
}
.quiz-back-btn:hover {
    color: var(--white);
}

.quiz-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quiz-container .intro {
    margin-left: auto;
    margin-right: auto;
}

.quiz-start-btn {
    display: inline-block;
    background: var(--terracotta);
    color: var(--white);
    font-family: 'Questrial', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 18px 48px;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-pill);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.quiz-start-btn:hover { background: var(--white); color: var(--black); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15); }

.quiz-progress { margin-bottom: 48px; }

.quiz-progress__bar {
    width: 100%;
    height: 4px;
    background: var(--beige-mid);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 12px;
}

.quiz-progress__fill {
    height: 100%;
    background: var(--terracotta);
    width: 0;
    transition: width 0.4s ease;
    border-radius: 2px;
}

.quiz-progress__text {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #999;
}

.quiz-question__text {
    font-family: 'Questrial', sans-serif;
    font-weight: 900;
    font-size: clamp(28px, 4vw, 44px);
    text-transform: uppercase;
    color: var(--black);
    line-height: 1.05;
    margin-bottom: 40px;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.quiz-option {
    background: var(--cream);
    border: 2px solid var(--beige-mid);
    padding: 24px 32px;
    text-align: left;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: 'Questrial', sans-serif;
    border-radius: var(--radius-md);
}

.quiz-option:hover {
    border-color: var(--terracotta);
    background: var(--sand);
    transform: translateX(4px);
}

.quiz-option.selected {
    border-color: var(--terracotta);
    background: var(--terracotta);
}

.quiz-option.selected .quiz-option__label { color: var(--white); }

.quiz-option__label {
    font-size: 17px;
    font-weight: 400;
    color: var(--black);
    line-height: 1.5;
}

.quiz-result__title {
    font-family: 'Questrial', sans-serif;
    font-weight: 900;
    font-size: clamp(36px, 5vw, 56px);
    text-transform: uppercase;
    color: var(--terracotta);
    line-height: 1.0;
    margin-bottom: 20px;
}

.quiz-result__desc {
    font-size: 18px;
    font-weight: 300;
    color: #777;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.quiz-result__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.quiz-result__cta {
    display: inline-block;
    background: var(--terracotta);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: var(--radius-pill);
    transition: all 0.35s ease;
}

.quiz-result__cta:hover { background: var(--caramel); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(146, 62, 15, 0.3); }

.quiz-result__restart {
    background: transparent;
    border: 2px solid var(--beige-dark);
    color: var(--black);
    font-family: 'Questrial', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 16px 40px;
    cursor: pointer;
    border-radius: var(--radius-pill);
    transition: all 0.3s;
}

.quiz-result__restart:hover { border-color: var(--terracotta); background: var(--terracotta); color: var(--white); transform: translateY(-2px); }

/* Quiz lead capture */
.quiz-lead {
    background: var(--cream);
    border: 1px solid var(--beige-mid);
    padding: 32px;
    border-radius: var(--radius-lg);
    margin-bottom: 32px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.quiz-lead__text {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.quiz-lead__form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quiz-lead__input {
    padding: 14px 18px;
    font-family: 'Questrial', sans-serif;
    font-size: 14px;
    border: 2px solid var(--beige-mid);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--black);
    width: 100%;
}

.quiz-lead__input:focus { border-color: var(--terracotta); outline: none; }

.quiz-lead__btn {
    background: var(--terracotta);
    color: var(--white);
    font-family: 'Questrial', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 16px 32px;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-pill);
    transition: all 0.35s ease;
}

.quiz-lead__btn:hover { background: var(--caramel); transform: translateY(-2px); }
.quiz-lead__btn:disabled { opacity: 0.6; cursor: not-allowed; }

.quiz-lead__status {
    margin-top: 12px;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 400;
}

.quiz-lead__status--success { background: #E8F5E9; color: #2E7D32; border-left: 3px solid #27AE60; border-radius: var(--radius-sm); }
.quiz-lead__status--error { background: #FFEBEE; color: #C62828; border-left: 3px solid #E74C3C; border-radius: var(--radius-sm); }

/* ─── PRINTING CONFIGURATOR ─── */
.cfg-wrap {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-lg);
    padding: 48px;
    margin-bottom: 48px;
}

.cfg-step { margin-bottom: 40px; }
.cfg-step:last-child { margin-bottom: 0; }

.cfg-step__title {
    font-family: 'Questrial', sans-serif;
    font-weight: 900;
    font-size: 22px;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 20px;
}

.cfg-garment-grid {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cfg-garment-tile {
    background: var(--cream);
    border: 2px solid var(--beige-mid);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    cursor: pointer;
    transition: all 0.25s;
    text-align: center;
    min-width: 140px;
    font-family: 'Questrial', sans-serif;
}

.cfg-garment-tile:hover { border-color: var(--terracotta); background: var(--sand); }
.cfg-garment-tile.active { border-color: var(--terracotta); background: var(--terracotta); }
.cfg-garment-tile.active .cfg-garment-tile__icon,
.cfg-garment-tile.active .cfg-garment-tile__name { color: var(--white); }

.cfg-garment-tile__icon {
    display: block;
    font-size: 28px;
    margin-bottom: 8px;
}

.cfg-garment-tile__name {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--black);
}

/* Quality picker */
.cfg-quality-wrap {
    margin-bottom: 40px;
}
.cfg-quality-options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.cfg-quality-btn {
    padding: 14px 28px;
    font-family: 'Questrial', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--cream);
    border: 2px solid var(--beige-mid);
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all 0.3s;
    color: var(--black);
}
.cfg-quality-btn:hover {
    border-color: var(--terracotta);
}
.cfg-quality-btn.active {
    background: var(--terracotta);
    border-color: var(--terracotta);
    color: var(--white);
}

.cfg-swatch-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--terracotta);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    min-height: 18px;
}

.cfg-swatch-grid {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cfg-swatch {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0;
}

.cfg-swatch:hover { transform: scale(1.1); }
.cfg-swatch.active {
    border-color: var(--terracotta);
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(146,62,15,0.25);
}

.cfg-dropzone {
    border: 2px dashed var(--beige-dark);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    background: var(--cream);
}

.cfg-dropzone:hover,
.cfg-dropzone.dragover { border-color: var(--terracotta); background: var(--sand); }

.cfg-dropzone__icon { font-size: 32px; display: block; margin-bottom: 12px; }

.cfg-dropzone__text {
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
    display: block;
    margin-bottom: 6px;
}

.cfg-dropzone__hint {
    font-size: 13px;
    font-weight: 300;
    color: #aaa;
}

.cfg-file-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--olive);
    margin-top: 10px;
    display: block;
}

.cfg-quantity {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 400px;
}

.cfg-qty-slider {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    background: var(--beige-mid);
    border-radius: 3px;
    outline: none;
}

.cfg-qty-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--terracotta);
    cursor: pointer;
    border: none;
}

.cfg-qty-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--terracotta);
    cursor: pointer;
    border: none;
}

.cfg-qty-input {
    width: 72px;
    padding: 10px 12px;
    font-family: 'Questrial', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    border: 2px solid var(--beige-mid);
    border-radius: var(--radius-sm);
    background: var(--cream);
    text-align: center;
}

.cfg-qty-input:focus { border-color: var(--terracotta); outline: none; }

.cfg-qty-unit {
    font-size: 14px;
    font-weight: 300;
    color: #999;
    letter-spacing: 1px;
}

/* Placement */
.cfg-placement-hint {
    font-size: 14px;
    color: #888;
    margin-bottom: 16px;
}
.cfg-placement-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.cfg-placement-btn {
    padding: 10px 20px;
    font-family: 'Questrial', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: var(--cream);
    border: 2px solid var(--beige-mid);
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all 0.25s;
    color: var(--black);
}
.cfg-placement-btn:hover {
    border-color: var(--terracotta);
}
.cfg-placement-btn.active {
    background: var(--terracotta);
    border-color: var(--terracotta);
    color: var(--white);
}
.cfg-placement-notes {
    width: 100%;
    max-width: 500px;
    padding: 14px 18px;
    font-family: 'Questrial', sans-serif;
    font-size: 14px;
    border: 2px solid var(--beige-mid);
    border-radius: var(--radius-sm);
    background: var(--cream);
    color: var(--black);
    resize: vertical;
}
.cfg-placement-notes:focus {
    border-color: var(--terracotta);
    outline: none;
}

.cfg-step--submit { padding-top: 20px; border-top: 1px solid var(--beige-mid); }

.cfg-submit-row {
    display: flex;
    gap: 12px;
    max-width: 500px;
}

.cfg-email-input {
    flex: 1;
    padding: 14px 18px;
    font-family: 'Questrial', sans-serif;
    font-size: 14px;
    border: 2px solid var(--beige-mid);
    border-radius: var(--radius-sm);
    background: var(--cream);
    color: var(--black);
}

.cfg-email-input:focus { border-color: var(--terracotta); outline: none; }

.cfg-submit-btn {
    background: var(--terracotta);
    color: var(--white);
    font-family: 'Questrial', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 14px 32px;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-pill);
    transition: all 0.35s ease;
    white-space: nowrap;
}

.cfg-submit-btn:hover { background: var(--caramel); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(146, 62, 15, 0.3); }
.cfg-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.cfg-status {
    margin-top: 16px;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 400;
}

.cfg-status--success { background: #E8F5E9; color: #2E7D32; border-left: 3px solid #27AE60; border-radius: var(--radius-sm); }
.cfg-status--error { background: #FFEBEE; color: #C62828; border-left: 3px solid #E74C3C; border-radius: var(--radius-sm); }

.cfg-catalog {
    text-align: center;
    margin-bottom: 0;
}

.cfg-catalog__link,
.cfg-catalog__placeholder {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 36px;
    background: var(--white);
    border: 1px solid var(--beige-mid);
    border-radius: var(--radius-pill);
    text-decoration: none;
    transition: all 0.2s;
}

.cfg-catalog__link:hover { border-color: var(--terracotta); }

.cfg-catalog__icon { font-size: 24px; }

.cfg-catalog__text {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--black);
}

/* ─── SUBSCRIPTIONS ─── */
.subs-hero { background: var(--terracotta); color: var(--white); }
.subs-hero .label { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }
.subs-hero .h2 { color: var(--white); }
.subs-hero .h2 span { color: var(--beige); }
.subs-hero .intro { color: rgba(255,255,255,0.82); }
.subs-hero-sub { font-size: 20px; color: rgba(255,255,255,0.7); margin-bottom: 24px; font-weight: 300; }
.subs-hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.subs-btn-outline { background: transparent !important; border: 2px solid rgba(255,255,255,0.4) !important; }
.subs-btn-outline:hover { background: var(--white) !important; color: var(--terracotta) !important; border-color: var(--white) !important; }

.subs-how { background: var(--white); }
.subs-how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.subs-how-steps { display: flex; flex-direction: column; gap: 32px; }
.subs-step { display: flex; gap: 20px; }
.subs-step-num { font-family: 'Questrial', sans-serif; font-size: 32px; font-weight: 900; color: var(--terracotta); opacity: 0.3; flex-shrink: 0; line-height: 1; }
.subs-step-content h3 { margin-bottom: 8px; }
.subs-step-title { font-size: 18px; font-weight: 700; color: var(--black); }
.subs-step-content p { font-size: 15px; color: #777; line-height: 1.7; }
.subs-step-tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 4px 12px; border-radius: var(--radius-pill); margin-bottom: 8px; }
.subs-tag-once { background: rgba(146,62,15,0.08); color: var(--terracotta); }
.subs-tag-monthly { background: rgba(74,74,74,0.08); color: var(--olive); }

.subs-how-card { background: var(--terracotta); border-radius: var(--radius-lg); padding: 48px 36px; color: var(--white); }
.subs-card-label { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 16px; display: block; }
.subs-card-title { font-size: 28px; font-weight: 900; line-height: 1.2; margin-bottom: 32px; }
.subs-card-stats { display: flex; flex-direction: column; gap: 24px; }
.subs-stat { display: flex; align-items: center; gap: 16px; }
.subs-stat-num { font-size: 36px; font-weight: 900; color: var(--white); line-height: 1; }
.subs-stat-label { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.4; }

.subs-deliverables { background: var(--cream); }
.subs-del-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.subs-del-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px; }
.subs-del-num { font-size: 28px; font-weight: 900; color: var(--terracotta); opacity: 0.3; margin-bottom: 12px; }
.subs-del-card h3 { font-size: 17px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.subs-del-card p { font-size: 14px; color: #777; line-height: 1.7; }

.subs-pricing { background: var(--black); color: var(--white); }
.subs-pricing .label { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); }
.subs-pricing .h2 { color: var(--white); }
.subs-pricing .h2 span { color: var(--terracotta); }
.subs-pricing .intro { color: rgba(255,255,255,0.6); }

.subs-toggle { display: flex; align-items: center; gap: 12px; justify-content: center; margin-bottom: 48px; }
.subs-toggle-label { font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.subs-toggle-track { width: 52px; height: 28px; background: rgba(255,255,255,0.15); border-radius: var(--radius-pill); border: none; cursor: pointer; position: relative; transition: background 0.3s; }
.subs-toggle-track.active { background: var(--terracotta); }
.subs-toggle-thumb { width: 22px; height: 22px; background: var(--white); border-radius: 50%; position: absolute; top: 3px; left: 3px; transition: transform 0.25s; }
.subs-toggle-track.active .subs-toggle-thumb { transform: translateX(24px); }
.subs-save-badge { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; background: rgba(146,62,15,0.3); color: var(--terracotta); padding: 4px 12px; border-radius: var(--radius-pill); }

.subs-pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.subs-price-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 44px 36px; display: flex; flex-direction: column; transition: transform 0.3s, background 0.3s; }
.subs-price-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.subs-featured { background: var(--white) !important; border-color: var(--white) !important; color: var(--black); position: relative; }
.subs-featured:hover { background: var(--white) !important; }
.subs-featured-badge { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: var(--terracotta); color: var(--white); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; padding: 5px 16px; border-radius: 0 0 var(--radius-sm) var(--radius-sm); }
.subs-price-tier { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--terracotta); margin-bottom: 10px; }
.subs-price-name { font-size: 28px; font-weight: 900; color: var(--white); margin-bottom: 8px; }
.subs-featured .subs-price-name { color: var(--black); }
.subs-price-desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 28px; }
.subs-featured .subs-price-desc { color: #777; }
.subs-price-divider { height: 1px; background: rgba(255,255,255,0.1); margin-bottom: 28px; }
.subs-featured .subs-price-divider { background: var(--beige-mid); }
.subs-price-amount { display: flex; align-items: flex-start; gap: 4px; margin-bottom: 6px; }
.subs-price-currency { font-size: 20px; color: rgba(255,255,255,0.5); margin-top: 10px; }
.subs-featured .subs-price-currency { color: var(--olive); }
.subs-price-number { font-size: 56px; font-weight: 900; color: var(--white); line-height: 1; }
.subs-featured .subs-price-number { color: var(--black); }
.subs-price-period { font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 8px; }
.subs-featured .subs-price-period { color: #999; }
.subs-annual-note { font-size: 13px; color: var(--terracotta); margin-bottom: 20px; }
.subs-price-features { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; margin-bottom: 32px; }
.subs-price-features li { font-size: 14px; color: rgba(255,255,255,0.6); padding-left: 18px; position: relative; line-height: 1.5; }
.subs-featured .subs-price-features li { color: #555; }
.subs-price-features li::before { content: ''; position: absolute; left: 0; top: 7px; width: 6px; height: 6px; border-radius: 50%; background: var(--terracotta); opacity: 0.6; }
.subs-price-features li strong { color: var(--white); font-weight: 700; }
.subs-featured .subs-price-features li strong { color: var(--black); }
.subs-price-cta { display: block; text-align: center; text-decoration: none; padding: 14px; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; border-radius: var(--radius-pill); border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.7); background: transparent; transition: all 0.3s; cursor: pointer; }
.subs-price-cta:hover { border-color: var(--white); color: var(--white); }
.subs-featured .subs-price-cta { background: var(--terracotta); border-color: var(--terracotta); color: var(--white); }
.subs-featured .subs-price-cta:hover { background: var(--caramel); border-color: var(--caramel); }
.subs-footnote { text-align: center; font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 40px; }

.subs-journey { background: var(--white); }
.subs-journey-grid { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 0; align-items: center; }
.subs-journey-node { background: var(--cream); border: 1px solid var(--beige-mid); border-radius: var(--radius-lg); padding: 36px 28px; }
.subs-journey-highlight { background: var(--terracotta); border-color: var(--terracotta); color: var(--white); }
.subs-journey-tag { display: block; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--terracotta); margin-bottom: 12px; }
.subs-journey-highlight .subs-journey-tag { color: rgba(255,255,255,0.6); }
.subs-journey-node h3 { font-size: 20px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.subs-journey-highlight h3 { color: var(--white); }
.subs-journey-node p { font-size: 13px; color: #777; line-height: 1.6; }
.subs-journey-highlight p { color: rgba(255,255,255,0.7); }
.subs-journey-price { margin-top: 20px; font-size: 24px; font-weight: 900; color: var(--terracotta); }
.subs-journey-arrow { display: flex; justify-content: center; align-items: center; color: var(--beige-dark); font-size: 24px; padding: 0 16px; }

.subs-faq { background: var(--cream); }
.subs-faq-list { display: flex; flex-direction: column; gap: 2px; margin-top: 40px; }
.subs-faq-item { border-bottom: 1px solid var(--beige-mid); }
.subs-faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 20px 0; background: none; border: none; cursor: pointer; font-family: 'Questrial', sans-serif; font-size: 16px; font-weight: 700; color: var(--black); text-align: left; }
.subs-faq-icon { font-size: 20px; color: var(--terracotta); transition: transform 0.3s; flex-shrink: 0; margin-left: 16px; }
.subs-faq-item.open .subs-faq-icon { transform: rotate(45deg); }
.subs-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.subs-faq-item.open .subs-faq-a { max-height: 300px; }
.subs-faq-a p { font-size: 15px; color: #666; line-height: 1.7; padding-bottom: 20px; }

/* Subscriptions responsive */
@media (max-width: 960px) {
    .subs-how-grid { grid-template-columns: 1fr; }
    .subs-del-grid { grid-template-columns: 1fr; }
    .subs-pricing-grid { grid-template-columns: 1fr; }
    .subs-journey-grid { grid-template-columns: 1fr; gap: 16px; }
    .subs-journey-arrow { transform: rotate(90deg); padding: 8px 0; }
}

@media (max-width: 600px) {
    .subs-price-card { padding: 32px 24px; }
    .subs-how-card { padding: 32px 24px; }
}

/* ─── WAVE DIVIDERS ─── */
.wave-divider {
    width: 100%;
    display: block;
    line-height: 0;
    position: relative;
    z-index: 2;
    margin-top: -1px;
    margin-bottom: -1px;
}
.wave-divider svg {
    width: 100%;
    height: auto;
    display: block;
}

/* ─── CONTACT ─── */
.contact-section { background: var(--cream); }

.contact-layout {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 64px;
    align-items: start;
}

.contact-info .intro {
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-detail__icon {
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--terracotta);
}

.contact-detail__label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 4px;
}

.contact-detail__value {
    font-size: 15px;
    font-weight: 400;
    color: var(--black);
    text-decoration: none;
}

a.contact-detail__value:hover {
    color: var(--terracotta);
}

.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-form__group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form__label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--black);
}

.contact-form__input {
    padding: 14px 18px;
    font-family: 'Questrial', sans-serif;
    font-size: 15px;
    border: 2px solid var(--beige-mid);
    border-radius: var(--radius-sm);
    background: var(--cream);
    color: var(--black);
    width: 100%;
    transition: border-color 0.2s;
}

.contact-form__input:focus {
    border-color: var(--terracotta);
    outline: none;
}

.contact-form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%231A1A17' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 48px;
    cursor: pointer;
}

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

.contact-form__submit {
    align-self: flex-start;
    border: none;
    cursor: pointer;
    font-family: 'Questrial', sans-serif;
}

.contact-form__status {
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 400;
    border-radius: var(--radius-sm);
}

.contact-form__status--success {
    background: #E8F5E9;
    color: #2E7D32;
    border-left: 3px solid #27AE60;
}

.contact-form__status--error {
    background: #FFEBEE;
    color: #C62828;
    border-left: 3px solid #E74C3C;
}

/* ─── ANIMATE ─── */
/* Legacy .fade rules removed — replaced by GSAP-driven data-animate system in animations.js/css */

/* ─── MOBILE ─── */
/* ─── TABLET (max 960px) ─── */
@media (max-width: 960px) {
    nav { padding: 0 20px; height: 56px; }
    nav.nav-scrolled { width: 92%; padding: 0 20px; height: 52px; top: 10px; }
    .nav-links { display: none; }
    .hero { padding: 100px 32px 60px; }
    .hero-bottom { gap: 32px; }
    .section { padding: 64px 32px; }
    .manifesto-section, .cta-section { padding: 64px 32px; }
    .brand-quiz-section { padding: 0; }
    .pillars-grid { grid-template-columns: 1fr; }
    .brand-cards { grid-template-columns: 1fr; }
    .pkg-panel.active { grid-template-columns: 1fr !important; }
    .print-grid { grid-template-columns: 1fr !important; }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .quiz-layout { grid-template-columns: 1fr; }
    .quiz-layout__img { min-height: 250px; width: 100%; }
    .quiz-container { text-align: center; }
    .quiz-container .intro { margin-left: auto; margin-right: auto; }
    .contact-layout { grid-template-columns: 1fr; gap: 40px; }
    .contact-form-wrap { padding: 32px 24px; }
    footer { padding: 40px 32px; text-align: center; justify-content: center; flex-direction: column; align-items: center; }
    .footer-list { text-align: center; }
    .footer-brand { font-size: 40px; }
    .footer-bottom { text-align: center; }
    .positioning-box { padding: 32px 24px; }
    .merch-grid { grid-template-columns: repeat(2, 1fr); }

    /* Photo breaks */
    .photo-break--full { min-height: 35vh; }
    .photo-break--half { min-height: 20vh; }

    /* Configurator */
    .cfg-wrap { padding: 24px; }
    .cfg-garment-grid { flex-wrap: wrap; }
    .cfg-garment-tile { min-width: 120px; }
    .cfg-submit-row { flex-direction: column; }
    .cfg-quantity { flex-wrap: wrap; }
    .cfg-placement-options { flex-direction: column; }

    /* Strategy tabs */
    .pkg-tabs { flex-direction: column; width: 100%; }
    .pkg-tab { text-align: center; }
}

/* ─── PHONE (max 600px) ─── */
@media (max-width: 600px) {
    nav { padding: 0 16px; height: 52px; }
    nav.nav-scrolled { width: 95%; padding: 0 16px; height: 48px; top: 8px; }
    .nav-logo-img { height: 40px; }
    .nav-logo-icon { height: 28px; }
    .hero { padding: 80px 20px 50px; min-height: 90vh; }
    .hero-title { font-size: clamp(48px, 12vw, 80px); }
    .hero-sub { font-size: 16px; }
    .hero-eyebrow { font-size: 11px; padding: 6px 14px; }
    .section { padding: 48px 20px; }
    .manifesto-section, .cta-section { padding: 48px 20px; }
    .h2 { font-size: clamp(32px, 8vw, 56px); }
    .intro { font-size: 15px; margin-bottom: 40px; }
    .label { font-size: 11px; letter-spacing: 3px; }
    .portfolio-grid { grid-template-columns: 1fr; gap: 12px; }
    .pillar-tile { padding: 32px 24px; }
    .brand-card { padding: 32px 24px; }
    .info-card { padding: 24px; }
    .merch-grid { grid-template-columns: 1fr; }
    .cta-title { font-size: clamp(32px, 8vw, 56px); }
    .cta-btn { padding: 16px 32px; font-size: 12px; }
    .cta-sub { font-size: 15px; }
    footer { padding: 32px 20px; gap: 24px; }
    .footer-brand { font-size: 32px; }
    .footer-list li { font-size: 13px; }
    .footer-copyright { font-size: 12px; }
    .contact-info .cta-btn { width: 100%; text-align: center; }
    .contact-form-wrap { padding: 24px 20px; }
    .cfg-wrap { padding: 20px 16px; }
    .cfg-step__title { font-size: 18px; }
    .pkg-name { font-size: 36px; }
    .pkg-desc { font-size: 15px; }
    .timeline-bar { padding: 16px 20px; flex-wrap: wrap; gap: 8px; }
    .tl-step:not(:last-child)::after { display: none; }
    .print-main { padding: 32px 24px; }
    .print-side { padding: 32px 24px; }
    .quiz-layout__content { padding: 32px 20px; }
    .scroll-indicator { bottom: 20px; }
}
