/* ============================================
   A2Z Tobacco and Vape — Custom Stylesheet
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --plum-deep: #3D1A4B;
    --plum-dark: #5B2C6F;
    --plum-mid: #7D3C99;
    --plum-light: #A569BD;
    --plum-pale: #D7BDE2;
    --plum-ghost: #F4ECF7;
    
    --amber-deep: #B7950B;
    --amber-dark: #D4AC0D;
    --amber-mid: #F5C518;
    --amber-light: #F9E79A;
    --amber-pale: #FCF3CF;
    
    --cream: #FDF8F0;
    --cream-dark: #F5EDE0;
    --warm-gray: #6B5B4E;
    --warm-gray-light: #9C8778;
    --text-dark: #1A0E20;
    --text-mid: #3D2B44;
    --text-light: #6B5B6E;
    --white: #FFFFFF;
    
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Lato', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
    --shadow-sm: 0 1px 3px rgba(61, 26, 75, 0.08);
    --shadow-md: 0 4px 20px rgba(61, 26, 75, 0.10);
    --shadow-lg: 0 8px 40px rgba(61, 26, 75, 0.14);
    --shadow-xl: 0 16px 60px rgba(61, 26, 75, 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-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--plum-dark);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 10000;
    font-size: 0.875rem;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: 16px;
}

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

/* --- Preloader --- */
.preloader {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, var(--plum-deep) 0%, var(--plum-dark) 50%, #2D1037 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    display: flex;
    gap: 8px;
    align-items: center;
}

.preloader-letter {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--amber-mid);
    opacity: 0;
    animation: preloaderLetter 0.6s ease forwards;
}

.preloader-letter:nth-child(1) { animation-delay: 0.1s; }
.preloader-letter:nth-child(2) { animation-delay: 0.25s; }
.preloader-letter:nth-child(3) { animation-delay: 0.4s; }

@keyframes preloaderLetter {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* --- Background Pattern --- */
.bg-pattern {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.015;
    background-image: 
        radial-gradient(circle at 20% 30%, var(--plum-mid) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, var(--plum-mid) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, var(--amber-dark) 1px, transparent 1px);
    background-size: 60px 60px, 80px 80px, 100px 100px;
}

.page-wrapper {
    position: relative;
    z-index: 1;
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(253, 248, 240, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(61, 26, 75, 0.08), var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* --- Logo --- */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    z-index: 1001;
}

.logo-mark {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--amber-mid);
    letter-spacing: 0.05em;
    transition: color var(--transition-fast);
}

.header.scrolled .logo-mark {
    color: var(--amber-dark);
}

.logo-divider {
    width: 1px;
    height: 24px;
    background: var(--plum-light);
    opacity: 0.5;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--plum-light);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color var(--transition-fast);
}

.header.scrolled .logo-text {
    color: var(--plum-dark);
}

/* --- Navigation --- */
.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--plum-light);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    letter-spacing: 0.02em;
}

.nav-link:hover,
.nav-link.active {
    color: var(--plum-dark);
    background: var(--plum-ghost);
}

.header:not(.scrolled) .nav-link {
    color: rgba(255, 255, 255, 0.85);
}

.header:not(.scrolled) .nav-link:hover,
.header:not(.scrolled) .nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
}

.nav-link--cta {
    background: var(--amber-mid);
    color: var(--plum-deep) !important;
    font-weight: 600;
    margin-left: 8px;
}

.nav-link--cta:hover {
    background: var(--amber-dark);
    color: var(--plum-deep) !important;
    transform: translateY(-1px);
}

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

.menu-toggle-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--plum-light);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}

.header.scrolled .menu-toggle-line {
    background: var(--plum-dark);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(91, 44, 111, 0.85) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 20% 60%, rgba(125, 60, 153, 0.6) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 30%, rgba(183, 149, 11) 0.25, transparent 50%),
        radial-gradient(ellipse 70% 60% at 60% 80%, rgba(61, 26, 75, 0.9) 0%, transparent 60%),
        linear-gradient(160deg, #1A0A22 0%, #3D1A4B 30%, #5B2C6F 55%, #7D3C99 75%, #2D1037 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: 
        linear-gradient(30deg, var(--amber-mid) 12%, transparent 12.5%, transparent 87%, var(--amber-mid) 87.5%, var(--amber-mid)),
        linear-gradient(150deg, var(--amber-mid) 12%, transparent 12.5%, transparent 87%, var(--amber-mid) 87.5%, var(--amber-mid)),
        linear-gradient(30deg, var(--amber-mid) 12%, transparent 12.5%, transparent 87%, var(--amber-mid) 87.5%, var(--amber-mid)),
        linear-gradient(150deg, var(--amber-mid) 12%, transparent 12.5%, transparent 87%, var(--amber-mid) 87.5%, var(--amber-mid));
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 820px;
    padding: 120px 24px 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber-mid);
    background: rgba(245, 197, 24, 0.1);
    border: 1px solid rgba(245, 197, 24, 0.25);
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.hero-headline em {
    font-style: italic;
    color: var(--amber-mid);
}

.hero-subheadline {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 300;
}

.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-size: 0.9rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    transition: all var(--transition-fast);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.btn--primary {
    background: var(--amber-mid);
    color: var(--plum-deep);
    box-shadow: 0 4px 20px rgba(245, 197, 24, 0.3);
}

.btn--primary:hover {
    background: var(--amber-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(245, 197, 24, 0.4);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

.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-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--amber-mid);
    line-height: 1.2;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* --- Section Shared --- */
.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--plum-light);
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.title-underline {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--amber-mid), var(--plum-light));
    border-radius: 3px;
    margin-bottom: 24px;
}

.title-underline--centered {
    margin-left: auto;
    margin-right: auto;
}

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

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

/* --- About --- */
.about {
    padding: 120px 0;
    background: var(--cream);
}

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

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4/5;
}

.about-accent {
    position: absolute;
    bottom: -16px;
    right: -16px;
    color: var(--plum-light);
    opacity: 0.3;
}

.about-content-col {
    padding: 16px 0;
}

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

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

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

.about-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--plum-ghost);
    border-radius: var(--radius-sm);
    color: var(--plum-dark);
}

.about-feature-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

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

/* --- Products --- */
.products {
    padding: 120px 0;
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 64px;
}

.product-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    border: 1px solid rgba(61, 26, 75, 0.06);
}

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

.product-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

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

.product-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--amber-mid);
    color: var(--plum-deep);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
}

.product-card-body {
    padding: 28px;
}

.product-card-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

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

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

.product-card-list li {
    font-size: 0.85rem;
    color: var(--text-mid);
    padding-left: 20px;
    position: relative;
}

.product-card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--plum-light);
    border-radius: 50%;
    opacity: 0.6;
}

/* --- Why Us --- */
.why-us {
    padding: 120px 0;
    background: linear-gradient(160deg, var(--plum-deep) 0%, var(--plum-dark) 60%, #2D1037 100%);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: 
        radial-gradient(circle at 30% 20%, var(--amber-mid) 1px, transparent 1px),
        radial-gradient(circle at 70% 80%, var(--amber-mid) 1px, transparent 1px);
    background-size: 40px 40px, 60px 60px;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.why-us .section-label {
    color: var(--amber-mid);
}

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

.why-us .title-underline {
    background: linear-gradient(90deg, var(--amber-mid), var(--plum-light));
}

.why-us-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 40px;
}

.why-us-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.why-us-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.why-us-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--amber-mid);
    opacity: 0.35;
    line-height: 1;
    flex-shrink: 0;
    width: 40px;
}

.why-us-item-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
}

.why-us-item-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.why-us-visual {
    position: relative;
}

.why-us-image-stack {
    position: relative;
}

.why-us-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.why-us-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.why-us-image--1 {
    aspect-ratio: 5/6;
    margin-bottom: 24px;
}

.why-us-image--2 {
    aspect-ratio: 5/4;
    margin-left: 32px;
}

.why-us-quote {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--white);
    padding: 24px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    max-width: 280px;
    z-index: 2;
}

.why-us-quote svg {
    color: var(--plum-light);
    margin-bottom: 12px;
}

.why-us-quote p {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-mid);
    line-height: 1.6;
    margin-bottom: 10px;
}

.why-us-quote-attr {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* --- Location --- */
.location {
    padding: 120px 0;
    background: var(--cream);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 64px;
    align-items: stretch;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.location-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 28px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(61, 26, 75, 0.06);
    transition: all var(--transition-fast);
}

.location-card:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
    transform: translateY(-2px);
}

.location-card-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--plum-dark), var(--plum-mid));
    border-radius: var(--radius-sm);
    color: var(--white);
}

.location-card-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.location-card-text {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    white-space: pre-line;
}

.location-card-text a {
    color: var(--plum-dark);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.location-card-text a:hover {
    color: var(--plum-mid);
}

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

/* --- Contact --- */
.contact {
    padding: 120px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 20px 24px;
    background: var(--cream);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.contact-method:hover {
    background: var(--plum-ghost);
    transform: translateX(4px);
}

.contact-method-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-sm);
    color: var(--plum-dark);
    box-shadow: var(--shadow-sm);
}

.contact-method-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: 2px;
}

.contact-method-value {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* --- Contact Form --- */
.contact-form-wrapper {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid rgba(61, 26, 75, 0.06);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-mid);
}

.form-optional {
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: var(--text-light);
    font-size: 0.75rem;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    background: var(--white);
    border: 1.5px solid rgba(61, 26, 75, 0.1);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: all var(--transition-fast);
    outline: none;
}

.form-input::placeholder {
    color: var(--warm-gray-light);
}

.form-input:focus {
    border-color: var(--plum-light);
    box-shadow: 0 0 0 3px rgba(125, 60, 153, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: #27ae60;
}

.form-success-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-success-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* --- Footer --- */
.footer {
    background: var(--plum-deep);
    padding: 80px 0 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo-mark {
    color: var(--amber-mid);
}

.footer-brand .logo-text {
    color: rgba(255, 255, 255, 0.6);
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 300px;
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav-list a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    transition: all var(--transition-fast);
}

.footer-nav-list a:hover {
    color: var(--amber-mid);
    padding-left: 4px;
}

.footer-address {
    font-style: normal;
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
}

.footer-phone a {
    color: var(--amber-mid);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.footer-phone a:hover {
    color: var(--amber-light);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 28px 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

/* --- Reveal Animations --- */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* --- Responsive --- */
@media (max-width: 1024px) {
    .about-grid,
    .why-us-grid,
    .contact-grid {
        gap: 48px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-us-image--2 {
        margin-left: 20px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        inset: 0;
        background: rgba(253, 248, 240, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
        z-index: 1000;
    }
    
    .nav.open {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 8px;
    }
    
    .nav-link {
        font-size: 1.1rem;
        color: var(--plum-dark) !important;
        padding: 12px 24px;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: var(--plum-ghost);
        color: var(--plum-dark) !important;
    }
    
    .nav-link--cta {
        margin-left: 0;
        margin-top: 16px;
    }
    
    .header-inner {
        height: 70px;
    }
    
    .hero-content {
        padding: 100px 20px 60px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .hero-stat-divider {
        display: none;
    }
    
    .about {
        padding: 80px 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .products {
        padding: 80px 0;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-us {
        padding: 80px 0;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .why-us-quote {
        position: relative;
        bottom: auto;
        left: auto;
        max-width: 100%;
        margin-top: 16px;
    }
    
    .why-us-image-stack {
        max-width: 400px;
    }
    
    .location {
        padding: 80px 0;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .location-map {
        min-height: 300px;
    }
    
    .contact {
        padding: 80px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-wrapper {
        padding: 28px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-headline {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}
