/* ============================================
   PPEBBL.com - Inflated 3D Bento Narrative
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    /* Palette */
    --bg-cream: #FFF8F0;
    --lavender-puff: #E8D5F5;
    --peach-foam: #FDDCCE;
    --mint-pillow: #D4F0E7;
    --butter-cream: #FFF1C1;
    --powder-blush: #F5C6D0;
    --text-primary: #3D3244;
    --text-secondary: #8B7A94;

    /* Derived tones */
    --lavender-dark: #C9AFDF;
    --lavender-light: #F3ECF9;
    --peach-dark: #F0BAA4;
    --peach-light: #FEF0EA;
    --mint-dark: #A8D9C8;
    --mint-light: #EAF8F2;
    --butter-dark: #F0DE8E;
    --blush-dark: #E8A4B3;
    --blush-light: #FBEAEE;
    --charcoal-surface: #564860;
    --mauve-surface: #A898B0;

    /* Shadows */
    --shadow-default: 0 8px 30px rgba(61, 50, 68, 0.08), 0 2px 8px rgba(61, 50, 68, 0.04);
    --shadow-hover: 0 12px 40px rgba(61, 50, 68, 0.14), 0 4px 12px rgba(61, 50, 68, 0.06);
    --shadow-pebble: inset 0 -4px 12px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(61, 50, 68, 0.1);

    /* Spring Easings */
    --spring-enter: cubic-bezier(0.34, 1.56, 0.64, 1);
    --spring-hover: cubic-bezier(0.25, 1.2, 0.5, 1);
    --spring-hero: cubic-bezier(0.175, 0.885, 0.32, 1.6);

    /* Typography */
    --font-display: 'Nunito', sans-serif;
    --font-secondary: 'Quicksand', sans-serif;
    --font-body: 'Varela Round', sans-serif;

    /* Layout */
    --grid-gap: 20px;
    --cell-radius: 28px;
    --page-padding: clamp(1rem, 5vw, 4rem);
    --cluster-gap: 80px;
}

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

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

body {
    background-color: var(--bg-cream);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: clamp(0.9375rem, 1.2vw, 1.125rem);
    line-height: 1.7;
    letter-spacing: 0.01em;
    overflow-x: hidden;
    position: relative;
}

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

/* --- Background Blobs (Background Plane) --- */
.bg-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bg-blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.55;
    filter: blur(60px);
}

.blob-lavender {
    width: 200px;
    height: 200px;
    background: var(--lavender-puff);
    top: 5%;
    left: 10%;
}

.blob-peach {
    width: 180px;
    height: 180px;
    background: var(--peach-foam);
    top: 15%;
    right: 15%;
}

.blob-mint {
    width: 160px;
    height: 160px;
    background: var(--mint-pillow);
    top: 40%;
    left: 25%;
}

.blob-butter {
    width: 140px;
    height: 140px;
    background: var(--butter-cream);
    top: 55%;
    right: 20%;
}

.blob-lavender-2 {
    width: 180px;
    height: 180px;
    background: var(--lavender-puff);
    top: 70%;
    left: 5%;
}

.blob-peach-2 {
    width: 150px;
    height: 150px;
    background: var(--peach-foam);
    top: 85%;
    right: 30%;
}

/* --- Micro-Pebbles (Decoration Plane) --- */
.micro-pebbles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100;
    overflow: hidden;
}

.micro-pebble {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.6;
    animation: floatPebble var(--float-duration) ease-in-out infinite var(--float-delay);
}

@keyframes floatPebble {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(var(--float-range, -12px)); }
}

/* --- Page Wrapper --- */
.page-wrapper {
    position: relative;
    z-index: 1;
    padding: var(--page-padding);
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--cluster-gap);
    padding-top: 60px;
    padding-bottom: 60px;
}

/* --- Bento Cluster Base --- */
.bento-cluster {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--grid-gap);
}

/* --- Bento Cell Base --- */
.bento-cell {
    border-radius: var(--cell-radius);
    background: var(--bg-cream);
    box-shadow: var(--shadow-default);
    padding: clamp(1.25rem, 2.5vw, 2rem);
    position: relative;
    overflow: hidden;
    transition: transform 300ms var(--spring-hover),
                box-shadow 300ms var(--spring-hover),
                background-color 300ms var(--spring-hover);
    /* Initial hidden state for scroll reveals */
    opacity: 0;
    transform: translateY(40px) scale(0.92);
}

.bento-cell.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: opacity 600ms var(--spring-enter),
                transform 600ms var(--spring-enter);
}

.bento-cell:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.bento-cell.visible:hover {
    transform: translateY(-6px) scale(1.02);
}

/* --- Soft Blob Shadows behind cells --- */
.bento-cell::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
    z-index: -1;
    pointer-events: none;
}

/* === HERO CLUSTER === */
.cluster-hero {
    grid-template-rows: auto auto;
    min-height: 60vh;
}

/* Hero: auto-reveal (no scroll needed) */
.cluster-hero .bento-cell {
    opacity: 0;
    transform: translateY(40px) scale(0.92);
}

.cluster-hero .bento-cell.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Cell: Hero Title (2x2) */
.cell-hero-title {
    grid-column: span 2;
    grid-row: span 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--lavender-puff) 0%, var(--peach-foam) 100%);
    min-height: 300px;
}

.cell-hero-title::before {
    background: var(--lavender-puff);
}

.hero-title-inner {
    display: flex;
    gap: clamp(2px, 0.5vw, 8px);
}

.hero-letter {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2.5rem, 7vw, 6rem);
    color: var(--text-primary);
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.35) 0%, transparent 60%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: var(--text-primary);
    text-shadow: 0 4px 8px rgba(61, 50, 68, 0.15);
    opacity: 0;
    transform: scale(0.3);
}

.hero-letter.inflated {
    opacity: 1;
    transform: scale(1);
    transition: opacity 500ms var(--spring-hero),
                transform 600ms var(--spring-hero);
}

/* Cell: Hero Pebble 1 */
.cell-hero-pebble-1 {
    grid-column: span 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lavender-light);
}

.cell-hero-pebble-1::before {
    background: var(--lavender-puff);
}

/* Cell: Hero Tagline */
.cell-hero-tagline {
    grid-column: span 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--peach-light);
}

.cell-hero-tagline::before {
    background: var(--peach-foam);
}

.tagline {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.3;
}

.tagline-sub {
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: clamp(0.875rem, 1.5vw, 1.125rem);
    color: var(--text-secondary);
}

/* Cell: Bouncing pebble */
.cell-hero-bounce {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mint-light);
}

.cell-hero-bounce::before {
    background: var(--mint-pillow);
}

/* Cell: Small deco cells */
.cell-hero-deco-1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--butter-cream);
}

.cell-hero-deco-1::before {
    background: var(--butter-cream);
}

.cell-hero-deco-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blush-light);
}

.cell-hero-deco-2::before {
    background: var(--powder-blush);
}

.pebble-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: -4px;
}

.pebble-stack .pebble {
    margin-top: -6px;
}

.pebble-stack .pebble:first-child {
    margin-top: 0;
}


/* === PEBBLE OBJECTS === */
.pebble {
    border-radius: 50% / 40%;
    position: relative;
    flex-shrink: 0;
}

/* Pebble Sizes */
.pebble-xs {
    width: 40px;
    height: 32px;
}

.pebble-sm {
    width: 70px;
    height: 56px;
}

.pebble-md {
    width: 120px;
    height: 96px;
}

.pebble-lg {
    width: 180px;
    height: 144px;
}

.pebble-xl {
    width: 240px;
    height: 192px;
}

/* Pebble Colors with 3D gradient lighting */
.pebble-lavender {
    background: radial-gradient(ellipse at 30% 25%, rgba(255, 255, 255, 0.4) 0%, #E8D5F5 50%, #C9AFDF 100%);
    box-shadow: var(--shadow-pebble);
}

.pebble-lavender-light {
    background: radial-gradient(ellipse at 30% 25%, rgba(255, 255, 255, 0.4) 0%, #F3ECF9 50%, #E8D5F5 100%);
    box-shadow: var(--shadow-pebble);
}

.pebble-peach {
    background: radial-gradient(ellipse at 30% 25%, rgba(255, 255, 255, 0.4) 0%, #FDDCCE 50%, #F0BAA4 100%);
    box-shadow: var(--shadow-pebble);
}

.pebble-mint {
    background: radial-gradient(ellipse at 30% 25%, rgba(255, 255, 255, 0.4) 0%, #D4F0E7 50%, #A8D9C8 100%);
    box-shadow: var(--shadow-pebble);
}

.pebble-mint-light {
    background: radial-gradient(ellipse at 30% 25%, rgba(255, 255, 255, 0.4) 0%, #EAF8F2 50%, #D4F0E7 100%);
    box-shadow: var(--shadow-pebble);
}

.pebble-butter {
    background: radial-gradient(ellipse at 30% 25%, rgba(255, 255, 255, 0.4) 0%, #FFF1C1 50%, #F0DE8E 100%);
    box-shadow: var(--shadow-pebble);
}

.pebble-blush {
    background: radial-gradient(ellipse at 30% 25%, rgba(255, 255, 255, 0.4) 0%, #F5C6D0 50%, #E8A4B3 100%);
    box-shadow: var(--shadow-pebble);
}

.pebble-blush-light {
    background: radial-gradient(ellipse at 30% 25%, rgba(255, 255, 255, 0.4) 0%, #FBEAEE 50%, #F5C6D0 100%);
    box-shadow: var(--shadow-pebble);
}

.pebble-charcoal {
    background: radial-gradient(ellipse at 30% 25%, rgba(255, 255, 255, 0.25) 0%, #564860 50%, #3D3244 100%);
    box-shadow: var(--shadow-pebble);
}

.pebble-mauve {
    background: radial-gradient(ellipse at 30% 25%, rgba(255, 255, 255, 0.35) 0%, #A898B0 50%, #8B7A94 100%);
    box-shadow: var(--shadow-pebble);
}

/* Floating pebble positioning */
.pebble-float {
    position: absolute;
}

/* Bouncing animation */
.pebble-bounce {
    animation: bouncePebble 2.5s var(--spring-enter) infinite;
}

@keyframes bouncePebble {
    0%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-5px); }
    80% { transform: translateY(-10px); }
}

/* Background accent pebble */
.pebble-bg-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    opacity: 0.25;
    z-index: 0;
}


/* === TYPOGRAPHY === */
.section-heading {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.sub-heading {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.3;
}

.body-text {
    font-family: var(--font-body);
    color: var(--text-secondary);
    line-height: 1.7;
    letter-spacing: 0.01em;
}

.body-text-featured {
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: clamp(1rem, 1.8vw, 1.35rem);
    color: var(--text-primary);
    text-align: center;
    font-style: italic;
}

/* --- Gallery Labels --- */
.gallery-label {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: clamp(0.75rem, 1.2vw, 1rem);
    color: var(--text-secondary);
    display: block;
    margin-top: 12px;
    text-align: center;
}

.gallery-scene {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex: 1;
    min-height: 100px;
}

.scene-multi {
    gap: 10px;
}

.scene-multi .pebble-sm {
    width: 55px;
    height: 44px;
}


/* === STORY CLUSTER LAYOUT === */
.cluster-story {
    grid-template-columns: repeat(4, 1fr);
}

.cell-story-main {
    grid-column: span 2;
    background: linear-gradient(145deg, var(--lavender-light) 0%, var(--bg-cream) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cell-story-main::before {
    background: var(--lavender-puff);
}

.cell-story-scene-1 {
    grid-column: span 2;
    grid-row: span 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--mint-light) 0%, var(--lavender-light) 100%);
    min-height: 260px;
}

.cell-story-scene-1::before {
    background: var(--mint-pillow);
}

.cell-story-text-1 {
    grid-column: span 1;
    background: var(--peach-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cell-story-text-1::before {
    background: var(--peach-foam);
}

.cell-story-accent-1 {
    grid-column: span 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--mint-pillow) 0%, var(--mint-light) 100%);
}

.cell-story-accent-1::before {
    background: var(--mint-pillow);
}

.cell-story-text-2 {
    grid-column: span 2;
    background: var(--lavender-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cell-story-text-2::before {
    background: var(--lavender-puff);
}

.cell-story-deco {
    grid-column: span 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blush-light);
    position: relative;
}

.cell-story-deco::before {
    background: var(--powder-blush);
}

.cell-story-wide {
    grid-column: span 4;
    background: linear-gradient(135deg, var(--peach-light) 0%, var(--butter-cream) 50%, var(--mint-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(2rem, 4vw, 3rem);
}

.cell-story-wide::before {
    background: var(--butter-cream);
}


/* === GALLERY CLUSTER LAYOUT === */
.cluster-gallery {
    grid-template-columns: repeat(4, 1fr);
}

.cell-gallery-title {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--lavender-light) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cell-gallery-title::before {
    background: var(--lavender-puff);
}

.cell-gallery-1 {
    grid-column: span 2;
    grid-row: span 2;
    background: var(--lavender-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 260px;
}

.cell-gallery-1::before {
    background: var(--lavender-puff);
}

.cell-gallery-2 {
    background: var(--peach-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cell-gallery-2::before {
    background: var(--peach-foam);
}

.cell-gallery-3 {
    background: var(--mint-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cell-gallery-3::before {
    background: var(--mint-pillow);
}

.cell-gallery-4 {
    background: linear-gradient(135deg, #FFFBE8 0%, var(--butter-cream) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cell-gallery-4::before {
    background: var(--butter-cream);
}

.cell-gallery-5 {
    grid-column: span 2;
    background: var(--blush-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    position: relative;
}

.cell-gallery-5::before {
    background: var(--powder-blush);
}

.cell-gallery-6 {
    grid-column: span 1;
    background: linear-gradient(135deg, var(--lavender-light) 0%, var(--mint-light) 60%, var(--peach-light) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cell-gallery-6::before {
    background: var(--lavender-puff);
}

.cell-gallery-7 {
    grid-column: span 1;
    background: linear-gradient(135deg, #F0EAF4 0%, #E0D6E8 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cell-gallery-7::before {
    background: var(--text-secondary);
    opacity: 0.15;
}


/* === DETAIL CLUSTER LAYOUT === */
.cluster-detail {
    grid-template-columns: repeat(4, 1fr);
}

.cell-detail-1 {
    grid-column: span 4;
    background: linear-gradient(135deg, var(--lavender-puff) 0%, var(--peach-foam) 50%, var(--mint-pillow) 100%);
    padding: clamp(2rem, 4vw, 3.5rem);
}

.cell-detail-1::before {
    background: var(--lavender-puff);
}

.cell-detail-2 {
    grid-column: span 2;
    background: var(--peach-light);
    position: relative;
    overflow: hidden;
}

.cell-detail-2::before {
    background: var(--peach-foam);
}

.cell-detail-3 {
    grid-column: span 2;
    background: var(--mint-light);
    position: relative;
    overflow: hidden;
}

.cell-detail-3::before {
    background: var(--mint-pillow);
}

.cell-detail-4 {
    grid-column: span 4;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--lavender-light) 50%, var(--bg-cream) 100%);
    min-height: 220px;
}

.cell-detail-4::before {
    background: var(--lavender-puff);
}

/* Frosted overlay for detail cells */
.frosted-overlay {
    position: relative;
    z-index: 1;
}

/* Pebble tower in detail cluster */
.pebble-tower {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tower-stone {
    margin-top: -10px;
}

.tower-stone:first-child {
    margin-top: 0;
}


/* === FOOTER CLUSTER === */
.cluster-footer {
    grid-template-columns: repeat(4, 1fr);
}

.cell-footer-brand {
    grid-column: span 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--lavender-puff) 0%, var(--peach-foam) 100%);
    padding: clamp(1.5rem, 3vw, 2.5rem);
}

.cell-footer-brand::before {
    background: var(--lavender-puff);
}

.footer-logo {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--text-primary);
    text-shadow: 0 3px 6px rgba(61, 50, 68, 0.12);
}

.cell-footer-link {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lavender-light);
    cursor: pointer;
}

.cell-footer-link:nth-child(3) {
    background: var(--peach-light);
}

.cell-footer-link:nth-child(4) {
    background: var(--mint-light);
}

.cell-footer-link:nth-child(5) {
    background: linear-gradient(135deg, #FFFBE8 0%, var(--butter-cream) 100%);
}

.cell-footer-link::before {
    background: var(--lavender-puff);
}

.cell-footer-link:hover {
    background: var(--powder-blush);
}

.footer-link-text {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: clamp(0.875rem, 1.5vw, 1.125rem);
    color: var(--text-primary);
}

.cell-footer-copy {
    grid-column: span 4;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-cream);
    padding: 1rem;
}

.cell-footer-copy::before {
    display: none;
}

.footer-copy {
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: clamp(0.75rem, 1vw, 0.875rem);
    color: var(--text-secondary);
}


/* === PEBBLE TRAIL CONNECTORS === */
.pebble-trail {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px 0;
    margin: -40px auto;
    position: relative;
    z-index: 2;
}

.trail-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--powder-blush);
    box-shadow: 0 2px 6px rgba(61, 50, 68, 0.08);
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 400ms var(--spring-enter), transform 400ms var(--spring-enter);
}

.trail-dot.visible {
    opacity: 0.7;
    transform: scale(1);
}


/* === RESPONSIVE: Tablet === */
@media (max-width: 900px) {
    .bento-cluster {
        grid-template-columns: repeat(2, 1fr);
    }

    .cell-hero-title {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 220px;
    }

    .cell-story-scene-1 {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 200px;
    }

    .cell-story-text-2 {
        grid-column: span 2;
    }

    .cell-story-wide {
        grid-column: span 2;
    }

    .cell-gallery-title {
        grid-column: span 2;
    }

    .cell-gallery-1 {
        grid-column: span 2;
        grid-row: span 1;
    }

    .cell-gallery-5 {
        grid-column: span 2;
    }

    .cell-detail-1 {
        grid-column: span 2;
    }

    .cell-detail-4 {
        grid-column: span 2;
    }

    .cell-footer-brand {
        grid-column: span 2;
    }

    .cell-footer-copy {
        grid-column: span 2;
    }

    .pebble-xl {
        width: 180px;
        height: 144px;
    }

    .pebble-lg {
        width: 140px;
        height: 112px;
    }
}


/* === RESPONSIVE: Mobile === */
@media (max-width: 640px) {
    .bento-cluster {
        grid-template-columns: 1fr;
    }

    .cell-hero-title,
    .cell-story-main,
    .cell-story-scene-1,
    .cell-story-text-2,
    .cell-story-wide,
    .cell-gallery-title,
    .cell-gallery-1,
    .cell-gallery-5,
    .cell-detail-1,
    .cell-detail-2,
    .cell-detail-3,
    .cell-detail-4,
    .cell-footer-brand,
    .cell-footer-copy {
        grid-column: span 1;
    }

    .cell-hero-title {
        min-height: 200px;
    }

    .cell-story-scene-1 {
        min-height: 180px;
    }

    .pebble-xl {
        width: 150px;
        height: 120px;
    }

    .pebble-lg {
        width: 110px;
        height: 88px;
    }

    .pebble-md {
        width: 90px;
        height: 72px;
    }

    .hero-letter {
        font-size: clamp(2rem, 10vw, 3.5rem);
    }
}
