/* ============================================
   The Corner Bakery Cafe — Stylesheet
   Charcoal + Coral · Editorial Design
   ============================================ */

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

:root {
    --charcoal: #1a1a1a;
    --charcoal-light: #2d2d2d;
    --charcoal-mid: #3a3a3a;
    --coral: #E8645A;
    --coral-dark: #C44D43;
    --coral-light: #F4846A;
    --cream: #FAF7F4;
    --cream-dark: #F0EBE5;
    --warm-gray: #8A8580;
    --warm-gray-light: #B5B0AA;
    --white: #FFFFFF;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ease-out: 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;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

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

/* ---------- Typography ---------- */
.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--coral);
    display: inline-block;
}

.section-heading {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.section-heading--large {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 6px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
}

.btn--primary {
    background: var(--coral);
    color: var(--white);
    border: 2px solid var(--coral);
}

.btn--primary:hover {
    background: var(--coral-dark);
    border-color: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 100, 90, 0.3);
}

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

.btn--ghost:hover {
    background: var(--charcoal);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
    font-size: 1rem;
}

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 247, 244, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(26, 26, 26, 0.06);
    transition: all 0.3s var(--ease-out);
}

.nav.scrolled {
    box-shadow: 0 2px 20px rgba(26, 26, 26, 0.08);
}

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

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--charcoal);
}

.nav__logo-text {
    letter-spacing: -0.01em;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--charcoal-mid);
    transition: color 0.2s;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral);
    transition: width 0.3s var(--ease-out);
}

.nav__link:hover {
    color: var(--charcoal);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--cta {
    background: var(--coral);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    background: var(--coral-dark);
    transform: translateY(-1px);
}

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

.nav__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
}

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

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

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

/* ---------- Mobile Menu ---------- */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out);
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--charcoal);
    color: var(--white);
    transition: transform 0.3s var(--ease-out);
}

.mobile-menu__close:hover {
    transform: rotate(90deg);
}

.mobile-menu__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mobile-menu__link {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--charcoal);
    padding: 8px 16px;
    transition: color 0.2s;
}

.mobile-menu__link:hover {
    color: var(--coral);
}

.mobile-menu__link--cta {
    margin-top: 16px;
    font-family: var(--font-sans);
    font-size: 1rem;
    background: var(--coral);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
}

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

.hero__bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(232, 100, 90, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(232, 100, 90, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.hero__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 24px;
}

.hero__eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--coral);
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--charcoal);
    margin-bottom: 24px;
    max-width: 560px;
}

.hero__subheadline {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--warm-gray);
    max-width: 480px;
    margin-bottom: 36px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero__visual {
    position: relative;
    min-height: 560px;
}

.hero__hero-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(26, 26, 26, 0.12);
    position: relative;
}

.hero__hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero__hero-card-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: linear-gradient(transparent, rgba(26, 26, 26, 0.7));
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero__hero-card-caption-dot {
    opacity: 0.6;
}

.stat-card {
    position: absolute;
    background: var(--white);
    border-radius: 12px;
    padding: 20px 24px;
    box-shadow: 0 8px 32px rgba(26, 26, 26, 0.1);
    animation: float 4s ease-in-out infinite;
}

.stat-card--offset {
    bottom: -20px;
    left: -40px;
    animation-delay: 0s;
}

.stat-card--warm {
    top: 40px;
    right: -30px;
    background: var(--coral);
    color: var(--white);
    animation-delay: 1s;
}

.stat-card--dark {
    bottom: 80px;
    right: -20px;
    background: var(--charcoal);
    color: var(--white);
    animation-delay: 2s;
}

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

.stat-card__number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-card__label {
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.4;
    opacity: 0.85;
}

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

@keyframes bobble {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(4px); }
}

/* ---------- Marquee ---------- */
.marquee {
    background: var(--charcoal);
    padding: 16px 0;
    overflow: hidden;
    position: relative;
}

.marquee__track {
    display: flex;
    gap: 32px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee__item {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.marquee__sep {
    color: var(--coral);
    font-size: 0.75rem;
    opacity: 0.6;
}

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

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

.about__image-stack {
    position: relative;
}

.about__image-main {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(26, 26, 26, 0.1);
}

.about__image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about__image-accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(26, 26, 26, 0.12);
    border: 4px solid var(--cream);
}

.about__image-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about__badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--white);
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(26, 26, 26, 0.08);
    color: var(--charcoal);
}

.about__content {
    padding: 20px 0;
}

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

.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 {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    background: rgba(232, 100, 90, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about__feature strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 2px;
}

.about__feature span {
    font-size: 0.875rem;
    color: var(--warm-gray);
    line-height: 1.5;
}

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

.products__header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.products__subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--warm-gray);
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    border-radius: 16px;
    overflow: hidden;
    background: var(--cream);
    transition: all 0.4s var(--ease-out);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(26, 26, 26, 0.1);
}

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

.product-card--dark {
    background: var(--charcoal);
    color: var(--white);
}

.product-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/2;
}

.product-card--large .product-card__image {
    aspect-ratio: auto;
    height: 100%;
    position: absolute;
    inset: 0;
}

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

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

.product-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 40%, rgba(26, 26, 26, 0.6));
    display: flex;
    align-items: flex-end;
    padding: 24px;
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
}

.product-card__body {
    padding: 24px;
}

.product-card--large .product-card__body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(transparent, rgba(26, 26, 26, 0.8));
    color: var(--white);
}

.product-card__title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--charcoal);
}

.product-card--large .product-card__title,
.product-card--dark .product-card__title {
    color: var(--white);
    font-size: 1.5rem;
}

.product-card__description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--warm-gray);
    margin-bottom: 16px;
}

.product-card--large .product-card__description,
.product-card--dark .product-card__description {
    color: rgba(255, 255, 255, 0.75);
}

.product-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--coral);
    transition: gap 0.2s var(--ease-out);
}

.product-card__link:hover {
    gap: 10px;
}

.product-card__link--light {
    color: var(--coral-light);
}

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

.gallery__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

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

.gallery__item {
    border-radius: 12px;
    overflow: hidden;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease-out);
}

.gallery__item:hover img {
    transform: scale(1.04);
}

.gallery__item--tall {
    grid-column: span 4;
    grid-row: span 2;
}

.gallery__item--tall img {
    height: 100%;
    min-height: 400px;
}

.gallery__item--wide {
    grid-column: span 8;
}

.gallery__item--wide img {
    height: 100%;
    min-height: 260px;
}

.gallery__item:not(.gallery__item--tall):not(.gallery__item--wide) img {
    height: 260px;
}

/* ---------- Testimonials ---------- */
.testimonials {
    padding: 120px 0;
    background: var(--charcoal);
    color: var(--white);
}

.testimonials__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.testimonials__header .section-eyebrow {
    color: var(--coral-light);
}

.testimonials__header .section-eyebrow::before {
    background: var(--coral-light);
}

.testimonials__header .section-heading {
    color: var(--white);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--charcoal-light);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s var(--ease-out);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(232, 100, 90, 0.3);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.testimonial-card__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-card__text {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--coral);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.testimonial-card__author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--white);
}

.testimonial-card__author span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

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

.visit__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.visit__details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
}

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

.visit__detail-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: rgba(232, 100, 90, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.visit__detail strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.visit__detail span {
    font-size: 0.9rem;
    color: var(--warm-gray);
    line-height: 1.6;
}

.visit__map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(26, 26, 26, 0.1);
    min-height: 480px;
}

.visit__map iframe {
    width: 100%;
    height: 100%;
    min-height: 480px;
}

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

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

.contact__text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--warm-gray);
    margin-top: 20px;
    margin-bottom: 0;
}

.contact__form-wrapper {
    background: var(--cream);
    border-radius: 16px;
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(26, 26, 26, 0.12);
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--charcoal);
    background: var(--white);
    transition: all 0.2s;
    outline: none;
}

.form-input:focus {
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(232, 100, 90, 0.1);
}

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

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none' stroke='%238A8580' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 4.5l3 3 3-3'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

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

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

.contact__success-icon {
    margin-bottom: 20px;
}

.contact__success-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.contact__success-text {
    font-size: 0.95rem;
    color: var(--warm-gray);
    line-height: 1.6;
    margin-bottom: 24px;
}

.contact__success-btn {
    font-size: 0.85rem;
    padding: 10px 24px;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 80px 0 0;
}

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

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

.footer__tagline {
    font-size: 0.85rem;
    color: var(--coral-light);
    font-weight: 500;
    margin-bottom: 12px;
}

.footer__desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    max-width: 300px;
}

.footer__nav-title,
.footer__contact-list strong {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--coral-light);
    margin-bottom: 20px;
    display: block;
}

.footer__links,
.footer__contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a,
.footer__contact-list a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer__links a:hover,
.footer__contact-list a:hover {
    color: var(--white);
}

.footer__contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer__contact-list svg {
    min-width: 16px;
    margin-top: 2px;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer__bottom p:last-child {
    color: var(--coral);
}

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

.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) {
    .hero__grid {
        gap: 40px;
    }

    .hero__visual {
        min-height: 460px;
    }

    .stat-card--offset {
        left: -16px;
    }

    .stat-card--warm {
        right: -16px;
    }

    .stat-card--dark {
        right: -8px;
    }

    .about__grid {
        gap: 48px;
    }

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

    .product-card--large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .product-card--large .product-card__image {
        position: relative;
        aspect-ratio: 16/7;
    }

    .product-card--large .product-card__body {
        position: relative;
        background: var(--cream);
        color: var(--charcoal);
    }

    .product-card--large .product-card__description {
        color: var(--warm-gray);
    }

    .gallery__item--tall {
        grid-column: span 6;
    }

    .gallery__item--wide {
        grid-column: span 12;
    }

    .gallery__item:not(.gallery__item--tall):not(.gallery__item--wide) {
        grid-column: span 6;
    }

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

    .testimonials__grid .testimonial-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav__links {
        display: none;
    }

    .nav__toggle {
        display: flex;
    }

    .hero {
        padding: 100px 24px 60px;
        min-height: auto;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero__visual {
        min-height: 400px;
        order: -1;
    }

    .stat-card {
        padding: 14px 18px;
    }

    .stat-card__number {
        font-size: 1.5rem;
    }

    .stat-card--offset {
        bottom: -10px;
        left: -8px;
    }

    .stat-card--warm {
        top: 16px;
        right: -8px;
    }

    .stat-card--dark {
        bottom: 40px;
        right: 0;
    }

    .hero__scroll-indicator {
        display: none;
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about__image-accent {
        right: -16px;
        bottom: -24px;
    }

    .about__badge {
        left: -8px;
        top: -12px;
    }

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

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

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

    .gallery__item--tall,
    .gallery__item--wide,
    .gallery__item:not(.gallery__item--tall):not(.gallery__item--wide) {
        grid-column: span 1;
    }

    .gallery__item--tall img {
        min-height: 260px;
    }

    .gallery__item--wide img {
        min-height: 200px;
    }

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

    .testimonials__grid .testimonial-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    .visit__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .visit__map {
        min-height: 320px;
    }

    .visit__map iframe {
        min-height: 320px;
    }

    .contact__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact__form-wrapper {
        padding: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__headline {
        font-size: 1.75rem;
    }

    .hero__actions {
        flex-direction: column;
    }

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

    .hero__visual {
        min-height: 320px;
    }

    .stat-card--offset {
        bottom: -8px;
        left: 4px;
    }

    .stat-card--warm {
        top: 8px;
        right: 4px;
    }

    .stat-card--dark {
        display: none;
    }

    .about__image-accent {
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: 16px;
        border: none;
        border-radius: 12px;
    }

    .about__image-stack {
        display: flex;
        flex-direction: column;
    }

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

    .gallery__item--tall,
    .gallery__item--wide,
    .gallery__item:not(.gallery__item--tall):not(.gallery__item--wide) {
        grid-column: span 1;
    }

    .gallery__item--tall img,
    .gallery__item--wide img {
        min-height: 220px;
    }
}
