﻿:root {
    --ocean-900: #1d353f;
    --ocean-800: #1f3a45;
    --ocean-700: #264653;
    --ocean-500: #2a9d8f;
    --ocean-50: #e8f4f2;
    --sand-50: #f5f1e8;
    --sand-100: #eee7d8;
    --sand-200: #e2d7bf;
    --sand-300: #e6dec0;
    --sand-400: #d4c08e;
    --coral-500: #e76f51;
    --coral-600: #d65d40;
    --gold-500: #e9c46a;
    --stone-500: #4d443c;
    --stone-400: #6b6157;
    --stone-600: #332d27;
    --white: #ffffff;
    --radius-lg: 16px;
    --radius-xl: 20px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Montserrat', system-ui, sans-serif;
    background: var(--sand-100);
    color: var(--ocean-700);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.no-scroll {
    overflow: hidden;
}

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

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

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

.section {
    padding: 6rem 0;
}

.sand {
    background: var(--sand-100);
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.1;
    margin: 0;
}

h2 {
    font-size: clamp(2.1rem, 5vw, 3rem);
    color: var(--ocean-700);
}

.section-tag {
    margin: 0 0 1rem;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--coral-500);
}

.section-sub {
    margin: 0;
    color: var(--stone-500);
    line-height: 1.7;
}

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

.section-head.center .section-sub {
    max-width: 640px;
    margin: 1rem auto 0;
}

.site-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 50;
    transition: all 0.5s ease;
    padding: 1.35rem 0;
}

.site-nav.nav-scrolled {
    background: rgba(249, 247, 242, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(38, 70, 83, 0.08);
    padding: 0.85rem 0;
}

.site-nav.menu-open {
    background: rgba(249, 247, 242, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(38, 70, 83, 0.08);
}

.site-nav.menu-open .logo,
.site-nav.menu-open .mobile-toggle {
    color: var(--ocean-700);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.3rem, 2vw, 1.65rem);
    font-weight: 600;
    color: var(--white);
    transition: color 0.3s ease;
}

.logo-mark {
    color: var(--gold-500);
}

.logo-icon {
    width: 1.2rem;
    height: 1.2rem;
    color: var(--gold-500);
}

.brand-logo {
    width: 2.8rem;
    height: 2.8rem;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    padding: 0.2rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

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

.nav-links > a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
    transition: color 0.25s ease;
}

.nav-links > a:hover {
    color: var(--coral-500);
}

.site-nav.nav-scrolled .logo,
.site-nav.nav-scrolled .nav-links > a,
.site-nav.nav-scrolled .mobile-toggle {
    color: var(--ocean-700);
}

.site-nav.nav-scrolled .nav-links > a:hover {
    color: var(--coral-500);
}

.mobile-toggle {
    display: none;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    width: 2rem;
    color: var(--white);
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    margin: 0.34rem 0;
    transition: transform 0.3s ease;
}

.mobile-menu {
    display: none;
}

.hero {
    position: relative;
    min-height: 700px;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

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

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 1s ease-in-out, transform 6s ease-in-out;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(12, 22, 28, 0.58) 0%,
        rgba(12, 22, 28, 0.45) 42%,
        rgba(12, 22, 28, 0.62) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
}

.hero-copy {
    max-width: 680px;
    padding: 1.25rem 1.4rem;
    border-radius: 1rem;
    background: rgba(8, 15, 20, 0.16);
    backdrop-filter: blur(2px);
}

.hero-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.hero-brand-logo {
    width: 9.2rem;
    height: 9.2rem;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    padding: 0.25rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.hero-brand p {
    margin: 0.55rem 0 0;
    color: #fff;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.55rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

.tagline {
    margin: 0 0 1.5rem;
    color: var(--gold-500);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.8rem;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

.hero h1 {
    font-size: clamp(2.1rem, 6vw, 3.4rem);
    color: var(--white);
    line-height: 1.05;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-shadow: 0 3px 16px rgba(0, 0, 0, 0.6);
}

.hero h1 span {
    font-style: italic;
    color: var(--gold-500);
}

.hero p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    max-width: 560px;
    line-height: 1.7;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-actions {
    margin-top: 2.2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 2rem;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
}

.hero-scroll .bounce {
    font-size: 1.15rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    font-family: 'Montserrat', system-ui, sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-lg {
    padding: 0.9rem 2rem;
    font-size: 1.05rem;
}

.btn-coral {
    background: var(--coral-500);
    color: var(--white);
    box-shadow: none;
}

.btn-coral:hover {
    background: #c54f33;
    color: #fff7d6;
    transform: none;
}

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

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-cta {
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem;
    transform: translateY(0);
    box-shadow: none;
}

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

.about-copy h2 {
    margin-bottom: 1.6rem;
}

.about-copy h2 span {
    font-style: italic;
}

.section-text {
    margin: 0 0 2rem;
    color: var(--stone-600);
    line-height: 1.8;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.highlight {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
}

.highlight-icon {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background: var(--ocean-50);
    color: var(--ocean-700);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.highlight-icon svg {
    width: 1rem;
    height: 1rem;
}

.highlight p {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ocean-700);
}

.highlight small {
    display: block;
    margin-top: 0.2rem;
    color: var(--stone-500);
    font-size: 0.72rem;
}

.about-media {
    position: relative;
}

.about-media img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 1.2rem;
}

.photo-viewer-trigger {
    cursor: zoom-in;
}

.img-zoom {
    transition: transform 0.7s ease-out;
}

.img-zoom:hover {
    transform: scale(1.05);
}

.years-card {
    position: absolute;
    left: -1.8rem;
    bottom: -1.8rem;
    background: var(--white);
    border: 1px solid var(--sand-200);
    box-shadow: 0 14px 26px rgba(38, 70, 83, 0.15);
    border-radius: 0.9rem;
    padding: 1rem 1.4rem;
}

.years-card strong {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.9rem;
    color: var(--ocean-700);
    line-height: 1;
}

.years-card span {
    display: block;
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--stone-500);
    font-size: 0.7rem;
}

.amenity-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.5rem;
}

.amenity-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.amenity-card.has-image {
    min-height: 18rem;
}

.amenity-card.has-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.amenity-card.has-image:hover img {
    transform: scale(1.1);
}

.amenity-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(29, 53, 63, 0.8), rgba(29, 53, 63, 0.3), transparent);
}

.amenity-content {
    position: absolute;
    left: 1.45rem;
    right: 1.45rem;
    bottom: 1.35rem;
    z-index: 1;
}

.amenity-content h3 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 0.45rem;
}

.amenity-icon-row {
    margin-bottom: 0.45rem;
}

.amenity-icon-row svg {
    width: 1rem;
    height: 1rem;
    color: var(--gold-500);
}

.amenity-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.5;
}

.amenity-card.text-only {
    min-height: 12rem;
    background: var(--sand-100);
    border: 1px solid var(--sand-200);
}

.amenity-text-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem;
}

.mini-icon {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 50%;
    background: var(--ocean-50);
    color: var(--ocean-700);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.mini-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.amenity-text-content h3 {
    font-size: 1.35rem;
    color: var(--ocean-700);
    margin-bottom: 0.45rem;
}

.amenity-text-content p {
    margin: 0;
    color: var(--stone-500);
    font-size: 0.88rem;
    line-height: 1.6;
}

.span-7 {
    grid-column: span 7;
}

.span-6 {
    grid-column: span 6;
}

.span-5 {
    grid-column: span 5;
}

.rooms-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1.25rem;
    margin-bottom: 4rem;
}

.rooms-head .section-sub {
    max-width: 430px;
}

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

.room-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid #f5f5f4;
    overflow: hidden;
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.room-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

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

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

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

.room-body {
    padding: 1.5rem;
}

.room-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.room-top h3 {
    font-size: 1.4rem;
    color: var(--ocean-700);
}

.room-price {
    margin: 0;
    color: var(--coral-500);
    font-weight: 700;
    font-size: 1.05rem;
}

.room-price span {
    color: var(--stone-400);
    font-size: 0.72rem;
    font-weight: 400;
}

.room-description {
    margin: 0 0 1rem;
    font-size: 0.86rem;
    color: var(--stone-500);
    line-height: 1.7;
}

.room-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.room-meta span {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--stone-500);
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
}

.room-meta span svg {
    width: 0.86rem;
    height: 0.86rem;
}

.room-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 1.2rem;
}

.room-tags span {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--ocean-700);
    background: var(--sand-100);
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
}

.btn-ocean {
    background: var(--ocean-700);
    color: var(--white);
}

.btn-ocean:hover {
    background: var(--ocean-900);
    transform: translateY(-2px);
}

.room-btn {
    width: 100%;
    padding: 0.85rem 1rem;
    font-size: 0.86rem;
    gap: 0.3rem;
}

.room-btn span {
    transition: transform 0.3s ease;
}

.room-btn svg {
    width: 0.95rem;
    height: 0.95rem;
    transition: transform 0.3s ease;
}

.room-btn:hover svg {
    transform: translateX(4px);
}

.testimonial-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 0 0.15rem 0.75rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.testimonial-scroll > * {
    scroll-snap-align: start;
}

.testimonial-card {
    min-width: 320px;
    max-width: 380px;
    flex-shrink: 0;
    background: #ffffff;
    border: 1px solid var(--sand-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.quote-mark {
    margin: 0;
    color: var(--sand-300);
    font-size: 2rem;
    line-height: 1;
}

.stars {
    margin: 0.3rem 0 0.9rem;
    color: var(--gold-500);
    letter-spacing: 0.2em;
    font-size: 1.05rem;
    font-weight: 700;
}

.testimonial-text {
    margin: 0;
    color: #1f1a16;
    font-size: 0.92rem;
    line-height: 1.75;
}

.testimonial-meta {
    margin-top: 1.4rem;
    border-top: 1px solid var(--sand-200);
    padding-top: 0.85rem;
}

.testimonial-meta p {
    margin: 0;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ocean-700);
}

.testimonial-meta span {
    display: block;
    margin-top: 0.2rem;
    color: #5f564d;
    font-size: 0.74rem;
}

.inquiry-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.inquiry-copy {
    grid-column: span 2;
    align-self: center;
}

.inquiry-copy h2 {
    margin-bottom: 1.2rem;
}

.inquiry-story-tag {
    margin: -0.35rem 0 0.9rem;
    color: var(--sand-400);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
}

.inquiry-copy h2 span {
    font-style: italic;
}

.contact-list {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.contact-list strong {
    display: block;
    color: var(--ocean-700);
    font-size: 0.88rem;
}

.contact-list p {
    margin: 0 0 0.25rem;
    color: var(--ocean-700);
    line-height: 1;
}

.contact-list p svg {
    width: 0.95rem;
    height: 0.95rem;
}

.contact-list span {
    display: block;
    margin-top: 0.2rem;
    color: var(--stone-400);
    font-size: 0.75rem;
}

.inquiry-box {
    grid-column: span 3;
}

.inquiry-form {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: 0 22px 46px rgba(29, 53, 63, 0.14);
    border: 1px solid var(--sand-200);
    padding: 2rem;
    display: grid;
    gap: 1rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

label {
    font-size: 0.82rem;
    color: var(--stone-500);
    font-weight: 500;
    display: block;
}

.form-field {
    margin: 0;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
    width: 100%;
    margin-top: 0.45rem;
    border: 1px solid var(--sand-200);
    border-radius: 0.65rem;
    background: #ffffff;
    padding: 0.9rem 0.9rem;
    font-family: 'Montserrat', system-ui, sans-serif;
    font-size: 0.92rem;
    color: var(--ocean-700);
}

textarea {
    resize: none;
}

.field-error {
    display: block;
    min-height: 1rem;
    margin-top: 0.35rem;
    font-size: 0.72rem;
    color: #b23a2c;
    font-weight: 600;
}

input.field-invalid,
select.field-invalid,
textarea.field-invalid {
    border-color: #e27b6e !important;
    box-shadow: 0 0 0 3px rgba(226, 123, 110, 0.18) !important;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--ocean-500);
    box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.2);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    box-shadow: 0 4px 14px 0 rgba(38, 70, 83, 0.39);
}

.btn-submit:hover {
    box-shadow: 0 6px 20px rgba(38, 70, 83, 0.23);
}

.btn-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.alert {
    border-radius: 0.75rem;
    padding: 0.85rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    font-weight: 500;
}

.alert p {
    margin: 0 0 0.35rem;
}

.alert ul {
    margin: 0;
    padding-left: 1.1rem;
}

.alert-success {
    background: #ecf9f3;
    color: #126842;
    border: 1px solid #b6e3cb;
}

.alert-error {
    background: #fff2ee;
    color: #8e3327;
    border: 1px solid #f5cbc2;
}

.grain-overlay {
    position: relative;
}

.grain-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

.site-footer {
    background: var(--ocean-900);
    color: var(--sand-100);
    padding: 5rem 0 2rem;
}

.photo-viewer {
    position: fixed;
    inset: 0;
    background: rgba(6, 14, 20, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
    z-index: 2000;
}

.photo-viewer.open {
    display: flex;
}

.photo-viewer-close {
    position: absolute;
    top: 0.9rem;
    right: 1rem;
    border: 0;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
}

.photo-viewer-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.photo-viewer-image {
    max-width: min(96vw, 1400px);
    max-height: 94vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 0.6rem;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
}

.map-section {
    width: 100%;
    line-height: 0;
}

.map-section iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
    filter: saturate(1.05) contrast(1.02);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.2rem;
    margin-bottom: 2.8rem;
}

.footer-logo {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-brand > p {
    margin: 0;
    color: var(--sand-300);
    max-width: 340px;
    font-size: 0.85rem;
    line-height: 1.7;
}

.footer-contact {
    margin-top: 1rem;
    display: grid;
    gap: 0.5rem;
}

.footer-contact p {
    margin: 0;
    color: var(--sand-300);
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.footer-contact p svg {
    width: 0.88rem;
    height: 0.88rem;
    color: var(--gold-500);
}

.footer-col h4 {
    margin: 0 0 1rem;
    font-family: 'Montserrat', system-ui, sans-serif;
    color: var(--white);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.65rem;
}

.footer-col a {
    color: var(--sand-300);
    font-size: 0.82rem;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: var(--gold-500);
}

.footer-bottom {
    border-top: 1px solid var(--ocean-800);
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
    color: var(--sand-400);
    font-size: 0.75rem;
}

.socials {
    display: flex;
    gap: 0.6rem;
}

.socials a {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    border: 1px solid var(--ocean-700);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--sand-300);
    transition: all 0.3s ease;
}

.socials a svg {
    width: 0.88rem;
    height: 0.88rem;
}

.socials a:hover {
    background: var(--ocean-700);
    color: var(--white);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-delay-100 {
    animation-delay: 0.1s;
}

.animate-delay-200 {
    animation-delay: 0.2s;
}

.animate-delay-300 {
    animation-delay: 0.3s;
}

.animate-delay-400 {
    animation-delay: 0.4s;
}

.animate-delay-600 {
    animation-delay: 0.6s;
}

@keyframes fade-up {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(-20%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }

    50% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

.animate-fade-up {
    animation: fade-up 0.8s ease-out forwards;
    opacity: 0;
}

.animate-fade-in {
    animation: fade-in 0.6s ease-out forwards;
    opacity: 0;
}

.bounce {
    animation: bounce 1s infinite;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--sand-100);
}

::-webkit-scrollbar-thumb {
    background: var(--ocean-700);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--ocean-900);
}

@media (max-width: 1080px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-media {
        order: -1;
    }

    .amenity-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .span-5,
    .span-6,
    .span-7 {
        grid-column: span 1;
    }

    .room-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .inquiry-grid {
        grid-template-columns: 1fr;
    }

    .inquiry-copy,
    .inquiry-box {
        grid-column: span 1;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .site-nav,
    .site-nav.nav-scrolled,
    .site-nav.menu-open,
    .mobile-menu,
    .mobile-toggle span {
        transition: none !important;
    }

    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .mobile-menu {
        display: none;
        margin-top: 0.5rem;
        background: rgba(249, 247, 242, 0.98);
        backdrop-filter: blur(12px);
        border-top: 1px solid var(--sand-200);
    }

    .mobile-menu.open {
        display: block;
    }

    .mobile-menu a {
        display: block;
        padding: 0.8rem 1.2rem;
        color: var(--ocean-700);
        border-bottom: 1px solid var(--sand-200);
        font-size: 0.92rem;
        font-weight: 500;
    }

.mobile-menu .btn {
        margin: 0.8rem 1.2rem 1rem;
        width: calc(100% - 2.4rem);
        padding: 0.8rem 1rem;
    }
}

.whatsapp-float {
    position: fixed;
    left: 1rem;
    bottom: 1rem;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.25);
    z-index: 1200;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float svg {
    width: 1.2rem;
    height: 1.2rem;
    stroke-width: 2.2;
}

.whatsapp-float img {
    width: 1.25rem;
    height: 1.25rem;
    display: block;
    filter: brightness(0) invert(1);
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
    background: #20b65a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(17, 24, 39, 0.3);
}

.back-to-top {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0f3d57;
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.25);
    z-index: 1200;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.back-to-top svg {
    width: 1.2rem;
    height: 1.2rem;
    stroke-width: 2.3;
}

.back-to-top:hover,
.back-to-top:focus-visible {
    background: #124a69;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(17, 24, 39, 0.3);
}

@media (max-width: 760px) {
    .section {
        padding: 4.2rem 0;
    }

    .hero-copy {
        max-width: 92%;
        padding: 0.85rem 0.9rem;
    }

    .hero-brand-logo {
        width: 4.1rem;
        height: 4.1rem;
    }

    .hero-brand p {
        font-size: 1.2rem;
        letter-spacing: 0.08em;
    }

    .tagline {
        font-size: 0.68rem;
        letter-spacing: 0.2em;
        margin-bottom: 0.9rem;
    }

    .hero h1 {
        font-size: clamp(1.7rem, 8vw, 2.4rem);
        margin-bottom: 0.8rem;
    }

    .hero p {
        font-size: 0.84rem;
        line-height: 1.55;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
        margin-top: 1rem;
    }

    .hero-actions .btn {
        width: 100%;
        font-size: 0.9rem;
        padding: 0.72rem 1rem;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .about-media img {
        height: auto;
        max-height: 520px;
        object-fit: contain;
        background: var(--white);
        border: 1px solid var(--sand-200);
    }

    .years-card {
        left: 0.75rem;
        bottom: 0.75rem;
        padding: 0.75rem 1rem;
    }

    .rooms-head {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 2.2rem;
    }

    .room-grid,
    .amenity-grid,
    .form-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        min-width: 90%;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .whatsapp-float {
        width: 3.4rem;
        height: 3.4rem;
        left: 0.8rem;
        bottom: 0.8rem;
    }

    .whatsapp-float img {
        width: 1.55rem;
        height: 1.55rem;
    }

    .back-to-top {
        width: 3.2rem;
        height: 3.2rem;
        right: 0.8rem;
        bottom: 0.8rem;
    }
}
