/* ================================================
   The Promised Land — 2026 Fresh Design
   Navy + Gold | Cormorant Garamond + DM Sans
   ================================================ */

/* --- Custom Properties --- */
:root {
    --primary: #1a2332;
    --primary-light: #243447;
    --accent: #d4a574;
    --accent-hover: #c49464;
    --accent-light: rgba(212, 165, 116, 0.12);
    --cream: #f8f6f3;
    --white: #ffffff;
    --text: #2d3436;
    --text-light: #636e72;
    --text-muted: #95a5a6;
    --border: #e8e4df;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
    --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --nav-h: 72px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 10px;
    --max-w: 1200px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-h);
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--accent-hover); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
iframe { border: 0; }

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary);
    line-height: 1.25;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.15rem; }

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- Navigation --- */
.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    background: transparent;
    transition: background .4s var(--ease), box-shadow .4s var(--ease);
}

.site-nav.scrolled {
    background: var(--primary);
    box-shadow: 0 2px 20px rgba(0,0,0,.15);
}

.site-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: .02em;
}

.nav-logo:hover { color: var(--accent); }

.nav-menu {
    display: flex;
    align-items: center;
    gap: .25rem;
}

.nav-menu a {
    color: rgba(255,255,255,.8);
    font-size: .82rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: .5rem .85rem;
    border-radius: 4px;
    transition: color .25s var(--ease), background .25s var(--ease);
}

.nav-menu a:hover,
.nav-menu a.active { color: var(--accent); }

.nav-cta {
    background: var(--accent) !important;
    color: var(--white) !important;
    padding: .55rem 1.2rem !important;
    margin-left: .5rem;
    font-weight: 600 !important;
    letter-spacing: .06em !important;
}

.nav-cta:hover {
    background: var(--accent-hover) !important;
    color: var(--white) !important;
}

.nav-hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.6rem;
    padding: .25rem;
    line-height: 1;
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--primary);
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active { opacity: 1; }

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(26,35,50,.15) 0%,
        rgba(26,35,50,.3) 60%,
        rgba(26,35,50,.45) 100%
    );
    z-index: 1;
}

.hero-body {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1.5rem;
    max-width: 800px;
}

.hero-label {
    display: inline-block;
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .25em;
    color: var(--accent);
    border: 1px solid rgba(212,165,116,.4);
    padding: .4rem 1.2rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.hero-body h1 {
    color: var(--white);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: .75rem;
    text-shadow: 0 2px 30px rgba(0,0,0,.3);
}

.hero-body p {
    color: rgba(255,255,255,.85);
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    font-weight: 300;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem 2rem;
    font-size: .9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    border-radius: 4px;
    border: 2px solid transparent;
    transition: all .3s var(--ease);
}

.btn-gold {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.btn-gold:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212,165,116,.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.4);
}

.btn-outline:hover {
    border-color: var(--white);
    color: var(--white);
    background: rgba(255,255,255,.1);
}

.btn-outline-dark {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-dark:hover {
    background: var(--primary);
    color: var(--white);
}

.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255,255,255,.6);
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .15em;
    text-align: center;
}

.scroll-hint span {
    display: block;
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,.3);
    margin: .75rem auto 0;
    position: relative;
    overflow: hidden;
}

.scroll-hint span::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { top: -100%; }
    50% { top: 100%; }
    100% { top: 100%; }
}

/* --- Section Common --- */
.section {
    padding: 6rem 0;
}

.section-alt {
    padding: 6rem 0;
    background: var(--white);
}

.section-dark {
    padding: 6rem 0;
    background: var(--primary);
    color: rgba(255,255,255,.85);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 { color: var(--white); }

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    margin-bottom: .75rem;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: var(--accent);
    margin: 1rem auto 0;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
}

.section-dark .section-header p {
    color: rgba(255,255,255,.6);
}

/* --- About Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    height: 120px;
    border: 3px solid var(--accent);
    border-radius: 0 0 var(--radius) 0;
    pointer-events: none;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: var(--accent);
    margin-top: 1rem;
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--text);
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
}

.highlight-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.highlight-item strong {
    display: block;
    font-size: .9rem;
    color: var(--primary);
}

.highlight-item small {
    font-size: .8rem;
    color: var(--text-light);
}

/* --- Rates Section --- */
.rates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.rate-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    position: relative;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.rate-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.rate-card.featured {
    border-color: var(--accent);
    border-width: 2px;
}

.rate-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: .3rem 1rem;
    border-radius: 100px;
    white-space: nowrap;
}

.rate-card h3 {
    font-size: 1.2rem;
    margin-bottom: .5rem;
}

.rate-card .season {
    font-size: .85rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.rate-price {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--accent);
}

.rate-price small {
    font-size: .9rem;
    font-weight: 400;
    color: var(--text-light);
}

.rate-details {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
    text-align: left;
}

.rate-details li {
    padding: .3rem 0;
    font-size: .9rem;
    color: var(--text);
    padding-left: 1.5rem;
    position: relative;
}

.rate-details li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* --- Accommodations --- */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.amenity-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    border: 1px solid var(--border);
    transition: box-shadow .3s var(--ease);
}

.amenity-card:hover {
    box-shadow: var(--shadow);
}

.amenity-card h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: .75rem;
    padding-bottom: .75rem;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

.amenity-card .amenity-subtitle {
    font-size: .85rem;
    color: var(--text-light);
    margin-bottom: .5rem;
}

.amenity-list {
    padding: 0;
}

.amenity-list li {
    padding: .3rem 0;
    font-size: .9rem;
    color: var(--text);
    position: relative;
    padding-left: 1.25rem;
}

.amenity-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .7rem;
    width: 5px;
    height: 5px;
    background: var(--accent);
    border-radius: 50%;
}

/* --- Floor Plans --- */
.floorplans-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.floorplan-item {
    text-align: center;
}

.floorplan-item h4 {
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.floorplan-item img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* --- Gallery --- */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-bottom: 2rem;
}

.gallery-filter {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: .5rem 1.5rem;
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    border-radius: 4px;
    transition: all .25s var(--ease);
}

.gallery-filter:hover,
.gallery-filter.active {
    background: var(--primary);
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: .5rem;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
    display: block;
}

.gallery-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform .6s var(--ease);
}

.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-card .gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem .75rem .75rem;
    background: linear-gradient(transparent, rgba(0,0,0,.6));
    color: var(--white);
    font-size: .8rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity .3s var(--ease), transform .3s var(--ease);
}

.gallery-card:hover .gallery-label {
    opacity: 1;
    transform: translateY(0);
}

.gallery-card.hidden { display: none; }

/* --- Local Section --- */
.local-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.local-card {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
}

.local-card h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
    padding-bottom: .75rem;
    border-bottom: 2px solid var(--accent);
}

.local-group-title {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-muted);
    margin-top: 1rem;
    margin-bottom: .25rem;
}

.local-card a {
    display: block;
    padding: .35rem 0;
    font-size: .9rem;
    color: var(--text);
    transition: color .2s var(--ease), padding-left .2s var(--ease);
}

.local-card a:hover {
    color: var(--accent);
    padding-left: .5rem;
}

/* --- Contact Section --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
}

.contact-info h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--accent);
    margin-top: .75rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: .75rem 0;
}

.contact-row-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--accent);
}

.contact-row strong {
    display: block;
    font-size: .9rem;
    color: var(--primary);
    margin-bottom: .15rem;
}

.contact-row span,
.contact-row a {
    font-size: .9rem;
    color: var(--text-light);
}

.owner-story {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.owner-story p {
    font-size: .9rem;
    color: var(--text);
    margin-bottom: .75rem;
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.contact-form-card h3 {
    margin-bottom: 1.5rem;
}

.contact-form-card h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--accent);
    margin-top: .75rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: .85rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: .4rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: .75rem 1rem;
    font-family: var(--font-body);
    font-size: .95rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--cream);
    color: var(--text);
    transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212,165,116,.15);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
    text-align: center;
    margin-top: 1.5rem;
}

/* --- Map --- */
.map-wrapper {
    width: 100%;
    height: 350px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
}

/* --- Footer --- */
.site-footer {
    background: var(--primary);
    color: rgba(255,255,255,.7);
    padding: 4rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 3rem;
}

.site-footer h5 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: .75rem;
}

.site-footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.site-footer a { color: rgba(255,255,255,.7); }
.site-footer a:hover { color: var(--accent); }

.footer-links li {
    padding: .3rem 0;
    font-size: .9rem;
}

.footer-links li svg {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: .5rem;
    fill: var(--accent);
}

.footer-map {
    border-radius: 8px;
    overflow: hidden;
    height: 200px;
}

.footer-map iframe { width: 100%; height: 100%; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: 3rem;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .8rem;
    color: rgba(255,255,255,.4);
}

.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--accent); }

/* --- Back to Top --- */
.to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--accent);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all .3s var(--ease);
    z-index: 900;
    box-shadow: var(--shadow);
}

.to-top.visible { opacity: 1; visibility: visible; }
.to-top:hover { background: var(--accent); color: var(--white); transform: translateY(-3px); }

/* --- Page Banner (inner pages) --- */
.page-banner {
    position: relative;
    height: 40vh;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--primary);
}

.page-banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .4;
}

.page-banner .banner-body {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-banner h1 { color: var(--white); margin-bottom: .5rem; }
.page-banner p { color: rgba(255,255,255,.7); font-size: 1.1rem; }

/* --- Policy Card --- */
.policy-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 3rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    max-width: 900px;
    margin: 0 auto;
}

.policy-card ol {
    padding-left: 1.5rem;
    list-style: decimal;
}

.policy-card ol li {
    padding: .6rem 0;
    line-height: 1.65;
    font-size: .95rem;
}

/* --- Thank You --- */
.thankyou-body {
    text-align: center;
    max-width: 550px;
    margin: 0 auto;
}

.thankyou-icon { font-size: 4rem; margin-bottom: 1.5rem; }
.thankyou-icon.ok { color: #27ae60; }
.thankyou-icon.err { color: #e74c3c; }

/* --- Scroll Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .gallery-grid { grid-template-columns: repeat(4, 1fr); }
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
    .local-grid { grid-template-columns: repeat(2, 1fr); }
    .rates-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    :root { --nav-h: 60px; }

    .nav-hamburger { display: block; }

    .nav-menu {
        display: none;
        position: absolute;
        top: var(--nav-h);
        left: 0; right: 0;
        background: var(--primary);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 8px 30px rgba(0,0,0,.2);
    }

    .nav-menu.open { display: flex; }
    .nav-menu a { padding: .75rem 1.5rem; text-align: center; }
    .nav-cta { margin: .5rem 1.5rem !important; text-align: center !important; display: block !important; }

    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-image img { height: 350px; }
    .about-highlights { grid-template-columns: 1fr; }

    .rates-grid { grid-template-columns: 1fr; max-width: 400px; }
    .amenities-grid { grid-template-columns: 1fr; }
    .local-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-grid { grid-template-columns: 1fr; }

    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-card img { height: 180px; }

    .section, .section-alt, .section-dark { padding: 4rem 0; }
    .hero-body h1 { font-size: clamp(2.2rem, 6vw, 3.5rem); }

.footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: .25rem; }
    .gallery-card img { height: 140px; }
    .section, .section-alt, .section-dark { padding: 3rem 0; }
.gallery-filters { flex-wrap: wrap; }
    .hero-actions { flex-direction: column; align-items: center; }
    .btn { width: 100%; justify-content: center; }
    .contact-form-card { padding: 1.5rem; }
    .policy-card { padding: 1.5rem; }
    .rate-card { padding: 2rem 1.25rem; }
}
