/* ============================================
   Crystal Sands Properties — Stylesheet
   Classic & Elegant · Forest Green + Off-White
   ============================================ */

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

:root {
    --forest: #1C4532;
    --forest-light: #2A5C43;
    --forest-dark: #143526;
    --off-white: #F5F0E8;
    --off-white-light: #FAF7F0;
    --cream: #EDE8DC;
    --sand: #D4C9B8;
    --charcoal: #2C2C2C;
    --text-dark: #1A1A1A;
    --text-muted: #5A5A5A;
    --text-light: #8A8A7A;
    --white: #FFFFFF;
    
    --font-serif: 'Lora', 'Georgia', serif;
    --font-sans: 'Raleway', 'Helvetica Neue', sans-serif;
    
    --shadow-sm: 0 1px 3px rgba(28, 69, 50, 0.08);
    --shadow-md: 0 4px 20px rgba(28, 69, 50, 0.10);
    --shadow-lg: 0 8px 40px rgba(28, 69, 50, 0.12);
    
    --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--off-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

/* ---------- Typography ---------- */
.section-eyebrow {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 16px;
}

.section-eyebrow--light {
    color: rgba(245, 240, 232, 0.8);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.section-title em {
    font-style: italic;
    color: var(--forest);
}

.section-title--dark {
    color: var(--text-dark);
}

.section-title--light {
    color: var(--off-white);
}

.section-title--light em {
    color: var(--sand);
}

.section-header--center {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.section-subtitle {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-style: italic;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background-color: var(--forest);
    color: var(--off-white);
    border-color: var(--forest);
}

.btn--primary:hover {
    background-color: var(--forest-light);
    border-color: var(--forest-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

.btn--full {
    width: 100%;
}

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition);
}

.nav.scrolled {
    background-color: rgba(245, 240, 232, 0.97);
    backdrop-filter: blur(12px);
    padding: 14px 0;
    box-shadow: var(--shadow-sm);
}

.nav__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--off-white);
    transition: color var(--transition);
}

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

.nav__logo-icon {
    color: var(--off-white);
    transition: color var(--transition);
}

.nav.scrolled .nav__logo-icon {
    color: var(--forest);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav__link {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.85);
    transition: color var(--transition);
    position: relative;
}

.nav.scrolled .nav__link {
    color: var(--text-muted);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--forest);
    transition: width var(--transition);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__link:hover,
.nav__link.active {
    color: var(--forest);
}

.nav__link--cta {
    padding: 10px 24px;
    border: 1.5px solid rgba(245, 240, 232, 0.5);
    border-radius: 4px;
    transition: all var(--transition);
}

.nav.scrolled .nav__link--cta {
    border-color: var(--forest);
    color: var(--forest);
}

.nav__link--cta:hover {
    background-color: var(--forest);
    border-color: var(--forest);
    color: var(--off-white) !important;
}

.nav__link--cta::after {
    display: none;
}

/* Mobile Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav__toggle-line {
    display: block;
    width: 24px;
    height: 1.5px;
    background-color: var(--off-white);
    transition: all var(--transition);
}

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

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

.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, -4px);
}

/* ---------- Hero ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest) 50%, var(--forest-light) 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(42, 92, 67, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(26, 53, 38, 0.3) 0%, transparent 60%);
    pointer-events: none;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__content {
    padding-right: 20px;
}

.hero__eyebrow {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.7);
    margin-bottom: 24px;
    position: relative;
    padding-left: 48px;
}

.hero__eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 36px;
    height: 1px;
    background-color: rgba(245, 240, 232, 0.5);
}

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--off-white);
    margin-bottom: 28px;
}

.hero__headline em {
    font-style: italic;
    color: var(--sand);
}

.hero__description {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(245, 240, 232, 0.75);
    margin-bottom: 40px;
    max-width: 480px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.hero__actions .btn--outline {
    border-color: rgba(245, 240, 232, 0.5);
    color: var(--off-white);
}

.hero__actions .btn--outline:hover {
    background-color: var(--off-white);
    color: var(--forest);
    border-color: var(--off-white);
}

.hero__stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.hero__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero__stat-number {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--off-white);
    line-height: 1;
}

.hero__stat-label {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.55);
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(245, 240, 232, 0.2);
}

.hero__image {
    position: relative;
}

.hero__image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero__image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(245, 240, 232, 0.2);
    border-radius: 8px;
    z-index: -1;
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(245, 240, 232, 0.5);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-family: var(--font-sans);
}

.hero__scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(245, 240, 232, 0.5), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

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

.about__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__left {
    max-width: 520px;
}

.about__text {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.about__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.about__feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about__feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-color: rgba(28, 69, 50, 0.08);
    color: var(--forest);
}

.about__feature-text {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
}

.about__right {
    position: relative;
}

.about__image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about__image-item {
    border-radius: 8px;
    overflow: hidden;
}

.about__image-item--large {
    grid-row: span 2;
}

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

.about__image-item:hover img {
    transform: scale(1.03);
}

/* ---------- Rooms ---------- */
.rooms {
    padding: 120px 0;
    background-color: var(--off-white);
}

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

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

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

.room-card__image {
    position: relative;
    overflow: hidden;
    height: 260px;
}

.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: 16px;
    left: 16px;
    background-color: var(--forest);
    color: var(--off-white);
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 3px;
}

.room-card__content {
    padding: 28px;
}

.room-card__title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.room-card__description {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.room-card__amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.room-card__amenities li {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-light);
    background-color: var(--cream);
    padding: 5px 12px;
    border-radius: 3px;
}

.room-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--forest);
    transition: gap var(--transition);
}

.room-card__link:hover {
    gap: 12px;
}

/* ---------- Experience ---------- */
.experience {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
}

.experience__parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.experience__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(20, 53, 38, 0.88) 0%,
        rgba(28, 69, 50, 0.92) 50%,
        rgba(20, 53, 38, 0.88) 100%
    );
}

.experience__container {
    position: relative;
    z-index: 1;
}

.experience__content {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 72px;
}

.experience__text {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(245, 240, 232, 0.8);
}

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

.exp-card {
    background-color: rgba(245, 240, 232, 0.06);
    border: 1px solid rgba(245, 240, 232, 0.1);
    border-radius: 8px;
    padding: 36px 28px;
    transition: all var(--transition);
}

.exp-card:hover {
    background-color: rgba(245, 240, 232, 0.1);
    transform: translateY(-4px);
}

.exp-card__number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 600;
    color: rgba(245, 240, 232, 0.15);
    line-height: 1;
    margin-bottom: 16px;
}

.exp-card__title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--off-white);
    margin-bottom: 12px;
}

.exp-card__text {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(245, 240, 232, 0.65);
}

/* ---------- Location ---------- */
.location {
    padding: 120px 0;
    background-color: var(--off-white-light);
}

.location__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.location__text {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.location__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.location__detail-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(28, 69, 50, 0.08);
    color: var(--forest);
}

.location__detail strong {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 4px;
}

.location__detail span {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--text-muted);
}

.location__right {
    position: relative;
}

.location__map {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.location__map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.location__map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(20, 53, 38, 0.9), transparent);
    display: flex;
    align-items: center;
    gap: 12px;
}

.location__map-pin {
    flex-shrink: 0;
    color: var(--off-white);
}

.location__map-label {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    color: var(--off-white);
}

/* ---------- Contact ---------- */
.contact {
    padding: 120px 0;
    background-color: var(--off-white);
}

.contact__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact__text {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 40px;
}

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

.contact__info-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact__info-label {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
}

.contact__info-value {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--forest);
    transition: color var(--transition);
}

.contact__info-value:hover {
    color: var(--forest-light);
}

/* Form */
.contact__form {
    background-color: var(--white);
    border-radius: 8px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}

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

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

.form-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-serif);
    font-size: 0.95rem;
    color: var(--text-dark);
    background-color: var(--off-white-light);
    border: 1.5px solid var(--cream);
    border-radius: 4px;
    outline: none;
    transition: all var(--transition);
}

.form-input:focus {
    border-color: var(--forest);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(28, 69, 50, 0.08);
}

.form-input::placeholder {
    color: var(--text-light);
    font-style: italic;
}

.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 24 24' fill='none' stroke='%235A5A5A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

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

.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px;
    background-color: rgba(28, 69, 50, 0.06);
    border-radius: 4px;
    margin-top: 16px;
    text-align: center;
}

.form-success svg {
    color: var(--forest);
}

.form-success p {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ---------- Footer ---------- */
.footer {
    background-color: var(--forest-dark);
    padding: 80px 0 0;
    color: var(--off-white);
}

.footer__container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--off-white);
    margin-bottom: 16px;
}

.footer__tagline {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(245, 240, 232, 0.6);
    max-width: 280px;
}

.footer__nav-label,
.footer__contact .footer__nav-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.4);
    margin-bottom: 20px;
}

.footer__nav ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__nav a {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    color: rgba(245, 240, 232, 0.7);
    transition: color var(--transition);
}

.footer__nav a:hover {
    color: var(--off-white);
}

.footer__contact address {
    font-style: normal;
    font-family: var(--font-serif);
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(245, 240, 232, 0.7);
}

.footer__contact a {
    color: rgba(245, 240, 232, 0.7);
    transition: color var(--transition);
}

.footer__contact a:hover {
    color: var(--off-white);
}

.footer__divider {
    height: 1px;
    background-color: rgba(245, 240, 232, 0.1);
    margin-bottom: 32px;
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 40px;
}

.footer__bottom p {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: rgba(245, 240, 232, 0.4);
}

.footer__note {
    font-style: normal;
}

/* ---------- Animations ---------- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero__content {
        padding-right: 0;
        text-align: center;
    }
    
    .hero__eyebrow {
        padding-left: 0;
    }
    
    .hero__eyebrow::before {
        display: none;
    }
    
    .hero__description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero__actions {
        justify-content: center;
    }
    
    .hero__stats {
        justify-content: center;
    }
    
    .hero__image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about__container,
    .location__container,
    .contact__container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about__left {
        max-width: 100%;
    }
    
    .rooms__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .experience__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav__links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--forest-dark);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        padding: 40px;
        transition: right var(--transition);
        box-shadow: -8px 0 40px rgba(0, 0, 0, 0.2);
    }
    
    .nav__links.open {
        right: 0;
    }
    
    .nav__link {
        color: rgba(245, 240, 232, 0.85) !important;
        font-size: 0.9rem;
    }
    
    .nav__link--cta {
        border-color: rgba(245, 240, 232, 0.4) !important;
        color: var(--off-white) !important;
    }
    
    .nav__toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero__headline {
        font-size: clamp(2.2rem, 8vw, 3rem);
    }
    
    .hero__image-accent {
        display: none;
    }
    
    .hero__scroll {
        display: none;
    }
    
    .rooms__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
    
    .experience__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact__form {
        padding: 28px;
    }
    
    .footer__top {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .about__features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero__actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero__actions .btn {
        width: 100%;
    }
    
    .hero__stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero__stat-divider {
        width: 40px;
        height: 1px;
    }
}

/* Mobile nav overlay */
.nav__overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.nav__overlay.active {
    display: block;
}
