/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors - Warm and inviting ice cream palette */
    --primary-coral: #FF6B8A;
    --primary-peach: #FF8E72;
    --primary-cream: #FFF8E7;
    --secondary-mint: #90E0C6;
    --secondary-lavender: #B794F6;
    --secondary-sky: #87CEEB;

    /* Neutral Colors */
    --dark-charcoal: #2D3748;
    --medium-gray: #4A5568;
    --light-gray: #718096;
    --soft-white: #FAFAFA;
    --pure-white: #FFFFFF;

    /* Accent Colors */
    --warm-gold: #F6E05E;
    --success-green: #68D391;
    --warning-orange: #FBB040;

    /* Pattern URL resolves relative to this CSS file, so it works from / and /pages/ */
    --pattern-url: url('../images/pattern-bg.png');

    /* Card design tokens — single source of truth for all card variants */
    --card-radius: 20px;
    --card-radius-lg: 28px;
    --card-radius-pill: 999px;
    --card-pad: 1.75rem;
    --card-pad-lg: 2.25rem;
    --card-border: 1px solid rgba(255, 107, 138, 0.10);
    --card-shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.08);
    --card-shadow-md: 0 10px 28px rgba(0, 0, 0, 0.08);
    --card-shadow-hover: 0 20px 44px rgba(255, 107, 138, 0.18);
    --card-lift-hover: translateY(-6px);
    --icon-disc-size: 60px;
    --icon-disc-bg-coral: rgba(255, 107, 138, 0.12);
    --icon-disc-bg-peach: rgba(255, 142, 114, 0.14);
    --icon-disc-bg-mint: rgba(144, 224, 198, 0.20);
    --icon-disc-bg-lavender: rgba(183, 148, 246, 0.16);
    --icon-disc-bg-gold: rgba(246, 224, 94, 0.22);
}

html, body {
    min-height: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    /* Base bumped 16→17 for a warmer, more editorial read across
       long-form pages (about/menu/locations/jobs). rem-sized headings
       and section leads scale proportionally; pixel-sized component
       internals (countdowns, badges, chips) stay where I set them. */
    font-size: 17px;
    line-height: 1.65;
    color: var(--dark-charcoal);
    background-color: #FFF6F0;
    position: relative;
}

/* Seamless ice cream pattern as fixed background layer */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: var(--pattern-url);
    background-size: 360px 360px;
    background-repeat: repeat;
    opacity: 0.7;
    z-index: -2;
    pointer-events: none;
}

/* Soft pastel gradient wash above pattern for warmth */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 248, 231, 0.25) 0%, rgba(255, 209, 220, 0.15) 50%, rgba(144, 224, 198, 0.18) 100%);
    z-index: -1;
    pointer-events: none;
}

/* Reveal-on-scroll baseline (used by script.js) */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
/* Anchor scrolling: the navbar is position:fixed, so any in-page
   anchor link (#pint-drops, #contact, etc.) lands its section UNDER
   the navbar by default — the heading is invisible. Tell the
   browser to leave room for the navbar when scrolling to anchors.
   88px ≈ logo + padding + 12px breathing room. */
html {
    scroll-padding-top: 88px;
    scroll-behavior: smooth;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    z-index: 1000;
    padding: 0.75rem 0;
    box-shadow: 0 1px 0 rgba(255, 107, 138, 0.10), 0 4px 24px rgba(92, 61, 42, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.is-scrolled {
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 1px 0 rgba(255, 107, 138, 0.12), 0 6px 28px rgba(92, 61, 42, 0.10);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-brand {
    text-decoration: none;
    transition: transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.nav-brand:hover { transform: translateY(-1px); }

.nav-brand .brand-cone {
    height: 52px;
    width: auto;
    display: block;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.10));
    transition: filter 0.3s ease, transform 0.3s ease;
}

.nav-brand:hover .brand-cone {
    filter: drop-shadow(0 4px 8px rgba(255, 107, 138, 0.20));
    transform: rotate(-3deg);
}

.nav-brand .brand-wordmark {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.nav-brand .brand-text {
    font-family: 'Fredoka', 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.85rem;
    line-height: 0.95;
    color: #5C3D2A; /* warm sepia matching hero logo */
    letter-spacing: -0.005em;
    text-shadow:
        0 1px 0 #FFF8E7,
        0 2px 1px rgba(92, 61, 42, 0.25),
        0 3px 6px rgba(92, 61, 42, 0.15);
    transition: color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.nav-brand .brand-tag {
    font-family: 'Lora', 'Georgia', serif;
    font-style: italic;
    font-weight: 700;
    font-size: 0.78rem;
    line-height: 1;
    margin-top: 6px;
    color: #5C3D2A;
    letter-spacing: 0.01em;
    white-space: nowrap;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

.nav-brand:hover .brand-text {
    color: #6B4226;
}

@media (max-width: 768px) {
    .nav-brand .brand-cone { height: 46px; }
    .nav-brand .brand-text { font-size: 1.5rem; }
    .nav-brand .brand-tag { font-size: 0.66rem; margin-top: 4px; }
}

@media (max-width: 480px) {
    .nav-brand .brand-cone { height: 40px; }
    .nav-brand .brand-text { font-size: 1.25rem; }
    .nav-brand .brand-tag { font-size: 0.58rem; margin-top: 2px; }
}

.nav-logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-charcoal);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-coral);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-coral);
    margin: 3px 0;
    border-radius: 2px;
    transition: 0.3s;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(135deg, rgba(255, 248, 231, 0.85) 0%, rgba(135, 206, 235, 0.55) 35%, rgba(144, 224, 198, 0.65) 100%);
    padding: 120px 40px 80px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 142, 114, 0.25), transparent 55%),
                radial-gradient(circle at 80% 70%, rgba(183, 148, 246, 0.25), transparent 55%);
    pointer-events: none;
}

.hero > * { position: relative; z-index: 1; }

.hero .container {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark-charcoal);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;          /* was 1.2rem — closer to the 56px h1 confidence */
    color: var(--medium-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-coral), var(--primary-peach));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 138, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-coral);
    border: 2px solid var(--primary-coral);
}

.btn-secondary:hover {
    background: var(--primary-coral);
    color: white;
    transform: translateY(-2px);
}

/* Hero Image Gallery */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 600px;
    height: 500px;
    background: transparent;
    animation: float 4s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.hero-logo-container:hover {
    transform: translateY(-10px);
}

.hero-logo-large {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.hero-logo-container:hover .hero-logo-large {
    transform: scale(1.05);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

/* Ice Cream Gallery */
.ice-cream-gallery {
    padding: 104px 0;            /* was 80 — more breathing room */
    background: transparent;
}

.section-lead {
    text-align: center;
    color: var(--medium-gray);
    font-size: 1.3rem;       /* was 1.1rem — bigger, easier to read at glance */
    max-width: 780px;        /* was 720 — wider, less cramped wrapping */
    margin: -1rem auto 3.5rem;
    line-height: 1.7;
    font-weight: 500;
}

.photo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
}

.photo-tile {
    display: block;
    background: white;
    border-radius: 22px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 107, 138, 0.10);
}

.photo-tile:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 48px rgba(255, 107, 138, 0.20);
}

.photo-tile img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    background: linear-gradient(135deg, rgba(255, 248, 231, 0.6), rgba(255, 209, 220, 0.45));
    padding: 12px;
    transition: transform 0.4s ease;
}

.photo-tile:hover img {
    transform: scale(1.04);
}

.photo-tile-caption {
    padding: 1.1rem 1.4rem 1.4rem;
}

.photo-tile-caption h3 {
    color: var(--primary-coral);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.photo-tile-caption p {
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.45;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.gallery-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.ice-cream-visual {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    animation: float 4s ease-in-out infinite;
}

.gallery-item:nth-child(2) .ice-cream-visual {
    animation-delay: 1s;
}

.gallery-item:nth-child(3) .ice-cream-visual {
    animation-delay: 2s;
}

.gallery-item:nth-child(4) .ice-cream-visual {
    animation-delay: 3s;
}

/* Sundae Visual */
.sundae-glass {
    position: relative;
    width: 80px;
    height: 100px;
    background: linear-gradient(to bottom, transparent 30%, rgba(255, 255, 255, 0.3) 30%);
    border: 3px solid var(--light-gray);
    border-radius: 0 0 40px 40px;
    border-top: none;
}

.scoop-stack {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.mini-scoop {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: -15px;
    position: relative;
}

.cherry {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: #FF0000;
    border-radius: 50%;
}

.cherry::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 8px;
    background: #00AA00;
}

.whipped-cream {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 20px;
    background: #FFFFFF;
    border-radius: 50%;
    opacity: 0.9;
}

.hot-fudge {
    position: absolute;
    top: 10px;
    left: 20%;
    width: 60%;
    height: 40px;
    background: linear-gradient(45deg, #8B4513, #654321);
    border-radius: 10px;
    opacity: 0.8;
}

/* Milkshake Visual */
.shake-glass {
    position: relative;
    width: 60px;
    height: 100px;
    background: linear-gradient(to bottom, var(--primary-cream) 0%, var(--secondary-mint) 100%);
    border: 3px solid var(--light-gray);
    border-radius: 10px;
}

.shake-content {
    position: absolute;
    bottom: 5px;
    left: 5px;
    right: 5px;
    height: 80%;
    background: linear-gradient(to bottom, var(--primary-peach) 0%, var(--primary-coral) 100%);
    border-radius: 5px;
}

.shake-foam {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 25px;
    background: #FFFFFF;
    border-radius: 50%;
    opacity: 0.9;
}

.straw {
    position: absolute;
    right: -5px;
    top: -20px;
    width: 4px;
    height: 60px;
    background: linear-gradient(45deg, #FF0000, #FFFF00);
    border-radius: 2px;
}

/* Banana Split Visual */
.split-dish {
    position: relative;
    width: 100px;
    height: 40px;
    background: linear-gradient(to bottom, #FFFFFF, #F0F0F0);
    border: 2px solid var(--light-gray);
    border-radius: 50px;
}

.banana-slices {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
}

.banana-slice {
    width: 30px;
    height: 15px;
    background: linear-gradient(45deg, #FFE135, #FFF8DC);
    border-radius: 50%;
    border: 1px solid #E6D200;
}

.triple-scoops {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
}

.triple-scoops .mini-scoop {
    width: 25px;
    height: 25px;
    margin-bottom: 0;
}

.split-toppings {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
}

.nuts {
    position: absolute;
    top: 5px;
    left: 10px;
    width: 4px;
    height: 4px;
    background: #8B4513;
    border-radius: 50%;
    box-shadow: 10px 0 0 #8B4513, 20px 0 0 #8B4513, 30px 0 0 #8B4513;
}

.cherries {
    position: absolute;
    top: 0;
    right: 10px;
    width: 6px;
    height: 6px;
    background: #FF0000;
    border-radius: 50%;
    box-shadow: 15px 3px 0 #FF0000;
}

/* Snow Cone Visual */
.cone-cup {
    position: relative;
    width: 60px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, #FFFFFF);
    border: 2px solid var(--light-gray);
    border-radius: 0 0 30px 30px;
    clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
}

.shaved-ice {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 60px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

.ice-layer {
    position: absolute;
    width: 100%;
    height: 33.33%;
    border-radius: inherit;
}

.ice-layer.blue {
    top: 0;
    background: linear-gradient(45deg, #87CEEB, #4169E1);
}

.ice-layer.red {
    top: 33.33%;
    background: linear-gradient(45deg, #FF6B6B, #FF1493);
}

.ice-layer.yellow {
    top: 66.66%;
    background: linear-gradient(45deg, #FFE135, #FFA500);
}

.gallery-item h3 {
    color: var(--dark-charcoal);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gallery-item p {
    color: var(--medium-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Features Section */
.features {
    padding: 104px 0;            /* was 80 */
    background: linear-gradient(180deg, rgba(255, 248, 231, 0.55) 0%, rgba(255, 248, 231, 0.45) 100%);
}

.section-title {
    text-align: center;
    font-size: 3rem;          /* was 2.5rem — louder section breaks */
    color: var(--dark-charcoal);
    margin-bottom: 1.25rem;   /* was 3rem — tighter to the lead text below */
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.15;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: var(--card-pad-lg) var(--card-pad);
    border-radius: var(--card-radius);
    background: white;
    box-shadow: var(--card-shadow-md);
    border: var(--card-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: var(--card-lift-hover);
    box-shadow: var(--card-shadow-hover);
}

.feature-icon {
    width: var(--icon-disc-size);
    height: var(--icon-disc-size);
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    background: var(--icon-disc-bg-coral);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary-coral);
    transition: transform 0.3s ease, background 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.08);
}

/* Rotate accent colors across feature-cards in the same grid for visual rhythm */
.features-grid > .feature-card:nth-child(3n+2) .feature-icon { background: var(--icon-disc-bg-peach); color: var(--primary-peach); }
.features-grid > .feature-card:nth-child(3n+3) .feature-icon { background: var(--icon-disc-bg-mint); color: #2D8068; }

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.6rem;
    color: var(--dark-charcoal);
    font-weight: 600;
}

.feature-card p {
    color: var(--medium-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Location Preview */
.location-preview {
    padding: 104px 0;            /* was 80 */
    background: transparent;
}

.locations-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.location-card-preview {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.location-card-preview:hover {
    transform: translateY(-10px);
}

.location-map-preview {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.location-map-preview iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.location-info-preview {
    padding: 2rem;
}

.location-info-preview h3 {
    color: var(--primary-coral);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.location-info-preview h3 i {
    margin-right: 0.5rem;
}

.location-info-preview p {
    color: var(--medium-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.location-info-preview p strong {
    color: var(--dark-charcoal);
}

.locations-cta {
    text-align: center;
}

.placeholder-map {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.placeholder-map i {
    font-size: 4rem;
    color: #ff6b9d;
    margin-bottom: 1rem;
}

.placeholder-map p {
    color: #666;
    font-size: 1.2rem;
}

/* Contact Section */
.contact {
    padding: 104px 0;            /* was 80 */
    background: linear-gradient(180deg, rgba(255, 248, 231, 0.55) 0%, rgba(255, 248, 231, 0.45) 100%);
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: var(--card-pad-lg) var(--card-pad);
    background: white;
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow-md);
    border: var(--card-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: var(--card-lift-hover);
    box-shadow: var(--card-shadow-hover);
}

.contact-item > i {
    flex-shrink: 0;
    width: var(--icon-disc-size);
    height: var(--icon-disc-size);
    border-radius: 50%;
    background: var(--icon-disc-bg-coral);
    color: var(--primary-coral);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info > .contact-item:nth-child(2) > i { background: var(--icon-disc-bg-mint); color: #2D8068; }
.contact-info > .contact-item:nth-child(3) > i { background: var(--icon-disc-bg-peach); color: var(--primary-peach); }

.contact-item h3 {
    color: var(--dark-charcoal);
    margin-bottom: 0.4rem;
    font-size: 1.05rem;
    font-weight: 600;
}

.contact-item p,
.contact-item a {
    color: var(--medium-gray);
    text-decoration: none;
    font-size: 0.95rem;
}

.contact-item a:hover {
    color: var(--primary-coral);
}

.social-links-inline {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-links-inline a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--medium-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links-inline a:hover {
    color: var(--primary-coral);
}

.social-links-inline i {
    width: 20px;
    text-align: center;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #ff6b9d;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff6b9d;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-coral);
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:nth-child(2) {
    background: linear-gradient(45deg, var(--primary-peach), var(--secondary-lavender));
}

.social-links a:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 30px 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .locations-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hero .container {
        flex-direction: column;
        gap: 2rem;
        padding: 0 30px;
    }
    
    .hero-logo-container {
        max-width: 400px;
        height: 350px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .gallery-item {
        padding: 1.5rem;
    }
    
    .ice-cream-visual {
        height: 100px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 25px;
    }
    
    .hero-title {
        font-size: 2.5rem;       /* was 2rem */
    }

    .hero-subtitle {
        font-size: 1.15rem;      /* was 1rem */
        line-height: 1.6;
    }

    .section-title {
        font-size: 2.25rem;      /* was 2rem */
    }

    .section-lead {
        font-size: 1.125rem;     /* explicit mobile target */
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .hero-logo-container {
        max-width: 320px;
        height: 280px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ice-cream-visual {
        height: 80px;
    }
    
    .gallery-item h3 {
        font-size: 1.1rem;
    }
    
    .sundae-glass, .shake-glass {
        transform: scale(0.8);
    }
    
    .split-dish, .cone-cup {
        transform: scale(0.8);
    }
}

/* ============================================
   Pint Drops section (TorqAI embed)
   ============================================
   The embed widget supplies its own card chrome via .torqai-* classes,
   so this section only needs ambient layout to match the rest of the
   page (cream background, sectioned spacing, centered max-width). */

.pint-drops {
    /* Semi-transparent wash so the body's ice-cream-cone pattern
       (body::before) shows through softly. The glass card on top
       then layers another 0.55 cream over that, giving the section
       a real sense of depth instead of two flat cream tones. */
    background: rgba(255, 248, 231, 0.35);
    padding: 104px 0;            /* was 80 */
}

.pint-drops .section-title {
    text-align: center;
}

.pint-drops .section-lead {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 32px;
}

.drop-widget-wrap {
    display: flex;
    justify-content: center;
}

/* ────── Widget visual overrides ──────
   The embed.js card looks generic by default — same scale and weight
   anywhere it's dropped. On Soft Stuff we layer site-specific styling
   over the embed's class names:
     - glassmorphism card (the section pattern shows through)
     - hide the duplicate "Pint Drops" title (the section h2 owns it)
     - brand-tinted countdown blocks, status badge, flavor chips
     - cream/brown form chrome with peach focus state */
.drop-widget-wrap .torqai-card {
    padding: 48px 42px;       /* was 38/34 — generous, hero-grade */
    max-width: 640px;         /* was 580 — wider presence */
    width: 100%;
    /* Glass effect: semi-transparent cream with backdrop blur so the
       ice-cream-cone pattern behind shows through subtly. Falls back
       to opaque cream on browsers without backdrop-filter. */
    background: rgba(255, 252, 245, 0.58) !important;
    backdrop-filter: blur(16px) saturate(150%);
    -webkit-backdrop-filter: blur(16px) saturate(150%);
    border: 1.5px solid rgba(255, 224, 178, 0.65);
    border-radius: 24px !important;  /* matches the rest of the site's tile rhythm */
    box-shadow:
        0 16px 40px rgba(93, 64, 55, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.drop-widget-wrap .torqai-card-title {
    display: none;
}

.drop-widget-wrap .torqai-card-desc {
    font-size: 22px;          /* was 20 */
    line-height: 1.55;
    color: #5D4037;
    margin: 0 0 28px;
    font-weight: 600;
    text-align: center;       /* matches the centered scoop emoji above it */
}

/* Empty-state visual: when no drop is active the widget renders only
   one line of body text inside the big card, which leaves it feeling
   thin. Inject a large hand-scoop emoji above the description as a
   focal visual. Only renders on the empty state (active drops use a
   different DOM tree that doesn't include .torqai-card-desc). */
.drop-widget-wrap .torqai-card-desc::before {
    content: '🍨';
    display: block;
    font-size: 64px;
    line-height: 1;
    text-align: center;
    margin-bottom: 18px;
    filter: drop-shadow(0 6px 14px rgba(93, 64, 55, 0.18));
}

/* "OPENS SOON" / "LIVE" status badge — replaces embed.js defaults
   (blue / green) with the warm peach-orange brand accent. */
.drop-widget-wrap .torqai-status {
    background: linear-gradient(135deg, #FFC857 0%, #FFA94D 100%) !important;
    color: #5D4037 !important;
    padding: 6px 16px;        /* was 4/12 */
    font-size: 12.5px;        /* was 11 */
    font-weight: 700;
    letter-spacing: 0.8px;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(255, 168, 77, 0.32);
}

/* Flavor chips — pill shape, peach surface, brown text. */
.drop-widget-wrap .torqai-flavor-chip {
    background: rgba(255, 200, 87, 0.18);
    color: #5D4037;
    border: 1px solid rgba(255, 200, 87, 0.45);
    font-weight: 600;
    padding: 6px 14px;        /* was 5/12 */
    font-size: 14px;          /* was 12.5 */
}

/* Countdown timer — bigger, cream blocks with brown numbers, soft
   peach-gold ring on each. Each unit feels like a little present.
   Sized up so the live countdown carries the section visually. */
.drop-widget-wrap .torqai-countdown {
    gap: 10px;                /* was 8 */
    margin: 24px 0;           /* was 20 */
}

.drop-widget-wrap .torqai-countdown-unit {
    background: linear-gradient(180deg, #FFFEFC 0%, #FFF4DD 100%);
    border: 1.5px solid rgba(255, 200, 87, 0.55);
    border-radius: 18px;      /* was 16 */
    padding: 18px 10px 14px;  /* was 14/8/10 */
    box-shadow:
        0 6px 14px rgba(93, 64, 55, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.drop-widget-wrap .torqai-countdown-num {
    font-size: 38px;          /* was 28 — actually readable now */
    font-weight: 700;
    color: #5D4037;
    letter-spacing: -0.5px;
    line-height: 1;
}

.drop-widget-wrap .torqai-countdown-label {
    color: #8D6E63;
    font-size: 11.5px;        /* was 10.5 */
    font-weight: 700;
    letter-spacing: 0.6px;
    margin-top: 6px;
}

/* Pickup / location meta lines — softer color so they read as
   secondary info under the countdown. */
.drop-widget-wrap .torqai-meta {
    font-size: 15px;          /* was 13.5 */
    color: #6D4C41;
    font-weight: 500;
    line-height: 1.55;
}

.drop-widget-wrap #torqai-subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 18px;
}

.drop-widget-wrap .torqai-subscribe-input {
    padding: 18px 20px;       /* was 16/18 */
    font-size: 17px;          /* was 16 */
    border-radius: 16px;      /* was 14 */
    border: 1.5px solid rgba(255, 224, 178, 0.7);
    background: rgba(255, 255, 255, 0.7);
    color: #5D4037;
    font-family: inherit;
    font-weight: 500;
}

.drop-widget-wrap .torqai-subscribe-input::placeholder {
    color: #A89684;
    font-weight: 400;
}

.drop-widget-wrap .torqai-subscribe-input:focus {
    outline: none;
    border-color: #FFC857;
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(255, 200, 87, 0.25);
}

.drop-widget-wrap .torqai-btn {
    padding: 18px 28px;       /* was 16/24 */
    font-size: 17px;          /* was 16 */
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-top: 4px;
    border-radius: 16px;
    box-shadow: 0 6px 16px rgba(93, 64, 55, 0.28);
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.drop-widget-wrap .torqai-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(93, 64, 55, 0.32);
    filter: brightness(1.06);
}

/* Site-level safety net: the platform-side fix that lands in
   apps/web/public/embed.js makes .secondary consume --torqai-primary
   automatically. Until that ships to dashboard.torqai.ca/embed.js,
   this override ensures the live Soft Stuff CTA stays branded. */
.drop-widget-wrap .torqai-btn.secondary {
    background: #5D4037;
    color: #FFF8E7;
    border: 1px solid #5D4037;
}

.drop-widget-wrap .torqai-btn.secondary:hover {
    background: #4E342E;
    border-color: #4E342E;
}

.drop-widget-wrap .torqai-footer {
    font-size: 11px;
    color: #A89684;
    text-align: center;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 200, 87, 0.30);
    letter-spacing: 0.3px;
}

.drop-widget-wrap .torqai-footer a {
    color: #5D4037;
    font-weight: 600;
    text-decoration: none;
}

.drop-widget-wrap .torqai-footer a:hover {
    text-decoration: underline;
}

.drop-widget-wrap .torqai-footer {
    font-size: 11px;
    color: #A89684;
    text-align: center;
    margin-top: 16px;
    letter-spacing: 0.3px;
}

.drop-widget-wrap .torqai-footer a {
    color: #5D4037;
    font-weight: 600;
    text-decoration: none;
}

.drop-widget-wrap .torqai-footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .pint-drops {
        padding: 48px 0;
    }

    .drop-widget-wrap .torqai-card {
        padding: 28px 22px;
    }

    .drop-widget-wrap .torqai-card-desc {
        font-size: 16px;
    }
}

/* Footer drop-subscribe form. Sits inside .footer-section so it
   inherits the section's color / spacing; the input + button add
   the form-specific styling. */
.drop-subscribe-footer {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.drop-subscribe-input {
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: inherit;
    font-size: 14px;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
}

.drop-subscribe-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.drop-subscribe-btn {
    width: 100%;
    padding: 10px 16px;
    font-size: 14px;
    cursor: pointer;
}