/* ============================================
   THE HIGHLAND HOUSE — Styles
   ============================================ */

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

:root {
    --green-900: #0f2920;
    --green-800: #1a3c34;
    --green-700: #234f44;
    --green-600: #2d6355;
    --green-500: #377a68;
    --green-400: #4a9e88;
    --green-100: #d4e8df;
    --green-50:  #eaf3ee;
    --cream:     #f7f5f0;
    --cream-light:#faf9f6;
    --white:     #ffffff;
    --text-dark: #1a1a18;
    --text-mid:  #4a4a46;
    --text-light:#7a7a74;
    --border:    #e2e0db;
    --shadow-sm: 0 1px 3px rgba(15,41,32,0.06), 0 1px 2px rgba(15,41,32,0.04);
    --shadow-md: 0 4px 16px rgba(15,41,32,0.08), 0 2px 4px rgba(15,41,32,0.04);
    --shadow-lg: 0 12px 40px rgba(15,41,32,0.12), 0 4px 12px rgba(15,41,32,0.06);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    background: var(--cream-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--green-800);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-weight: 500;
}
.skip-link:focus {
    top: 1rem;
}

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

/* --- Typography --- */
h1, h2, h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.15;
    color: var(--green-900);
}

.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-500);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--text-mid);
    max-width: 560px;
    line-height: 1.7;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.75rem 1.625rem;
    border-radius: var(--radius-sm);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--green-800);
    color: var(--white);
    border-color: var(--green-800);
}
.btn-primary:hover {
    background: var(--green-700);
    border-color: var(--green-700);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--green-700);
    border-color: var(--green-600);
}
.btn-secondary:hover {
    background: var(--green-50);
    border-color: var(--green-700);
}

.btn-outline {
    background: transparent;
    color: var(--green-800);
    border-color: var(--green-600);
}
.btn-outline:hover {
    background: var(--green-50);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

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

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1rem;
}

/* =====================
   HEADER
   ===================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250,249,246,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition);
}
.header.scrolled {
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--green-800);
}
.logo-icon {
    color: var(--green-700);
}

.logo-light {
    color: var(--white);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}
.nav-list a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-mid);
    padding: 0.5rem 0.875rem;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}
.nav-list a:hover {
    color: var(--green-800);
    background: var(--green-50);
}

.btn-nav {
    background: var(--green-800);
    color: var(--white) !important;
    border-radius: var(--radius-sm);
    margin-left: 0.5rem;
}
.btn-nav:hover {
    background: var(--green-700) !important;
}

/* Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.nav-toggle-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--green-800);
    border-radius: 2px;
    transition: all var(--transition);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
    opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* =====================
   HERO
   ===================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: 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(
        to right,
        rgba(15,41,32,0.82) 0%,
        rgba(15,41,32,0.65) 50%,
        rgba(15,41,32,0.45) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 72px;
    max-width: 640px;
}

.hero-eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green-400);
    margin-bottom: 1.25rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.25rem);
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 2.25rem;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.hero-scroll svg {
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

/* =====================
   INTRO STRIP
   ===================== */
.intro-strip {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.intro-item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 1.75rem 2rem;
    border-right: 1px solid var(--border);
    transition: background var(--transition);
}
.intro-item:last-child {
    border-right: none;
}
.intro-item:hover {
    background: var(--green-50);
}

.intro-icon {
    flex-shrink: 0;
    color: var(--green-600);
    margin-top: 2px;
}

.intro-item strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--green-900);
    margin-bottom: 0.25rem;
}
.intro-item span {
    font-size: 0.8125rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* =====================
   ROOMS
   ===================== */
.rooms {
    padding: 6rem 0;
    background: var(--cream);
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-header .section-subtitle {
    margin: 0 auto;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.room-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition);
}
.room-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.room-card-img {
    overflow: hidden;
    aspect-ratio: 3/2;
}
.room-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.room-card:hover .room-card-img img {
    transform: scale(1.04);
}

.room-card-body {
    padding: 1.75rem;
}

.room-card-title {
    font-size: 1.375rem;
    margin-bottom: 0.625rem;
}

.room-card-desc {
    font-size: 0.9375rem;
    color: var(--text-mid);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.room-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.375rem 1rem;
    margin-bottom: 1.5rem;
}
.room-features li {
    font-size: 0.8125rem;
    color: var(--text-mid);
    padding-left: 1.25rem;
    position: relative;
}
.room-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.4em;
    width: 6px;
    height: 6px;
    background: var(--green-400);
    border-radius: 50%;
}

/* =====================
   AMENITIES
   ===================== */
.amenities {
    padding: 6rem 0;
    background: var(--white);
}

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

.amenities-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}
.amenities-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    font-size: 0.9375rem;
    color: var(--text-mid);
    line-height: 1.5;
}
.amenities-list li strong {
    color: var(--text-dark);
}

.amenities-check {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--green-50);
    border: 1px solid var(--green-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-600);
    margin-top: 1px;
}

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

/* =====================
   LOCATION
   ===================== */
.location {
    padding: 6rem 0;
    background: var(--cream);
}

.location-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.location-address {
    font-style: normal;
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin: 1.5rem 0;
    padding: 1.25rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}
.location-address strong {
    color: var(--green-800);
    display: block;
    margin-bottom: 0.375rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}
.location-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-mid);
    font-size: 0.9375rem;
}
.location-detail svg {
    color: var(--green-600);
    flex-shrink: 0;
}
.location-detail a {
    color: var(--green-700);
    font-weight: 500;
    transition: color var(--transition);
}
.location-detail a:hover {
    color: var(--green-500);
}

/* =====================
   ABOUT
   ===================== */
.about {
    padding: 6rem 0;
    background: var(--white);
}

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

.about-image-col {
    position: relative;
}
.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-img-accent {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}
.about-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-paragraph {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.about-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}
.stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--green-800);
    line-height: 1;
}
.stat-label {
    font-size: 0.8125rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}

/* =====================
   CTA
   ===================== */
.cta {
    padding: 6rem 0;
    background: var(--green-900);
    position: relative;
    overflow: hidden;
}
.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(74,158,136,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-inner {
    position: relative;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.cta-eyebrow {
    color: var(--green-400);
}

.cta-title {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-desc {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
}
.contact-detail svg {
    color: var(--green-600);
    flex-shrink: 0;
    margin-top: 2px;
}
.contact-detail strong {
    display: block;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-light);
    margin-bottom: 0.25rem;
    font-weight: 500;
}
.contact-detail a {
    color: var(--green-700);
    font-weight: 500;
    transition: color var(--transition);
}
.contact-detail a:hover {
    color: var(--green-500);
}
.contact-detail span {
    color: var(--text-mid);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}
.form-group:last-of-type {
    margin-bottom: 0;
}

.form-group label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: var(--text-dark);
    background: var(--cream-light);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green-500);
    box-shadow: 0 0 0 3px rgba(55,122,104,0.12);
}
.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: 0.75rem;
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    background: var(--green-50);
    border: 1px solid var(--green-100);
    border-radius: var(--radius-sm);
    color: var(--green-800);
    font-size: 0.9375rem;
    font-weight: 500;
}
.form-success svg {
    color: var(--green-600);
    flex-shrink: 0;
}

/* =====================
   FOOTER
   ===================== */
.footer {
    background: var(--green-900);
    color: rgba(255,255,255,0.7);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-top: 1rem;
    max-width: 300px;
}

.footer-links strong,
.footer-contact strong {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1rem;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}
.footer-links a,
.footer-contact a {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.65);
    transition: color var(--transition);
}
.footer-links a:hover,
.footer-contact a:hover {
    color: var(--white);
}
.footer-contact li:last-child {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.35);
}

/* =====================
   ANIMATIONS
   ===================== */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
    .intro-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .intro-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
    .intro-item:nth-child(odd) {
        border-right: 1px solid var(--border);
    }
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .amenities-layout,
    .location-layout,
    .about-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .about-img-accent {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin-top: 1rem;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        z-index: 101;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 85vw);
        height: 100vh;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        padding: 5.5rem 2rem 2rem;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 100;
    }
    .main-nav.open {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0.25rem;
    }
    .nav-list a {
        padding: 0.875rem 1rem;
        font-size: 1rem;
    }
    .btn-nav {
        margin-left: 0;
        text-align: center;
        justify-content: center;
        margin-top: 0.75rem;
    }

    .hero-content {
        padding-top: 100px;
    }
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .intro-grid {
        grid-template-columns: 1fr;
    }
    .intro-item {
        border-right: none;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .about-stats {
        gap: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.125rem;
    }
    .hero-actions {
        flex-direction: column;
    }
    .hero-actions .btn {
        justify-content: center;
    }
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .contact-form-wrap {
        padding: 1.5rem;
    }
}

/* Mobile nav overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
.nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}
