/*
   ╔══════════════════════════════════════════════════════╗
   ║  AYTEN HANIM KONAĞI — MARASSA-INSPIRED LUXURY       ║
   ║  Full Design System                                  ║
   ╚══════════════════════════════════════════════════════╝
*/

/* ─── Design Tokens ─── */
:root {
    --bg: #F8F5F0;
    --bg-section: #F0ECE4;
    --bg-dark: #1C1915;
    --bg-card: #FDFBF8;
    --charcoal: #1C1915;
    --text: #3A362F;
    --text-muted: #7A756C;
    --accent: #8B6914;
    --accent-hover: #A57D1A;
    --gold: #C5A74E;
    --gold-line: #C5A74E;
    --white: #FFFFFF;
    --border-light: rgba(197, 167, 78, 0.15);
    --radius: 10px;
    --radius-pill: 50px;
    --shadow-card: 0 2px 20px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.1);
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── Reset ─── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Cormorant Garamond', Georgia, serif;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

img,
video {
    max-width: 100%;
    display: block;
}

button {
    cursor: pointer;
    font: inherit;
    border: none;
    background: none;
}

/* Vignette */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse at top left, rgba(28, 25, 21, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at top right, rgba(28, 25, 21, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(28, 25, 21, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(28, 25, 21, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 9998;
}

/* ─── Typography ─── */
h1,
h2,
h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-style: italic;
    color: var(--accent);
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
}

p {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    font-size: clamp(0.9rem, 1.1vw, 1.05rem);
    line-height: 1.8;
    color: var(--text-muted);
}

.section-header {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vh, 4rem);
}

.section-header h2 {
    margin-bottom: 0.8rem;
}

.section-header .gold-line {
    width: 50px;
    height: 3px;
    background: var(--gold-line);
    margin: 0 auto 1rem;
    border-radius: 2px;
}

.section-header p {
    margin: 0 auto;
    max-width: 550px;
}

/* ─── Layout ─── */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
}

.section {
    padding: clamp(4rem, 8vh, 8rem) 0;
}

.section-alt {
    background: var(--bg-section);
}

/* ─── Buttons ─── */
.btn-solid {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.85rem 2.2rem;
    border-radius: var(--radius-pill);
    background: var(--accent);
    color: var(--white);
    transition: all 0.3s var(--ease);
    border: 2px solid var(--accent);
}

.btn-solid:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 105, 20, 0.3);
}

.btn-outline {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.85rem 2.2rem;
    border-radius: var(--radius-pill);
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.6);
    transition: all 0.3s var(--ease);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-dark {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    padding: 0.7rem 1.8rem;
    border-radius: var(--radius-pill);
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    transition: all 0.3s var(--ease);
}

.btn-outline-dark:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

/* ─── Navbar ─── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1rem 0;
    transition: all 0.4s var(--ease);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(28, 25, 21, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    text-align: center;
}

.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.1rem, 1.8vw, 1.5rem);
    font-weight: 700;
    font-style: italic;
    color: var(--white);
    display: block;
}

.logo-sub {
    font-family: 'Poppins', sans-serif;
    font-size: 0.5rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-top: 2px;
}

/* Nav Links */
.nav-menu {
    display: flex;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: center;
}

.nav-menu a {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    transition: color 0.3s;
    padding-bottom: 4px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold-line);
    transition: all 0.3s var(--ease);
    transform: translateX(-50%);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--white);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 70%;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    z-index: 101;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 1px;
    transition: all 0.3s;
}

/* Mobile Panel */
.mobile-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 80vw;
    max-width: 340px;
    height: 100vh;
    height: 100dvh;
    background: var(--bg);
    z-index: 300;
    padding: 80px 30px 30px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-panel.open {
    transform: translateX(0);
}

.mobile-panel .close-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 1.5rem;
    color: var(--accent);
    padding: 8px;
}

.mobile-panel nav a {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--charcoal);
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
}

.mobile-panel nav a:hover {
    color: var(--accent);
}

.mobile-cta {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.9rem;
    background: #25D366;
    color: #fff;
    border-radius: var(--radius-pill);
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
}

.overlay-bg {
    position: fixed;
    inset: 0;
    background: rgba(28, 25, 21, 0.5);
    backdrop-filter: blur(4px);
    z-index: 299;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.overlay-bg.open {
    opacity: 1;
    visibility: visible;
}

/* ─── Hero ─── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-media img,
.hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slowZoom 25s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(28, 25, 21, 0.7) 0%, rgba(28, 25, 21, 0.3) 60%, transparent 100%);
    z-index: 1;
}

.hero-text {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding: 0 clamp(30px, 6vw, 100px);
}

.hero-text h1 {
    color: var(--white);
    margin-bottom: 1.2rem;
    font-style: normal;
    font-weight: 700;
}

.hero-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(0.95rem, 1.3vw, 1.15rem);
    margin-bottom: 2rem;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    right: 40px;
    z-index: 2;
    width: 40px;
    height: 40px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    animation: scrollBounce 2s ease-in-out infinite;
    font-size: 0.8rem;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}

/* ─── Page Hero ─── */
.page-hero {
    position: relative;
    height: clamp(45vh, 55vh, 65vh);
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero .hero-overlay {
    background: linear-gradient(to bottom, rgba(28, 25, 21, 0.5) 0%, rgba(28, 25, 21, 0.3) 50%, rgba(28, 25, 21, 0.6) 100%);
}

.page-hero .hero-media img {
    animation: slowZoom 30s ease-out forwards;
}

.page-hero-text {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.page-hero-text h1 {
    color: var(--white);
    font-style: italic;
    margin-bottom: 0.5rem;
}

.page-hero-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(0.85rem, 1.3vw, 1.1rem);
    text-align: center;
    max-width: 100%;
}

/* ─── Gallery Grid ─── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(0.8rem, 1.5vw, 1.5rem);
}

.gallery-item {
    overflow: hidden;
    border-radius: var(--radius);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    transition: transform 0.6s var(--ease);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

/* ─── Sunum Grid ─── */
.section-presentation {
    padding: clamp(4.375rem, 8vh, 7.5rem) 0;
}

.section-presentation .section-header h2 {
    letter-spacing: 0.05em;
}

.sunum-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(0.8rem, 1.5vw, 1.5rem);
}

.sunum-grid .gallery-item {
    box-shadow: var(--shadow-card);
    transition: all 0.4s var(--ease);
}

.sunum-grid .gallery-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

/* ─── Room Cards ─── */
.room-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.2rem, 2.5vw, 2rem);
}

.room-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.4s var(--ease);
}

.room-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.room-card-img {
    overflow: hidden;
}

.room-card-img img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.room-card:hover .room-card-img img {
    transform: scale(1.05);
}

.room-card-body {
    padding: clamp(1.2rem, 2vw, 1.8rem);
}

.room-card-body h3 {
    margin-bottom: 0.6rem;
    font-style: italic;
}

.room-card-body p {
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

/* ─── Video Section ─── */
.video-section {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--charcoal);
}

.video-section video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ─── Info Strip ─── */
.info-strip {
    display: flex;
    justify-content: center;
    gap: clamp(2rem, 5vw, 5rem);
    padding: 2.5rem 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.info-item {
    text-align: center;
}

.info-item .val {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    font-style: italic;
    color: var(--accent);
    display: block;
}

.info-item .desc {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ─── Sustainability ─── */
.sustain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.sustain-img {
    overflow: hidden;
    border-radius: var(--radius);
}

.sustain-img img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* ─── Contact ─── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(2rem, 5vw, 4rem);
}

.contact-info .item {
    margin-bottom: 2rem;
}

.contact-info .label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.4rem;
    display: block;
}

.contact-info .value {
    font-size: 1.05rem;
    color: var(--text);
}

.contact-info .value a:hover {
    color: var(--accent);
}

.map-frame {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: none;
    border-radius: var(--radius);
    filter: saturate(0.85) contrast(1.05);
}

/* ─── Footer ─── */
.footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: clamp(3.5rem, 7vh, 6rem) 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1fr 1.2fr;
    gap: clamp(1.5rem, 3vw, 3rem);
    margin-bottom: 3rem;
}

.footer .logo-name {
    color: var(--white);
    font-size: 1.6rem;
}

.footer-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 1rem;
    max-width: 300px;
    line-height: 1.6;
}

.footer h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    font-style: italic;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-links a {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    padding: 5px 0;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.8rem;
}

.footer-contact i {
    color: var(--gold);
    margin-top: 3px;
    font-size: 0.9rem;
}

.social-row {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.social-row a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s;
}

.social-row a:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

/* Newsletter */
.newsletter-form {
    display: flex;
    margin-top: 1rem;
    border-radius: var(--radius-pill);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: none;
    outline: none;
    padding: 0.8rem 1.2rem;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.newsletter-form button {
    background: var(--accent);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: var(--accent-hover);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a:hover {
    color: var(--gold);
}

/* Back to top */
.back-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(139, 105, 20, 0.3);
}

.back-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-top:hover {
    transform: translateY(-3px);
}

/* ─── Scroll Reveal ─── */
[data-reveal] {
    opacity: 0;
    transition: all 0.7s var(--ease-out);
}

[data-reveal="up"] {
    transform: translateY(40px);
}

[data-reveal="left"] {
    transform: translateX(-30px);
}

[data-reveal="right"] {
    transform: translateX(30px);
}

[data-reveal="fade"] {
    transform: none;
}

[data-reveal].visible {
    opacity: 1 !important;
    transform: none !important;
}

/* ─── Lightbox ─── */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(28, 25, 21, 0.95);
    z-index: 500;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.lightbox.open {
    display: flex;
    opacity: 1;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox .lb-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 1.8rem;
    color: var(--white);
    padding: 10px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.lightbox .lb-close:hover {
    opacity: 1;
}

.lb-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--white);
    padding: 15px;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.lb-arrow:hover {
    opacity: 1;
}

.lb-arrow.prev {
    left: 15px;
}

.lb-arrow.next {
    right: 15px;
}

/* ─── WhatsApp Contact Button ─── */
.wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.8rem 1.5rem;
    background: #25D366;
    color: #fff;
    border-radius: var(--radius-pill);
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s;
}

.wa-btn:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
}

/* ─── Menu Section ─── */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

.menu-category {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: clamp(1.5rem, 3vw, 2rem);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
    transition: box-shadow 0.3s var(--ease);
}

.menu-category:hover {
    box-shadow: var(--shadow-hover);
}

.menu-cat-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
}

.menu-cat-header i {
    font-size: 1.2rem;
    color: var(--gold);
    width: 36px;
    height: 36px;
    background: rgba(197, 167, 78, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-cat-header h3 {
    font-size: 1.1rem;
    font-style: italic;
    margin: 0;
}

.menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.menu-list li {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding-bottom: 1.1rem;
    border-bottom: 1px solid var(--border-light);
}

.menu-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.menu-item-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}

.menu-item-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .room-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sunum-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .sustain-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body::before {
        display: none;
    }

    .hero {
        min-height: 500px;
    }

    .hero-text {
        padding: 0 20px;
    }

    .page-hero {
        height: 45vh;
        min-height: 280px;
    }

    .room-cards {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-strip {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-desc {
        margin: 1rem auto 0;
    }

    .social-row {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .footer-legal {
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-solid,
    .btn-outline {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .section {
        padding: clamp(3rem, 6vh, 5rem) 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .sunum-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2rem;
    }

    .scroll-down {
        display: none;
    }
}