/* ============================================================
   Reset & Base
   ============================================================ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #2C3E50;
    background: var(--warm-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3 {
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ============================================================
   Palette Variables
   ============================================================ */

:root {
    /* Cold palette */
    --cold-bg: #F8F9FA;
    --cold-bg-alt: #ECF0F1;
    --cold-text: #2C3E50;
    --cold-accent: #6B7B8D;
    --cold-btn: #6B7B8D;
    --cold-btn-hover: #5A6A7C;

    /* Warm palette */
    --warm-bg: #FFF1E0;
    --warm-text: #3D2B1F;
    --warm-accent: #E8854A;
    --warm-accent-dark: #C46E4A;
    --warm-accent-gold: #D4A04A;
    --warm-card-bg: #FFFFFF;

}

/* ============================================================
   Buttons
   ============================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Cold button (hero) */
.btn-primary-cold {
    background: #6B7B8D;
    color: #fff;
}
.btn-primary-cold:hover {
    background: #5A6A7C;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(107, 123, 141, 0.35);
}

/* Warm button (solution onward) */
.btn-primary-warm {
    background: #E8854A;
    color: #fff;
}
.btn-primary-warm:hover {
    background: #C46E4A;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(232, 133, 74, 0.4);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* ============================================================
   Hero (Cold World)
   ============================================================ */

.hero {
    position: relative;
    z-index: 1;
    padding: 100px 0 80px;
    text-align: center;
    /* No opaque bg — cold slide layer provides the gray */
}

.hero-brand {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cold-accent);
    margin-bottom: 16px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    color: var(--cold-text);
}

.hero-h2 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 600;
    color: var(--cold-accent);
    margin-top: 60px;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--cold-accent);
    max-width: 640px;
    margin: 0 auto 32px;
}

.hero-cta {
    margin-bottom: 24px;
}

.hero-cta-sub {
    font-size: 0.85rem;
    color: var(--cold-accent);
    margin-top: 10px;
}

/* Trust badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 4px;
    font-size: 0.85rem;
    color: var(--cold-accent);
    margin-bottom: 48px;
}

.badge-sep {
    opacity: 0.35;
    display: inline-flex;
    align-items: center;
    margin: 0 6px;
}

.badge-sep svg {
    width: 7px;
    height: 7px;
    stroke-width: 2;
    fill: currentColor;
}

/* Hero Slideshow */
.hero-visual {
    max-width: 640px;
    margin: 0 auto;
}

.hero-slideshow {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    overflow: hidden;
    background: #1a1a2e;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.04);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-slideshow.active {
    opacity: 1;
}

.slide-after,
.slide-before {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-before-clip {
    position: absolute;
    inset: 0;
    /* clip-path controlled by JS per chart type */
}

.slide-before-clip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Pie chart radial wipe uses mask instead of clip-path */
.slide-before-clip.wipe-pie {
    -webkit-mask-image: conic-gradient(from 0deg, transparent var(--pie-angle, 0deg), black var(--pie-angle, 0deg));
    mask-image: conic-gradient(from 0deg, transparent var(--pie-angle, 0deg), black var(--pie-angle, 0deg));
    -webkit-mask-position: center;
    mask-position: center;
    clip-path: none !important;
}

/* Labels */
.slide-label {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 6px;
    transition: opacity 0.4s ease;
    z-index: 2;
    white-space: nowrap;
}

.slide-label-before {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
}

.slide-label-after {
    background: rgba(61, 43, 31, 0.85);
    color: #fff;
    opacity: 0;
}

.slide-label-after.show {
    opacity: 1;
}

.slide-label-before.hide {
    opacity: 0;
}

/* ============================================================
   Pain Points (Cold World)
   ============================================================ */

.pain-points {
    position: relative;
    z-index: 1;
    padding: 80px 0 40px;
    /* No opaque bg — cold slide layer provides the gray */
}

.pain-points h2 {
    text-align: center;
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 48px;
    color: var(--cold-text);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 40px;
}

.pain-card {
    background: #fff;
    border: 1px solid rgba(61, 43, 31, 0.1);
    border-radius: 12px;
    padding: 28px;
    transition: box-shadow 0.2s;
}

.pain-card:hover {
    box-shadow: 0 4px 20px rgba(61, 43, 31, 0.08);
}

.pain-icon {
    margin-bottom: 12px;
    color: var(--warm-accent);
}

.pain-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.5;
}

.pain-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--warm-text);
}

.pain-card blockquote {
    font-size: 0.95rem;
    font-style: italic;
    color: #5C4A3A;
    line-height: 1.65;
    border: none;
    margin: 0;
    padding: 0;
}

.pain-card cite {
    display: block;
    margin-top: 12px;
    font-size: 0.82rem;
    font-style: normal;
    font-weight: 600;
    color: var(--warm-accent);
}

.pain-callout {
    background: rgba(232, 133, 74, 0.1);
    border: 1px solid rgba(232, 133, 74, 0.2);
    border-radius: 12px;
    padding: 28px 36px;
    text-align: center;
}

.pain-callout p {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--warm-text);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================================
   Warm World Wrapper + Diagonal Divider
   ============================================================ */

/* Sliding cold→warm background transition
   Shape: _/‾  (left=cold, diagonal, right=warm)
   3x viewport width; JS translates from 0 to -200vw based on scroll */
.bg-cold-slide {
    position: fixed;
    top: 0;
    left: 0;
    width: 300vw;
    height: 100vh;
    z-index: 0;
    background: var(--cold-bg);
    clip-path: polygon(0 0, 66.66% 0, 33.33% 100%, 0 100%);
    pointer-events: none;
    will-change: transform;
}

.world-warm {
    position: relative;
    z-index: 1;
    color: var(--warm-text);
    padding-top: 80px;
}

/* ============================================================
   Mid-page CTA
   ============================================================ */

.mid-cta {
    padding: 32px 0 80px;
    text-align: center;
}

.mid-cta-headline {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 600;
    color: var(--warm-text);
    max-width: 640px;
    margin: 0 auto 24px;
    line-height: 1.4;
}

/* ============================================================
   Solution / Features (Warm World)
   ============================================================ */

.solution {
    padding: 32px 0 80px;
}

.solution h2 {
    text-align: center;
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 48px;
    color: var(--warm-text);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.feature-card {
    background: var(--warm-card-bg);
    border: 1px solid rgba(61, 43, 31, 0.08);
    border-radius: 12px;
    padding: 28px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(61, 43, 31, 0.1);
}

.feature-icon {
    margin-bottom: 12px;
    color: var(--warm-accent);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.5;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--warm-text);
}

.feature-card p {
    font-size: 0.93rem;
    color: #5C4A3A;
    line-height: 1.6;
}

/* Accuracy callout (full-width) */
.accuracy-callout {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #fff;
    border: 2px solid var(--warm-accent);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(232, 133, 74, 0.12);
}

.accuracy-icon {
    flex-shrink: 0;
    color: var(--warm-accent);
}

.accuracy-icon svg {
    width: 36px;
    height: 36px;
    stroke-width: 1.5;
}

.accuracy-callout h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--warm-text);
}

.accuracy-callout p {
    font-size: 0.95rem;
    color: #5C4A3A;
    line-height: 1.65;
}

/* ============================================================
   Gallery Grid
   ============================================================ */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.gallery-grid .gallery-item {
    border-radius: 10px;
    overflow: hidden;
    background: #EEE5DA;
}

.gallery-grid .gallery-item img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.gallery-grid .gallery-item .gallery-caption {
    padding: 6px 10px;
    font-size: 0.75rem;
    color: #8A7A6A;
    text-align: center;
}

/* Gallery Flair — decorative 4-up inserts */
.gallery-flair {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 48px auto;
    padding: 0 24px;
}

.gallery-flair img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
    pointer-events: none;
}

/* Gallery inside hero */
.hero-gallery {
    margin-top: 48px;
}

/* Placeholder slots when no images yet */
.gallery-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #EEE5DA, #F5EDE3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C4B4A4;
    font-size: 0.8rem;
    margin-bottom: 16px;
    break-inside: avoid;
}

/* ============================================================
   Who It's For (Audience)
   ============================================================ */

.promises {
    padding: 80px 0;
}

.promises h2 {
    text-align: center;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--warm-text);
}

.promises-scroll {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.promises-card {
    background: var(--warm-card-bg);
    border: 1px solid rgba(61, 43, 31, 0.08);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.promises-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(61, 43, 31, 0.1);
}

.promises-icon {
    margin-bottom: 12px;
    color: var(--warm-accent);
}

.promises-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.5;
}

.promises-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--warm-text);
}

.promises-card p {
    font-size: 0.85rem;
    color: #5C4A3A;
    line-height: 1.55;
    margin-bottom: 12px;
}

.promises-use {
    display: block;
    font-size: 0.78rem;
    color: var(--warm-accent);
    font-weight: 500;
}

/* ============================================================
   How It Works
   ============================================================ */

.how-it-works {
    padding: 80px 0;
    background: rgba(255, 240, 224, 0.5);
}

.how-it-works h2 {
    text-align: center;
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 48px;
    color: var(--warm-text);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
    margin-bottom: 40px;
}

.step-number {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--warm-accent);
    background: rgba(232, 133, 74, 0.12);
    border-radius: 50%;
    margin-bottom: 16px;
}

.step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--warm-text);
}

.step p {
    font-size: 0.93rem;
    color: #5C4A3A;
    max-width: 300px;
    margin: 0 auto;
    line-height: 1.6;
}

.steps-note {
    text-align: center;
    font-size: 0.95rem;
    color: #8A7A6A;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================================
   FAQ
   ============================================================ */

.faq {
    padding: 80px 0;
}

.faq h2 {
    text-align: center;
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--warm-text);
}

.faq-list {
    max-width: 740px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(61, 43, 31, 0.1);
}

.faq-item:first-child {
    border-top: 1px solid rgba(61, 43, 31, 0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--warm-text);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-question:hover {
    color: var(--warm-accent);
}

.faq-chevron {
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.faq-chevron svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 20px;
}

.faq-answer p {
    font-size: 0.93rem;
    color: #5C4A3A;
    line-height: 1.7;
}

/* ============================================================
   Waitlist / Final CTA
   ============================================================ */

.waitlist {
    padding: 80px 0 100px;
    text-align: center;
}

.waitlist h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--warm-text);
}

.waitlist-subtitle {
    font-size: 1.05rem;
    color: #5C4A3A;
    margin-bottom: 36px;
}

.waitlist-form {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
}

.form-row {
    display: flex;
    gap: 12px;
    align-items: stretch;
}

.form-row input[type="email"],
.form-row select {
    flex: 1;
    padding: 14px 16px;
    font-family: inherit;
    font-size: 1rem;
    border: 1px solid rgba(61, 43, 31, 0.15);
    border-radius: 8px;
    background: #fff;
    color: var(--warm-text);
    outline: none;
    transition: border-color 0.15s;
}

.form-row input[type="email"]:focus,
.form-row select:focus {
    border-color: var(--warm-accent);
    box-shadow: 0 0 0 3px rgba(232, 133, 74, 0.12);
}

.form-row select {
    flex: 0.8;
    cursor: pointer;
    color: #8A7A6A;
}

.form-row .btn {
    flex-shrink: 0;
    white-space: nowrap;
}

.form-message {
    margin-top: 16px;
    font-size: 0.95rem;
    font-weight: 500;
}

.form-message.success {
    color: #16a34a;
}

.form-message.error {
    color: #dc2626;
}

.waitlist-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 4px;
    font-size: 0.85rem;
    color: #8A7A6A;
    margin-top: 20px;
}

.waitlist-confirmed {
    text-align: center;
    padding: 40px 0;
}

.waitlist-confirmed h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: var(--warm-accent);
    margin-bottom: 16px;
}

.waitlist-confirmed .waitlist-subtitle {
    max-width: 520px;
    margin: 0 auto;
    color: var(--warm-text);
}

/* ============================================================
   Footer
   ============================================================ */

.footer {
    position: relative;
    z-index: 1;
    padding: 40px 0;
    background: #2C2016;
    color: #B0A090;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFF8F0;
}

.footer-tagline {
    font-size: 0.8rem;
    color: #8A7A6A;
    margin-top: 4px;
}

.footer-links {
    display: flex;
    gap: 24px;
    font-size: 0.85rem;
}

.footer-links a {
    color: #B0A090;
    transition: color 0.15s;
}

.footer-links a:hover {
    color: var(--warm-accent);
}

.footer-copy {
    font-size: 0.8rem;
    color: #6A5A4A;
    width: 100%;
    text-align: center;
    margin-top: 8px;
}

/* ============================================================
   Sticky CTA Bar
   ============================================================ */

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(44, 32, 22, 0.95);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255, 248, 240, 0.1);
    padding: 12px 0;
    transition: transform 0.3s ease;
}

.sticky-cta[hidden] {
    display: block !important;
    transform: translateY(100%);
    pointer-events: none;
}

.sticky-cta:not([hidden]) {
    transform: translateY(0);
}

.sticky-cta-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.sticky-cta-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: #FFF8F0;
}

.sticky-cta-close {
    background: none;
    border: none;
    color: #8A7A6A;
    font-size: 1.3rem;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    transition: color 0.15s;
}

.sticky-cta-close:hover {
    color: #FFF8F0;
}

/* ============================================================
   Lightbox
   ============================================================ */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}

.lightbox[hidden] {
    display: none !important;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.lightbox-img {
    position: relative;
    max-width: 75vw;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
    animation: lightbox-in 0.2s ease;
}

.lightbox-nav {
    position: relative;
    z-index: 2001;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s;
    flex-shrink: 0;
    margin: 0 12px;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-nav svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

@keyframes lightbox-in {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.gallery-grid .gallery-item {
    cursor: zoom-in;
}

/* ============================================================
   Fade-in Animations
   ============================================================ */

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1024px) {
    .promises-scroll {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 72px 0 60px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-h2 {
        font-size: 1.1rem;
    }

    .hero-visual {
        max-width: 100%;
    }

    .trust-badges {
        font-size: 0.78rem;
    }

    .pain-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .accuracy-callout {
        flex-direction: column;
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-flair {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin: 32px auto;
    }

    .promises-scroll {
        grid-template-columns: 1fr;
        overflow-x: auto;
        grid-auto-flow: column;
        grid-auto-columns: 260px;
        gap: 16px;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-bottom: 8px;
    }

    .promises-card {
        scroll-snap-align: start;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .form-row {
        flex-direction: column;
    }

    .form-row select {
        flex: 1;
    }

    .form-row .btn {
        width: 100%;
        min-height: 48px;
    }


    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .sticky-cta-text {
        display: none;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .promises-scroll {
        grid-auto-columns: 240px;
    }
}
