/* ===========================
   VILLA ZULFIKAR - STYLES
   =========================== */

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

/* ---------- CUSTOM PROPERTIES ---------- */
:root {
    --cream: #f8f6f1;
    --cream-dark: #ede9e0;
    --charcoal: #2c2c2c;
    --charcoal-light: #4a4a4a;
    --gold: #c5a55a;
    --gold-dark: #b08f3e;
    --gold-light: #d4bd7a;
    --white: #ffffff;
    --black: #000000;
    --overlay: rgba(0, 0, 0, 0.45);

    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

    --container: 1200px;
    --gutter: 1.5rem;

    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition: 0.3s var(--ease);

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);

    --radius: 8px;
    --radius-lg: 12px;
}

/* ---------- BASE ---------- */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--charcoal);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

ul {
    list-style: none;
}

address {
    font-style: normal;
}

/* ---------- UTILITIES ---------- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.section {
    padding: 5rem 0;
}

.section--cream {
    background-color: var(--cream);
}

.section__label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.section__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 2.5rem;
    line-height: 1.2;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1.4;
}

.btn--gold {
    background-color: #8a6f2f;
    color: var(--white);
    border-color: #8a6f2f;
}

.btn--gold:hover {
    background-color: #7d6529;
    border-color: #7d6529;
}

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

.btn--outline:hover {
    background-color: var(--white);
    color: var(--charcoal);
}

.btn--outline-light {
    background-color: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
}

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

.btn--lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

/* ---------- HEADER ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 0;
    transition: all var(--transition);
}

.header.is-scrolled {
    background-color: rgba(248, 246, 241, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 0.6rem 0;
}

.header.is-scrolled .header__links a,
.header.is-scrolled .header__burger span {
    color: var(--charcoal);
}

.header.is-scrolled .header__burger span {
    background-color: var(--charcoal);
}

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

.header__logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    z-index: 101;
    transition: color var(--transition);
}

.header.is-scrolled .header__logo {
    color: var(--charcoal);
}

.header__nav {
    display: none;
}

.header__links {
    display: flex;
    gap: 2rem;
}

.header__links a {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white);
    position: relative;
    transition: color var(--transition);
}

.header__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width var(--transition);
}

.header__links a:hover::after {
    width: 100%;
}

.header__cta {
    display: none;
}

/* Burger */
.header__burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 101;
}

.header__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--white);
    transition: all var(--transition);
}

.header__burger.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header__burger.is-active span:nth-child(2) {
    opacity: 0;
}

.header__burger.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.header__burger.is-active ~ .header__logo,
.header__nav.is-open ~ .header__logo {
    color: var(--charcoal);
}

/* Mobile Nav Overlay */
.header__nav.is-open {
    display: flex;
    position: fixed;
    inset: 0;
    background-color: rgba(248, 246, 241, 0.98);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.header__nav.is-open .header__links {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.header__nav.is-open .header__links a {
    font-size: 1.25rem;
    color: var(--charcoal);
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
}

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

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.2) 0%,
        rgba(0,0,0,0.4) 50%,
        rgba(0,0,0,0.6) 100%
    );
}

.hero__content {
    position: relative;
    text-align: center;
    color: var(--white);
    padding: 2rem 0;
}

.hero__tagline {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero__title {
    margin-bottom: 1.5rem;
    line-height: 1;
}

.hero__logo {
    height: 120px;
    width: auto;
    max-width: 100%;
    filter: brightness(0) invert(1);
    display: block;
    margin: 0 auto;
}

.hero__subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero__actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    opacity: 0.7;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-8px); }
    60% { transform: translateX(-50%) translateY(-4px); }
}

/* ---------- ABOUT ---------- */
.about__grid {
    display: grid;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.about__desc {
    font-size: 1.05rem;
    color: var(--charcoal-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about__image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat {
    text-align: center;
    padding: 1.5rem 1rem;
    background-color: var(--cream);
    border-radius: var(--radius-lg);
}

.stat__number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.2;
}

.stat__label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--charcoal-light);
    margin-top: 0.25rem;
}

/* ---------- GALLERY ---------- */
.gallery__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.gallery__item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.gallery__item img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.gallery__item:hover img {
    transform: scale(1.03);
}

.gallery__item--placeholder {
    cursor: default;
}

.placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    aspect-ratio: 3/2;
    background: var(--cream-dark);
    border: 2px dashed var(--gold-light);
    border-radius: var(--radius-lg);
    color: var(--charcoal-light);
    font-size: 0.85rem;
    font-weight: 500;
}

.placeholder svg {
    opacity: 0.4;
}

/* ---------- AMENITIES ---------- */
.amenities__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.amenity {
    padding: 1.5rem;
    background: var(--cream);
    border-radius: var(--radius-lg);
    transition: transform var(--transition), box-shadow var(--transition);
}

.amenity:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.amenity__icon {
    width: 36px;
    height: 36px;
    color: var(--gold);
    margin-bottom: 0.75rem;
    stroke-width: 1.5;
}

.amenity__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.amenity__desc {
    font-size: 0.85rem;
    color: var(--charcoal-light);
    line-height: 1.5;
}

/* ---------- VIDEO TOUR ---------- */
.video-tour__wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--charcoal);
}

.video-tour__wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.video-tour__facade {
    position: absolute;
    inset: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.video-tour__play {
    position: absolute;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform var(--transition);
}

.video-tour__play:hover {
    transform: scale(1.1);
}

.video-tour__facade.is-hidden {
    display: none;
}

/* ---------- REVIEWS & AWARDS ---------- */
.awards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.awards__item img {
    width: auto;
    height: 240px;
    border-radius: var(--radius-lg);
    transition: transform var(--transition);
}

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

.rating-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--cream);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
}

.rating-badge__score {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold);
}

.rating-badge__text {
    display: flex;
    flex-direction: column;
    font-size: 0.8rem;
    line-height: 1.3;
}

.rating-badge__text strong {
    font-size: 0.95rem;
    color: var(--charcoal);
}

.rating-badge__text span {
    color: var(--charcoal-light);
}

.reviews__grid {
    display: grid;
    gap: 1.5rem;
}

.review-card {
    background: var(--cream);
    padding: 2rem;
    border-radius: var(--radius-lg);
    transition: transform var(--transition);
}

.review-card:hover {
    transform: translateY(-2px);
}

.review-card__stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.review-card__text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--charcoal-light);
    margin-bottom: 1.25rem;
    border: none;
}

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

.review-card__name {
    font-weight: 600;
    font-size: 0.9rem;
}

.review-card__source {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 500;
}

/* ---------- LOCATION ---------- */
.location__grid {
    display: grid;
    gap: 2.5rem;
}

.location__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 350px;
    background: var(--cream-dark);
    box-shadow: var(--shadow-md);
}

.location__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.location__attractions {
    display: grid;
    gap: 1.25rem;
}

.attraction {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}

.attraction:hover {
    box-shadow: var(--shadow-md);
}

.attraction img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.attraction__info {
    padding: 1.25rem;
}

.attraction__info h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.attraction__info p {
    font-size: 0.9rem;
    color: var(--charcoal-light);
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.attraction__distance {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.attraction--compact {
    padding: 1.25rem;
}

.attraction--compact .attraction__info {
    padding: 0;
}

/* ---------- BOOKING CTA ---------- */
.booking {
    background: var(--charcoal);
    color: var(--white);
    text-align: center;
    padding: 5rem 0;
}

.booking__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.booking__subtitle {
    font-size: 1.05rem;
    opacity: 0.8;
    margin-bottom: 2.5rem;
}

.booking__buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}

.booking__contact {
    font-size: 0.9rem;
    opacity: 0.7;
}

.booking__contact a {
    color: var(--gold-light);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.booking__contact a:hover {
    color: var(--gold);
}

/* ---------- CONTACT ---------- */
.contact__grid {
    display: grid;
    gap: 2rem;
    text-align: center;
}

.contact__item svg {
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.contact__item h3,
.contact__label {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact__item p,
.contact__item address {
    font-size: 0.95rem;
    color: var(--charcoal-light);
    line-height: 1.6;
}

.contact__item a:hover {
    color: var(--gold);
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.8);
    padding-top: 3rem;
}

.footer__inner {
    display: grid;
    gap: 2rem;
    padding-bottom: 2rem;
}

.footer__logo {
    display: block;
    height: 150px;
    width: auto;
    margin-bottom: 0.75rem;
}

.footer__brand p {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.5;
}

.footer__nav h4,
.footer__social h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer__nav ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.footer__nav a {
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity var(--transition);
}

.footer__nav a:hover {
    opacity: 1;
    color: var(--gold-light);
}

.footer__social-links {
    display: flex;
    gap: 1rem;
}

.footer__social-links a {
    color: rgba(255,255,255,0.7);
    transition: color var(--transition);
}

.footer__social-links a:hover {
    color: var(--gold-light);
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.25rem 0;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0,0,0,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.lightbox[hidden] {
    display: none;
}

.lightbox.is-visible {
    opacity: 1;
    visibility: visible;
    display: flex;
}

.lightbox__content {
    max-width: 90vw;
    max-height: 85vh;
}

.lightbox__content img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius);
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
    position: absolute;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    padding: 1rem;
    opacity: 0.7;
    transition: opacity var(--transition);
    z-index: 201;
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
    opacity: 1;
}

.lightbox__close {
    top: 1rem;
    right: 1rem;
    font-size: 2.5rem;
}

.lightbox__prev {
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
}

.lightbox__next {
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
}

/* ---------- ANIMATIONS ---------- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

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

/* ---------- FAQ ---------- */
.faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    border-bottom: 1px solid var(--cream-dark);
    padding: 0;
}

.faq__item:last-child {
    border-bottom: none;
}

.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--charcoal);
    cursor: pointer;
    list-style: none;
    transition: color var(--transition);
}

.faq__question::-webkit-details-marker {
    display: none;
}

.faq__question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gold);
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq__item[open] .faq__question::after {
    content: '\2212';
}

.faq__question:hover {
    color: var(--gold-dark);
}

.faq__answer {
    padding: 0 0 1.25rem;
}

.faq__answer p {
    font-size: 0.95rem;
    color: var(--charcoal-light);
    line-height: 1.8;
}

.faq__answer a {
    color: var(--gold-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.faq__answer a:hover {
    color: var(--gold);
}

/* ---------- ABOUT SUMMARY TABLE ---------- */
.about__summary {
    margin-top: 3rem;
}

.about__summary-title,
.about__why-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 1.25rem;
}

.about__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.about__table th,
.about__table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--cream-dark);
}

.about__table th {
    font-weight: 600;
    color: var(--charcoal);
    white-space: nowrap;
    width: 40%;
}

.about__table td {
    color: var(--charcoal-light);
}

.about__table tr:last-child th,
.about__table tr:last-child td {
    border-bottom: none;
}

/* ---------- ABOUT WHY CHOOSE ---------- */
.about__why {
    margin-top: 2.5rem;
}

.about__why-list {
    list-style: none;
    padding: 0;
}

.about__why-list li {
    position: relative;
    padding: 0.6rem 0 0.6rem 1.75rem;
    font-size: 0.95rem;
    color: var(--charcoal-light);
    line-height: 1.7;
}

.about__why-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.about__why-list li strong {
    color: var(--charcoal);
}

@media (max-width: 480px) {
    .about__table th {
        white-space: normal;
        width: 35%;
    }
}

/* ---------- TABLET (768px+) ---------- */
@media (min-width: 768px) {
    .section__title {
        font-size: 2.5rem;
    }

    .hero__logo {
        height: 150px;
    }

    .hero__actions {
        flex-direction: row;
        justify-content: center;
    }

    .about__grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .about__stats {
        grid-template-columns: repeat(4, 1fr);
    }

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

    .gallery__item--wide {
        grid-column: span 2;
    }

    .amenities__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .reviews__grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .location__map {
        height: 100%;
        min-height: 400px;
    }

    .booking__buttons {
        flex-direction: row;
        justify-content: center;
    }

    .booking__title {
        font-size: 2.5rem;
    }

    .contact__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer__inner {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .attraction {
        grid-template-columns: 200px 1fr;
    }

    .attraction img {
        height: 100%;
    }
}

/* ---------- DESKTOP (1024px+) ---------- */
@media (min-width: 1024px) {
    .header__nav {
        display: block;
    }

    .header__cta {
        display: inline-flex;
    }

    .header__burger {
        display: none;
    }

    .section {
        padding: 6rem 0;
    }

    .section__title {
        font-size: 2.75rem;
    }

    .hero__logo {
        height: 180px;
    }

    .hero__subtitle {
        font-size: 1.25rem;
    }

    .gallery__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery__item--wide {
        grid-column: span 2;
    }

    .amenities__grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* ---------- LARGE DESKTOP (1440px+) ---------- */
@media (min-width: 1440px) {
    :root {
        --container: 1320px;
    }
}
