/* Green Mountain Suites — one-pager */

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

:root {
    --green: #2f5d3a;
    --green-dark: #1e3f26;
    --green-soft: #e8f0ea;
    --sand: #f7f4ee;
    --ink: #1d2320;
    --muted: #6b7168;
    --line: #e4e1d9;
    --white: #ffffff;
    --radius: 14px;
    --shadow: 0 10px 30px rgba(20, 30, 20, 0.08);
}

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: Georgia, "Times New Roman", serif;
    color: var(--ink);
    line-height: 1.2;
    margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.15rem; }

p { margin: 0 0 1em; color: var(--ink); }

a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-dark); }

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

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

/* ---------- Hero ---------- */

.hero {
    position: relative;
    min-height: 90vh;
    background-size: cover;
    background-position: center;
    color: var(--white);
    display: flex;
    flex-direction: column;
    padding: 24px 0 64px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 40, 25, 0.55) 0%, rgba(20, 40, 25, 0.25) 40%, rgba(20, 40, 25, 0.7) 100%);
    z-index: 1;
}

.nav, .hero-content { position: relative; z-index: 2; }

.nav {
    max-width: 1180px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.brand img {
    height: 38px;
    width: auto;
    filter: brightness(0) invert(1);
}

.brand span { font-size: 1.05rem; }

.nav-links {
    list-style: none;
    display: flex;
    gap: 28px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--white);
    font-size: 0.95rem;
    opacity: 0.9;
    transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }

.hero-content {
    max-width: 1180px;
    margin: auto auto 0;
    padding: 0 24px;
    width: 100%;
}

.hero-content h1 {
    color: var(--white);
    max-width: 720px;
    margin-bottom: 16px;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.1rem;
    max-width: 560px;
    margin-bottom: 28px;
}

.btn {
    display: inline-block;
    background: var(--green);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: background 0.2s, transform 0.2s;
}
.btn:hover { background: var(--green-dark); color: var(--white); transform: translateY(-1px); }

/* ---------- Section basics ---------- */

.section { padding: 96px 0; }

.eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.78rem;
    color: var(--green);
    font-weight: 600;
    margin-bottom: 12px;
}

.section-intro { max-width: 720px; margin-bottom: 48px; }
.section-intro.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-intro p { color: var(--muted); font-size: 1.05rem; }

/* ---------- About / Stats ---------- */

.about { background: var(--sand); }

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.stat {
    background: var(--white);
    padding: 28px 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.stat-num {
    display: block;
    font-family: Georgia, serif;
    font-size: 2rem;
    color: var(--green);
    font-weight: 700;
}

.stat-label {
    display: block;
    margin-top: 4px;
    font-size: 0.9rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ---------- Gallery ---------- */

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

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* ---------- Amenities ---------- */

.amenities { background: var(--green-soft); }

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

.amenity {
    background: var(--white);
    padding: 28px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    transition: transform 0.2s, box-shadow 0.2s;
}
.amenity:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.amenity h3 { color: var(--green-dark); margin-bottom: 6px; }
.amenity p { color: var(--muted); margin: 0; font-size: 0.95rem; }

/* ---------- Location ---------- */

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

.location-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.distance-list {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
    border-top: 1px solid var(--line);
}

.distance-list li {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
}

.distance-list li span:last-child {
    color: var(--green);
    font-weight: 600;
}

/* ---------- Contact ---------- */

.contact { background: var(--sand); }

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

.contact-card {
    background: var(--white);
    padding: 32px 28px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.contact-card h3 { color: var(--green-dark); margin-bottom: 10px; }
.contact-card p { margin: 0; color: var(--muted); }

/* ---------- Footer ---------- */

.footer {
    background: var(--green-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 40px 0;
    text-align: center;
}

.footer p { margin: 4px 0; color: inherit; }
.footer-small { font-size: 0.9rem; opacity: 0.7; }

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
    .section { padding: 72px 0; }
    .nav-links { display: none; }
    .stats,
    .amenity-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }
    .gallery-item.wide { grid-column: span 2; }
    .location-wrap { grid-template-columns: 1fr; gap: 32px; }
    .location-image img { height: 280px; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 500px) {
    .stats { grid-template-columns: 1fr 1fr; }
    .amenity-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
    .gallery-item.wide, .gallery-item.tall { grid-column: span 1; grid-row: span 1; }
    .hero { min-height: 80vh; }
}
