*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --blue: #305c7d;
    --blue-mid: #3a6d93;
    --blue-light: #e8eef4;
    --blue-pale: #f2f5f9;
    --terra: #AD5036;
    --terra-light: #c2613f;
    --terra-dark: #8f422d;
    --terra-pale: #fdf0ec;
    --dark: #332D2B;
    --white: #FFFFFF;
    --light: #FAF9F7;
    --muted: rgba(51, 45, 43, 0.55);
    --border: rgba(51, 45, 43, 0.1);
    --border-blue: rgba(48, 92, 125, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--terra);
    color: var(--white);
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 56px;
    height: 72px;
    background: rgba(255, 255, 255, 0.0);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(0px);
    transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.97);
    border-bottom-color: var(--border);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.04);
}

nav.scrolled .nav-links a {
    color: var(--dark);
}

nav.scrolled .nav-links a:hover {
    color: var(--terra);
}

.nav-logo {
    position: relative;
    display: inline-block;
    width: 150px;
    height: 50px;

}

.nav-logo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.4s ease;
}

.nav-logo .logo-default {
    opacity: 1;
}

.nav-logo .logo-scrolled {
    opacity: 0;
}

nav.scrolled .nav-logo .logo-default {
    opacity: 0;
}

nav.scrolled .nav-logo .logo-scrolled {
    opacity: 1;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.25s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--terra);
    transition: width 0.3s;
}

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

nav.scrolled .nav-links a:hover {
    color: var(--terra);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-cta {
    background: var(--terra);
    color: var(--white);
    padding: 10px 28px;
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    transition: all 0.25s;
    white-space: nowrap;
    border: 1.5px solid var(--terra);
}

.nav-cta:hover {
    background: var(--terra-dark);
    border-color: var(--terra-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(173, 80, 54, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
    border-radius: 1px;
}

nav.scrolled .hamburger span {
    background: var(--dark);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.99);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    z-index: 199;
    padding: 8px 0;
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

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

.mobile-menu a {
    padding: 16px 32px;
    color: var(--dark);
    text-decoration: none;
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
    transition: all 0.2s;
}

.mobile-menu a:hover {
    color: var(--terra);
    background: var(--terra-pale);
}

.mobile-menu .mobile-book {
    margin: 12px 32px;
    background: var(--terra);
    color: var(--white);
    text-align: center;
    padding: 16px;
    font-weight: 600;
    border-bottom: none;
    letter-spacing: 1.5px;
}

.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    overflow: hidden;
}

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

.hero-slide:nth-child(3) img {
    transform: scale(1.2) translateY(8%);

}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.4s ease;
}

.hero-slide.active {
    opacity: 1;
}

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

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(51, 45, 43, 0.55) 0%, rgba(48, 92, 125, 0.45) 100%);
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
    padding: 0 24px;
}

.hero-label {
    font-size: 0.72rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 6.5vw, 5.5rem);
    font-weight: 500;
    line-height: 1.08;
    margin-bottom: 20px;
    color: var(--white);
    letter-spacing: -0.5px;
}

.hero-content h1 em {
    font-style: italic;
    font-weight: 400;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    max-width: 540px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 36px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-terra {
    background: var(--terra);
    color: var(--white);
    padding: 16px 44px;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    transition: all 0.3s;
    display: inline-block;
    border: 1.5px solid var(--terra);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.btn-terra:hover {
    background: var(--terra-dark);
    border-color: var(--terra-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(173, 80, 54, 0.35);
}

.btn-outline-w {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    padding: 16px 36px;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    transition: all 0.25s;
    display: inline-block;
    font-weight: 500;
}

.btn-outline-w:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.12);
}

.hero-controls {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-arrow {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.3rem;
    transition: all 0.25s;
    backdrop-filter: blur(4px);
}

.hero-arrow:hover {
    background: var(--terra);
    border-color: var(--terra);
}

.hero-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.hero-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.4s;
}

.hero-dot.active {
    background: var(--terra);
    width: 24px;
    border-radius: 3px;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    right: 48px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-scroll-hint .scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.25);
    position: relative;
    overflow: hidden;
}

.hero-scroll-hint .scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--terra);
    animation: scrollDown 2s ease infinite;
}

@keyframes scrollDown {
    0% {
        top: -50%;
    }

    100% {
        top: 150%;
    }
}

.section {
    padding: 96px 56px;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.s-label {
    font-size: 0.68rem;
    letter-spacing: 4.5px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 14px;
    font-weight: 600;
}

.s-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 24px;
    line-height: 1.15;
    color: var(--dark);
    font-weight: 500;
}

/* .s-divider {
            width: 48px;
            height: 2px;
            background: var(--terra);
            margin-bottom: 32px;
        } */

.s-desc {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.85;
    font-weight: 300;
    max-width: 600px;
}

#about {
    background: var(--white);
}

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

.about-text p {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 18px;
}

.about-text strong {
    color: var(--dark);
    font-weight: 600;
}

.about-image {
    position: relative;
    overflow: hidden;
    height: 480px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(48, 92, 125, 0.15), transparent);
    pointer-events: none;
}

.book-cta {
    background: url(/assets/SUPERGRAFIS/super-blue.jpeg);
    background-size: cover;
    background-position: center;
    padding: 80px 56px;
    position: relative;
    overflow: hidden;
}

.book-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
}

.book-cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
}

.book-cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.book-cta .s-label {
    color: rgba(255, 255, 255, 0.6);
}

.book-cta .s-title {
    color: var(--white);
}

.book-cta .s-divider {
    background: var(--terra);
}

.book-cta .s-desc {
    color: rgba(255, 255, 255, 0.7);
}

.book-cta-price {
    text-align: center;
}

.book-cta-price .price-label {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.book-cta-price .price-amount {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}

.book-cta-price .price-per {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 6px;
}

.book-cta-price .price-phone {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.btn-white {
    background: var(--white);
    color: var(--dark);
    padding: 16px 44px;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    transition: all 0.3s;
    display: inline-block;
    border: 1.5px solid var(--white);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.btn-white:hover {
    background: var(--terra);
    color: var(--white);
    border-color: var(--terra);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(173, 80, 54, 0.3);
}

#rooms {
    background: var(--light);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.room-card {
    background: var(--white);
    overflow: hidden;
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: var(--dark);
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    border: 1px solid var(--border);
}

.room-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(51, 45, 43, 0.1);
    border-color: var(--terra);
}

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

.room-card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.room-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.room-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--terra);
    color: var(--white);
    font-size: 0.58rem;
    padding: 5px 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.room-badge i {
    font-size: 0.5rem;
}

.room-card-body {
    padding: 22px 20px;
    border-bottom: 1px solid var(--border);
}

.room-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.room-card-body p {
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.65;
    font-weight: 300;
}

.room-card-footer {
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--light);
}

.room-price .from {
    font-size: 0.58rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
}

.room-price .amount {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--terra);
    line-height: 1.1;
}

.room-price .per {
    font-size: 0.62rem;
    color: var(--muted);
}

.room-link {
    font-size: 0.68rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 600;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.room-link:hover {
    color: var(--terra);
}

.room-link i {
    font-size: 0.6rem;
    transition: transform 0.2s;
}

.room-card:hover .room-link i {
    transform: translateX(3px);
}

.rooms-cta {
    text-align: center;
    margin-top: 40px;
}

.btn-outline-d {
    background: transparent;
    border: 1.5px solid var(--terra);
    color: var(--terra);
    padding: 14px 36px;
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-d:hover {
    background: var(--terra-light);
    color: var(--white);
}

.banner-terra {
    background: url(/assets/SUPERGRAFIS/super-blue.jpeg);
    background-size: cover;
    background-position: center;
    padding: 72px 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.banner-terra::before {
    background: url(/assets/SUPERGRAFIS/super-blue.jpeg);
    background-size: cover;
    background-position: center;
    position: absolute;
    font-family: 'Playfair Display', serif;
    font-size: 20rem;
    color: rgba(255, 255, 255, 0.04);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
}

.banner-terra h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 500;
    line-height: 1.15;
    position: relative;
    z-index: 1;
}

.banner-terra p {
    font-size: 0.85rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.stats-bar {
    padding: 56px 56px;
    display: flex;
    justify-content: center;
    gap: 120px;
    text-align: center;
}

.stat-item {
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    color: var(--white);
    line-height: 1;
    font-weight: 500;
}

.stat-label {
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 10px;
    font-weight: 500;
}

#story {
    background: var(--white);
}

.story-layout {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.story-layout p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 2;
    font-weight: 300;
    margin-bottom: 20px;
}

.story-layout strong {
    color: var(--dark);
    font-weight: 600;
}

.story-layout em {
    font-style: italic;
    color: var(--blue);
}

.story-divider {
    width: 60px;
    height: 2px;
    background: var(--terra);
    margin: 40px auto;
}

#spaces {
    background: var(--light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin-top: 48px;
}

.gallery-item {
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.gallery-item:first-child,
.gallery-item:nth-child(5),
.gallery-item:nth-child(9) {
    grid-column: span 2;
}

.gallery-item:nth-child(10) {
    grid-column: span 4;

}

.gallery-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item:first-child img,
.gallery-item:nth-child(5) img,
.gallery-item:nth-child(9) img {
    height: 320px;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(48, 92, 125, 0);
    transition: background 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-item:hover::after {
    background: rgba(48, 92, 125, 0.2);
}

#services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.service-col h4 {
    font-size: 0.65rem;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 700;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--terra);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-col h4 i {
    font-size: 0.72rem;
    color: var(--terra);
}

.service-col ul {
    list-style: none;
}

.service-col li {
    font-size: 0.82rem;
    color: var(--muted);
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 300;
    transition: color 0.2s;
}

.service-col li:hover {
    color: var(--dark);
}

.service-col li::before {
    content: '';
    width: 0;
    height: 0;
}

.svc-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--terra-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--terra);
    font-size: 0.6rem;
}

#map {
    background: var(--light);
}

.map-embed {
    margin-top: 40px;
    height: 380px;
    border: 1px solid var(--border);
    overflow: hidden;
    background: var(--blue-light);
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(0.2) contrast(1.05);
}

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

.map-detail {
    background: var(--white);
    padding: 28px;
    border: 1px solid var(--border);
    transition: border-color 0.2s;
}

.map-detail:hover {
    border-color: var(--blue);
}

.map-detail h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--blue);
    margin-bottom: 10px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.map-detail h4 i {
    font-size: 0.85rem;
}

.map-detail p {
    color: var(--muted);
    font-size: 0.83rem;
    line-height: 1.85;
    font-weight: 300;
}

#contact {
    background: var(--white);
    border-top: 1px solid var(--border);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    margin-top: 48px;
}

.contact-block h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--blue);
    margin-bottom: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-block h4 i {
    font-size: 0.9rem;
    color: var(--terra);
}

.contact-block p {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.9;
    font-weight: 300;
}

.contact-block a {
    color: var(--terra);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.contact-block a:hover {
    color: var(--terra-dark);
}

footer {
    background: url(/assets/SUPERGRAFIS/super-blue.jpeg);
    background-size: cover;
    background-position: center;
    padding: 64px 56px 32px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .f-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 16px;
    display: block;
}

.footer-brand p {
    font-size: 0.82rem;
    line-height: 1.8;
    font-weight: 300;
    max-width: 280px;
}

.footer-col h5 {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 18px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 300;
    transition: color 0.2s;
}

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

.footer-newsletter .newsletter-label {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 14px;
    display: block;
}

.newsletter-form {
    display: flex;
    gap: 0;
}

.newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-right: none;
    padding: 12px 16px;
    color: var(--white);
    font-size: 0.82rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.2s;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.newsletter-form input:focus {
    border-color: var(--terra);
}

.newsletter-form button {
    background: var(--terra);
    color: var(--white);
    border: 1px solid var(--terra);
    padding: 12px 24px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background 0.2s;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: var(--terra-dark);
    border-color: var(--terra-dark);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.82rem;
    transition: all 0.25s;
}

.social-links a:hover {
    background: var(--terra);
    border-color: var(--terra);
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    font-size: 0.75rem;
}

.footer-bottom a {
    color: var(--blue-pale);
    text-decoration: none;
}

.toast {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    background: var(--dark);
    color: var(--white);
    padding: 16px 28px;
    font-size: 0.85rem;
    font-weight: 400;
    border-left: 3px solid var(--terra);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

@media (max-width: 1100px) {
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .stats-bar {
        gap: 60px;
    }

    .stat-item:not(:last-child)::after {
        right: -30px;
    }
}

@media (max-width: 900px) {
    .section {
        padding: 72px 32px;
    }

    .book-cta {
        padding: 64px 32px;
    }

    .book-cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .book-cta .s-desc {
        margin: 0 auto;
    }

    .banner-terra {
        padding: 56px 32px;
    }

    .stats-bar {
        padding: 40px 32px;
        gap: 40px;
        flex-wrap: wrap;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    footer {
        padding: 48px 32px 28px;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 0 20px;
        height: 64px;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        top: 64px;
    }

    .section {
        padding: 56px 20px;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-scroll-hint {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        height: 320px;
    }

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

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

    .gallery-item:first-child,
    .gallery-item:nth-child(5) {
        grid-column: span 1;
    }

    .map-details {
        grid-template-columns: 1fr;
    }

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

    .stats-bar {
        gap: 32px;
    }

    .stat-num {
        font-size: 2.8rem;
    }

    .hero-controls {
        bottom: 32px;
    }
}