/* ============================================
   Sweet Tea and Cotton — Styles
   Deep Navy + Warm Gold | Warm & Friendly
   ============================================ */

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

:root {
    --navy: #1B2A4A;
    --navy-light: #2C3E6B;
    --navy-dark: #131F36;
    --gold: #C8963E;
    --gold-light: #D4A95C;
    --gold-pale: #F5E6C8;
    --cream: #FDF8F0;
    --cream-dark: #F7EDE0;
    --white: #FFFFFF;
    --text-dark: #1A1A2E;
    --text-mid: #4A4A5A;
    --text-light: #7A7A8A;
    --shadow-sm: 0 2px 8px rgba(27, 42, 74, 0.06);
    --shadow-md: 0 4px 20px rgba(27, 42, 74, 0.10);
    --shadow-lg: 0 8px 40px rgba(27, 42, 74, 0.14);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-accent: 'Lora', Georgia, serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

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

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--navy);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-weight: 600;
    transition: top var(--transition);
}
.skip-link:focus {
    top: 16px;
}

/* ========== HEADER ========== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
    background: rgba(253, 248, 240, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 0;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 101;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    transition: transform var(--transition);
}
.logo-icon::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 50%;
}
.logo-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.logo:hover .logo-icon {
    transform: rotate(15deg) scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.logo-line-one {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--navy);
    font-style: italic;
}
.logo-line-two {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--gold);
}

.logo--footer .logo-text .logo-line-one,
.logo--footer .logo-text .logo-line-two {
    color: var(--white);
}

/* Nav */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}
.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    position: relative;
    transition: background var(--transition);
}
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: transform var(--transition);
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

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

.nav-menu {
    list-style: none;
    display: flex;
    gap: 8px;
    align-items: center;
}
.nav-menu li a {
    padding: 8px 18px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--navy);
    border-radius: 100px;
    transition: background var(--transition), color var(--transition);
}
.nav-menu li a:hover {
    background: var(--gold-pale);
    color: var(--navy-dark);
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.pexels.com/photos/2449665/pexels-photo-2449665.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center center / cover no-repeat;
    transform: scale(1.02);
    animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    from { transform: scale(1.02); }
    to { transform: scale(1.08); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(27, 42, 74, 0.82) 0%,
        rgba(27, 42, 74, 0.65) 50%,
        rgba(27, 42, 74, 0.45) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding-top: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(200, 150, 62, 0.15);
    border: 1px solid rgba(200, 150, 62, 0.4);
    color: var(--gold-light);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}
.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.8); }
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.4rem);
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
    font-style: italic;
}
.hero-headline em {
    color: var(--gold-light);
    font-style: italic;
}

.hero-sub {
    font-family: var(--font-accent);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 560px;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-body);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}
.btn svg {
    transition: transform var(--transition);
}
.btn:hover svg {
    transform: translate(3px, -3px);
}

.btn-primary {
    background: var(--gold);
    color: var(--navy-dark);
}
.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 150, 62, 0.35);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}
.btn-ghost:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

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

/* Hero scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ========== SECTION LABELS & TITLES ========== */
.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 20px;
}
.section-title em {
    color: var(--gold);
    font-style: italic;
}

/* ========== INTRO STRIP ========== */
.intro-strip {
    padding: 100px 0;
    background: var(--cream);
}

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

.intro-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.intro-image:hover img {
    transform: scale(1.03);
}

.intro-text p {
    color: var(--text-mid);
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 16px;
}
.intro-text .section-title {
    margin-bottom: 28px;
}

/* ========== OFFERINGS ========== */
.offerings {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

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

.offering-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}
.offering-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.offering-icon {
    width: 64px;
    height: 64px;
    background: var(--navy);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin: 28px 28px 0;
    transition: background var(--transition);
}
.offering-card:hover .offering-icon {
    background: var(--gold);
    color: var(--navy);
}

.offering-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--navy);
    margin: 20px 28px;
}

.offering-card > p {
    color: var(--text-mid);
    font-size: 0.95rem;
    line-height: 1.75;
    padding: 0 28px;
    margin-bottom: 20px;
}

.offering-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin: 0 28px 28px;
}
.offering-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.offering-card:hover .offering-image img {
    transform: scale(1.05);
}

/* ========== VALUES STRIP ========== */
.values-strip {
    padding: 80px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}
.values-strip::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200,150,62,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
}

.value-item {
    text-align: left;
}

.value-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    color: rgba(200, 150, 62, 0.25);
    line-height: 1;
    margin-bottom: 12px;
}

.value-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 10px;
}

.value-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ========== GALLERY ========== */
.gallery {
    padding: 100px 0;
    background: var(--cream);
}

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

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item--large {
    grid-column: span 7;
    grid-row: span 2;
    min-height: 420px;
}
.gallery-item--large img {
    min-height: 420px;
}
.gallery-item--wide {
    grid-column: span 5;
    min-height: 200px;
}
.gallery-item--wide img {
    min-height: 200px;
}
.gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
    min-height: 190px;
}
.gallery-item:not(.gallery-item--large):not(.gallery-item--wide) img {
    min-height: 190px;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: linear-gradient(to top, rgba(27,42,74,0.8), transparent);
    color: var(--white);
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-style: italic;
    transform: translateY(100%);
    transition: transform var(--transition);
}
.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: 100px 0;
    background: var(--gold);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.12) 0%, transparent 60%);
}
.cta-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.pexels.com/photos/38698664/pexels-photo-38698664.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=600') center center / cover no-repeat;
    opacity: 0.15;
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}
.cta-content .section-label {
    color: rgba(27, 42, 74, 0.6);
}
.cta-title {
    color: var(--navy-dark);
}
.cta-title em {
    color: var(--navy);
}
.cta-text {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    color: rgba(27, 42, 74, 0.75);
    line-height: 1.7;
    margin-bottom: 36px;
}
.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.cta-actions .btn-primary {
    background: var(--navy);
    color: var(--gold-light);
}
.cta-actions .btn-primary:hover {
    background: var(--navy-dark);
    box-shadow: 0 8px 24px rgba(27, 42, 74, 0.4);
}
.cta-actions .btn-ghost {
    border-color: var(--navy);
    color: var(--navy);
}
.cta-actions .btn-ghost:hover {
    background: var(--navy);
    color: var(--white);
}

/* ========== VISIT ========== */
.visit {
    padding: 100px 0;
    background: var(--white);
}

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

.visit-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--cream);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    transition: transform var(--transition), box-shadow var(--transition);
}
.visit-card:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
}

.visit-card-icon {
    width: 48px;
    height: 48px;
    background: var(--navy);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.visit-card-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 6px;
}

.visit-card p {
    color: var(--text-mid);
    font-size: 0.95rem;
    line-height: 1.6;
}
.visit-card a {
    color: var(--gold);
    font-weight: 500;
    transition: color var(--transition);
}
.visit-card a:hover {
    color: var(--navy);
}

.visit-hours-note {
    font-style: italic;
    color: var(--text-light) !important;
    margin-top: 4px;
}

.visit-card--hours {
    background: var(--navy);
}
.visit-card--hours .visit-card-title,
.visit-card--hours .visit-card-icon {
    color: var(--gold-light);
}
.visit-card--hours .visit-card-icon {
    background: rgba(200, 150, 62, 0.15);
}
.visit-card--hours p {
    color: rgba(255, 255, 255, 0.75);
}

.visit-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
}
.map-link {
    display: block;
    position: relative;
}
.map-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(27, 42, 74, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    transition: background var(--transition);
}
.map-link:hover .map-overlay {
    background: rgba(27, 42, 74, 0.7);
}

/* ========== CONTACT ========== */
.contact {
    padding: 100px 0;
    background: var(--cream);
}

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

.contact-info .section-title {
    margin-bottom: 20px;
}
.contact-info > p {
    color: var(--text-mid);
    font-size: 1.02rem;
    line-height: 1.75;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-mid);
    font-size: 0.95rem;
    transition: color var(--transition);
}
.contact-detail svg {
    color: var(--gold);
    flex-shrink: 0;
}
.contact-detail a {
    color: var(--text-mid);
    transition: color var(--transition);
}
.contact-detail a:hover {
    color: var(--navy);
}

/* Form */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--cream-dark);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--cream);
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200, 150, 62, 0.15);
    background: var(--white);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(200, 150, 62, 0.1);
    border: 1px solid rgba(200, 150, 62, 0.3);
    border-radius: var(--radius-sm);
    color: var(--navy);
    font-weight: 500;
    font-size: 0.95rem;
    margin-top: 16px;
}
.form-success svg {
    color: var(--gold);
    flex-shrink: 0;
}

/* ========== FOOTER ========== */
.site-footer {
    background: var(--navy-dark);
    padding: 60px 0 0;
}

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

.footer-tagline {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 300px;
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    transition: color var(--transition);
}
.footer-links a:hover {
    color: var(--gold-light);
}

.footer-contact address {
    font-style: normal;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    line-height: 1.8;
}
.footer-contact a {
    color: rgba(255, 255, 255, 0.55);
    transition: color var(--transition);
}
.footer-contact a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.82rem;
}
.footer-location {
    color: rgba(255, 255, 255, 0.25) !important;
}

/* ========== ANIMATIONS ========== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.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) {
    .offerings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    .gallery-item--large {
        grid-column: span 12;
        grid-row: span 1;
        min-height: 300px;
    }
    .gallery-item--large img {
        min-height: 300px;
    }
    .gallery-item--wide {
        grid-column: span 6;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    .footer-top > :first-child {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: var(--cream);
        padding: 80px 32px 32px;
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform var(--transition);
        z-index: 100;
    }
    .main-nav.open {
        transform: translateX(0);
    }
    .nav-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }
    .nav-menu li a {
        padding: 14px 16px;
        font-size: 1rem;
        border-radius: var(--radius-sm);
    }
    .nav-menu li a:hover {
        background: var(--gold-pale);
    }

    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);
        z-index: 99;
    }
    .nav-overlay.active {
        display: block;
    }

    .hero-content {
        padding-top: 100px;
    }
    .hero-headline {
        font-size: clamp(1.6rem, 6vw, 2.4rem);
    }
    .hero-scroll {
        display: none;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .intro-image {
        max-height: 360px;
    }

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

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

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    .gallery-item--large {
        grid-column: span 2;
    }
    .gallery-item--wide {
        grid-column: span 2;
    }

    .visit-grid {
        grid-template-columns: 1fr;
    }
    .visit-map {
        min-height: 280px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-form-wrap {
        padding: 28px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-top > :first-child {
        grid-column: span 1;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 18px;
    }
    .hero-actions {
        flex-direction: column;
    }
    .hero-actions .btn {
        justify-content: center;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item--large,
    .gallery-item--wide {
        grid-column: span 1;
    }
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
