@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* =============================================
   TOKENS
   ============================================= */
:root {
    --teal:        #1a8c7e;
    --teal-light:  #22b0a0;
    --teal-glow:   rgba(26, 140, 126, 0.15);
    --teal-soft:   #e8f5f3;
    --navy:        #0d1f2d;
    --navy-mid:    #1b3347;
    --ink:         #1c2a24;
    --muted:       #607068;
    --line:        #dce8e4;
    --paper:       #ffffff;
    --sand:        #f7f3ee;
    --sand-dark:   #ede7dc;
    --foam:        #f2f8f6;
    --gold:        #b8864e;
    --shadow-sm:   0 2px 12px rgba(13, 31, 45, 0.07);
    --shadow-md:   0 8px 32px rgba(13, 31, 45, 0.12);
    --shadow-lg:   0 24px 64px rgba(13, 31, 45, 0.18);
    --radius:      12px;
    --radius-lg:   20px;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'DM Sans', system-ui, sans-serif;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 {
    font-family: var(--font-display);
    line-height: 1.08;
    letter-spacing: -0.02em;
    font-weight: 400;
}

h1 { font-size: clamp(52px, 7vw, 88px); }
h2 { font-size: clamp(34px, 4.5vw, 56px); }
h3 { font-size: clamp(22px, 2.5vw, 30px); }

/* =============================================
   LAYOUT
   ============================================= */
.container {
    width: min(1160px, calc(100% - 48px));
    margin: 0 auto;
}

.section { padding: 100px 0; }

/* =============================================
   EYEBROW
   ============================================= */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--teal);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: currentColor;
    flex-shrink: 0;
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 78px;
    padding: 10px 40px;
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(220, 232, 228, 0.7);
    backdrop-filter: blur(20px) saturate(1.4);
    transition: background 0.3s, box-shadow 0.3s;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.02em;
    text-decoration: none;
    color: var(--ink);
}

.brand img {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 500;
}

.site-nav a {
    text-decoration: none;
    padding: 7px 13px;
    border-radius: 8px;
    color: var(--ink);
    transition: background 0.2s, color 0.2s;
}

.site-nav a:hover {
    background: var(--foam);
    color: var(--teal);
}

.site-nav .nav-cta {
    margin-left: 8px;
    padding: 9px 20px;
    background: var(--teal);
    color: #fff !important;
    border-radius: var(--radius);
}

.site-nav .nav-cta:hover {
    background: var(--teal-light) !important;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    background: var(--paper);
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--ink);
    border-radius: 2px;
}

/* =============================================
   HERO
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 48px 100px;
    color: #fff;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(160deg, rgba(13,31,45,0.52) 0%, rgba(13,31,45,0.18) 50%, rgba(13,31,45,0.7) 100%),
        var(--hero-image);
    background-position: center;
    background-size: cover;
    animation: heroZoom 18s ease-out forwards;
}

@keyframes heroZoom {
    from { transform: scale(1.07); }
    to   { transform: scale(1.0); }
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(840px, 100%);
    margin: 0 auto;
    text-align: center;
    animation: heroFadeUp 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero .eyebrow { color: rgba(255,255,255,0.82); justify-content: center; }
.hero .eyebrow::before { background: rgba(255,255,255,0.55); }

.hero h1 {
    font-style: italic;
    font-weight: 300;
    margin-bottom: 20px;
    text-shadow: 0 2px 24px rgba(0,0,0,0.22);
}

.hero p {
    font-size: clamp(17px, 2vw, 22px);
    color: rgba(255,255,255,0.86);
    max-width: 520px;
    margin: 0 auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.55);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-scroll::after {
    content: '';
    display: block;
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.45), transparent);
    animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.35; }
    50% { opacity: 1; }
}

/* =============================================
   BUTTONS
   ============================================= */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 50px;
    padding: 13px 26px;
    border: 1.5px solid transparent;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.22s ease;
    white-space: nowrap;
}

.button.primary {
    color: #fff;
    background: var(--teal);
    border-color: var(--teal);
}

.button.primary:hover {
    background: var(--teal-light);
    border-color: var(--teal-light);
    box-shadow: 0 8px 24px rgba(26, 140, 126, 0.35);
    transform: translateY(-1px);
}

.button.ghost {
    color: #fff;
    border-color: rgba(255,255,255,0.48);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
}

.button.ghost:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.72);
}

.button.soft {
    color: var(--ink);
    border-color: var(--line);
    background: var(--foam);
}

.button.soft:hover {
    background: var(--teal-soft);
    border-color: var(--teal);
    color: var(--teal);
}

.button.full { width: 100%; }

/* =============================================
   INTRO / APARTMENTS
   ============================================= */
.intro-section {
    background: var(--sand);
    position: relative;
    overflow: hidden;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: -160px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26,140,126,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 56px;
}

.intro h2 { font-style: italic; }

.intro p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    margin-top: 16px;
    margin-bottom: 0;
}

.apartment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

/* =============================================
   APARTMENT CARD
   ============================================= */
.apartment-card {
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--paper);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s, transform 0.3s;
    border: 1px solid var(--line);
}

.apartment-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.card-image {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

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

.apartment-card:hover .card-image img { transform: scale(1.07); }

.card-body { padding: 24px; }
.card-body h3 { font-size: 22px; margin-bottom: 6px; }
.card-body > p { color: var(--muted); font-size: 15px; line-height: 1.6; }

.stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0 20px;
}

.stats span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 11px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--muted);
    background: var(--foam);
    font-size: 13px;
    font-weight: 500;
}

.stats strong {
    color: var(--ink);
    font-weight: 700;
    font-size: 15px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--teal);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: gap 0.2s;
}

.text-link::after { content: '→'; transition: transform 0.2s; }
.text-link:hover::after { transform: translateX(4px); }

/* =============================================
   SECTION HEADING
   ============================================= */
.section-heading {
    max-width: 700px;
    margin: 0 auto 52px;
    text-align: center;
}

.section-heading h2 { font-style: italic; }
.section-heading p:last-child { color: var(--muted); font-size: 18px; margin-top: 14px; }

/* =============================================
   TOURISM SECTION
   ============================================= */
.tourism-section { background: var(--paper); }

.tourism-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.tourism-card {
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
    transition: box-shadow 0.3s, transform 0.3s;
}

.tourism-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.tourism-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.tourism-card h3 {
    margin: 0;
    padding: 12px 14px 14px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.4;
    min-height: 0;
}

/* =============================================
   CONTACT
   ============================================= */
.contact-band {
    background: var(--navy);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.contact-band::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -150px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26,140,126,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.contact-band .eyebrow { color: rgba(255,255,255,0.55); }
.contact-band .eyebrow::before { background: rgba(255,255,255,0.38); }
.contact-band h2 { font-style: italic; color: #fff; }

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: start;
}

.contact-grid > div > p {
    color: rgba(255,255,255,0.7);
    font-size: 17px;
    line-height: 1.75;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 28px;
}

.contact-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s;
}

.contact-links a:hover { color: #fff; }

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 32px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
}

.contact-form label {
    display: grid;
    gap: 7px;
    color: rgba(255,255,255,0.8);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.contact-form label:nth-last-of-type(1),
.contact-form button { grid-column: 1 / -1; }

input, select, textarea {
    width: 100%;
    min-height: 46px;
    padding: 12px 14px;
    border: 1.5px solid rgba(255,255,255,0.14);
    border-radius: var(--radius);
    background: rgba(255,255,255,0.07);
    color: #fff;
    font: inherit;
    font-size: 15px;
    transition: border-color 0.2s, background 0.2s;
}

input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.28); }

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--teal-light);
    background: rgba(255,255,255,0.11);
}

select option { background: var(--navy); color: #fff; }
textarea { resize: vertical; }

.booking-panel input,
.booking-panel select,
.booking-panel textarea {
    border-color: var(--line);
    background: var(--paper);
    color: var(--ink);
}

.booking-panel input:focus,
.booking-panel select:focus,
.booking-panel textarea:focus {
    border-color: var(--teal);
    background: var(--paper);
}

.hidden-field { position: absolute; left: -9999px; }

/* =============================================
   FLASH
   ============================================= */
.flash-wrap {
    position: fixed;
    z-index: 90;
    top: 90px;
    right: 24px;
    display: grid;
    gap: 10px;
    width: min(380px, calc(100% - 48px));
}

.flash {
    padding: 15px 18px;
    border-radius: var(--radius);
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    box-shadow: var(--shadow-md);
    animation: flashIn 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes flashIn {
    from { opacity: 0; transform: translateX(24px); }
    to   { opacity: 1; transform: translateX(0); }
}

.flash.success { background: var(--teal); }
.flash.error   { background: #b04040; }

/* =============================================
   DETAIL HERO
   ============================================= */
.detail-hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: flex-end;
    padding-top: 78px;
    overflow: hidden;
    color: #fff;
    background: var(--navy);
}

.detail-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(13,31,45,0.12) 0%, rgba(13,31,45,0.22) 45%, rgba(13,31,45,0.82) 100%);
}

.detail-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-hero-content {
    position: relative;
    z-index: 1;
    width: min(1160px, calc(100% - 48px));
    margin: 0 auto;
    padding: 0 0 80px;
}

.detail-hero h1 { font-style: italic; font-weight: 300; text-shadow: 0 2px 20px rgba(0,0,0,0.2); margin-bottom: 8px; }
.detail-hero p { color: rgba(255,255,255,0.8); font-size: 18px; }
.detail-hero .eyebrow { color: rgba(255,255,255,0.62); }
.detail-hero .eyebrow::before { background: rgba(255,255,255,0.45); }

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 52px;
    align-items: start;
}

.detail-copy .stats { margin-top: 0; }

.rich-text {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
}

.rich-text p { margin-bottom: 1.2em; }

.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.feature-list span {
    padding: 8px 14px;
    border-radius: 8px;
    color: var(--teal);
    background: var(--teal-soft);
    font-size: 13px;
    font-weight: 600;
}

/* =============================================
   BOOKING PANEL
   ============================================= */
.booking-panel {
    position: sticky;
    top: 100px;
    display: grid;
    gap: 13px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--paper);
    box-shadow: var(--shadow-md);
}

.booking-panel h2 { font-size: 24px; font-style: italic; margin-bottom: 2px; }
.booking-panel > p { color: var(--muted); font-size: 14px; margin: 0; }

/* =============================================
   GALLERY
   ============================================= */
.gallery-section { background: var(--sand); }

.gallery-grid {
    columns: 4 200px;
    column-gap: 16px;
}

.gallery-link {
    display: block;
    overflow: hidden;
    margin: 0 0 16px;
    border-radius: var(--radius);
    background: var(--line);
    position: relative;
}

.gallery-link::after {
    content: '⊕';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    background: rgba(13,31,45,0);
    transition: background 0.3s;
}

.gallery-link:hover::after { background: rgba(13,31,45,0.38); }

.gallery-link img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

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

/* =============================================
   MAP
   ============================================= */
.map-section { background: var(--paper); }

.map-layout {
    display: grid;
    grid-template-columns: 0.55fr 1.45fr;
    gap: 36px;
    align-items: stretch;
}

.map-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.map-info h2 { font-style: italic; }
.map-info p { color: var(--muted); }

.map-layout iframe {
    width: 100%;
    min-height: 440px;
    border: 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    padding: 72px 40px 32px;
    color: rgba(255,255,255,0.78);
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26,140,126,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    gap: 44px;
    width: min(1160px, 100%);
    margin: 0 auto 48px;
}

.footer-brand { display: flex; flex-direction: column; gap: 14px; }

.footer-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.footer-tagline {
    color: rgba(255,255,255,0.48);
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
}

.footer-col h2 {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 18px;
}

.site-footer a {
    display: block;
    margin: 7px 0;
    color: rgba(255,255,255,0.68);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

.site-footer a:hover { color: #fff; }

.footer-bottom {
    width: min(1160px, 100%);
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.copyright {
    color: rgba(255,255,255,0.38);
    font-size: 13px;
    margin: 0;
}

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 72px 24px 32px;
    background: rgba(8,16,22,0.95);
    backdrop-filter: blur(4px);
}

.lightbox[hidden] { display: none; }

.lightbox img {
    max-height: 80vh;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.lightbox p {
    margin: 14px 0 0;
    color: rgba(255,255,255,0.62);
    font-size: 14px;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 10px;
    color: rgba(255,255,255,0.75);
    background: rgba(255,255,255,0.06);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.lightbox-close:hover { background: rgba(255,255,255,0.14); color: #fff; }

/* =============================================
   404
   ============================================= */
.not-found { padding-top: 140px; text-align: center; }
.not-found h1 { font-style: italic; }

/* =============================================
   RESPONSIVE — TABLET (≤ 1080px)
   ============================================= */
@media (max-width: 1080px) {
    .apartment-grid { grid-template-columns: repeat(2, 1fr); }
    .tourism-grid { grid-template-columns: repeat(3, 1fr); }
    .detail-layout, .map-layout { grid-template-columns: 1fr; }
    .booking-panel { position: static; }
    .contact-grid { gap: 44px; }
}

/* =============================================
   RESPONSIVE — MOBILE (≤ 820px)
   ============================================= */
@media (max-width: 820px) {
    body { font-size: 16px; }

    .site-header { padding: 10px 20px; }

    .nav-toggle { display: flex; }

    .site-nav {
        position: absolute;
        inset: 78px 12px auto;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        display: none;
        padding: 10px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: var(--paper);
        box-shadow: var(--shadow-md);
    }

    .site-nav.is-open { display: flex; }

    .site-nav a { padding: 12px 14px; }
    .site-nav .nav-cta { margin-left: 0; text-align: center; }

    .hero { min-height: 90vh; padding: 120px 24px 80px; }
    .hero p { font-size: 17px; }
    .hero-scroll { display: none; }

    .section { padding: 72px 0; }

    .intro { grid-template-columns: 1fr; gap: 28px; }

    .contact-grid { grid-template-columns: 1fr; gap: 36px; }
    .contact-form { grid-template-columns: 1fr; padding: 22px; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-brand { grid-column: 1 / -1; }

    .detail-hero { min-height: 60vh; }
    .detail-hero-content { padding-bottom: 50px; }

    .gallery-grid { columns: 2 140px; }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE (≤ 560px)
   ============================================= */
@media (max-width: 560px) {
    .container { width: calc(100% - 32px); }
    .apartment-grid, .tourism-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .button { width: 100%; justify-content: center; }
    .gallery-grid { columns: 1; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .contact-form { padding: 18px; gap: 14px; }
}
