/* ===========================
   MR. SMOODIE — PREMIUM CSS
   =========================== */

/* --- CSS Variables --- */
:root {
    --bg-primary: #0f0f0f;
    --bg-deep: #1a0f0f;
    --bg-darkest: #140a0a;
    --cream: #f5e6d3;
    --chocolate: #6b3e26;
    --gold: #d4af37;
    --pink: #f8c8dc;
    --white: #fff;
    --text-primary: #f5e6d3;
    --text-secondary: rgba(245, 230, 211, 0.7);
    --glass-bg: rgba(30, 15, 15, 0.6);
    --glass-border: rgba(212, 175, 55, 0.15);
    --glass-blur: 20px;
    --radius: 20px;
    --radius-sm: 12px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    cursor: none;
    -webkit-tap-highlight-color: transparent;
    padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    cursor: none;
    border: none;
    background: none;
    font-family: inherit;
    color: inherit;
    touch-action: manipulation;
}

::selection {
    background: var(--gold);
    color: var(--bg-primary);
}

/* --- Loading Screen --- */
#loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold), var(--cream));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    animation: pulse-glow 1.5s ease-in-out infinite;
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(245, 230, 211, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--gold), var(--cream));
    border-radius: 4px;
    animation: loader-progress 1.5s ease-out forwards;
}

@keyframes loader-progress {
    to {
        width: 100%;
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

/* --- Custom Cursor --- */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
}

.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.35s ease, height 0.35s ease, border-color 0.35s;
}

.cursor-dot.hovering {
    width: 14px;
    height: 14px;
    background: var(--cream);
}

.cursor-glow.hovering {
    width: 60px;
    height: 60px;
    border-color: rgba(245, 230, 211, 0.5);
}

/* --- Particle Canvas --- */
#particleCanvas {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* --- Navigation --- */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 2rem;
    transition: all var(--transition);
}

#navbar.scrolled {
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.75rem 2rem;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold), var(--cream));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-cta {
    background: linear-gradient(135deg, var(--gold), #c4982f);
    color: var(--bg-primary) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600 !important;
    -webkit-text-fill-color: var(--bg-primary) !important;
    transition: transform var(--transition), box-shadow var(--transition);
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cream);
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.4rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), #c4982f);
    color: var(--bg-primary);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 1.5px solid rgba(212, 175, 55, 0.4);
    color: var(--cream);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.btn-small {
    padding: 0.6rem 1.6rem;
    font-size: 0.85rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    border-radius: 50px;
}

.btn-small:hover {
    background: linear-gradient(135deg, var(--gold), #c4982f);
    color: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.3);
}

.btn-large {
    padding: 1.1rem 3rem;
    font-size: 1.1rem;
}

/* --- Section Defaults --- */
.section {
    position: relative;
    z-index: 2;
    padding: 8rem 2rem;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

.text-gold {
    background: linear-gradient(135deg, var(--gold), var(--cream));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Glass Card --- */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 2;
    padding-top: 5rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(107, 62, 38, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(248, 200, 220, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-deep) 50%, var(--bg-darkest) 100%);
}

.hero-floating-images {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-float-img {
    position: absolute;
    opacity: 0.25;
    filter: blur(1px);
    transition: transform 0.3s ease;
}

.hero-float-1 {
    width: 280px;
    top: 10%;
    left: -3%;
    animation: heroFloat1 8s ease-in-out infinite;
}

.hero-float-2 {
    width: 220px;
    top: 15%;
    right: 2%;
    animation: heroFloat2 10s ease-in-out infinite;
}

.hero-float-3 {
    width: 200px;
    bottom: 8%;
    right: 10%;
    animation: heroFloat3 9s ease-in-out infinite;
}

@keyframes heroFloat1 {

    0%,
    100% {
        transform: translateY(0) rotate(-5deg);
    }

    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

@keyframes heroFloat2 {

    0%,
    100% {
        transform: translateY(0) rotate(5deg);
    }

    50% {
        transform: translateY(-25px) rotate(-5deg);
    }
}

@keyframes heroFloat3 {

    0%,
    100% {
        transform: translateY(0) rotate(3deg);
    }

    50% {
        transform: translateY(-35px) rotate(-3deg);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem;
    padding-bottom: 6rem;
}

.hero-badge {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    font-size: clamp(3.5rem, 12vw, 8rem);
    letter-spacing: 0.05em;
    animation: fadeInUp 1s ease 0.5s both;
}

.title-accent {
    background: linear-gradient(135deg, var(--gold), var(--cream), var(--gold));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease 0.7s both, shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-style: italic;
    color: var(--cream);
    margin-bottom: 0.8rem;
    animation: fadeInUp 1s ease 0.9s both;
}

.hero-sub {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 1.1s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1.3s both;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 1.5rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: fit-content;
    text-align: center;
    z-index: 3;
    animation: fadeInUp 1s ease 1.5s both;
}

.hero-scroll-indicator span {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: rotate(45deg);
    margin: 0 auto;
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {

    0%,
    100% {
        transform: rotate(45deg) translateY(0);
        opacity: 1;
    }

    50% {
        transform: rotate(45deg) translateY(8px);
        opacity: 0.5;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   PRODUCTS SECTION
   =========================== */
.products-section {
    background: linear-gradient(180deg, var(--bg-darkest) 0%, var(--bg-deep) 50%, var(--bg-primary) 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.product-card {
    perspective: 1000px;
}

.product-card-inner {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all var(--transition);
    transform-style: preserve-3d;
    will-change: transform;
}

.product-card-inner:hover {
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(212, 175, 55, 0.1);
}

.product-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    transition: all var(--transition);
    pointer-events: none;
}

.product-card-inner:hover .product-glow {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, transparent 70%);
}

.product-image-wrap {
    position: relative;
    width: 200px;
    height: 280px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    transition: transform var(--transition), filter var(--transition);
    animation: productFloat 6s ease-in-out infinite;
}

.product-card-inner:hover .product-img {
    transform: scale(1.08);
    filter: drop-shadow(0 15px 40px rgba(212, 175, 55, 0.2));
}

@keyframes productFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.product-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1.2rem;
}

/* ===========================
   HAPPY CUSTOMERS SECTION
   =========================== */
.section-happy-customers {
    background:
        radial-gradient(ellipse at 50% 50%, rgba(212, 175, 55, 0.06) 0%, transparent 60%),
        linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-deep) 50%, var(--bg-darkest) 100%);
    text-align: center;
    overflow: hidden;
    position: relative;
}

.happy-floating-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.happy-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.12;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.happy-icon-1 {
    top: 10%;
    left: 8%;
    animation: happyFloat1 9s infinite;
}

.happy-icon-2 {
    top: 20%;
    right: 12%;
    animation: happyFloat2 11s infinite;
}

.happy-icon-3 {
    bottom: 25%;
    left: 15%;
    animation: happyFloat3 8s infinite;
}

.happy-icon-4 {
    bottom: 15%;
    right: 8%;
    animation: happyFloat1 10s infinite;
    animation-delay: 2s;
}

.happy-icon-5 {
    top: 50%;
    left: 5%;
    animation: happyFloat2 7s infinite;
    color: var(--gold);
    font-size: 1.5rem;
}

.happy-icon-6 {
    top: 35%;
    right: 6%;
    animation: happyFloat3 12s infinite;
}

@keyframes happyFloat1 {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-25px) rotate(10deg);
    }
}

@keyframes happyFloat2 {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(-8deg);
    }
}

@keyframes happyFloat3 {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.15);
    }
}

.happy-content {
    position: relative;
    z-index: 2;
}

.happy-number-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
    margin: 1.5rem 0 1rem;
}

.happy-number {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold), var(--cream), var(--gold));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.2));
    transition: filter 0.4s ease;
    line-height: 1;
}

.happy-number:hover {
    filter: drop-shadow(0 0 50px rgba(212, 175, 55, 0.5));
}

.happy-plus {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.happy-text {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.happy-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.happy-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.happy-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.5rem;
    transition: all var(--transition);
}

.happy-badge:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(212, 175, 55, 0.08);
}

.happy-badge-icon {
    font-size: 1.3rem;
}

.happy-badge-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--cream);
    letter-spacing: 0.02em;
}

/* ===========================
   ABOUT SECTION
   =========================== */
.about-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-deep) 100%);
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image-stack {
    position: relative;
    height: 450px;
}

.about-img {
    position: absolute;
    border-radius: var(--radius);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.about-img-1 {
    width: 250px;
    top: 0;
    left: 10%;
    z-index: 2;
    animation: aboutFloat1 7s ease-in-out infinite;
}

.about-img-2 {
    width: 200px;
    bottom: 0;
    right: 10%;
    z-index: 1;
    animation: aboutFloat2 8s ease-in-out infinite;
}

@keyframes aboutFloat1 {

    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

@keyframes aboutFloat2 {

    0%,
    100% {
        transform: translateY(0) rotate(2deg);
    }

    50% {
        transform: translateY(-20px) rotate(-2deg);
    }
}

.floating-sparkle {
    position: absolute;
    color: var(--gold);
    font-size: 1.2rem;
    animation: sparkleFloat 5s ease-in-out infinite;
    opacity: 0.6;
}

.sparkle-1 {
    top: 5%;
    right: 20%;
    animation-delay: 0s;
}

.sparkle-2 {
    bottom: 20%;
    left: 5%;
    animation-delay: 1.5s;
}

.sparkle-3 {
    top: 40%;
    right: 5%;
    animation-delay: 3s;
    font-size: 1.5rem;
}

@keyframes sparkleFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-20px) scale(1.3);
        opacity: 1;
    }
}

.about-content .section-tag {
    display: block;
    margin-bottom: 1rem;
    text-align: left;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ===========================
   EXPERIENCE SECTION
   =========================== */
.experience-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(107, 62, 38, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 60%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-primary) 50%, var(--bg-darkest) 100%);
    overflow: hidden;
}

.experience-content {
    text-align: center;
    position: relative;
}

.experience-text {
    position: relative;
    z-index: 2;
}

.experience-line {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.experience-line.visible {
    opacity: 1;
    transform: translateY(0);
}

.experience-accent {
    font-size: clamp(2.5rem, 8vw, 6rem);
    background: linear-gradient(135deg, var(--gold), var(--cream), var(--pink), var(--gold));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 5s ease-in-out infinite;
    font-style: italic;
}

.experience-floating-cans {
    position: absolute;
    inset: -20%;
    pointer-events: none;
    z-index: 1;
}

.exp-can {
    position: absolute;
    opacity: 0.12;
    filter: blur(2px);
}

.exp-can-1 {
    width: 180px;
    top: 0;
    left: 5%;
    animation: expFloat1 12s ease-in-out infinite;
}

.exp-can-2 {
    width: 150px;
    bottom: 10%;
    right: 5%;
    animation: expFloat2 14s ease-in-out infinite;
}

.exp-can-3 {
    width: 130px;
    top: 20%;
    right: 15%;
    animation: expFloat3 10s ease-in-out infinite;
}

@keyframes expFloat1 {

    0%,
    100% {
        transform: translateY(0) rotate(-8deg);
    }

    50% {
        transform: translateY(-40px) rotate(8deg);
    }
}

@keyframes expFloat2 {

    0%,
    100% {
        transform: translateY(0) rotate(5deg);
    }

    50% {
        transform: translateY(-30px) rotate(-10deg);
    }
}

@keyframes expFloat3 {

    0%,
    100% {
        transform: translateY(0) rotate(10deg);
    }

    50% {
        transform: translateY(-35px) rotate(-5deg);
    }
}

/* ===========================
   CONTACT SECTION
   =========================== */
.contact-section {
    background: linear-gradient(180deg, var(--bg-darkest) 0%, var(--bg-deep) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contact-card {
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--transition);
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(212, 175, 55, 0.08);
}

.contact-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--gold);
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--cream);
}

.contact-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
}

.highlight-text {
    font-size: 1.3rem !important;
    font-weight: 600;
    color: var(--gold) !important;
}

.contact-link {
    transition: color var(--transition);
    position: relative;
}

.contact-link:hover {
    color: var(--gold);
}

.instagram-link {
    color: var(--pink);
    font-weight: 600;
}

.instagram-link:hover {
    color: var(--gold);
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
    text-align: center;
    padding: 10rem 2rem;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
        linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-primary) 100%);
    overflow: hidden;
    position: relative;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    animation: cta-pulse 4s ease-in-out infinite;
}

@keyframes cta-pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 1;
    }
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 2.5rem;
    line-height: 1.2;
}

.cta-sub {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.cta-btn {
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
    }

    50% {
        box-shadow: 0 8px 50px rgba(212, 175, 55, 0.5), 0 0 20px rgba(212, 175, 55, 0.2);
    }
}

/* ===========================
   FAQ SECTION
   =========================== */
.faq-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-deep) 100%);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item[open] {
    border-color: var(--gold);
}

.faq-question {
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--cream);
    font-weight: 600;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.3s ease;
    user-select: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--gold);
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item[open] .faq-question::after {
    content: '\2212';
    transform: rotate(180deg);
}

.faq-item[open] .faq-question {
    color: var(--gold);
}

.faq-answer {
    padding: 0 1.5rem 1.2rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===========================
   SEO CONTENT SECTION
   =========================== */
.seo-content-section {
    background: var(--bg-darkest);
    padding: 3rem 2rem;
    border-top: 1px solid var(--glass-border);
}

.seo-content {
    max-width: 900px;
    margin: 0 auto;
}

.seo-content h2 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--cream);
    margin-bottom: 1rem;
}

.seo-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 0.8rem;
    opacity: 0.7;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    background: rgba(10, 5, 5, 0.8);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold), var(--cream));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.3rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: color var(--transition), transform var(--transition);
}

.footer-social:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
    width: 100%;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(245, 230, 211, 0.4);
}

/* ===========================
   PRODUCT MODAL
   =========================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 5000;
    background: rgba(10, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    padding: 2rem;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    max-width: 800px;
    width: 100%;
    padding: 3rem;
    position: relative;
    transform: scale(0.9) translateY(30px);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--text-secondary);
    transition: color var(--transition), transform var(--transition);
    cursor: none;
}

.modal-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

.modal-body {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.modal-image {
    flex: 0 0 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-product-img {
    max-height: 350px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    animation: productFloat 5s ease-in-out infinite;
}

.modal-product-name {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.modal-product-price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
}

.modal-product-desc {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

/* ===========================
   SCROLL REVEAL
   =========================== */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ===========================
   RESPONSIVE — 1024px (Tablets landscape)
   =========================== */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .about-grid {
        gap: 3rem;
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .contact-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }

    .hero-float-1 {
        width: 220px;
    }

    .hero-float-2 {
        width: 180px;
    }

    .hero-float-3 {
        width: 160px;
    }

    .section {
        padding: 6rem 2rem;
    }

    .modal-body {
        gap: 2rem;
    }

    .modal-image {
        flex: 0 0 220px;
    }
}

/* ===========================
   RESPONSIVE — 768px (Tablets / large phones)
   =========================== */
@media (max-width: 768px) {
    body {
        cursor: auto;
        padding: 0;
    }

    body.nav-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
    }

    .cursor-dot,
    .cursor-glow {
        display: none !important;
    }

    a,
    button {
        cursor: pointer;
    }

    /* Nav */
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        height: 100dvh;
        flex-direction: column;
        background: rgba(15, 15, 15, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 5rem 2rem;
        gap: 1.5rem;
        transition: right 0.4s ease;
        border-left: 1px solid var(--glass-border);
        z-index: 1001;
        overscroll-behavior: contain;
    }

    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 998;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .nav-overlay.active {
        display: block;
        opacity: 1;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .nav-toggle {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 1002;
    }

    #navbar {
        padding: 1rem 1.5rem;
    }

    #navbar.scrolled {
        padding: 0.6rem 1.5rem;
    }

    /* Hero */
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero-content {
        padding: 1.5rem;
        padding-bottom: 5rem;
    }

    .title-line {
        font-size: clamp(2.8rem, 10vw, 5rem);
    }

    .hero-tagline {
        font-size: clamp(1rem, 2.5vw, 1.3rem);
    }

    .hero-sub {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        margin-bottom: 1.5rem;
        letter-spacing: 0.2em;
    }

    .hero-buttons {
        gap: 0.8rem;
    }

    .btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
        min-height: 44px;
    }

    .btn-large {
        padding: 0.9rem 2.4rem;
        font-size: 1rem;
        min-height: 48px;
    }

    .btn-small {
        min-height: 44px;
    }

    .hero-float-img {
        opacity: 0.1;
    }

    .hero-float-1 {
        width: 160px;
        top: 5%;
        left: -5%;
    }

    .hero-float-2 {
        width: 130px;
        top: 10%;
        right: -2%;
    }

    .hero-float-3 {
        width: 120px;
        bottom: 15%;
        right: 5%;
    }

    /* Products */
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
        gap: 1.5rem;
    }

    .product-image-wrap {
        width: 180px;
        height: 250px;
    }

    .product-name {
        font-size: 1.25rem;
    }

    .product-price {
        font-size: 1.5rem;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-content .section-tag,
    .about-content .section-title {
        text-align: center;
    }

    .about-text p {
        text-align: center;
    }

    .about-stats {
        justify-content: center;
    }

    .about-image-stack {
        height: auto;
        display: flex;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .about-img {
        position: relative;
        width: 160px;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
    }

    /* Happy Customers */
    .happy-badges {
        gap: 1rem;
    }

    .happy-desc {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .happy-icon {
        font-size: 1.5rem;
    }

    /* FAQ */
    .faq-question {
        padding: 1.4rem 1.5rem;
        min-height: 48px;
    }

    /* Experience */
    .experience-section {
        min-height: 70vh;
        padding: 5rem 1.5rem;
    }

    .experience-line {
        font-size: clamp(1.8rem, 5vw, 3rem);
    }

    .experience-accent {
        font-size: clamp(2.2rem, 7vw, 4rem);
    }

    .experience-floating-cans {
        display: none;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
        gap: 1.5rem;
    }

    .contact-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .contact-card {
        padding: 2rem 1.5rem;
    }

    /* CTA */
    .cta-section {
        padding: 6rem 1.5rem;
    }

    .cta-title {
        font-size: clamp(1.6rem, 5vw, 2.5rem);
    }

    /* Modal */
    .modal-overlay {
        padding: 1rem;
    }

    .modal-content {
        padding: 2rem 1.5rem;
        max-height: 90vh;
        max-height: 90dvh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .modal-body {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .modal-image {
        flex: none;
    }

    .modal-product-img {
        max-height: 220px;
    }

    .modal-product-name {
        font-size: 1.5rem;
    }

    .modal-product-price {
        font-size: 2rem;
    }

    .modal-product-desc {
        font-size: 0.95rem;
    }

    /* Sections */
    .section {
        padding: 5rem 1.5rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: clamp(1.6rem, 5vw, 2.5rem);
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* Footer */
    .footer {
        padding: 2.5rem 1.5rem;
    }

    .footer-links {
        gap: 1.5rem;
    }

    .footer-social {
        font-size: 0.9rem;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    .contact-link {
        display: inline-block;
        min-height: 44px;
        line-height: 44px;
    }
}

/* ===========================
   RESPONSIVE — 480px (Small phones)
   =========================== */
@media (max-width: 480px) {

    /* Hero */
    .title-line {
        font-size: 2.8rem;
    }

    .title-accent {
        font-size: 2.8rem;
    }

    .hero-tagline {
        font-size: 0.95rem;
    }

    .hero-sub {
        font-size: 0.85rem;
    }

    .hero-content {
        padding: 1rem;
        padding-bottom: 4.5rem;
    }

    .hero-badge {
        font-size: 0.65rem;
        margin-bottom: 1.2rem;
    }

    .hero-float-img {
        display: none;
    }

    .hero-scroll-indicator span {
        font-size: 0.65rem;
    }

    .scroll-arrow {
        width: 16px;
        height: 16px;
    }

    .btn {
        padding: 0.75rem 1.6rem;
        font-size: 0.85rem;
    }

    .btn-large {
        padding: 0.85rem 2rem;
        font-size: 0.95rem;
    }

    .btn-small {
        padding: 0.5rem 1.2rem;
        font-size: 0.8rem;
    }

    /* Products */
    .products-grid {
        max-width: 320px;
    }

    .product-card-inner {
        padding: 1.5rem 1rem;
    }

    .product-image-wrap {
        width: 160px;
        height: 220px;
    }

    .product-name {
        font-size: 1.15rem;
    }

    .product-price {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .product-desc {
        font-size: 0.8rem;
    }

    /* About */
    .about-img {
        width: 130px;
    }

    .about-text p {
        font-size: 0.95rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 1.2rem;
        align-items: center;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    /* Happy Customers */
    .happy-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .happy-badge {
        padding: 0.6rem 1.2rem;
    }

    .happy-desc {
        font-size: 0.9rem;
    }

    .happy-floating-icons {
        display: none;
    }

    /* Experience */
    .experience-section {
        min-height: 50vh;
        padding: 4rem 1rem;
    }

    .experience-line {
        font-size: 1.6rem;
    }

    .experience-accent {
        font-size: 2rem;
    }

    /* Contact */
    .contact-grid {
        max-width: 320px;
    }

    .contact-card {
        padding: 1.5rem 1rem;
    }

    .contact-card h3 {
        font-size: 1.1rem;
    }

    .contact-card p {
        font-size: 0.85rem;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    /* CTA */
    .cta-section {
        padding: 5rem 1rem;
    }

    .cta-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .cta-glow {
        width: 250px;
        height: 250px;
    }

    /* Section defaults */
    .section {
        padding: 4rem 1rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .section-tag {
        font-size: 0.7rem;
        padding: 0.3rem 1rem;
    }

    /* Modal */
    .modal-content {
        padding: 1.5rem 1rem;
    }

    .modal-product-img {
        max-height: 180px;
    }

    .modal-product-name {
        font-size: 1.3rem;
    }

    .modal-product-price {
        font-size: 1.6rem;
    }

    .modal-product-desc {
        font-size: 0.9rem;
    }

    .modal-close {
        font-size: 1.5rem;
        top: 0.8rem;
        right: 1rem;
    }

    /* Footer */
    .footer {
        padding: 2rem 1rem;
    }

    .footer-logo {
        font-size: 1.5rem;
    }

    .footer-tagline {
        font-size: 0.8rem;
    }

    .footer-social {
        font-size: 0.8rem;
    }

    .footer-links {
        gap: 1rem;
    }

    .footer-bottom p {
        font-size: 0.7rem;
    }

    /* Nav */
    .nav-logo {
        font-size: 1.2rem;
    }

    #navbar {
        padding: 0.8rem 1rem;
    }

    #navbar.scrolled {
        padding: 0.5rem 1rem;
    }

    .nav-links {
        width: 100%;
        padding: 4rem 1.5rem;
    }
}

/* ===========================
   RESPONSIVE — 360px (Extra small phones)
   =========================== */
@media (max-width: 360px) {
    .title-line {
        font-size: 2.2rem;
    }

    .title-accent {
        font-size: 2.2rem;
    }

    .hero-tagline {
        font-size: 0.85rem;
    }

    .hero-content {
        padding-bottom: 4rem;
    }

    .products-grid {
        max-width: 280px;
    }

    .product-image-wrap {
        width: 140px;
        height: 200px;
    }

    .about-img {
        width: 110px;
    }

    .experience-line {
        font-size: 1.3rem;
    }

    .experience-accent {
        font-size: 1.6rem;
    }

    .section {
        padding: 3rem 0.75rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .contact-grid {
        max-width: 280px;
    }

    .cta-title {
        font-size: 1.3rem;
    }

    .modal-product-img {
        max-height: 150px;
    }
}