/* ============================================
   Unique Bakery — Styles
   Color Palette: Burgundy + Blush
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --color-burgundy: #781F37;
    --color-burgundy-dark: #5A1528;
    --color-burgundy-light: #9E2A47;
    --color-blush: #F5E6D3;
    --color-blush-light: #FBF5EE;
    --color-blush-dark: #E8D0B8;
    --color-cream: #FDF8F3;
    --color-warm-white: #FEFAF7;
    --color-text: #2A1F1F;
    --color-text-light: #6B5555;
    --color-text-muted: #9E8888;
    --color-line: rgba(120, 31, 55, 0.12);
    --color-line-strong: rgba(120, 31, 55, 0.25);
    
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Manrope', -apple-system, sans-serif;
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

/* --- Utility --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 248, 243, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-line);
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(253, 248, 243, 0.95);
    box-shadow: 0 1px 20px rgba(120, 31, 55, 0.06);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo-mark {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-burgundy);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--color-burgundy);
    border-radius: 50%;
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--color-text);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-light);
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-burgundy);
    transition: var(--transition);
}

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

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

.nav-cta {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-burgundy);
    border: 1px solid var(--color-burgundy);
    padding: 10px 22px;
    border-radius: 100px;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--color-burgundy);
    color: var(--color-cream);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--color-text);
    transition: var(--transition);
    transform-origin: center;
}

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

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

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

/* --- Hero --- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px var(--space-lg) var(--space-2xl);
    position: relative;
    overflow: hidden;
    background: var(--color-cream);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(245, 230, 211, 0.6) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(120, 31, 55, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    padding-right: var(--space-lg);
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-burgundy);
    margin-bottom: var(--space-lg);
}

.tag-line {
    width: 40px;
    height: 1px;
    background: var(--color-burgundy);
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    line-height: 1.25;
    color: var(--color-text);
    margin-bottom: var(--space-md);
    letter-spacing: -0.01em;
}

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

.hero-sub {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 16px 32px;
    border-radius: 100px;
    transition: var(--transition);
    cursor: pointer;
    border: 1.5px solid transparent;
}

.btn-primary {
    background: var(--color-burgundy);
    color: var(--color-cream);
    border-color: var(--color-burgundy);
}

.btn-primary:hover {
    background: var(--color-burgundy-dark);
    border-color: var(--color-burgundy-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(120, 31, 55, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border-color: var(--color-line-strong);
}

.btn-outline:hover {
    border-color: var(--color-burgundy);
    color: var(--color-burgundy);
}

.btn-full {
    width: 100%;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 600px;
}

.hero-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: absolute;
    box-shadow: 0 20px 60px rgba(120, 31, 55, 0.1);
}

.hero-card--main {
    width: 340px;
    height: 440px;
    top: 20px;
    right: 0;
}

.hero-card--main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-card-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-style: italic;
    color: var(--color-cream);
    background: rgba(120, 31, 55, 0.7);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 100px;
}

/* Stat Cards */
.hero-stat-card {
    position: absolute;
    background: var(--color-warm-white);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    padding: 18px 22px;
    box-shadow: 0 8px 32px rgba(120, 31, 55, 0.08);
    z-index: 2;
}

.stat-card--1 {
    bottom: 80px;
    left: -20px;
}

.stat-card--2 {
    top: 0;
    left: 20px;
}

.stat-card--3 {
    bottom: 10px;
    right: -10px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--color-burgundy);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 1;
}

.hero-scroll span {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-burgundy), 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); }
}

/* --- Divider --- */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.divider-line {
    flex: 1;
    height: 1px;
    background: var(--color-line);
}

.divider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-burgundy);
    margin: 0 var(--space-sm);
    opacity: 0.5;
}

/* --- Section Label --- */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-burgundy);
    margin-bottom: var(--space-md);
}

.label-line {
    width: 32px;
    height: 1px;
    background: var(--color-burgundy);
}

/* --- Section Heading --- */
.section-heading {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 300;
    line-height: 1.3;
    color: var(--color-text);
    letter-spacing: -0.01em;
}

/* --- About Section --- */
.about {
    padding: var(--space-3xl) 0;
    background: var(--color-warm-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-2xl);
    align-items: center;
}

.about-image-col img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.about-content {
    padding: var(--space-md) 0;
}

.about-text {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

.about-values {
    margin-top: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.value-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.value-number {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--color-burgundy);
    opacity: 0.6;
    min-width: 28px;
}

.value-text {
    font-size: 0.95rem;
    color: var(--color-text);
    font-weight: 400;
}

/* --- Offerings Section --- */
.offerings {
    padding: var(--space-3xl) 0;
    background: var(--color-cream);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-2xl);
}

.section-header .section-label {
    justify-content: center;
}

.section-header .section-heading {
    margin-bottom: var(--space-sm);
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.offering-card {
    background: var(--color-warm-white);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.offering-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(120, 31, 55, 0.1);
    border-color: var(--color-line-strong);
}

.offering-image {
    overflow: hidden;
    aspect-ratio: 5/4;
}

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

.offering-card:hover .offering-image img {
    transform: scale(1.04);
}

.offering-info {
    padding: var(--space-md);
}

.offering-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 8px;
}

.offering-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

/* --- Philosophy Section --- */
.philosophy {
    padding: var(--space-3xl) 0;
    background: var(--color-burgundy);
    color: var(--color-cream);
}

.philosophy .section-label {
    color: var(--color-blush);
}

.philosophy .label-line {
    background: var(--color-blush);
}

.philosophy .section-heading {
    color: var(--color-cream);
}

.philosophy-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: var(--space-2xl);
    align-items: center;
}

.philosophy-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.philosophy-image img {
    width: 100%;
    height: 700px;
    object-fit: cover;
}

.philosophy-content {
    padding: var(--space-md) 0;
}

.philosophy-items {
    margin-top: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.philosophy-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.philosophy-item-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    color: var(--color-blush);
    opacity: 0.5;
    line-height: 1;
    padding-top: 4px;
}

.philosophy-item-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--color-cream);
    margin-bottom: 6px;
}

.philosophy-item-text {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(245, 230, 211, 0.7);
}

/* --- Visit Section --- */
.visit {
    padding: var(--space-3xl) 0;
    background: var(--color-warm-white);
}

.visit-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.visit-info {
    padding: var(--space-md) 0;
}

.contact-details {
    margin: var(--space-xl) 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.contact-icon {
    width: 44px;
    height: 44px;
    border: 1px solid var(--color-line);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-burgundy);
    flex-shrink: 0;
}

.contact-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.contact-value {
    display: block;
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.6;
}

.contact-value:hover {
    color: var(--color-burgundy);
}

.hours {
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-line);
}

.hours-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
}

.hours-grid span {
    font-size: 0.88rem;
    color: var(--color-text-light);
}

.hours-grid span:nth-child(odd) {
    font-weight: 500;
    color: var(--color-text);
}

/* --- Form --- */
.form-card {
    background: var(--color-cream);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

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

.form-subtitle {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--color-text);
    background: var(--color-warm-white);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-sm);
    outline: none;
    transition: var(--transition);
}

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

.form-input:focus {
    border-color: var(--color-burgundy);
    box-shadow: 0 0 0 3px rgba(120, 31, 55, 0.08);
}

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

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-xl) var(--space-md);
    gap: 12px;
}

.form-success.show {
    display: flex;
}

.success-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-burgundy);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-cream);
}

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

/* --- Footer --- */
.footer {
    background: var(--color-text);
    color: var(--color-blush);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(245, 230, 211, 0.1);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-mark {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-blush);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--color-blush);
    border-radius: 50%;
    opacity: 0.8;
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--color-blush);
}

.footer-links {
    display: flex;
    gap: var(--space-lg);
}

.footer-links a {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(245, 230, 211, 0.5);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-blush);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(245, 230, 211, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(245, 230, 211, 0.6);
    transition: var(--transition);
}

.footer-social a:hover {
    border-color: var(--color-blush);
    color: var(--color-blush);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(245, 230, 211, 0.35);
}

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(253, 248, 243, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    color: var(--color-text);
    transition: var(--transition);
}

.mobile-link:hover {
    color: var(--color-burgundy);
}

.mobile-contact {
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-line);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-contact p,
.mobile-contact a {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.mobile-contact a:hover {
    color: var(--color-burgundy);
}

/* --- Animations --- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .hero-content {
        padding-right: 0;
        text-align: center;
    }
    
    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-visual {
        height: 450px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .about-image-col img {
        height: 400px;
    }
    
    .philosophy-layout {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .philosophy-image img {
        height: 400px;
    }
    
    .visit-layout {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}

@media (max-width: 768px) {
    :root {
        --space-lg: 1.25rem;
        --space-xl: 2.5rem;
        --space-2xl: 4rem;
        --space-3xl: 5rem;
    }
    
    .nav-links,
    .nav-cta {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: var(--space-2xl);
    }
    
    .hero-visual {
        height: 380px;
    }
    
    .hero-card--main {
        width: 260px;
        height: 340px;
    }
    
    .hero-stat-card {
        padding: 14px 16px;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .offerings-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-scroll {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-visual {
        height: 320px;
    }
    
    .hero-card--main {
        width: 220px;
        height: 280px;
    }
    
    .hero-stat-card {
        padding: 12px 14px;
    }
    
    .stat-number {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
    
    .form-card {
        padding: var(--space-md);
    }
}
