/* ============================================
   Tracy's Place — Styles
   Burgundy + Blush | Fresh & Airy
   ============================================ */

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

:root {
    --burgundy-50: #fdf2f4;
    --burgundy-100: #fce7eb;
    --burgundy-200: #f9d0d9;
    --burgundy-300: #f4a8be;
    --burgundy-400: #e8749a;
    --burgundy-500: #c44d72;
    --burgundy-600: #a33a58;
    --burgundy-700: #842e46;
    --burgundy-800: #6b2638;
    --burgundy-900: #561e2c;
    --burgundy-950: #2e0d15;

    --blush-50: #fef7f5;
    --blush-100: #fdf0ec;
    --blush-200: #fae0d6;
    --blush-300: #f5c4b4;
    --blush-400: #eda38a;
    --blush-500: #df7a5a;
    --blush-600: #c95a35;
    --blush-700: #a84426;
    --blush-800: #873520;
    --blush-900: #6e2c1c;

    --cream-50: #fefdfb;
    --cream-100: #fdf9f4;
    --cream-200: #faf2e8;
    --cream-300: #f5e6d0;
    --cream-400: #edcfab;
    --cream-500: #dfb07a;
    --cream-600: #c48e4f;
    --cream-700: #a16d38;
    --cream-800: #82562e;
    --cream-900: #6a4526;

    --sand-50: #fefcf8;
    --sand-100: #fdf7ee;
    --sand-200: #faedd3;
    --sand-300: #f5dbb0;
    --sand-400: #edc07e;
    --sand-500: #df9d4a;
    --sand-600: #c47a30;
    --sand-700: #a15d22;
    --sand-800: #82481c;
    --sand-900: #6a3a17;

    --text-primary: #2e1a14;
    --text-secondary: #5c3d30;
    --text-muted: #8a6558;
    --text-light: #a88578;

    --white: #ffffff;
    --white-soft: #fefcfa;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Lato', 'Segoe UI', sans-serif;

    --shadow-sm: 0 1px 3px rgba(46, 13, 21, 0.06), 0 1px 2px rgba(46, 13, 21, 0.04);
    --shadow-md: 0 4px 16px rgba(46, 13, 21, 0.08), 0 2px 4px rgba(46, 13, 21, 0.04);
    --shadow-lg: 0 12px 40px rgba(46, 13, 21, 0.12), 0 4px 12px rgba(46, 13, 21, 0.06);
    --shadow-xl: 0 24px 60px rgba(46, 13, 21, 0.14), 0 8px 20px rgba(46, 13, 21, 0.08);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--cream-50);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    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;
}

ul, ol {
    list-style: none;
}

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--burgundy-700);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-weight: 500;
    transition: top var(--transition-fast);
}

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

.text-accent {
    color: var(--burgundy-600);
}

/* ---------- Section Shared ---------- */
.section-eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--burgundy-500);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 20px;
}

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

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    white-space: nowrap;
    border: 2px solid transparent;
}

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

.btn-primary:hover,
.btn-primary:focus-visible {
    background: var(--burgundy-700);
    border-color: var(--burgundy-700);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--burgundy-600);
    border-color: var(--burgundy-300);
}

.btn-outline:hover,
.btn-outline:focus-visible {
    background: var(--burgundy-50);
    border-color: var(--burgundy-500);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--cream-300);
}

.btn-outline-dark:hover,
.btn-outline-dark:focus-visible {
    background: var(--cream-100);
    border-color: var(--cream-500);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

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

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(254, 253, 251, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(244, 168, 190, 0.2);
    transition: all var(--transition-base);
}

.site-header.scrolled {
    background: rgba(254, 253, 251, 0.95);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--burgundy-700);
}

.logo-light {
    color: var(--white);
}

.logo-icon {
    color: var(--burgundy-500);
    flex-shrink: 0;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
}

.nav-toggle:hover {
    background: var(--burgundy-50);
}

.hamburger {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--burgundy-700);
    position: relative;
    transition: all var(--transition-base);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background: var(--burgundy-700);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--burgundy-600);
    background: var(--burgundy-50);
}

.nav-cta {
    margin-left: 12px;
    padding: 10px 24px;
    font-size: 0.875rem;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, var(--burgundy-950) 0%, var(--burgundy-800) 40%, var(--burgundy-700) 100%);
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(196, 77, 114, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(224, 122, 90, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 40% 40% at 50% 50%, rgba(244, 168, 190, 0.1) 0%, transparent 70%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: 
        radial-gradient(circle at 25% 25%, var(--white) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, var(--white) 1px, transparent 1px);
    background-size: 48px 48px;
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--burgundy-200);
    margin-bottom: 28px;
    background: rgba(253, 242, 244, 0.1);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(244, 168, 190, 0.2);
}

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

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

.hero-sub {
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    color: rgba(254, 253, 251, 0.75);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 40px;
}

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

.hero-actions .btn-primary {
    background: var(--white);
    color: var(--burgundy-700);
    border-color: var(--white);
}

.hero-actions .btn-primary:hover,
.hero-actions .btn-primary:focus-visible {
    background: var(--cream-100);
    border-color: var(--cream-100);
    box-shadow: var(--shadow-lg);
}

.hero-actions .btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(254, 253, 251, 0.35);
}

.hero-actions .btn-outline:hover,
.hero-actions .btn-outline:focus-visible {
    background: rgba(254, 253, 251, 0.1);
    border-color: rgba(254, 253, 251, 0.6);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(254, 253, 251, 0.7);
    background: rgba(254, 253, 251, 0.08);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(254, 253, 251, 0.12);
}

.badge svg {
    color: var(--burgundy-300);
}

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

.hero-scroll svg {
    color: rgba(254, 253, 251, 0.4);
}

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

/* ---------- Discover Section ---------- */
.discover {
    padding: 120px 0;
    background: var(--cream-50);
}

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

.section-header .section-subtitle {
    margin: 0 auto;
}

.discover-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 64px;
}

.discover-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-slow);
    border: 1px solid rgba(244, 168, 190, 0.15);
}

.discover-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

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

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

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

.card-body {
    padding: 28px;
}

.card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--burgundy-50);
    border-radius: var(--radius-md);
    color: var(--burgundy-600);
    margin-bottom: 16px;
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.card-text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.discover-cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.discover-cta p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
}

/* ---------- About Section ---------- */
.about {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--cream-50) 0%, var(--burgundy-50) 100%);
}

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

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 6/7;
}

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

.about-img-secondary {
    position: absolute;
    bottom: -32px;
    right: -24px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
    aspect-ratio: 4/3;
    width: 55%;
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-accent {
    position: absolute;
    top: -20px;
    right: -16px;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--burgundy-600);
    border-radius: var(--radius-lg);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.about-content .section-title {
    margin-bottom: 24px;
}

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

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

.value-item {
    padding: 20px 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(244, 168, 190, 0.2);
    box-shadow: var(--shadow-sm);
}

.value-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--burgundy-500);
    margin-bottom: 6px;
}

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

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

.visit-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
}

.visit-content {
    padding: 48px;
    background: linear-gradient(160deg, var(--burgundy-800) 0%, var(--burgundy-900) 100%);
    border-radius: var(--radius-xl);
    color: var(--white);
}

.visit-content .section-eyebrow {
    color: var(--burgundy-300);
}

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

.visit-content .section-title .text-accent {
    color: var(--burgundy-200);
}

.visit-text {
    font-size: 1.0625rem;
    color: rgba(254, 253, 251, 0.7);
    line-height: 1.8;
    margin-bottom: 40px;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.visit-detail {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.visit-detail-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--burgundy-300);
}

.visit-detail-label svg {
    color: var(--burgundy-400);
}

.visit-detail dd {
    font-size: 1.0625rem;
    color: var(--white);
    line-height: 1.6;
}

.visit-detail dd a {
    color: var(--burgundy-200);
    transition: color var(--transition-fast);
}

.visit-detail dd a:hover,
.visit-detail dd a:focus-visible {
    color: var(--white);
    text-decoration: underline;
}

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

.visit-actions .btn-primary {
    background: var(--white);
    color: var(--burgundy-700);
    border-color: var(--white);
}

.visit-actions .btn-primary:hover,
.visit-actions .btn-primary:focus-visible {
    background: var(--cream-100);
    box-shadow: var(--shadow-lg);
}

.visit-actions .btn-outline-dark {
    border-color: rgba(254, 253, 251, 0.25);
    color: var(--white);
}

.visit-actions .btn-outline-dark:hover,
.visit-actions .btn-outline-dark:focus-visible {
    background: rgba(254, 253, 251, 0.1);
    border-color: rgba(254, 253, 251, 0.4);
}

.visit-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 480px;
    border: 1px solid rgba(244, 168, 190, 0.2);
}

/* ---------- Contact Section ---------- */
.contact {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--burgundy-50) 0%, var(--cream-50) 100%);
}

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

.contact-content .section-title {
    margin-bottom: 20px;
}

.contact-text {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(244, 168, 190, 0.15);
}

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

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

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--text-primary);
    background: var(--cream-50);
    border: 1.5px solid var(--cream-300);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    transition: all var(--transition-fast);
    outline: none;
    width: 100%;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--burgundy-400);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(196, 77, 114, 0.08);
}

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

.form-group 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'%3E%3Cpath d='M3 4.5l3 3 3-3' stroke='%238a6558' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

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

.form-success svg {
    color: var(--burgundy-500);
    margin: 0 auto 20px;
}

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

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

/* ---------- Footer ---------- */
.site-footer {
    background: var(--burgundy-950);
    color: var(--white);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(254, 253, 251, 0.1);
}

.footer-brand p {
    font-size: 0.9375rem;
    color: rgba(254, 253, 251, 0.6);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 300px;
}

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

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

.footer-links a {
    font-size: 0.9375rem;
    color: rgba(254, 253, 251, 0.6);
    transition: color var(--transition-fast);
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--burgundy-300);
}

.footer-contact address {
    font-style: normal;
    font-size: 0.9375rem;
    color: rgba(254, 253, 251, 0.6);
    line-height: 1.8;
}

.footer-contact a {
    color: rgba(254, 253, 251, 0.6);
    transition: color var(--transition-fast);
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
    color: var(--burgundy-300);
}

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

/* ---------- Scroll Reveal ---------- */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
    }
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .about-grid {
        gap: 48px;
    }

    .visit-wrapper {
        gap: 32px;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: rgba(254, 253, 251, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 24px;
        border-bottom: 1px solid rgba(244, 168, 190, 0.2);
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        transition: all var(--transition-base);
        pointer-events: none;
    }

    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-list {
        flex-direction: column;
        gap: 4px;
        width: 100%;
        margin-bottom: 16px;
    }

    .nav-link {
        width: 100%;
        padding: 12px 16px;
        border-radius: var(--radius-md);
    }

    .nav-cta {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }

    .hero {
        padding: 120px 20px 80px;
        min-height: auto;
    }

    .hero-headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

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

    .hero-badges {
        flex-direction: column;
        align-items: center;
    }

    .discover-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .discover {
        padding: 80px 0;
    }

    .about {
        padding: 80px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .about-images {
        max-width: 480px;
        margin: 0 auto;
    }

    .about-img-secondary {
        right: -12px;
        bottom: -20px;
    }

    .about-accent {
        top: -12px;
        right: -8px;
        width: 56px;
        height: 56px;
    }

    .visit {
        padding: 80px 0;
    }

    .visit-wrapper {
        grid-template-columns: 1fr;
    }

    .visit-content {
        padding: 32px;
    }

    .visit-map {
        min-height: 320px;
    }

    .contact {
        padding: 80px 0;
    }

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

    .contact-form-wrapper {
        padding: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 100px 16px 60px;
    }

    .section-title {
        font-size: clamp(1.75rem, 7vw, 2.25rem);
    }

    .discover-grid {
        gap: 16px;
    }

    .card-body {
        padding: 20px;
    }

    .visit-content {
        padding: 24px;
    }

    .visit-actions {
        flex-direction: column;
    }

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