/* ========================================
   Happy Smoke & Vape — Custom Styles
   Terracotta + Sand Color Palette
   ======================================== */

/* CSS Custom Properties */
:root {
    --color-terracotta: #C0603A;
    --color-terracotta-dark: #A84E2C;
    --color-terracotta-light: #D4845E;
    --color-sand: #F5E6D3;
    --color-sand-light: #FBF5EE;
    --color-sand-dark: #E8D5BF;
    --color-cream: #FFF9F4;
    --color-charcoal: #1A1A1A;
    --color-dark: #2A2520;
    --color-text: #3D3530;
    --color-text-light: #7A6E66;
    --color-white: #FFFFFF;
    --color-accent-warm: #E8A87C;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    
    --shadow-sm: 0 2px 8px rgba(192, 96, 58, 0.08);
    --shadow-md: 0 8px 30px rgba(192, 96, 58, 0.12);
    --shadow-lg: 0 20px 60px rgba(192, 96, 58, 0.15);
    --shadow-xl: 0 30px 80px rgba(192, 96, 58, 0.18);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* 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;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-cream);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

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

/* ========================================
   Navigation
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 249, 244, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(192, 96, 58, 0.08);
    transition: all var(--transition-smooth);
}

.nav.scrolled {
    background: rgba(255, 249, 244, 0.95);
    box-shadow: var(--shadow-sm);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-charcoal);
}

.nav-logo-text {
    letter-spacing: -0.02em;
}

.nav-logo-accent {
    color: var(--color-terracotta);
    font-weight: 600;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text);
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-terracotta);
    border-radius: 2px;
    transition: width var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--color-terracotta);
    color: var(--color-white);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 15px rgba(192, 96, 58, 0.3);
}

.nav-cta:hover {
    background: var(--color-terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192, 96, 58, 0.4);
    color: var(--color-white);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle-bar {
    width: 24px;
    height: 2.5px;
    background: var(--color-charcoal);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    display: none;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-bg {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(4px);
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: var(--color-cream);
    padding: 100px 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transform: translateX(100%);
    transition: transform var(--transition-smooth);
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
}

.mobile-menu.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-link {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-charcoal);
    padding: 12px 0;
    border-bottom: 1px solid var(--color-sand-dark);
    transition: all var(--transition-fast);
}

.mobile-menu-link:hover {
    color: var(--color-terracotta);
    padding-left: 8px;
}

.mobile-menu-divider {
    height: 1px;
    background: var(--color-sand-dark);
    margin: 8px 0;
}

.mobile-menu-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-terracotta);
    margin-top: 8px;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--color-sand-light) 0%, var(--color-cream) 40%, var(--color-sand) 100%);
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(192, 96, 58, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(232, 168, 124, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Geometric shapes */
.hero-shape {
    position: absolute;
    pointer-events: none;
}

.hero-shape-1 {
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-terracotta) 0%, var(--color-terracotta-light) 100%);
    opacity: 0.06;
    top: -100px;
    right: -100px;
    animation: float-slow 20s ease-in-out infinite;
}

.hero-shape-2 {
    width: 200px;
    height: 200px;
    background: var(--color-sand-dark);
    opacity: 0.4;
    border-radius: 30px;
    transform: rotate(45deg);
    bottom: 15%;
    left: 5%;
    animation: float-medium 15s ease-in-out infinite;
}

.hero-shape-3 {
    width: 120px;
    height: 120px;
    border: 3px solid var(--color-terracotta);
    opacity: 0.12;
    border-radius: 20px;
    transform: rotate(30deg);
    top: 25%;
    left: 8%;
    animation: float-slow 18s ease-in-out infinite reverse;
}

.hero-shape-4 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--color-accent-warm);
    opacity: 0.15;
    bottom: 25%;
    right: 12%;
    animation: float-medium 12s ease-in-out infinite;
}

.hero-shape-5 {
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 104px solid var(--color-terracotta);
    opacity: 0.06;
    top: 40%;
    right: 5%;
    animation: float-slow 22s ease-in-out infinite;
}

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

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

.hero-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-white);
    border: 1px solid var(--color-sand-dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-light);
    margin-bottom: 32px;
    box-shadow: var(--shadow-sm);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-terracotta);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--color-charcoal);
    margin-bottom: 28px;
}

.hero-title-line {
    display: block;
}

.hero-title-accent {
    color: var(--color-terracotta);
}

.hero-title-underline svg {
    display: block;
    margin: 0 auto;
    margin-top: 8px;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-primary {
    background: var(--color-terracotta);
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(192, 96, 58, 0.35);
}

.btn-primary:hover {
    background: var(--color-terracotta-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(192, 96, 58, 0.45);
    color: var(--color-white);
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-charcoal);
    border: 2px solid var(--color-sand-dark);
}

.btn-secondary:hover {
    border-color: var(--color-terracotta);
    color: var(--color-terracotta);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--color-terracotta);
    border: 2px solid var(--color-terracotta);
}

.btn-outline:hover {
    background: var(--color-terracotta);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(192, 96, 58, 0.4);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.1rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-terracotta);
    letter-spacing: -0.02em;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: var(--color-text-light);
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-sand-dark);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--color-text-light);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: float-indicator 2s ease-in-out infinite;
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-terracotta), transparent);
}

@keyframes float-indicator {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ========================================
   Section Shared Styles
   ======================================== */
.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-terracotta);
    background: rgba(192, 96, 58, 0.08);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--color-charcoal);
    margin-bottom: 20px;
}

.section-title-accent {
    color: var(--color-terracotta);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 560px;
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

/* ========================================
   Products Section
   ======================================== */
.products {
    padding: 120px 0;
    position: relative;
    background: var(--color-white);
    overflow: hidden;
}

.products-bg-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-terracotta), var(--color-accent-warm), var(--color-terracotta-light), var(--color-accent-warm), var(--color-terracotta));
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 24px;
}

.product-card {
    position: relative;
    background: var(--color-cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-smooth);
    border: 1px solid rgba(192, 96, 58, 0.06);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.product-card--large {
    grid-column: span 7;
}

.product-card:not(.product-card--large) {
    grid-column: span 5;
}

.product-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-terracotta), var(--color-accent-warm));
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.product-card:hover .product-card-accent {
    opacity: 1;
}

.product-card-content {
    padding: 36px;
}

.product-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-terracotta), var(--color-terracotta-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(192, 96, 58, 0.25);
}

.product-card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.product-card-desc {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-card-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--color-text);
    font-weight: 500;
}

.product-card-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color-terracotta);
    border-radius: 50%;
    flex-shrink: 0;
}

.product-card-image {
    height: 220px;
    overflow: hidden;
}

.product-card--large .product-card-image {
    height: 100%;
    min-height: 300px;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.product-card:hover .product-card-image img {
    transform: scale(1.05);
}

/* Geo elements */
.geo-element {
    position: absolute;
    pointer-events: none;
    opacity: 0.6;
}

.geo-element-1 {
    top: 10%;
    right: -20px;
}

.geo-element-2 {
    bottom: 15%;
    left: -10px;
}

/* ========================================
   About Section
   ======================================== */
.about {
    padding: 120px 0;
    background: var(--color-cream);
    position: relative;
    overflow: hidden;
}

.about-container {
    position: relative;
}

.about-geometric {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.geo-circle {
    position: absolute;
    border-radius: 50%;
}

.geo-circle-1 {
    width: 500px;
    height: 500px;
    border: 2px solid var(--color-terracotta);
    opacity: 0.05;
    top: -200px;
    right: -150px;
}

.geo-circle-2 {
    width: 300px;
    height: 300px;
    background: var(--color-sand);
    opacity: 0.5;
    bottom: -100px;
    left: -80px;
}

.geo-square {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--color-terracotta);
    opacity: 0.04;
    border-radius: var(--radius-md);
    transform: rotate(45deg);
    top: 20%;
    left: 5%;
}

.geo-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 86px solid var(--color-accent-warm);
    opacity: 0.08;
    bottom: 30%;
    right: 8%;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-frame {
    position: absolute;
    inset: 0;
    border: 3px solid var(--color-terracotta);
    border-radius: var(--radius-lg);
    transform: translate(16px, 16px);
    z-index: -1;
    opacity: 0.3;
}

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--color-terracotta), var(--color-accent-warm));
    border-radius: var(--radius-lg);
    opacity: 0.15;
    z-index: -1;
}

.about-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-content {
    padding: 20px 0;
}

.about-text {
    font-size: 1.05rem;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.about-value {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about-value-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(192, 96, 58, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-value h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 4px;
}

.about-value p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ========================================
   Location Section
   ======================================== */
.location {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--color-charcoal) 0%, var(--color-dark) 100%);
    position: relative;
    overflow: hidden;
}

.location-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.location-shape {
    position: absolute;
    border-radius: 50%;
}

.location-shape-1 {
    width: 600px;
    height: 600px;
    background: var(--color-terracotta);
    opacity: 0.04;
    top: -200px;
    right: -200px;
}

.location-shape-2 {
    width: 300px;
    height: 300px;
    background: var(--color-accent-warm);
    opacity: 0.06;
    bottom: -100px;
    left: -80px;
}

.location-shape-3 {
    width: 150px;
    height: 150px;
    border: 2px solid var(--color-terracotta);
    opacity: 0.1;
    border-radius: 24px;
    transform: rotate(45deg);
    top: 30%;
    left: 10%;
}

.location-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.location .section-tag {
    background: rgba(192, 96, 58, 0.15);
}

.location .section-title {
    color: var(--color-white);
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.location-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.location-detail-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: rgba(192, 96, 58, 0.12);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-detail h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 4px;
}

.location-detail p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.location-detail a {
    color: var(--color-accent-warm);
    transition: color var(--transition-fast);
}

.location-detail a:hover {
    color: var(--color-terracotta-light);
}

.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.location-map iframe {
    filter: saturate(0.8) contrast(1.1);
}

/* Location Visual Cards */
.location-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.location-visual-card {
    position: relative;
    background: linear-gradient(135deg, var(--color-terracotta), var(--color-terracotta-dark));
    border-radius: var(--radius-lg);
    padding: 36px;
    overflow: hidden;
}

.location-visual-card--secondary {
    background: linear-gradient(135deg, var(--color-sand-dark), var(--color-sand));
}

.location-visual-card--secondary .location-visual-content h3 {
    color: var(--color-charcoal);
}

.location-visual-card--secondary .location-visual-content p {
    color: var(--color-text);
}

.location-visual-card-accent {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.location-visual-content {
    position: relative;
    z-index: 1;
}

.location-visual-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.location-visual-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 10px;
}

.location-visual-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

.location-geometric {
    position: absolute;
    bottom: -40px;
    right: -40px;
    pointer-events: none;
}

.loc-geo-circle {
    width: 200px;
    height: 200px;
    border: 2px solid rgba(192, 96, 58, 0.2);
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: 0;
}

.loc-geo-dots {
    display: grid;
    grid-template-columns: repeat(5, 8px);
    gap: 8px;
    position: absolute;
    bottom: 20px;
    left: -30px;
    opacity: 0.3;
}

.loc-geo-dots span {
    width: 4px;
    height: 4px;
    background: var(--color-terracotta);
    border-radius: 50%;
}

/* ========================================
   CTA Section
   ======================================== */
.cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--color-terracotta) 0%, var(--color-terracotta-dark) 50%, #8B4525 100%);
    position: relative;
    overflow: hidden;
}

.cta-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
}

.cta-shape-1 {
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.03);
    top: -200px;
    left: -150px;
}

.cta-shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.04);
    bottom: -100px;
    right: -80px;
}

.cta-shape-3 {
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transform: rotate(45deg);
    top: 20%;
    right: 15%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 28px;
}

.cta-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-accent-warm);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--color-white);
    margin-bottom: 24px;
}

.cta-title-accent {
    color: var(--color-sand);
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 540px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background: var(--color-white);
    color: var(--color-terracotta);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta .btn-primary:hover {
    background: var(--color-sand);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    color: var(--color-terracotta-dark);
}

.cta .btn-outline {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--color-white);
}

.cta .btn-outline:hover {
    background: var(--color-white);
    color: var(--color-terracotta);
    border-color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--color-charcoal);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(192, 96, 58, 0.06) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(232, 168, 124, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 60px;
    padding-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-white);
    margin-bottom: 16px;
}

.footer-logo-text {
    letter-spacing: -0.02em;
}

.footer-logo span {
    color: var(--color-accent-warm);
}

.footer-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent-warm);
    margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-white);
    padding-left: 6px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.footer-contact a {
    color: var(--color-accent-warm);
    transition: color var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--color-terracotta-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-age-notice {
    font-size: 0.8rem !important;
    color: rgba(255, 255, 255, 0.25) !important;
}

/* ========================================
   Animations
   ======================================== */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

[data-animate][data-delay="100"] { transition-delay: 0.1s; }
[data-animate][data-delay="150"] { transition-delay: 0.15s; }
[data-animate][data-delay="200"] { transition-delay: 0.2s; }
[data-animate][data-delay="300"] { transition-delay: 0.3s; }

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .product-card--large {
        grid-column: span 2;
    }
    
    .about-grid {
        gap: 50px;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 20px 60px;
    }
    
    .hero-shape-1 {
        width: 280px;
        height: 280px;
    }
    
    .hero-shape-2 {
        width: 120px;
        height: 120px;
    }
    
    .hero-shape-3,
    .hero-shape-4,
    .hero-shape-5 {
        display: none;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .hero-stat-number {
        font-size: 1.4rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card--large,
    .product-card:not(.product-card--large) {
        grid-column: span 1;
    }
    
    .product-card-image {
        height: 200px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image-wrapper img {
        height: 350px;
    }
    
    .about-values {
        gap: 20px;
    }
    
    .location {
        padding: 80px 0;
    }
    
    .cta {
        padding: 80px 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 90px 16px 50px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .products {
        padding: 80px 0;
    }
    
    .product-card-content {
        padding: 24px;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 6vw, 2.4rem);
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .location-visual-card {
        padding: 24px;
    }
}
