/* ============================================
   Awesome Acres — Styles
   Clean minimalist · Terracotta & Sand
   ============================================ */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    color: #3D2B1F;
    background-color: #FDF8F3;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul {
    list-style: none;
}

/* --- Focus --- */
:focus-visible {
    outline: 2px solid #B56C4A;
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: #B56C4A;
    color: #FDF8F3;
    padding: 0.5rem 1rem;
    border-radius: 0 0 4px 4px;
    z-index: 100;
    font-size: 0.875rem;
}

.skip-link:focus {
    top: 0;
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: 'Crimson Pro', Georgia, serif;
    font-weight: 400;
    line-height: 1.2;
    color: #2A1F17;
}

/* --- Eyebrow --- */
.section-eyebrow {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #B56C4A;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: #2A1F17;
}

.section-desc {
    font-size: 1.125rem;
    color: #6B5344;
    max-width: 560px;
    line-height: 1.8;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
    padding: 0.875rem 1.75rem;
    border-radius: 6px;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-primary {
    background: #B56C4A;
    color: #FDF8F3;
    border: 1.5px solid #B56C4A;
}

.btn-primary:hover {
    background: #9A5A3C;
    border-color: #9A5A3C;
}

.btn-ghost {
    background: transparent;
    color: #FDF8F3;
    border: 1.5px solid rgba(253, 248, 243, 0.5);
}

.btn-ghost:hover {
    border-color: #FDF8F3;
    background: rgba(253, 248, 243, 0.1);
}

.btn-light {
    background: #FDF8F3;
    color: #B56C4A;
    border: 1.5px solid #FDF8F3;
}

.btn-light:hover {
    background: #F5E6D3;
    border-color: #F5E6D3;
}

.btn-outline-light {
    background: transparent;
    color: #FDF8F3;
    border: 1.5px solid rgba(253, 248, 243, 0.5);
}

.btn-outline-light:hover {
    border-color: #FDF8F3;
    background: rgba(253, 248, 243, 0.1);
}

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

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(253, 248, 243, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(181, 108, 74, 0.1);
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 1px 20px rgba(42, 31, 23, 0.06);
}

.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: 'Crimson Pro', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #2A1F17;
    letter-spacing: -0.01em;
}

.logo-icon {
    color: #B56C4A;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.main-nav a {
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: #6B5344;
    position: relative;
    transition: color 0.2s ease;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #B56C4A;
    transition: width 0.25s ease;
}

.main-nav a:hover {
    color: #B56C4A;
}

.main-nav a:hover::after {
    width: 100%;
}

/* --- Nav Toggle --- */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.nav-toggle-line {
    display: block;
    width: 22px;
    height: 1.5px;
    background: #3D2B1F;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 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(4px, -5px);
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        #B56C4A 0%,
        #C4855A 25%,
        #D4A574 50%,
        #E8C4A0 70%,
        #F5DCC0 100%
    );
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(139, 69, 38, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(212, 165, 116, 0.3) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    text-align: center;
    padding: 8rem 1.5rem 6rem;
    max-width: 720px;
}

.hero-eyebrow {
    font-size: 0.8125rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(253, 248, 243, 0.75);
    margin-bottom: 1.25rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    color: #FDF8F3;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-title em {
    font-style: italic;
    font-weight: 300;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.1875rem);
    color: rgba(253, 248, 243, 0.85);
    line-height: 1.8;
    max-width: 540px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
}

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

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 48px;
    background: rgba(253, 248, 243, 0.3);
}

.hero-scroll-indicator span {
    display: block;
    width: 1px;
    height: 16px;
    background: rgba(253, 248, 243, 0.6);
    margin: 0 auto;
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* --- Sections --- */
.section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header .section-desc {
    margin: 0 auto;
}

/* --- Rooms --- */
.rooms {
    background: #FDF8F3;
}

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

.room-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(181, 108, 74, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.room-card:hover {
    box-shadow: 0 12px 40px rgba(42, 31, 23, 0.1);
    transform: translateY(-4px);
}

.room-image {
    overflow: hidden;
    aspect-ratio: 3/2;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.room-info {
    padding: 1.75rem;
}

.room-name {
    font-family: 'Crimson Pro', serif;
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 0.625rem;
    color: #2A1F17;
}

.room-desc {
    font-size: 0.9375rem;
    color: #6B5344;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem 1rem;
}

.room-features li {
    font-size: 0.8125rem;
    color: #8B7355;
    padding-left: 1rem;
    position: relative;
}

.room-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #B56C4A;
}

/* --- About --- */
.about {
    background: #F7EDE3;
}

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

.about-image-wrap {
    border-radius: 10px;
    overflow: hidden;
}

.about-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content .section-title {
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1rem;
    color: #6B5344;
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(181, 108, 74, 0.15);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Crimson Pro', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #B56C4A;
    line-height: 1;
    margin-bottom: 0.375rem;
}

.stat-label {
    font-size: 0.8125rem;
    color: #8B7355;
    letter-spacing: 0.02em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(181, 108, 74, 0.2);
}

/* --- Area --- */
.area {
    background: #FDF8F3;
}

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

.area-card {
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(181, 108, 74, 0.08);
    transition: box-shadow 0.3s ease;
}

.area-card:hover {
    box-shadow: 0 8px 30px rgba(42, 31, 23, 0.08);
}

.area-card-image {
    overflow: hidden;
    aspect-ratio: 4/3;
}

.area-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.area-card:hover .area-card-image img {
    transform: scale(1.04);
}

.area-card-content {
    padding: 1.5rem;
}

.area-card-content h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2A1F17;
}

.area-card-content p {
    font-size: 0.9375rem;
    color: #6B5344;
    line-height: 1.7;
}

/* --- Amenities --- */
.amenities {
    background: #F7EDE3;
}

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

.amenity {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 1.75rem;
    background: #fff;
    border-radius: 8px;
    border: 1px solid rgba(181, 108, 74, 0.07);
    transition: border-color 0.2s ease;
}

.amenity:hover {
    border-color: rgba(181, 108, 74, 0.2);
}

.amenity-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(181, 108, 74, 0.08);
    color: #B56C4A;
}

.amenity span {
    font-size: 0.9375rem;
    color: #3D2B1F;
    font-weight: 400;
}

/* --- CTA --- */
.cta {
    background: linear-gradient(
        135deg,
        #B56C4A 0%,
        #9A5A3C 100%
    );
    padding: 5rem 0;
}

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

.cta .section-eyebrow {
    color: rgba(253, 248, 243, 0.7);
}

.cta .section-title {
    color: #FDF8F3;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.0625rem;
    color: rgba(253, 248, 243, 0.85);
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

/* --- Contact --- */
.contact {
    background: #FDF8F3;
}

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

.contact-desc {
    font-size: 1rem;
    color: #6B5344;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
}

.contact-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(181, 108, 74, 0.08);
    color: #B56C4A;
}

.contact-item strong {
    display: block;
    font-family: 'Crimson Pro', serif;
    font-size: 1.0625rem;
    font-weight: 600;
    color: #2A1F17;
    margin-bottom: 0.25rem;
}

.contact-item p {
    font-size: 0.9375rem;
    color: #6B5344;
    line-height: 1.6;
}

.contact-item a {
    color: #B56C4A;
    transition: color 0.2s ease;
}

.contact-item a:hover {
    color: #9A5A3C;
}

/* --- Form --- */
.contact-form-wrap {
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem;
    border: 1px solid rgba(181, 108, 74, 0.08);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #8B7355;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 300;
    color: #3D2B1F;
    background: #FDF8F3;
    border: 1.5px solid rgba(181, 108, 74, 0.15);
    border-radius: 6px;
    transition: border-color 0.2s ease, background 0.2s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #B8A494;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #B56C4A;
    background: #fff;
}

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

.form-success {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(76, 145, 90, 0.08);
    border: 1px solid rgba(76, 145, 90, 0.2);
    border-radius: 6px;
    color: #3D6B45;
    font-size: 0.9375rem;
}

.form-success[hidden] {
    display: none;
}

/* --- Footer --- */
.site-footer {
    background: #2A1F17;
    color: rgba(253, 248, 243, 0.6);
    padding: 4rem 0 2rem;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(253, 248, 243, 0.08);
}

.logo-light {
    color: #FDF8F3;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 320px;
    color: rgba(253, 248, 243, 0.5);
}

.footer-links nav {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-links a {
    font-size: 0.9375rem;
    color: rgba(253, 248, 243, 0.6);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #F5DCC0;
}

.footer-copy {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 2rem;
    font-size: 0.8125rem;
    color: rgba(253, 248, 243, 0.35);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .rooms-grid,
    .area-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(253, 248, 243, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        align-items: stretch;
        padding: 1.5rem;
        gap: 0;
        border-bottom: 1px solid rgba(181, 108, 74, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }
    
    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .main-nav a {
        padding: 0.875rem 0;
        border-bottom: 1px solid rgba(181, 108, 74, 0.08);
        font-size: 1rem;
    }
    
    .main-nav a::after {
        display: none;
    }
    
    .hero-content {
        padding: 7rem 1.5rem 5rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .rooms-grid,
    .area-grid,
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .about-image-wrap {
        order: -1;
    }
    
    .about-stats {
        flex-wrap: wrap;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-copy {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }
    
    .contact-form-wrap {
        padding: 1.5rem;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .room-image img,
    .area-card-image img {
        transition: none;
    }
}
