/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { min-height: 100vh; line-height: 1.6; }
img, svg { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; }
address { font-style: normal; }

/* ── Skip Link ────────────────────────────────────── */
.skip-link {
    position: absolute; top: -100%; left: 1rem;
    background: #0d9488; color: #fff; padding: .75rem 1.25rem;
    border-radius: 0 0 8px 8px; z-index: 200; font-weight: 600;
    transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ── Utility ──────────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.skip-link:focus { top: 0; }

/* ── Section Labels & Titles ──────────────────────── */
.section-label {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #0d9488;
    margin-bottom: .75rem;
}
.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 600;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 1rem;
}
.section-subtitle {
    font-size: 1.0625rem;
    color: #64748b;
    max-width: 600px;
    line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .section-subtitle { margin: 0 auto; }

/* ── Buttons ──────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: .5rem;
    font-weight: 600; font-size: .9375rem;
    padding: .875rem 1.75rem;
    border-radius: 8px; border: 2px solid transparent;
    text-decoration: none; transition: all .25s ease;
    white-space: nowrap;
}
.btn--primary {
    background: #0d9488; color: #fff; border-color: #0d9488;
}
.btn--primary:hover { background: #0f766e; border-color: #0f766e; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(13,148,136,.3); }
.btn--ghost {
    background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.35);
    backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: rgba(255,255,255,.22); border-color: #fff; transform: translateY(-2px); }
.btn--outline {
    background: transparent; color: #0d9488; border-color: #0d9488;
}
.btn--outline:hover { background: #0d9488; color: #fff; transform: translateY(-2px); }
.btn--white {
    background: #fff; color: #0d9488; border-color: #fff;
}
.btn--white:hover { background: #f0fdfa; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }
.btn--sm { padding: .625rem 1.25rem; font-size: .875rem; }
.btn--lg { padding: 1rem 2rem; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ── Navigation ───────────────────────────────────── */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(248,250,252,.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(148,163,184,.15);
    transition: background .3s, box-shadow .3s;
}
.nav.scrolled {
    background: rgba(248,250,252,.95);
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.nav__container {
    max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
}
.nav__brand {
    display: flex; align-items: center; gap: .625rem;
    text-decoration: none; color: #0f172a;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.125rem; font-weight: 600;
}
.nav__logo { color: #0d9488; flex-shrink: 0; }
.nav__menu {
    display: flex; align-items: center; gap: 2rem;
}
.nav__link {
    font-size: .9375rem; font-weight: 500; color: #475569;
    text-decoration: none; position: relative; transition: color .2s;
}
.nav__link::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px; background: #0d9488; transition: width .25s;
}
.nav__link:hover { color: #0d9488; }
.nav__link:hover::after { width: 100%; }
.nav__cta {
    display: inline-flex; align-items: center; gap: .375rem;
    font-size: .875rem; font-weight: 600; color: #0d9488;
    text-decoration: none; padding: .5rem 1rem;
    border: 1.5px solid #0d9488; border-radius: 8px;
    transition: all .2s;
}
.nav__cta:hover { background: #0d9488; color: #fff; }
.nav__toggle {
    display: none; background: none; border: none; padding: .5rem;
    flex-direction: column; gap: 5px;
}
.nav__bar {
    display: block; width: 24px; height: 2px; background: #334155;
    border-radius: 2px; transition: all .3s;
}

/* Mobile menu */
@media (max-width: 767px) {
    .nav__toggle { display: flex; }
    .nav__menu {
        position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
        background: rgba(248,250,252,.98); backdrop-filter: blur(16px);
        flex-direction: column; justify-content: center; gap: 1.5rem;
        transform: translateX(100%); transition: transform .35s ease;
    }
    .nav__menu.open { transform: translateX(0); }
    .nav__link { font-size: 1.25rem; }
    .nav__cta { font-size: 1rem; }
    .nav__toggle[aria-expanded="true"] .nav__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav__toggle[aria-expanded="true"] .nav__bar:nth-child(2) { opacity: 0; }
    .nav__toggle[aria-expanded="true"] .nav__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ── 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__image { width: 100%; height: 100%; object-fit: cover; }
.hero__gradient {
    position: absolute; inset: 0;
    background: linear-gradient(
        135deg,
        rgba(4,47,46,.82) 0%,
        rgba(13,148,136,.72) 40%,
        rgba(15,118,110,.65) 70%,
        rgba(30,41,59,.80) 100%
    );
}
.hero__overlay {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 50%, transparent 0%, rgba(8,15,26,.3) 100%);
}
.hero__content {
    position: relative; z-index: 1;
    text-align: center; max-width: 800px;
    padding: 8rem 1.5rem 4rem;
}
.hero__badge {
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
    border-radius: 100px; padding: .5rem 1.125rem;
    font-size: .8125rem; font-weight: 600; color: rgba(255,255,255,.9);
    letter-spacing: .04em; margin-bottom: 2rem;
    backdrop-filter: blur(8px);
}
.hero__badge svg { color: #5eead4; }
.hero__headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 700; line-height: 1.08;
    color: #fff; margin-bottom: 1.5rem;
}
.hero__accent {
    font-style: italic; font-weight: 500;
    background: linear-gradient(135deg, #5eead4, #2dd4bf);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero__sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,.8); line-height: 1.7;
    max-width: 580px; margin: 0 auto 2.5rem;
}
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero__scroll {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: .5rem;
    color: rgba(255,255,255,.5); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase;
}
.hero__line {
    width: 1px; height: 48px; background: rgba(255,255,255,.3);
    position: relative; overflow: hidden;
}
.hero__line::after {
    content: ''; position: absolute; top: -100%; left: 0;
    width: 100%; height: 100%; background: #fff;
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%{top:-100%} 50%{top:0} 100%{top:100%} }

/* ── Intro ────────────────────────────────────────── */
.intro { padding: 7rem 0; }
.intro__grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center;
}
.intro__text .section-title { margin-bottom: 1.5rem; }
.intro__body {
    font-size: 1.0625rem; color: #64748b; line-height: 1.8;
    margin-bottom: 1.25rem;
}
.intro__image { position: relative; }
.intro__image-frame {
    position: relative; border-radius: 20px; overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,.12);
}
.intro__image-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.intro__image-accent {
    position: absolute; top: -20px; right: -20px;
    width: 120px; height: 120px; border-radius: 20px;
    background: linear-gradient(135deg, #0d9488, #14b8a6);
    opacity: .15; z-index: -1;
}
@media (max-width: 900px) {
    .intro__grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .intro__image { order: -1; }
}

/* ── Rooms ────────────────────────────────────────── */
.rooms {
    padding: 7rem 0;
    background: #fff;
}
.rooms__grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.room-card {
    background: #f8fafc; border-radius: 16px; overflow: hidden;
    border: 1px solid #e2e8f0; transition: all .3s ease;
}
.room-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,.1); border-color: #94a3b8; }
.room-card__image { position: relative; overflow: hidden; height: 260px; }
.room-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.room-card:hover .room-card__image img { transform: scale(1.05); }
.room-card__tag {
    position: absolute; top: 1rem; left: 1rem;
    background: #0d9488; color: #fff;
    font-size: .75rem; font-weight: 700; letter-spacing: .06em;
    padding: .375rem .875rem; border-radius: 100px; text-transform: uppercase;
}
.room-card__content { padding: 1.75rem; }
.room-card__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.375rem; font-weight: 600; color: #0f172a;
    margin-bottom: .75rem;
}
.room-card__desc {
    font-size: .9375rem; color: #64748b; line-height: 1.7;
    margin-bottom: 1.25rem;
}
.room-card__amenities {
    list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: .5rem;
    margin-bottom: 1.5rem;
}
.room-card__amenities li {
    display: flex; align-items: center; gap: .375rem;
    font-size: .8125rem; font-weight: 500; color: #475569;
}
.room-card__amenities svg { color: #0d9488; flex-shrink: 0; }
@media (max-width: 900px) {
    .rooms__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .rooms__grid { grid-template-columns: 1fr; }
}

/* ── Experience / Features ────────────────────────── */
.experience { padding: 7rem 0; background: #f8fafc; }
.experience__header { text-align: center; margin-bottom: 4rem; }
.features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.feature-card {
    background: #fff; border-radius: 16px; padding: 2rem;
    border: 1px solid #e2e8f0; transition: all .3s ease;
}
.feature-card:hover { border-color: #94a3b8; transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.07); }
.feature-card__icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: linear-gradient(135deg, #f0fdfa, #ccfbf1);
    display: flex; align-items: center; justify-content: center;
    color: #0d9488; margin-bottom: 1.25rem;
}
.feature-card__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1875rem; font-weight: 600; color: #0f172a;
    margin-bottom: .625rem;
}
.feature-card__body { font-size: .9375rem; color: #64748b; line-height: 1.7; }
@media (max-width: 900px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } }

/* ── Location ─────────────────────────────────────── */
.location { padding: 7rem 0; background: #fff; }
.location__grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: start;
}
.location__body {
    font-size: 1.0625rem; color: #64748b; line-height: 1.8;
    margin-bottom: 2rem;
}
.location__address {
    font-size: 1.0625rem; color: #334155; line-height: 1.8;
    margin-bottom: 2rem; padding: 1.5rem;
    background: #f8fafc; border-radius: 12px; border-left: 4px solid #0d9488;
}
.location__contact { display: flex; flex-direction: column; gap: .75rem; }
.location__contact-item {
    display: inline-flex; align-items: center; gap: .625rem;
    font-size: .9375rem; font-weight: 500; color: #475569;
    text-decoration: none; padding: .75rem 1rem;
    background: #f8fafc; border-radius: 10px;
    transition: all .2s;
}
.location__contact-item:hover { color: #0d9488; background: #f0fdfa; }
.location__contact-item svg { color: #0d9488; flex-shrink: 0; }
.location__map {
    border-radius: 16px; overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,.1);
    aspect-ratio: 4/3; min-height: 360px;
}
@media (max-width: 900px) {
    .location__grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── CTA ──────────────────────────────────────────── */
.cta {
    position: relative; padding: 7rem 0; overflow: hidden;
}
.cta__bg { position: absolute; inset: 0; z-index: 0; }
.cta__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(4,47,46,.88) 0%, rgba(13,148,136,.80) 60%, rgba(15,118,110,.85) 100%);
}
.cta__inner {
    position: relative; z-index: 1;
    text-align: center; max-width: 700px; margin: 0 auto;
}
.cta__label { color: rgba(255,255,255,.7); }
.cta__heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700; line-height: 1.15; color: #fff;
    margin-bottom: 1.25rem;
}
.cta__body {
    font-size: 1.125rem; color: rgba(255,255,255,.8); line-height: 1.7;
    margin-bottom: 2.5rem;
}
.cta__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Contact ──────────────────────────────────────── */
.contact { padding: 7rem 0; background: #f8fafc; }
.contact__grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: start;
}
.contact__left .section-title { margin-bottom: 1rem; }
.contact__body {
    font-size: 1.0625rem; color: #64748b; line-height: 1.8;
    margin-bottom: 2.5rem;
}
.contact__details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact__detail {
    display: flex; gap: 1rem; align-items: flex-start;
}
.contact__detail-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: linear-gradient(135deg, #f0fdfa, #ccfbf1);
    display: flex; align-items: center; justify-content: center;
    color: #0d9488; flex-shrink: 0;
}
.contact__detail strong {
    display: block; font-size: .8125rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .06em; color: #0f172a;
    margin-bottom: .25rem;
}
.contact__detail span,
.contact__detail a {
    font-size: .9375rem; color: #64748b; text-decoration: none;
    transition: color .2s;
}
.contact__detail a:hover { color: #0d9488; }
.contact__right {
    background: #fff; border-radius: 20px; padding: 2.5rem;
    border: 1px solid #e2e8f0; box-shadow: 0 8px 32px rgba(0,0,0,.04);
}

/* ── Form ─────────────────────────────────────────── */
.form__group { margin-bottom: 1.25rem; }
.form__label {
    display: block; font-size: .8125rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .06em;
    color: #334155; margin-bottom: .5rem;
}
.form__input,
.form__textarea {
    width: 100%; padding: .875rem 1rem;
    border: 1.5px solid #e2e8f0; border-radius: 10px;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: .9375rem; color: #0f172a;
    background: #f8fafc; transition: all .2s;
    outline: none;
}
.form__input:focus,
.form__textarea:focus {
    border-color: #0d9488; background: #fff;
    box-shadow: 0 0 0 4px rgba(13,148,136,.1);
}
.form__input::placeholder,
.form__textarea::placeholder { color: #94a3b8; }
.form__textarea { resize: vertical; min-height: 120px; }

/* Success message */
.contact__success {
    text-align: center; padding: 3rem 1rem;
}
.success__icon {
    width: 72px; height: 72px; border-radius: 50%;
    background: linear-gradient(135deg, #f0fdfa, #ccfbf1);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem; color: #0d9488;
}
.success__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem; font-weight: 600; color: #0f172a;
    margin-bottom: .625rem;
}
.success__body { font-size: .9375rem; color: #64748b; line-height: 1.7; }

@media (max-width: 900px) {
    .contact__grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── Footer ───────────────────────────────────────── */
.footer {
    background: #0f172a; color: rgba(255,255,255,.6); padding: 4rem 0 0;
}
.footer__grid {
    display: grid; grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem; padding-bottom: 3rem;
}
.footer__logo {
    display: inline-flex; align-items: center; gap: .625rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.125rem; font-weight: 600; color: #fff;
    text-decoration: none; margin-bottom: 1rem;
}
.footer__logo svg { color: #14b8a6; }
.footer__tagline { font-size: .9375rem; line-height: 1.7; max-width: 280px; }
.footer__nav-title {
    display: block; font-size: .75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .1em;
    color: rgba(255,255,255,.4); margin-bottom: 1rem;
}
.footer__nav nav { display: flex; flex-direction: column; gap: .625rem; }
.footer__nav a {
    font-size: .9375rem; color: rgba(255,255,255,.6);
    text-decoration: none; transition: color .2s;
}
.footer__nav a:hover { color: #14b8a6; }
.footer__contact address {
    font-size: .9375rem; line-height: 1.8;
    display: flex; flex-direction: column; gap: .375rem;
}
.footer__contact a { color: rgba(255,255,255,.6); text-decoration: none; transition: color .2s; }
.footer__contact a:hover { color: #14b8a6; }
.footer__bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 1.5rem 0;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: .75rem;
    font-size: .8125rem; color: rgba(255,255,255,.35);
}
@media (max-width: 767px) {
    .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer__bottom { flex-direction: column; text-align: center; }
}

/* ── Scroll Animations ────────────────────────────── */
.reveal {
    opacity: 0; transform: translateY(32px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }
