:root {
    --bg: #dceec6;
    --ink: #2f2c25;
    --muted: #4c4a3f;
    --accent: #d03b2d;
    --accent-2: #1e8a4e;
    --accent-3: #f1b22d;
    --card: #ffffff;
    --stroke: #d7e3c6;
    --pill: #eef6da;
}
* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: 'Manrope', system-ui, sans-serif;
    background: radial-gradient(circle at 30% 20%, #eaf5d6 0%, #dceec6 45%, #d2e8c2 100%);
    color: var(--ink);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
header {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(10px);
    background: rgba(220, 238, 198, 0.88);
    border-bottom: 1px solid var(--stroke);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px clamp(18px, 3vw, 32px);
    max-width: 100%;
    width: 100%;
    margin: 0;
}
.brand {
    font-family: 'Space Grotesk', 'Manrope', system-ui, sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    font-size: 20px;
    display: flex;
    gap: 10px;
    align-items: center;
}
.brand-logo {
    height: 38px;
    width: auto;
    display: block;
}
.brand span:last-child {
    padding: 6px 10px;
    background: var(--pill);
    border-radius: 999px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 18px;
    padding: 0;
    margin: 0;
    align-items: center;
}
nav a {
    font-weight: 600;
    color: var(--muted);
    transition: color 0.2s ease, transform 0.2s ease;
}
nav a:hover { color: var(--ink); transform: translateY(-1px); }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.cta {
    padding: 10px 16px;
    background: var(--accent);
    color: #fff;
    border-radius: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
    box-shadow: 0 12px 24px rgba(28, 124, 66, 0.16);
}
.cta:hover { transform: translateY(-2px); box-shadow: 0 18px 32px rgba(28, 124, 66, 0.18); }
.cta.contrast {
    background: #fff;
    color: var(--accent);
    box-shadow: 0 12px 24px rgba(12, 47, 25, 0.14);
}
.cta.contrast:hover { box-shadow: 0 16px 32px rgba(12, 47, 25, 0.18); }
.video-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    z-index: 1;
    /* Keep the hero in landscape 16:9 on narrow screens (1920x1080 ratio)
       and avoid a tall portrait block that causes black bars. */
    aspect-ratio: 16 / 9;
    width: 100%;
    max-height: 80vh;
    display: grid;
    align-items: center;
}
.video-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    background: transparent; /* remove solid black fallback */
}
.video-bg iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    pointer-events: none;
    transform: none;
}

/* On larger screens keep the previous immersive full-viewport behaviour */
@media (min-width: 900px) {
    .video-hero {
        min-height: 100vh;
        aspect-ratio: auto;
        max-height: none;
    }
    .video-bg iframe {
        /* keep the slightly oversized iframe for full-bleed covers on desktop */
        top: 50%;
        left: 50%;
        width: 150vw;
        height: 115vh;
        transform: translate(-50%, -50%);
    }
}
.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(6, 27, 15, 0.7), rgba(6, 27, 15, 0.35));
    z-index: 1;
}
.hero {
    position: relative;
    z-index: 2;
    max-width: 100%;
    width: 100%;
    margin: clamp(10px, 2vw, 28px) 0 12px;
    padding: clamp(14px, 3vw, 26px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: center;
    color: #fff;
}
.hero h1 {
    font-family: 'Space Grotesk', 'Manrope', system-ui, sans-serif;
    font-size: clamp(30px, 6vw, 44px);
    margin: 0 0 14px;
    letter-spacing: -0.02em;
}
.hero p {
    margin: 0 0 18px;
    color: #e6f2ea;
    font-size: 16px;
    line-height: 1.6;
}
.hero-info {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
}
.info-card {
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(6, 27, 15, 0.4);
    color: #f6f7f4;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}
.info-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.72);
}
.info-value {
    font-weight: 800;
    font-size: 18px;
    margin: 4px 0;
}
.info-note {
    color: rgba(240, 247, 242, 0.82);
    font-size: 13px;
    line-height: 1.4;
}
.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}
.chip {
    background: rgba(255, 255, 255, 0.14);
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    gap: 6px;
    align-items: center;
    color: #f6f7f4;
    border: 1px solid rgba(255, 255, 255, 0.18);
}
.metric {
    display: grid;
    gap: 10px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
}
.metric .label { color: #e2ede6; font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; }
.metric .value { font-size: 20px; font-weight: 700; color: #fff; }
.hero-visual {
    position: relative;
    padding: 16px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.24);
}
.badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #fff;
    padding: 10px 14px;
    border-radius: 14px;
    font-weight: 700;
    color: var(--accent);
    box-shadow: 0 12px 30px rgba(12, 47, 25, 0.08);
}
.wave {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    background:
        repeating-linear-gradient(135deg, rgba(241, 178, 45, 0.22) 0 18px, transparent 18px 32px),
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.75), transparent 52%),
        radial-gradient(circle at 70% 50%, rgba(208, 59, 45, 0.15), transparent 60%),
        radial-gradient(circle at 50% 80%, rgba(30, 138, 78, 0.18), transparent 60%),
        #155735;
    position: relative;
    overflow: hidden;
}
.wave::after {
    content: "";
    position: absolute;
    inset: 16px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
}
section {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: clamp(18px, 3vw, 32px);
}
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.section-head h2 {
    margin: 0;
    font-size: 24px;
    letter-spacing: -0.01em;
}
.section-head p {
    margin: 4px 0 0;
    color: var(--muted);
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 12px;
}
#reviewGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
    margin-top: 12px;
}
#branchGrid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.card {
    border-radius: 16px;
    border: 1px solid var(--stroke);
    background: var(--card);
    padding: 16px;
    display: grid;
    gap: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(46, 50, 34, 0.12);
    border-color: rgba(30, 138, 78, 0.28);
}
.thumb {
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--pill);
}
.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.banner-strip {
    max-width: 100%;
    width: 100%;
    margin: 6px 0 24px;
    padding: 0 clamp(18px, 3vw, 32px);
}
.banner-frame {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(30, 138, 78, 0.18);
    background: linear-gradient(135deg, rgba(220, 238, 198, 0.8), rgba(220, 238, 198, 0.6));
    min-height: 260px;
}
.banner-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
    background-size: cover;
    background-position: center;
    display: grid;
    align-content: center;
    padding: clamp(18px, 5vw, 32px);
    color: #fff;
}
.banner-slide.active {
    opacity: 1;
    transform: scale(1);
}
.banner-overlay {
    background: linear-gradient(120deg, rgba(21, 87, 53, 0.78), rgba(208, 59, 45, 0.42));
    position: absolute;
    inset: 0;
}
.banner-content {
    position: relative;
    max-width: 480px;
    z-index: 1;
}
.banner-content h3 {
    margin: 0 0 8px;
    font-size: clamp(22px, 4vw, 30px);
    letter-spacing: -0.01em;
    font-family: 'Space Grotesk', 'Manrope', system-ui, sans-serif;
}
.banner-content p { margin: 0 0 14px; color: #e8f1eb; line-height: 1.6; }
.dots {
    position: absolute;
    bottom: 14px;
    right: 14px;
    display: flex;
    gap: 8px;
    z-index: 2;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}
.dot.active { background: #fff; transform: scale(1.15); }
.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: var(--pill);
    border-radius: 999px;
    font-weight: 600;
    color: var(--muted);
    font-size: 12px;
}
.card h3 {
    margin: 0;
    font-size: 18px;
    letter-spacing: -0.01em;
}
.meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 14px;
}
.actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.icon-actions { gap: 10px; }
.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid var(--stroke);
    background: var(--pill);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    transition: transform 0.15s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}
.icon-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}
.icon-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(28, 124, 66, 0.38);
    color: var(--accent);
    box-shadow: 0 12px 24px rgba(12, 47, 25, 0.12);
}
.order-btn {
    height: 40px;
    padding: 0 14px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    box-shadow: none;
}
.order-btn:hover { box-shadow: 0 12px 24px rgba(12, 47, 25, 0.12); }
.ghost {
    padding: 8px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    font-weight: 700;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    gap: 6px;
    align-items: center;
    transition: transform 0.15s ease, border-color 0.2s ease;
}
.ghost:hover { transform: translateY(-1px); border-color: rgba(28, 124, 66, 0.32); }
.card .ghost {
    background: var(--pill);
    color: var(--ink);
    border: 1px solid rgba(12, 47, 25, 0.12);
}
.card .ghost:hover { border-color: rgba(28, 124, 66, 0.32); }
.card .actions { margin-top: 6px; }
.footer {
    max-width: 100%;
    width: 100%;
    margin: 32px 0;
    padding: 24px clamp(18px, 3vw, 32px) 48px;
    border-top: 1px solid var(--stroke);
    color: var(--muted);
}
.contact {
    display: grid;
    gap: 12px;
}
.feedback-card {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.08), transparent 38%), linear-gradient(135deg, #0f2318, #1c7c42);
    color: #f6f7f4;
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 22px 44px rgba(12, 47, 25, 0.2);
    isolation: isolate;
}
.feedback-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
    z-index: 0;
}
.feedback-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    position: relative;
    z-index: 1;
}
.feedback-card h3 { color: #fff; }
.feedback-card .meta { color: rgba(240, 247, 242, 0.78); }
.feedback-card .pill {
    background: rgba(255, 255, 255, 0.12);
    color: #eaf3ed;
    border: 1px solid rgba(255, 255, 255, 0.22);
}
.response-chip {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 12px;
    border-radius: 12px;
    min-width: 150px;
    display: grid;
    gap: 4px;
    text-align: right;
    color: #fff;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}
.response-chip .label {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.72);
}
.response-chip .value {
    font-weight: 800;
    font-size: 16px;
}
.form-grid {
    display: grid;
    gap: 10px;
}
.feedback-form {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    position: relative;
    z-index: 1;
}
.feedback-form .form-wide,
.feedback-form .form-actions {
    grid-column: 1 / -1;
}
.form-grid label {
    font-weight: 700;
    font-size: 14px;
}
.form-grid input,
.form-grid textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--stroke);
    border-radius: 10px;
    font-size: 14px;
    background: #fff;
    box-sizing: border-box;
}
.form-grid textarea {
    min-height: 120px;
    resize: vertical;
}
.form-status {
    font-size: 14px;
    color: var(--muted);
    margin-top: 6px;
}
.feedback-card .form-grid label { color: #f6f7f4; }
.feedback-card .form-grid input,
.feedback-card .form-grid textarea {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12) inset;
}
.feedback-card .form-grid input:focus,
.feedback-card .form-grid textarea:focus {
    outline: none;
    border-color: #fff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.18);
}
.feedback-card .form-grid input::placeholder,
.feedback-card .form-grid textarea::placeholder { color: rgba(255, 255, 255, 0.62); }
.feedback-card .form-status { color: #f0f7f2; }
.feedback-card .form-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 4px;
}
.feedback-card .form-submit {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.feedback-card .form-note {
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
}
.feedback-card .cta {
    background: #fff;
    color: var(--accent);
    box-shadow: 0 18px 32px rgba(12, 47, 25, 0.22);
}
.feedback-card .cta:hover { box-shadow: 0 22px 40px rgba(12, 47, 25, 0.26); }
.review-card {
    border: 1px solid var(--stroke);
    background: #fff;
    border-radius: 14px;
    padding: 16px;
    display: grid;
    gap: 8px;
    box-shadow: 0 10px 24px rgba(46, 50, 34, 0.08);
}
.review-card h3 { margin: 0; font-size: 17px; }
.review-card p { margin: 0; color: var(--muted); line-height: 1.5; }
.review-stars {
    color: #f1b22d;
    font-size: 16px;
    letter-spacing: 2px;
}
.dish-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
}
.dish-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--stroke);
    background: var(--card);
    min-height: 200px;
    isolation: isolate;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.dish-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(12, 47, 25, 0.08);
    border-color: rgba(28, 124, 66, 0.28);
}
.dish-thumb {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.dish-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.05);
    transform: scale(1.02);
    transition: transform 0.5s ease;
}
.dish-card:hover .dish-thumb img { transform: scale(1.06); }
.dish-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(12, 47, 25, 0.7), rgba(12, 47, 25, 0.25));
    z-index: 1;
}
.dish-content {
    position: relative;
    z-index: 2;
    padding: 18px;
    color: #fff;
    display: grid;
    gap: 8px;
}
.dish-content h3 { margin: 0; font-size: 18px; letter-spacing: -0.01em; }
.dish-content p { margin: 0; color: #e8f1eb; line-height: 1.5; }
.story-reel {
    max-width: 100%;
    width: 100%;
    margin: 12px 0 32px;
    padding: 0 clamp(18px, 3vw, 32px);
}
.story-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 12px;
}
.story-head h2 { margin: 0; font-size: 24px; letter-spacing: -0.01em; }
.story-head p { margin: 6px 0 0; color: var(--muted); }
.story-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
}
.story-card {
    position: relative;
    flex: 0 0 220px;
    aspect-ratio: 9 / 16;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--stroke);
    background: #000;
    scroll-snap-align: start;
    box-shadow: 0 12px 28px rgba(12, 47, 25, 0.08);
}
.story-media,
.story-media iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.story-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.story-poster {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.story-label {
    position: absolute;
    left: 10px;
    bottom: 10px;
    padding: 6px 10px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-weight: 700;
    border-radius: 10px;
    font-size: 12px;
    letter-spacing: 0.01em;
}
@media (max-width: 720px) {
    nav ul { display: none; }
    header { position: static; }
    /* add small page padding on mobile so content isn't flush to the edges */
    section { padding: 8px 12px; }
    .video-hero {
        /* let the iframe determine the height on small screens
           and avoid conflicting aspect-ratio constraints */
        aspect-ratio: auto;
        height: auto;
        display: block;
        padding: 0;
        overflow: visible;
    }
    .video-bg {
        position: relative;
        overflow: hidden;
        width: 100%;
    }
    .video-bg iframe {
        /* Keep the iframe at exact 16:9, don't crop — let it scale responsively */
        position: relative;
        display: block;
        width: 100%;
        height: auto;
        max-width: 100%;
        aspect-ratio: 16 / 9;
        pointer-events: none;
        transform: none;
    }
    .hero { margin: 0; gap: 8px; padding: 18px 16px; background: linear-gradient(180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.65)); width:100%; }
    .hero > div { max-width: 720px; margin: 0 auto; }
    .hero h1 { font-size: clamp(20px, 5.2vw, 26px); line-height: 1.05; }
    .hero p { font-size: 14px; line-height: 1.45; }
    .chip { font-size: 12px; padding: 6px 10px; }
    /* Make primary actions clearer on narrow devices */
    .hero .cta { min-width: 160px; }
    .hero .ghost { min-width: 120px; }
    .banner-frame { min-height: 220px; }
    #branchGrid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 10px;
    }
    #branchGrid .thumb { height: 120px; }
    .card { padding: 12px; }
    .thumb { height: 140px; }
    .icon-btn { width: 36px; height: 36px; }
    .order-btn { height: 36px; padding: 0 12px; font-size: 13px; }
    #reviewGrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hero-info { grid-template-columns: 1fr; display: none; }
    .feedback-top {
        flex-direction: column;
        align-items: flex-start;
    }
    .response-chip {
        text-align: left;
        width: 100%;
    }
}

/* Use a pseudo-element on .video-bg for the mobile overlay so it exactly
   matches the iframe's height. Hide the global .video-overlay on small
   screens to avoid mismatched sizing. */
@media (max-width: 720px) {
    .video-overlay { display: none; }
    .video-bg::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        pointer-events: none;
        background: linear-gradient(180deg, rgba(6,27,15,0.72), rgba(6,27,15,0.32));
    }
    .video-bg iframe { z-index: 0; }
}

/* Make the hero overlay the top of the video on mobile so headline/buttons appear above the playback */
@media (max-width: 720px) {
    .video-hero { position: relative; }
    .video-hero .hero {
        position: absolute;
        top: 8px;
        left: 0;
        right: 0;
        z-index: 4;
        /* remove the hero's own background so the video-bg overlay
           (which matches the iframe) provides a consistent dark layer */
        background: transparent !important;
        padding: 14px 16px;
        margin: 0;
        width: 100%;
    }
    /* ensure the video sits beneath and keeps its aspect ratio */
    .video-hero .video-bg { z-index: 0; }
}

/* explicitly hide any remaining hero paragraph/chips on very small devices */
@media (max-width: 480px) {
    .hero p, .chips, .chip { display: none !important; }
}
