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

:root {
    --plum-900: #2a1118;
    --plum-800: #5a2635;
    --plum-700: #6e2c40;
    --plum-600: #8a3850;
    --plum-500: #a64b66;
    --plum-100: #f5e6eb;
    --plum-50: #faf4f6;
    --amber-500: #f59e0b;
    --amber-400: #fbbf24;
    --amber-300: #fde68a;
    --amber-200: #fef3c7;
    --amber-100: #fffbeb;
    --cream: #fdf8f4;
    --cream-dark: #f7efe8;
    --text-primary: #1a0a0e;
    --text-secondary: #5c3a44;
    --text-muted: #8a6070;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background-color: var(--cream);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

/* ── Layout ─────────────────────────────────────────────── */
.layout {
    display: flex;
    min-height: 100vh;
}

.main-content {
    flex: 1;
    margin-left: 260px;
    min-width: 0;
}

/* ── Side Navigation ────────────────────────────────────── */
.side-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 260px;
    height: 100vh;
    background: var(--plum-900);
    color: var(--plum-100);
    display: flex;
    flex-direction: column;
    padding: 2.5rem 1.75rem;
    z-index: 100;
    overflow-y: auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.nav-brand-icon {
    color: var(--amber-400);
    flex-shrink: 0;
}

.nav-brand-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #fff;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.625rem 0.875rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--plum-200);
    transition: all 0.3s var(--ease-out-expo);
    position: relative;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.nav-link.active {
    background: rgba(251, 191, 36, 0.12);
    color: var(--amber-400);
}

.nav-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 28px;
    background: var(--amber-400);
    border-radius: 0 4px 4px 0;
}

.nav-link-num {
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--plum-400);
    min-width: 20px;
    transition: color 0.3s ease;
}

.nav-link.active .nav-link-num,
.nav-link:hover .nav-link-num {
    color: var(--amber-400);
}

.nav-footer {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-footer-text {
    font-size: 0.75rem;
    color: var(--plum-400);
    margin-bottom: 0.75rem;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--plum-300);
    transition: color 0.3s ease;
}

.nav-phone:hover {
    color: var(--amber-400);
}

/* ── Mobile Toggle ──────────────────────────────────────── */
.mobile-toggle {
    display: none;
    position: fixed;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 200;
    width: 44px;
    height: 44px;
    background: var(--plum-900);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(42, 17, 24, 0.4);
}

.mobile-toggle-line {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--amber-400);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out-expo);
    transform-origin: center;
}

.mobile-toggle.open .mobile-toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.open .mobile-toggle-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-toggle.open .mobile-toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile Nav Overlay ─────────────────────────────────── */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 150;
    background: rgba(42, 17, 24, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.open {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.mobile-nav-inner {
    background: var(--plum-900);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: calc(100% - 3rem);
    max-width: 320px;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s var(--ease-out-expo);
}

.mobile-nav-overlay.open .mobile-nav-inner {
    transform: scale(1) translateY(0);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1rem;
    border-radius: 10px;
    font-size: 1rem;
    color: var(--plum-200);
    transition: all 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: rgba(251, 191, 36, 0.1);
    color: var(--amber-400);
}

/* ── Section Base ───────────────────────────────────────── */
.section {
    padding: 6rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--plum-600);
    margin-bottom: 1.5rem;
}

.section-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--amber-500);
}

.section-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.section-heading-light {
    color: #fff;
}

.text-accent {
    color: var(--amber-600);
    font-style: italic;
}

.body-lg {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.body {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-secondary);
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
    white-space: nowrap;
}

.btn-primary {
    background: var(--amber-500);
    color: var(--plum-900);
}

.btn-primary:hover {
    background: var(--amber-400);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.35);
}

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--plum-200);
}

.btn-ghost:hover {
    border-color: var(--plum-500);
    color: var(--plum-700);
    transform: translateY(-2px);
}

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

/* ── Hero Section ───────────────────────────────────────── */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    gap: 4rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    color: var(--plum-700);
    pointer-events: none;
    opacity: 0.5;
}

.hero-content {
    flex: 1;
    max-width: 560px;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--plum-600);
    margin-bottom: 2rem;
    padding: 0.5rem 1rem;
    background: var(--plum-50);
    border-radius: 50px;
    border: 1px solid var(--plum-100);
}

.hero-eyebrow-line {
    width: 8px;
    height: 8px;
    background: var(--amber-500);
    border-radius: 50%;
    flex-shrink: 0;
}

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.75rem, 5.5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.75rem;
}

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

.hero-title-accent {
    color: var(--amber-600);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 480px;
}

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

.hero-image {
    flex-shrink: 0;
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(42, 17, 24, 0.2);
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.hero-image-accent {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    pointer-events: none;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(42, 17, 24, 0.06);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero-stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--plum-700);
}

.hero-stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: var(--plum-100);
    flex-shrink: 0;
}

/* ── About Section ──────────────────────────────────────── */
.about-section {
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

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

.about-image-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(42, 17, 24, 0.12);
}

.about-image-main img {
    width: 100%;
    height: auto;
    aspect-ratio: 5/6.5;
    object-fit: cover;
}

.about-image-small {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(42, 17, 24, 0.15);
    border: 4px solid var(--cream);
}

.about-image-small img {
    width: 100%;
    height: auto;
    aspect-ratio: 6/5;
    object-fit: cover;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.value-item {
    display: flex;
    gap: 1.25rem;
    align-items: start;
}

.value-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: var(--plum-50);
    border: 1px solid var(--plum-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum-600);
}

.value-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.value-desc {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ── Products Section ───────────────────────────────────── */
.products-section {
    background: var(--plum-900);
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.products-section > * {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 3rem;
    padding-right: 3rem;
}

.products-section .section-label {
    color: var(--plum-300);
}

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

.product-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s var(--ease-out-expo);
}

.product-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

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

.product-card-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.375rem 0.75rem;
    background: var(--amber-500);
    color: var(--plum-900);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 50px;
}

.product-card-body {
    padding: 1.5rem;
}

.product-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.product-card-desc {
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--plum-300);
}

/* ── Gallery Section ────────────────────────────────────── */
.gallery-section {
    background: var(--cream-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 1.25rem;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(42, 17, 24, 0.2), transparent 40%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

.gallery-item:hover img {
    transform: scale(1.03);
}

.gallery-item--large {
    grid-column: span 7;
    aspect-ratio: 7/5;
}

.gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
    aspect-ratio: 4/3;
}

.gallery-item--wide {
    grid-column: span 5;
    aspect-ratio: 5/3;
}

/* ── Location Section ───────────────────────────────────── */
.location-section {
    background: var(--plum-900);
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.location-section > * {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 3rem;
    padding-right: 3rem;
}

.location-section .section-label {
    color: var(--plum-300);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.5rem;
}

.location-detail {
    display: flex;
    gap: 1.25rem;
    align-items: start;
}

.location-detail-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber-400);
}

.location-detail-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--plum-400);
    margin-bottom: 0.25rem;
}

.location-detail-value {
    font-size: 1rem;
    color: #fff;
    line-height: 1.6;
}

.location-detail-link {
    font-size: 1rem;
    color: var(--amber-400);
    transition: color 0.2s ease;
}

.location-detail-link:hover {
    color: var(--amber-300);
    text-decoration: underline;
}

.location-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    min-height: 450px;
}

/* ── Contact Section ────────────────────────────────────── */
.contact-section {
    background: var(--cream);
}

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

.contact-quick-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--plum-100);
}

.contact-quick-item {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.contact-quick-item:hover {
    color: var(--plum-600);
}

.contact-quick-item svg {
    color: var(--amber-600);
    flex-shrink: 0;
}

/* ── Contact Form ───────────────────────────────────────── */
.contact-form-wrapper {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 40px rgba(42, 17, 24, 0.06);
    border: 1px solid var(--plum-100);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1.5px solid var(--plum-200);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: var(--text-primary);
    background: var(--plum-50);
    transition: all 0.2s ease;
    outline: none;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--plum-500);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(166, 75, 102, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

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

.form-success {
    text-align: center;
    padding: 2rem;
}

.form-success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    background: var(--amber-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber-700);
}

.form-success-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

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

/* ── Footer ─────────────────────────────────────────────── */
.footer {
    background: var(--plum-900);
    color: var(--plum-300);
    padding: 2.5rem 3rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.footer-logo {
    color: var(--amber-400);
}

.footer-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
}

.footer-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
}

.footer-info {
    text-align: right;
}

.footer-address {
    font-size: 0.8125rem;
    color: var(--plum-400);
    margin-bottom: 0.25rem;
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--plum-500);
}

/* ── Scroll Animations ──────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
    .side-nav {
        width: 220px;
    }

    .main-content {
        margin-left: 220px;
    }

    .hero-section {
        gap: 2.5rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .side-nav {
        transform: translateX(-100%);
    }

    .side-nav.open {
        transform: translateX(0);
    }

    .mobile-toggle {
        display: flex;
    }

    .main-content {
        margin-left: 0;
    }

    .section {
        padding: 4rem 1.5rem;
    }

    .hero-section {
        flex-direction: column;
        text-align: center;
        padding-top: 6rem;
        min-height: auto;
        gap: 3rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image-small {
        right: 0;
        bottom: -1.5rem;
    }

    .products-section > *,
    .location-section > * {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item--large,
    .gallery-item--wide {
        grid-column: span 12;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item--large,
    .gallery-item--wide {
        aspect-ratio: 4/3;
    }

    .location-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .location-map {
        min-height: 300px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-divider {
        display: none;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }
}
