/* ============================================
   Ichabod Laundra-bar — Stylesheet
   Warm terracotta + sand palette
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    --clr-terra-50:  #fdf0eb;
    --clr-terra-100: #f9dace;
    --clr-terra-200: #f4b8a0;
    --clr-terra-300: #ed8c6e;
    --clr-terra-400: #e06545;
    --clr-terra-500: #c0603a;
    --clr-terra-600: #a04e30;
    --clr-terra-700: #7d3b26;
    --clr-terra-800: #5c2c1d;
    --clr-terra-900: #3d1c12;

    --clr-sand-50:   #fefcf8;
    --clr-sand-100:  #fdf6ec;
    --clr-sand-200:  #f9e8cc;
    --clr-sand-300:  #f2d4a0;
    --clr-sand-400:  #e8bc72;
    --clr-sand-500:  #d4a04a;
    --clr-sand-600:  #b8862e;
    --clr-sand-700:  #8c6622;
    --clr-sand-800:  #5c4214;
    --clr-sand-900:  #33240a;

    --clr-dark:      #2a1a12;
    --clr-dark-soft: #3d2a1f;
    --clr-text:      #3a2418;
    --clr-text-light:#6b5245;
    --clr-text-muted:#8a7063;
    --clr-white:     #fffdf9;
    --clr-border:    #f0ddd2;
    --clr-bg:        #fdf6ec;
    --clr-bg-alt:    #fef9f3;
    --clr-bg-dark:   #2a1a12;

    --font-display:  'DM Serif Display', Georgia, 'Times New Roman', serif;
    --font-body:     'Nunito', 'Segoe UI', system-ui, sans-serif;

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    --shadow-sm:  0 1px 3px rgba(42,26,18,.06), 0 1px 2px rgba(42,26,18,.04);
    --shadow-md:  0 4px 12px rgba(42,26,18,.08), 0 2px 4px rgba(42,26,18,.04);
    --shadow-lg:  0 12px 32px rgba(42,26,18,.10), 0 4px 8px rgba(42,26,18,.05);
    --shadow-xl:  0 20px 48px rgba(42,26,18,.12), 0 8px 16px rgba(42,26,18,.06);

    --transition: .25s cubic-bezier(.4,0,.2,1);
    --transition-slow: .45s cubic-bezier(.4,0,.2,1);
}

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

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--clr-text);
    background: var(--clr-sand-50);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    color: var(--clr-terra-600);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover { color: var(--clr-terra-500); }

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

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--clr-terra-500);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--clr-dark);
    margin-bottom: 16px;
}

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

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: .95rem;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

.btn-primary {
    background: var(--clr-terra-500);
    color: var(--clr-white);
    box-shadow: 0 4px 16px rgba(192,96,58,.3);
}
.btn-primary:hover {
    background: var(--clr-terra-600);
    color: var(--clr-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192,96,58,.35);
}

.btn-outline-light {
    background: rgba(255,253,249,.15);
    color: var(--clr-white);
    border: 1.5px solid rgba(255,253,249,.4);
    backdrop-filter: blur(4px);
}
.btn-outline-light:hover {
    background: rgba(255,253,249,.25);
    color: var(--clr-white);
    transform: translateY(-2px);
}

.btn-outline-terra {
    background: transparent;
    color: var(--clr-terra-600);
    border: 1.5px solid var(--clr-terra-300);
}
.btn-outline-terra:hover {
    background: var(--clr-terra-50);
    color: var(--clr-terra-700);
    transform: translateY(-2px);
}

.btn-sm { padding: 10px 20px; font-size: .85rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253,246,236,.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--clr-border);
    transition: box-shadow var(--transition);
}
.nav.scrolled {
    box-shadow: var(--shadow-md);
}

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

.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--clr-dark);
    text-decoration: none;
    transition: color var(--transition);
}
.nav-logo:hover { color: var(--clr-terra-600); }

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-menu a {
    font-size: .9rem;
    font-weight: 600;
    color: var(--clr-text-light);
    padding: 8px 14px;
    border-radius: var(--radius-full);
    transition: all var(--transition);
}
.nav-menu a:hover {
    color: var(--clr-terra-600);
    background: var(--clr-terra-50);
}

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

.hamburger {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--clr-dark);
    position: relative;
    transition: all var(--transition);
}
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--clr-dark);
    border-radius: 2px;
    transition: all var(--transition);
}
.hamburger::before { top: -6px; }
.hamburger::after  { top:  6px; }

.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);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(135deg, rgba(42,26,18,.82) 0%, rgba(61,42,31,.72) 50%, rgba(125,59,38,.65) 100%),
        url('https://images.pexels.com/photos/39183662/pexels-photo-39183662.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1600&h=1000') center / cover no-repeat;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, transparent 0%, rgba(42,26,18,.3) 100%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content { color: var(--clr-white); }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,253,249,.12);
    border: 1px solid rgba(255,253,249,.2);
    backdrop-filter: blur(8px);
    color: var(--clr-sand-200);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.75rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--clr-white);
    margin-bottom: 20px;
}
.hero-title em {
    font-style: italic;
    color: var(--clr-sand-300);
}

.hero-desc {
    font-size: 1.1rem;
    line-height: 1.75;
    color: rgba(255,253,249,.8);
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}
.hero-stat-num {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--clr-white);
}
.hero-stat-label {
    font-size: .78rem;
    color: rgba(255,253,249,.55);
    letter-spacing: .05em;
    text-transform: uppercase;
}

.hero-stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(255,253,249,.2);
}

/* Hero Images */
.hero-image-wrap {
    position: relative;
    height: 680px;
}

.hero-image-main {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.hero-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-float {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
}

.hero-image-1 {
    width: 260px;
    bottom: 60px;
    left: -40px;
    animation-delay: 0s;
}
.hero-image-1 img { width: 100%; height: 100%; object-fit: cover; }

.hero-image-2 {
    width: 220px;
    top: 40px;
    right: -30px;
    animation-delay: -3s;
}
.hero-image-2 img { width: 100%; height: 100%; object-fit: cover; }

.hero-float-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background: rgba(42,26,18,.75);
    backdrop-filter: blur(8px);
    color: var(--clr-sand-200);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    text-align: center;
}

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

/* ---------- Highlights ---------- */
.highlights {
    padding: 80px 0;
    background: var(--clr-sand-50);
}

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

.highlight-card {
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
}
.highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--clr-terra-200);
}

.highlight-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: var(--clr-terra-50);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-terra-600);
    transition: all var(--transition);
}
.highlight-card:hover .highlight-icon {
    background: var(--clr-terra-500);
    color: var(--clr-white);
}

.highlight-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--clr-dark);
    margin-bottom: 8px;
}
.highlight-card p {
    font-size: .9rem;
    color: var(--clr-text-light);
    line-height: 1.65;
}

/* ---------- Menu ---------- */
.menu {
    padding: 100px 0;
    background: var(--clr-bg-alt);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-header .section-desc { margin: 0 auto; }

.menu-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 40px;
}

.menu-tab {
    font-family: var(--font-body);
    font-size: .9rem;
    font-weight: 700;
    color: var(--clr-text-light);
    background: var(--clr-white);
    border: 1.5px solid var(--clr-border);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition);
}
.menu-tab:hover {
    color: var(--clr-terra-600);
    border-color: var(--clr-terra-300);
}
.menu-tab.active {
    background: var(--clr-terra-500);
    color: var(--clr-white);
    border-color: var(--clr-terra-500);
}

.menu-panel {
    display: none;
}
.menu-panel.active {
    display: block;
    animation: fadeUp .35s ease both;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.menu-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 20px 22px;
    transition: all var(--transition);
}
.menu-item:hover {
    border-color: var(--clr-terra-200);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.menu-item-info { flex: 1; }

.menu-item-name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--clr-dark);
    margin-bottom: 4px;
}

.menu-item-desc {
    font-size: .88rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

.menu-item-tag {
    flex-shrink: 0;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--clr-terra-700);
    background: var(--clr-terra-100);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    align-self: flex-start;
    margin-top: 2px;
}

.menu-cta {
    text-align: center;
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.menu-cta p {
    font-size: 1rem;
    color: var(--clr-text-light);
}

/* ---------- About ---------- */
.about {
    padding: 100px 0;
    background: var(--clr-sand-50);
}

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

.about-images {
    position: relative;
    height: 600px;
}

.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 80%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }

.about-img-side {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 55%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 5px solid var(--clr-sand-50);
}
.about-img-side img { width: 100%; height: 100%; object-fit: cover; }

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

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

.about-signature {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
}

.about-sig-line {
    width: 48px;
    height: 2px;
    background: var(--clr-terra-400);
    border-radius: 2px;
    flex-shrink: 0;
}

.about-sig-text {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--clr-terra-700);
}

/* ---------- Gallery ---------- */
.gallery {
    padding: 100px 0;
    background: var(--clr-bg-alt);
}

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

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
}
.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4/3;
}

/* ---------- Visit ---------- */
.visit {
    padding: 100px 0;
    background: var(--clr-sand-50);
}

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

.visit-info .section-title { margin-bottom: 12px; }
.visit-info .section-desc  { margin-bottom: 32px; }

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

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

.visit-detail-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--clr-terra-600);
    margin-bottom: 4px;
}

.visit-detail dd {
    font-size: 1rem;
    color: var(--clr-text);
    line-height: 1.7;
}
.visit-detail dd a {
    color: var(--clr-terra-600);
    font-weight: 700;
}
.visit-detail dd a:hover { color: var(--clr-terra-700); }

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

/* ---------- Contact ---------- */
.contact {
    padding: 100px 0;
    background: var(--clr-bg-dark);
}

.contact-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.contact-content {
    background: var(--clr-dark);
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
}

.contact-content .section-tag  { color: var(--clr-terra-300); }
.contact-content .section-title { color: var(--clr-white); }
.contact-content .section-desc  { color: rgba(255,253,249,.6); margin-bottom: 32px; }

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

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

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

.form-group label {
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(255,253,249,.5);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: .95rem;
    color: var(--clr-white);
    background: rgba(255,253,249,.08);
    border: 1.5px solid rgba(255,253,249,.12);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    transition: all var(--transition);
    outline: none;
    width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,253,249,.3);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--clr-terra-400);
    background: rgba(255,253,249,.12);
}

.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.5L6 7.5L9 4.5' stroke='rgba(255,253,249,0.5)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}
.form-group select option {
    background: var(--clr-dark);
    color: var(--clr-white);
}

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

.form-success {
    text-align: center;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--clr-white);
}
.form-success p {
    color: rgba(255,253,249,.7);
    font-size: .95rem;
    line-height: 1.7;
}
.form-success a {
    color: var(--clr-terra-300);
    font-weight: 700;
}

.contact-visual {
    position: relative;
    overflow: hidden;
}
.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.contact-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(42,26,18,.85) 0%, rgba(42,26,18,.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
}

.contact-quote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.3rem;
    color: var(--clr-white);
    line-height: 1.5;
    margin-bottom: 8px;
}
.contact-visual-overlay span {
    font-size: .85rem;
    color: var(--clr-sand-300);
    font-weight: 600;
    letter-spacing: .05em;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--clr-dark);
    color: rgba(255,253,249,.6);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,253,249,.08);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--clr-white);
    margin-bottom: 12px;
}
.footer-logo:hover { color: var(--clr-terra-300); }

.footer-logo-icon { color: var(--clr-terra-400); }

.footer-tagline {
    font-size: .9rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 400;
    color: var(--clr-white);
    margin-bottom: 16px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-nav a {
    font-size: .9rem;
    color: rgba(255,253,249,.55);
    transition: color var(--transition);
}
.footer-nav a:hover { color: var(--clr-terra-300); }

.footer-contact,
.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.footer-contact p,
.footer-hours p {
    font-size: .88rem;
    line-height: 1.6;
}
.footer-contact a {
    color: var(--clr-terra-300);
    font-weight: 700;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 24px 0;
    font-size: .82rem;
    color: rgba(255,253,249,.35);
}
.footer-bottom a {
    color: rgba(255,253,249,.4);
}
.footer-bottom a:hover { color: var(--clr-terra-300); }

/* ---------- Scroll Reveal (progressive enhancement) ---------- */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity .6s ease, transform .6s ease;
    }
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-image-wrap {
        height: 480px;
        max-width: 500px;
        margin: 0 auto;
    }
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-images {
        height: 400px;
        max-width: 500px;
        margin: 0 auto;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .visit-grid {
        grid-template-columns: 1fr;
    }
    .contact-card {
        grid-template-columns: 1fr;
    }
    .contact-visual {
        min-height: 300px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(253,246,236,.97);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        border-bottom: 1px solid var(--clr-border);
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all var(--transition);
    }
    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .nav-menu a {
        width: 100%;
        padding: 12px 16px;
        border-radius: var(--radius-sm);
    }
    .nav-toggle { display: flex; }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    .hero-image-wrap {
        height: 360px;
    }
    .hero-image-1 { width: 160px; left: -10px; bottom: 30px; }
    .hero-image-2 { width: 140px; right: -10px; top: 20px; }
    .hero-stats { gap: 14px; }
    .hero-stat-num { font-size: .95rem; }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .highlight-card {
        display: flex;
        text-align: left;
        gap: 16px;
        padding: 20px 22px;
    }
    .highlight-icon {
        margin: 0;
        flex-shrink: 0;
        width: 52px;
        height: 52px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }
    .menu-tabs {
        gap: 6px;
    }
    .menu-tab {
        padding: 8px 16px;
        font-size: .82rem;
    }

    .about-images { height: 320px; }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item img { aspect-ratio: 16/10; }

    .form-row { grid-template-columns: 1fr; }
    .contact-content { padding: 36px 24px; }
    .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-title { font-size: 1.9rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-image-wrap { height: 280px; }
    .hero-image-1 { width: 130px; }
    .hero-image-2 { width: 120px; }
}
