/* ═══════════════════════════════════════════════════
   CSS CUSTOM PROPERTIES
═══════════════════════════════════════════════════ */
:root {
    --cream: #FDF8F0;
    --warm-white: #FFFEF9;
    --sakura: #F4B8C1;
    --sakura-deep: #E8899A;
    --matcha: #5C7A5C;
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --charcoal: #2C2C2C;
    --charcoal-light: #3D3D3D;
    --text-muted: #6B6B6B;
    --shadow-sm: 0 2px 12px rgba(44, 44, 44, .08);
    --shadow-md: 0 8px 32px rgba(44, 44, 44, .14);
    --shadow-lg: 0 24px 64px rgba(44, 44, 44, .22);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: .3s ease;
    --max-w: 1200px;
    --nav-h: 72px;
}

/* ═══════════════════════════════════════════════════
   RESET + BASE
═══════════════════════════════════════════════════ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--charcoal);
    background: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

address {
    font-style: normal;
    line-height: 1.7;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

/* ═══════════════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════════════ */
h1,
h2,
h3,
h4,
h5 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    line-height: 1.15;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
}

h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.7rem);
}

h4 {
    font-size: 1.1rem;
}

h5 {
    font-size: .82rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

p {
    line-height: 1.75;
}

/* ═══════════════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════════════ */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3rem);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .875rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
    font-family: 'DM Sans', sans-serif;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: var(--gold);
    color: var(--charcoal);
}

.btn-primary:hover {
    background: var(--gold-light);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, .55);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, .1);
    border-color: #fff;
}

.btn-card {
    display: inline-block;
    padding: .75rem 1.6rem;
    background: var(--charcoal);
    color: #fff;
    border-radius: 50px;
    font-size: .9rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}

.btn-card:hover {
    background: var(--matcha);
    transform: translateY(-2px);
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    background: var(--gold);
    color: var(--charcoal);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: .02em;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-submit:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, .4);
}

/* Section header */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-block;
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201, 168, 76, .12);
    padding: .35rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.2rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Scroll fade-in (JS toggles .visible) */
.fade-section {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s ease, transform .75s ease;
}

.fade-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Image placeholders */
.img-placeholder {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: linear-gradient(135deg, #ede5d8 0%, #d8c9b4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-placeholder::before {
    content: attr(data-label);
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .78rem;
    color: #a08060;
    text-align: center;
    padding: 1rem;
    line-height: 1.5;
}

.img-placeholder img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
}

/* ═══════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-h);
    transition: background var(--transition), box-shadow var(--transition);
}

#navbar.scrolled {
    background: rgba(253, 248, 240, .96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3rem);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    transition: color var(--transition);
}

.logo-sub {
    font-size: .63rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--sakura);
    transition: color var(--transition);
}

#navbar.scrolled .logo-text {
    color: var(--charcoal);
}

#navbar.scrolled .logo-sub {
    color: var(--text-muted);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links li a {
    color: rgba(255, 255, 255, .8);
    font-size: .92rem;
    font-weight: 500;
    transition: color var(--transition);
    position: relative;
    padding-bottom: 3px;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
}

.nav-links li a:hover {
    color: var(--gold);
}

.nav-links li a:hover::after {
    transform: scaleX(1);
}

#navbar.scrolled .nav-links li a {
    color: var(--text-muted);
}

#navbar.scrolled .nav-links li a:hover {
    color: var(--gold);
}

.nav-cta {
    background: var(--gold) !important;
    color: var(--charcoal) !important;
    padding: .5rem 1.35rem !important;
    border-radius: 50px;
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: var(--gold-light) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 2px;
    background: #fff;
    transition: transform var(--transition), opacity var(--transition), background var(--transition);
}

#navbar.scrolled .nav-toggle span {
    background: var(--charcoal);
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
#hero {
    position: relative;
    min-height: unset;
    background: linear-gradient(140deg, #18110a 0%, #2c1f10 55%, #1a140c 100%);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%);
    padding-bottom: 8%;
}

/* Noise texture */
#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.045'/%3E%3C/svg%3E");
    background-size: 300px;
    opacity: .5;
}

/* Radial glow overlays */
#hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 72% 48%, rgba(244, 184, 193, .1) 0%, transparent 55%),
        radial-gradient(ellipse at 18% 75%, rgba(201, 168, 76, .07) 0%, transparent 50%);
}

#sakura-canvas {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 3;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    padding: calc(var(--nav-h) + 3rem) clamp(1rem, 4vw, 3rem) 4rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-kanji {
    display: block;
    font-family: 'Noto Serif JP', serif;
    font-size: .95rem;
    letter-spacing: .3em;
    color: var(--sakura);
    margin-bottom: 1.25rem;
    opacity: .88;
}

.hero-headline {
    color: #fff;
    line-height: 1.08;
    margin-bottom: 1.25rem;
}

.hero-subheadline {
    color: rgba(255, 255, 255, .65);
    font-size: clamp(.95rem, 1.6vw, 1.15rem);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero-trust-bar {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.hero-trust-bar span {
    font-size: .82rem;
    color: rgba(255, 255, 255, .42);
    letter-spacing: .04em;
}

.hero-visual {
    position: relative;
    flex: 0 0 min(420px, 40vw);
    height: min(420px, 40vw);
}

.jiggle-cake {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 38% 32%, #fce8c8 0%, #e8b87a 45%, #c07840 100%);
    box-shadow: 0 32px 80px rgba(0, 0, 0, .55), 0 0 80px rgba(244, 184, 193, .12), inset 0 -8px 24px rgba(0, 0, 0, .2);
}

.hero-glow {
    position: absolute;
    inset: -25%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, .15) 0%, transparent 65%);
    pointer-events: none;
    z-index: -1;
}

.scroll-line {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, .35), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        transform: scaleY(1);
        opacity: .35;
    }

    50% {
        transform: scaleY(1.2);
        opacity: .7;
    }
}

/* ═══════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════ */
#about {
    padding: clamp(5rem, 9vw, 9rem) 0;
    background: var(--cream);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-image {
    position: relative;
}

.about-image .img-placeholder {
    aspect-ratio: 4/5;
}

.about-image-badge {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background: var(--gold);
    color: var(--charcoal);
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.about-image-badge span {
    display: block;
    font-size: .72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.about-image-badge strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    line-height: 1;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 1.75rem 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, .04);
    transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 1.75rem;
    margin-bottom: .75rem;
    line-height: 1;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: .5rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: .92rem;
    line-height: 1.75;
}

/* ═══════════════════════════════════════════════════
   FRANCHISE OPPORTUNITY
═══════════════════════════════════════════════════ */
#franchise {
    padding: clamp(5rem, 9vw, 9rem) 0;
    background: linear-gradient(165deg, #f5efe6 0%, #ede3d5 100%);
    position: relative;
}

#franchise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--cream);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
}

#franchise::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--cream);
    clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
}

/* Stats bar */
.stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--charcoal);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin-bottom: 4rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.stat-item {
    flex: 1;
    text-align: center;
}

.stat-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: .1rem;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-plus {
    font-size: 1.4rem;
    color: var(--gold);
    font-weight: 700;
}

.stat-label {
    display: block;
    font-size: .8rem;
    color: rgba(255, 255, 255, .5);
    margin-top: .4rem;
    letter-spacing: .05em;
}

.stat-divider {
    width: 1px;
    height: 3.5rem;
    background: rgba(255, 255, 255, .1);
    flex-shrink: 0;
    margin: 0 1rem;
}

/* Franchise cards */
.franchise-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 5rem;
    perspective: 1200px;
    position: relative;
    z-index: 1;
}

.franchise-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
    transform-style: preserve-3d;
    transition: box-shadow var(--transition);
    border: 1px solid rgba(0, 0, 0, .06);
}

.franchise-card:hover {
    box-shadow: var(--shadow-lg);
}

.premium-card {
    border: 2px solid var(--gold);
}

.card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 4;
    padding: .3rem .85rem;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .05em;
}

.card-badge.popular {
    background: var(--matcha);
    color: #fff;
}

.card-badge.premium {
    background: var(--gold);
    color: var(--charcoal);
}

.card-image {
    height: 240px;
    border-radius: 0;
}

.card-content {
    padding: 2rem;
}

.card-title {
    margin-bottom: .35rem;
}

.card-tagline {
    color: var(--gold);
    font-size: .9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: .03em;
}

.card-features {
    margin-bottom: 1.75rem;
}

.card-features li {
    padding: .5rem 0;
    color: var(--text-muted);
    font-size: .9rem;
    display: flex;
    align-items: center;
    gap: .6rem;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.card-features li:last-child {
    border-bottom: none;
}

.card-features li::before {
    content: '✓';
    color: var(--matcha);
    font-weight: 700;
    flex-shrink: 0;
}

/* Comparison table */
.comparison-section {
    position: relative;
    z-index: 1;
}

.comparison-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
}

.table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    min-width: 540px;
}

.comparison-table thead tr {
    background: var(--charcoal);
}

.comparison-table th {
    padding: 1.1rem 1.5rem;
    text-align: left;
    color: rgba(255, 255, 255, .9);
    font-family: 'DM Sans', sans-serif;
    font-size: .88rem;
    font-weight: 500;
    letter-spacing: .05em;
}

.comparison-table td {
    padding: 1rem 1.5rem;
    font-size: .92rem;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover td {
    background: rgba(201, 168, 76, .03);
}

.col-us {
    background: rgba(201, 168, 76, .06);
}

.col-us.win {
    color: var(--matcha);
    font-weight: 500;
}

.col-them.lose {
    color: var(--text-muted);
}

.check {
    color: var(--matcha);
    font-weight: 700;
    margin-right: .25rem;
}

.crown {
    font-size: 1rem;
    margin-left: .25rem;
}

/* ═══════════════════════════════════════════════════
   WHY UNCLE FLUFFY
═══════════════════════════════════════════════════ */
#why {
    padding: clamp(5rem, 9vw, 9rem) 0;
    background: var(--cream);
}

.why-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.why-row:last-child {
    margin-bottom: 0;
}

.why-row.reverse .why-image {
    order: 2;
}

.why-image .img-placeholder {
    aspect-ratio: 4/3;
}

.why-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    color: rgba(201, 168, 76, .18);
    margin-bottom: .5rem;
    letter-spacing: -.02em;
}

.why-text h3 {
    margin-bottom: 1rem;
}

.why-text>p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.why-bullets {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.why-bullets li {
    display: flex;
    align-items: center;
    gap: .65rem;
    font-size: .92rem;
}

.why-bullets li::before {
    content: '→';
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════ */
#testimonials {
    padding: clamp(5rem, 9vw, 9rem) 0;
    background: var(--charcoal);
    position: relative;
    clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
    margin: -4% 0;
    padding-top: calc(4% + clamp(5rem, 8vw, 8rem));
    padding-bottom: calc(4% + clamp(5rem, 8vw, 8rem));
}

#testimonials .section-tag {
    color: var(--sakura);
    background: rgba(244, 184, 193, .12);
}

#testimonials .section-title {
    color: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.testimonial-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: transform var(--transition), background var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, .08);
}

.testimonial-card.featured {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(201, 168, 76, .3);
    position: relative;
    padding-top: 2.5rem;
}

.testimonial-card.featured::before {
    content: '★ Featured';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--charcoal);
    font-size: .72rem;
    font-weight: 700;
    padding: .25rem .85rem;
    border-radius: 0 0 8px 8px;
    letter-spacing: .08em;
    white-space: nowrap;
}

.testimonial-flag {
    font-size: 2rem;
    margin-bottom: .75rem;
    line-height: 1;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: .1em;
    margin-bottom: 1rem;
}

blockquote {
    font-size: .92rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, .72);
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    padding-left: 1.25rem;
}

blockquote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -.2rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    line-height: 1;
    color: var(--gold);
    font-style: normal;
    opacity: .7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.author-avatar {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--sakura-deep);
}

.author-avatar .img-placeholder {
    width: 46px;
    height: 46px;
    border-radius: 50%;
}

.author-avatar .img-placeholder::before {
    font-size: .55rem;
}

.author-info strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    color: #fff;
}

.author-info span {
    font-size: .8rem;
    color: rgba(255, 255, 255, .42);
}

/* ═══════════════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════════════ */
#gallery {
    padding: clamp(5rem, 9vw, 9rem) 0;
    background: var(--warm-white);
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: .9rem;
}

.gallery-item .img-placeholder {
    height: 100%;
    border-radius: var(--radius);
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item .img-placeholder img {
    transition: transform .55s ease;
}

.gallery-item:hover .img-placeholder img {
    transform: scale(1.06);
}

/* ═══════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════ */
#contact {
    padding: clamp(5rem, 9vw, 9rem) 0;
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.franchise-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: .45rem;
}

.form-group label {
    font-size: .85rem;
    font-weight: 500;
    color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: .8rem 1rem;
    border: 1.5px solid rgba(44, 44, 44, .15);
    border-radius: var(--radius);
    font-size: .95rem;
    color: var(--charcoal);
    background: #fff;
    transition: border-color var(--transition), box-shadow var(--transition);
    appearance: none;
    -webkit-appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath fill='none' stroke='%236B6B6B' stroke-width='1.5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, .15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.radio-group {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: .5rem;
    cursor: pointer;
    font-size: .88rem;
    padding: .6rem 1.1rem;
    background: #fff;
    border: 1.5px solid rgba(44, 44, 44, .15);
    border-radius: 50px;
    transition: border-color var(--transition), background var(--transition);
}

.radio-label:hover {
    border-color: var(--gold);
}

.radio-label input {
    display: none;
}

.radio-custom {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(44, 44, 44, .25);
    flex-shrink: 0;
    transition: background var(--transition), border-color var(--transition);
}

.radio-label input:checked~.radio-custom {
    background: var(--gold);
    border-color: var(--gold);
}

.radio-label:has(input:checked) {
    border-color: var(--gold);
    background: rgba(201, 168, 76, .06);
}

.form-disclaimer {
    font-size: .8rem;
    color: var(--text-muted);
    text-align: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.info-block {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, .12);
    border-radius: 50%;
}

.info-block h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    margin-bottom: .25rem;
}

.info-block address {
    color: var(--text-muted);
    font-size: .92rem;
}

.contact-phone {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--charcoal);
    transition: color var(--transition);
    display: block;
}

.contact-phone:hover {
    color: var(--gold);
}

.info-note {
    font-size: .8rem;
    color: var(--text-muted);
    margin-top: .2rem;
}

.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.contact-cta-note {
    background: rgba(201, 168, 76, .07);
    border: 1px solid rgba(201, 168, 76, .2);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.contact-cta-note a {
    color: var(--charcoal);
    font-weight: 600;
}

.contact-cta-note a:hover {
    color: var(--gold);
}

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
#footer {
    background: #18110a;
    padding: clamp(4rem, 7vw, 7rem) 0 0;
    color: rgba(255, 255, 255, .65);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .25rem;
}

.footer-kanji {
    font-family: 'Noto Serif JP', serif;
    font-size: .85rem;
    letter-spacing: .2em;
    color: var(--sakura);
    margin-bottom: .5rem;
}

.footer-tagline {
    font-size: .85rem;
    color: rgba(255, 255, 255, .35);
    margin-bottom: 1rem;
}

.footer-desc {
    font-size: .88rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, .42);
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: .75rem;
}

.social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .07);
    border-radius: 50%;
    color: rgba(255, 255, 255, .55);
    transition: background var(--transition), color var(--transition);
}

.social-link:hover {
    background: var(--gold);
    color: var(--charcoal);
}

.footer-nav h5 {
    color: rgba(255, 255, 255, .35);
    margin-bottom: 1.25rem;
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: .7rem;
}

.footer-nav li a {
    font-size: .9rem;
    color: rgba(255, 255, 255, .5);
    transition: color var(--transition);
}

.footer-nav li a:hover {
    color: var(--gold);
}

.footer-contact-block h5 {
    color: rgba(255, 255, 255, .35);
    margin-bottom: 1.25rem;
}

.footer-contact-block address {
    font-size: .88rem;
    color: rgba(255, 255, 255, .45);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.footer-countries {
    display: flex;
    gap: .5rem;
    font-size: 1.4rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding: 1.75rem 0;
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.footer-bottom p {
    font-size: .8rem;
    color: rgba(255, 255, 255, .28);
}

.footer-legal {
    font-size: .72rem !important;
    color: rgba(255, 255, 255, .18) !important;
}

/* ═══════════════════════════════════════════════════
   MEDIA QUERIES — all breakpoints here
═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

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

    .gallery-item.wide {
        grid-column: span 2;
    }

    .gallery-item.tall {
        grid-row: span 2;
    }
}

@media (max-width: 900px) {
    .about-layout {
        grid-template-columns: 1fr;
    }

    .about-image-badge {
        right: 1rem;
        bottom: 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-row,
    .why-row.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-row.reverse .why-image {
        order: unset;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {

    /* Mobile nav */
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        gap: .5rem;
        position: absolute;
        top: var(--nav-h);
        left: 0;
        right: 0;
        background: rgba(253, 248, 240, .97);
        backdrop-filter: blur(16px);
        padding: 1.25rem;
        box-shadow: var(--shadow-md);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li a {
        color: var(--charcoal) !important;
        font-size: 1rem;
        padding: .5rem 0;
    }

    .nav-cta {
        display: inline-block;
        text-align: center;
    }

    /* Hero mobile */
    #hero {
        clip-path: none;
        padding-bottom: 4rem;
    }

    .hero-inner {
        flex-direction: column;
        text-align: center;
        padding-top: calc(var(--nav-h) + 2rem);
    }

    .hero-visual {
        flex: 0 0 240px;
        height: 240px;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-trust-bar {
        justify-content: center;
    }

    /* Stats bar */
    .stats-bar {
        flex-wrap: wrap;
        gap: 1.5rem;
        padding: 2rem;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        flex: 0 0 calc(50% - .75rem);
    }

    /* Cards */
    .franchise-cards {
        grid-template-columns: 1fr;
    }

    /* Clip-path sections */
    #testimonials {
        clip-path: none;
        margin: 0;
        padding: clamp(4rem, 8vw, 7rem) 0;
    }

    #franchise::before,
    #franchise::after {
        display: none;
    }

    /* Gallery */
    .masonry-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 180px;
    }

    .gallery-item.tall {
        grid-row: span 1;
    }

    /* Form */
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-visual {
        flex: 0 0 200px;
        height: 200px;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-ctas .btn {
        justify-content: center;
    }

    .masonry-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.wide,
    .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .radio-group {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }
}

/* ═══════════════════════════════════════════════════
   JIGGLE ANIMATION
═══════════════════════════════════════════════════ */
@keyframes jiggle {

    0%,
    100% {
        transform: rotate(-2deg) scale(1);
    }

    25% {
        transform: rotate(2deg) scale(1.02);
    }

    50% {
        transform: rotate(-1.5deg) scale(1.01);
    }

    75% {
        transform: rotate(1.5deg) scale(1.02);
    }
}

.jiggle-cake {
    animation: jiggle .85s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════
   TILT CARD TRANSITION (JS hooks)
═══════════════════════════════════════════════════ */
.tilt-card {
    will-change: transform;
}

/* ===================================================
   NEW HERO STYLES — Kiosk Customizer Hero
   (overrides old dark-hero rules above)
=================================================== */

/* ── Section base: cream gradient, no clip-path ── */
#hero {
    background: linear-gradient(148deg, #FDF8F0 0%, #FFF9F0 55%, #FDF5EA 100%);
    clip-path: none;
    padding-bottom: 2rem;
    min-height: unset;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Noise texture: keep structure, drop opacity to 0.03 */
#hero::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
    background-size: 300px;
    opacity: .03;
}

/* Remove old dark radial glows */
#hero::after {
    background: none;
}

/* ── Navbar: start dark on light hero (overrides default white) ── */
#navbar:not(.scrolled) .logo-text {
    color: var(--charcoal);
}

#navbar:not(.scrolled) .logo-sub {
    color: var(--text-muted);
}

#navbar:not(.scrolled) .nav-links li a {
    color: var(--text-muted);
}

#navbar:not(.scrolled) .nav-toggle span {
    background: var(--charcoal);
}

#navbar:not(.scrolled) .nav-links li a:hover {
    color: var(--gold);
}

/* ── CSS sakura petals (Unicode ✿, pure CSS drift) ── */
.hero-petal {
    position: absolute;
    color: var(--sakura);
    opacity: 0.15;
    animation: petalDrift linear infinite;
    pointer-events: none;
    user-select: none;
    z-index: 1;
    line-height: 1;
}

.petal-1 {
    top: 12%;
    left: 7%;
    font-size: 1.2rem;
    animation-duration: 14s;
    animation-delay: 0s;
}

.petal-2 {
    top: 30%;
    right: 12%;
    font-size: .9rem;
    animation-duration: 18s;
    animation-delay: -5s;
}

.petal-3 {
    top: 55%;
    left: 22%;
    font-size: 1.4rem;
    animation-duration: 12s;
    animation-delay: -9s;
}

.petal-4 {
    top: 70%;
    right: 8%;
    font-size: 1rem;
    animation-duration: 20s;
    animation-delay: -3s;
}

@keyframes petalDrift {
    0% {
        transform: translateY(-30px) rotate(0deg);
        opacity: 0;
    }

    8% {
        opacity: 0.15;
    }

    92% {
        opacity: 0.1;
    }

    100% {
        transform: translateY(calc(100vh + 50px)) rotate(380deg);
        opacity: 0;
    }
}

/* ── Hero inner layout: 2-col grid on desktop ── */
.hero-inner {
    display: grid;
    grid-template-columns: 1fr min(480px, 46vw);
    grid-template-rows: auto;
    /* rows size to content */
    column-gap: 3.5rem;
    align-items: center;
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    padding: calc(var(--nav-h) + 3.5rem) clamp(1rem, 4vw, 3rem) 4rem;
    position: relative;
    z-index: 2;
}

/* All text elements: column 1 */
.hero-eyebrow,
.hero-headline,
.hero-subheadline,
.hero-cta-group,
.hero-social-proof {
    grid-column: 1;
}

/* Image: column 2, centred vertically next to text column */
.hero-visual {
    grid-column: 2;
    align-self: center;
    height: auto;
    /* override old rule: height: min(420px, 40vw) */
    flex: unset;
    /* override old rule: flex: 0 0 min(420px, 40vw) */
}

/* Eyebrow */
.hero-eyebrow {
    display: inline-block;
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
    opacity: 0;
    animation: nhFadeIn .6s ease forwards;
    animation-delay: 0s;
}

/* Headline */
.hero-headline {
    display: flex;
    flex-direction: column;
    font-size: clamp(2.6rem, 5vw, 4.5rem);
    line-height: 1.05;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    gap: .05em;
}

.hl-line {
    display: block;
    opacity: 0;
    transform: translateY(24px);
    animation: nhSlideUp .7s ease forwards;
}

.hl-line-1 {
    animation-delay: .2s;
}

.hl-line-2 {
    animation-delay: .4s;
}

.hl-line-3 {
    animation-delay: .6s;
    color: var(--sakura-deep);
}

/* Subheadline */
.hero-subheadline {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 420px;
    line-height: 1.75;
    margin-bottom: 2rem;
    opacity: 0;
    animation: nhFadeIn .6s ease forwards;
    animation-delay: .8s;
}

/* ── CTA group ── */
.hero-cta-group {
    margin-bottom: 1.75rem;
    opacity: 0;
    animation: nhFadeIn .6s ease forwards;
    animation-delay: 1s;
}

.btn-kiosk-cta {
    display: inline-block;
    padding: 18px 42px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--sakura-deep) 100%);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: .02em;
    transition: transform var(--transition), box-shadow var(--transition);
    animation: nhFadeIn .6s ease forwards, ctaPulse 2.8s ease-in-out 1.6s infinite;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-kiosk-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .18) 0%, transparent 60%);
    border-radius: 50px;
    pointer-events: none;
}

.btn-kiosk-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(201, 168, 76, .5);
    animation-play-state: paused;
}

@keyframes ctaPulse {

    0%,
    100% {
        box-shadow: 0 4px 18px rgba(201, 168, 76, .25);
    }

    50% {
        box-shadow: 0 6px 28px rgba(201, 168, 76, .55), 0 0 0 7px rgba(201, 168, 76, .09);
    }
}

.hero-cta-trust {
    margin-top: .8rem;
    font-size: .8rem;
    color: var(--text-muted);
    letter-spacing: .02em;
}

/* ── Social proof strip ── */
.hero-social-proof {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .5rem;
    font-size: .82rem;
    color: var(--text-muted);
    padding-top: 1.25rem;
    border-top: 1px solid rgba(44, 44, 44, .1);
    opacity: 0;
    animation: nhFadeIn .6s ease forwards;
    animation-delay: 1.2s;
}

.proof-sep {
    color: rgba(44, 44, 44, .2);
    margin: 0 .2rem;
}

/* ── Right column: kiosk image ── */
.hero-visual {
    flex: 0 0 min(480px, 48vw);
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateX(60px);
    animation: nhSlideRight .85s ease forwards;
    animation-delay: .3s;
}

.hero-kiosk-wrap {
    position: relative;
    border-radius: 24px;
    box-shadow: 0 28px 64px rgba(44, 44, 44, .14), 0 6px 20px rgba(44, 44, 44, .07);
    transition: transform .45s ease;
}

.hero-kiosk-wrap:hover {
    transform: scale(1.02);
}

.hero-kiosk-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    object-fit: cover;
}

/* Floating pill badge — top right */
.kiosk-badge {
    position: absolute;
    top: -13px;
    right: 18px;
    background: #fff;
    border: 1.5px solid var(--matcha);
    color: var(--matcha);
    font-family: 'DM Sans', sans-serif;
    font-size: .78rem;
    font-weight: 600;
    padding: .35rem .9rem;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
    z-index: 5;
    letter-spacing: .02em;
}

/* Glassmorphism swatch card — bottom left */
.kiosk-swatches {
    position: absolute;
    bottom: 20px;
    left: -18px;
    background: rgba(255, 255, 255, .72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .95);
    border-radius: 14px;
    padding: 10px 14px;
    box-shadow: 0 8px 24px rgba(44, 44, 44, .12);
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.swatch-label {
    font-family: 'DM Sans', sans-serif;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--charcoal);
}

.swatch-circles {
    display: flex;
    gap: 6px;
    align-items: center;
}

.swatch {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2.5px solid rgba(255, 255, 255, .85);
    box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
    transition: transform .2s ease, box-shadow .2s ease;
    cursor: pointer;
}

.swatch:hover {
    transform: scale(1.25);
    box-shadow: 0 3px 10px rgba(0, 0, 0, .22);
}

.sw-pink {
    background: #E8899A;
}

.sw-matcha {
    background: #5C7A5C;
}

.sw-navy {
    background: #1E3A5F;
}

.sw-gold {
    background: #C9A84C;
}

/* ── Scroll hint ── */
.hero-scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 1.5rem;
    padding-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: .72rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    gap: .5rem;
}

.scroll-line {
    background: linear-gradient(to bottom, rgba(44, 44, 44, .3), transparent);
}

/* ── New hero keyframes ── */
@keyframes nhFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes nhSlideUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes nhSlideRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ── Reduced motion: honour user preference ── */
@media (prefers-reduced-motion: reduce) {

    .hero-eyebrow,
    .hl-line,
    .hero-subheadline,
    .hero-cta-group,
    .hero-social-proof,
    .hero-visual,
    .hero-petal {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .btn-kiosk-cta {
        animation: none !important;
    }
}

/* ── Mobile hero ── */
@media (max-width: 768px) {
    .hero-inner {
        /* single column — HTML order: eyebrow → headline → image → subheadline → CTA → proof */
        grid-template-columns: 1fr;
        text-align: center;
        padding: calc(var(--nav-h) + 2rem) 24px 2.5rem;
        row-gap: 1.25rem;
    }

    /* Reset grid-column assignments so all stack in col 1 */
    .hero-eyebrow,
    .hero-headline,
    .hero-subheadline,
    .hero-cta-group,
    .hero-social-proof,
    .hero-visual {
        grid-column: 1;
        grid-row: auto;
    }

    .hero-subheadline {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-social-proof {
        justify-content: center;
    }

    .proof-sep {
        display: none;
    }

    /* Image: full width, contained height — override old height: 240px */
    .hero-visual {
        width: 100%;
        max-width: 380px;
        margin: 0 auto;
        height: auto;
    }

    .hero-kiosk-img {
        max-height: 300px;
        object-fit: cover;
    }

    .btn-kiosk-cta {
        display: block;
        text-align: center;
        padding: 16px 32px;
    }

    .kiosk-swatches {
        left: 12px;
        bottom: 12px;
    }

    .kiosk-badge {
        right: 12px;
    }

    .hero-scroll-hint {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2.2rem;
    }

    .kiosk-swatches {
        display: none;
    }
}

/* =================================================== */
