/* ===================================
   Dakota Countryside Inn — Stylesheet
   =================================== */

/* --- CSS Custom Properties --- */
:root {
    --color-forest: #1B4332;
    --color-forest-light: #2D6A4F;
    --color-forest-dark: #0E2A1F;
    --color-sage: #52B788;
    --color-sage-light: #95D5B2;
    --color-cream: #F4F1EB;
    --color-cream-dark: #E8E4DB;
    --color-warm: #F4D9A6;
    --color-warm-dark: #D4A84B;
    --color-white: #FFFFFF;
    --color-text: #1A1A1A;
    --color-text-light: #4A4A4A;
    --color-text-muted: #6B6B6B;
    --color-border: #E0DCD4;
    --color-overlay: rgba(27, 67, 50, 0.72);
    --color-overlay-dark: rgba(14, 42, 31, 0.80);

    --font-heading: 'Lora', Georgia, serif;
    --font-body: 'Nunito', 'Segoe UI', sans-serif;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;

    --shadow-sm: 0 2px 8px rgba(27, 67, 50, 0.06);
    --shadow-md: 0 4px 20px rgba(27, 67, 50, 0.08);
    --shadow-lg: 0 8px 40px rgba(27, 67, 50, 0.12);
    --shadow-xl: 0 16px 60px rgba(27, 67, 50, 0.16);

    --transition-fast: 0.2s ease;
    --transition-med: 0.35s ease;
    --transition-slow: 0.5s ease;

    --container-max: 1200px;
    --nav-height: 76px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

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

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

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

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

ul {
    list-style: none;
}

/* --- Utility --- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

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

.btn--primary {
    background: var(--color-forest);
    color: var(--color-white);
    box-shadow: 0 4px 16px rgba(27, 67, 50, 0.3);
}

.btn--primary:hover {
    background: var(--color-forest-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(27, 67, 50, 0.4);
}

.btn--secondary {
    background: transparent;
    color: var(--color-forest);
    border: 2px solid var(--color-forest);
}

.btn--secondary:hover {
    background: var(--color-forest);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn--outline:hover {
    background: var(--color-white);
    color: var(--color-forest);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

.btn--outline-light {
    background: transparent;
    color: var(--color-forest);
    border: 2px solid var(--color-forest);
}

.btn--outline-light:hover {
    background: var(--color-forest);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn--light {
    background: var(--color-white);
    color: var(--color-forest);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn--light:hover {
    background: var(--color-cream);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.btn--full {
    width: 100%;
    justify-content: center;
    padding: 16px 30px;
    font-size: 16px;
}

/* --- Section Headers --- */
.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-sage);
    margin-bottom: 12px;
    padding: 6px 14px;
    background: rgba(82, 183, 136, 0.1);
    border-radius: 50px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-forest);
    margin-bottom: 18px;
}

.section-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-text-light);
    max-width: 600px;
}

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

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

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    transition: all var(--transition-med);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(27, 67, 50, 0.08);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: var(--color-white);
    transition: color var(--transition-fast);
}

.navbar.scrolled .nav-logo {
    color: var(--color-forest);
}

.nav-logo-text {
    display: none;
}

@media (min-width: 768px) {
    .nav-logo-text {
        display: inline;
    }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    border-radius: 50px;
    transition: all var(--transition-fast);
}

.nav-link:hover {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.12);
}

.navbar.scrolled .nav-link {
    color: var(--color-text-light);
}

.navbar.scrolled .nav-link:hover {
    color: var(--color-forest);
    background: rgba(27, 67, 50, 0.06);
}

.nav-link--cta {
    background: var(--color-white);
    color: var(--color-forest) !important;
    margin-left: 8px;
}

.nav-link--cta:hover {
    background: var(--color-warm) !important;
    color: var(--color-forest-dark) !important;
    transform: translateY(-1px);
}

.navbar.scrolled .nav-link--cta {
    background: var(--color-forest);
    color: var(--color-white) !important;
}

.navbar.scrolled .nav-link--cta:hover {
    background: var(--color-forest-light);
}

/* Mobile nav toggle */
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    z-index: 1001;
}

.nav-toggle-line {
    width: 24px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.navbar.scrolled .nav-toggle-line {
    background: var(--color-forest);
}

.nav-toggle.active .nav-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (min-width: 1024px) {
    .nav-toggle {
        display: none;
    }
}

/* Mobile menu */
@media (max-width: 1023px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-forest-dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 40px;
        gap: 4px;
        transition: right var(--transition-med);
        box-shadow: -8px 0 30px rgba(0, 0, 0, 0.2);
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-link {
        color: rgba(255, 255, 255, 0.85) !important;
        font-size: 16px;
        padding: 12px 16px;
        width: 100%;
        border-radius: var(--radius-sm);
    }

    .nav-link:hover {
        background: rgba(255, 255, 255, 0.1) !important;
        color: var(--color-white) !important;
    }

    .nav-link--cta {
        background: var(--color-sage) !important;
        color: var(--color-white) !important;
        margin-left: 0;
        margin-top: 12px;
        text-align: center;
    }

    .nav-link--cta:hover {
        background: var(--color-sage-light) !important;
    }
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(14, 42, 31, 0.82) 0%,
        rgba(27, 67, 50, 0.68) 50%,
        rgba(45, 106, 79, 0.55) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 780px;
    padding: 120px 24px 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-warm);
    letter-spacing: 0.04em;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5.5vw, 62px);
    font-weight: 600;
    line-height: 1.15;
    color: var(--color-white);
    margin-bottom: 24px;
}

.hero-title-accent {
    color: var(--color-warm);
    font-style: italic;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 19px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 38px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    animation: float 2.5s ease-in-out infinite;
}

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

/* --- Rooms --- */
.rooms {
    padding: 100px 0;
    background: var(--color-cream);
}

.rooms-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

@media (min-width: 768px) {
    .rooms-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.room-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-med);
}

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

.room-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.room-card-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 5px 12px;
    background: var(--color-warm);
    color: var(--color-forest-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 50px;
}

.room-card-body {
    padding: 26px;
}

.room-card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-forest);
    margin-bottom: 10px;
}

.room-card-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 18px;
}

.room-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-bottom: 22px;
}

.room-card-features li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-light);
}

/* --- Amenities --- */
.amenities {
    padding: 100px 0;
    background: var(--color-white);
}

.amenities-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
    align-items: center;
}

@media (min-width: 1024px) {
    .amenities-layout {
        grid-template-columns: 1fr 1fr;
        gap: 72px;
    }
}

.amenities-image-group {
    position: relative;
}

.amenities-image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.amenities-image-main img {
    width: 100%;
    height: auto;
    display: block;
}

.amenities-image-stack {
    position: absolute;
    bottom: -32px;
    right: -16px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--color-white);
}

@media (max-width: 767px) {
    .amenities-image-stack {
        display: none;
    }
}

.amenities-image-stack img {
    width: 100%;
    height: auto;
    display: block;
}

.amenities-content {
    padding-top: 16px;
}

.amenities-content .section-subtitle {
    margin-bottom: 36px;
}

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

@media (min-width: 480px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.amenity-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--color-cream);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.amenity-card:hover {
    background: rgba(82, 183, 136, 0.08);
    transform: translateX(4px);
}

.amenity-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-forest);
    border-radius: var(--radius-sm);
    color: var(--color-sage-light);
}

.amenity-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-forest);
    margin-bottom: 4px;
}

.amenity-desc {
    font-size: 13px;
    line-height: 1.6;
    color: var(--color-text-muted);
}

/* --- Explore --- */
.explore {
    padding: 100px 0;
    background: var(--color-cream);
}

.explore-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 600px) {
    .explore-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.explore-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-med);
}

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

.explore-card-image {
    height: 220px;
    overflow: hidden;
}

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

.explore-card:hover .explore-card-image img {
    transform: scale(1.06);
}

.explore-card-body {
    padding: 22px 24px;
}

.explore-card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-forest);
    margin-bottom: 8px;
}

.explore-card-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-muted);
}

/* --- About --- */
.about {
    padding: 100px 0;
    background: var(--color-white);
}

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

@media (min-width: 1024px) {
    .about-layout {
        grid-template-columns: 1fr 1fr;
        gap: 72px;
    }
}

.about-content .section-subtitle {
    margin-bottom: 28px;
}

.about-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 18px;
}

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

.about-value {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about-value-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(82, 183, 136, 0.1);
    border-radius: var(--radius-sm);
    color: var(--color-forest);
}

.about-value h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-forest);
    margin-bottom: 4px;
}

.about-value p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--color-text-muted);
}

.about-image-group {
    position: relative;
}

.about-image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-main img {
    width: 100%;
    height: auto;
    display: block;
}

.about-image-accent {
    position: absolute;
    bottom: -28px;
    left: -20px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--color-white);
}

@media (max-width: 767px) {
    .about-image-accent {
        display: none;
    }
}

.about-image-accent img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- CTA --- */
.cta {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(27, 67, 50, 0.88) 0%,
        rgba(45, 106, 79, 0.80) 100%
    );
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-white);
    margin-bottom: 18px;
}

.cta-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

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

.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
}

@media (min-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr 1fr;
        gap: 72px;
    }
}

.contact-info .section-subtitle {
    margin-bottom: 36px;
}

.contact-desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-detail-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-forest);
    border-radius: var(--radius-md);
    color: var(--color-sage-light);
}

.contact-detail-label {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-forest);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.contact-detail p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-light);
}

.contact-detail a {
    color: var(--color-forest-light);
    transition: color var(--transition-fast);
}

.contact-detail a:hover {
    color: var(--color-sage);
}

/* Form */
.contact-form-wrapper {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-forest);
    margin-bottom: 7px;
    letter-spacing: 0.02em;
}

.form-input {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-text);
    background: var(--color-cream);
    transition: all var(--transition-fast);
    outline: none;
}

.form-input::placeholder {
    color: var(--color-text-muted);
}

.form-input:focus {
    border-color: var(--color-sage);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.15);
}

.form-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'%3E%3Cpath d='M6 8L2 4h8L6 8z' fill='%231B4332'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

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

.form-success {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 14px 18px;
    background: rgba(82, 183, 136, 0.1);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-forest);
}

/* --- Footer --- */
.footer {
    background: var(--color-forest-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 64px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 48px;
}

@media (min-width: 768px) {
    .footer-top {
        grid-template-columns: 2fr 1fr 1.2fr;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 14px;
}

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

.footer-links-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

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

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-sage-light);
}

.footer-contact p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 6px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.65);
    transition: color var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--color-sage-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}

/* --- Scroll Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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