:root {
    --yellow: #dca34f;
    --yellow-2: #f0c98c;
    --yellow-dark: #9e6727;
    --cream: #fbf6ef;
    --cream-2: #f5ede2;
    --sand: #ead8c1;
    --sand-soft: #f3e5d3;
    --wood: #3c2819;
    --walnut: #20140d;
    --ink: #231913;
    --muted: #6f6257;
    --line: rgba(60, 40, 25, 0.12);
    --line-strong: rgba(60, 40, 25, 0.18);
    --shadow: 0 28px 80px rgba(61, 40, 23, 0.12);
    --shadow-soft: 0 18px 46px rgba(61, 40, 23, 0.09);
    --shadow-card: 0 24px 56px rgba(61, 40, 23, 0.1);
    --radius-xl: 38px;
    --radius-lg: 30px;
    --radius-md: 22px;
}

* { box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    scroll-padding-top: 104px;
}
body {
    position: relative;
    isolation: isolate;
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at 12% 10%, rgba(245, 213, 174, 0.52), transparent 30%),
        radial-gradient(circle at 88% 8%, rgba(235, 182, 112, 0.16), transparent 24%),
        linear-gradient(180deg, #fffaf4 0%, #f8f0e6 48%, #f4ecdf 100%);
    font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: -0.01em;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.68;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.44), transparent 36%),
        radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.34), transparent 18%),
        repeating-linear-gradient(90deg, rgba(60, 40, 25, 0.02) 0 1px, transparent 1px 26px);
}
a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
a:hover { color: var(--yellow-dark); }
img { max-width: 100%; display: block; }
h1, h2, h3, .brand-word, .footer-brand, .display-serif {
    font-family: "Outfit", "Manrope", sans-serif;
    letter-spacing: -0.055em;
    font-weight: 700;
}
.container-xl { max-width: 1180px; }
.icon-svg {
    display: block;
    width: 24px;
    height: 24px;
    flex: none;
}

.btn {
    border-radius: 999px;
    font-family: "Outfit", "Manrope", sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    padding: 0.95rem 1.4rem;
    border-width: 1px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
    color: #28170a;
    border: 0;
    background: linear-gradient(135deg, #f6d28f 0%, var(--yellow) 56%, #c88224 100%);
    box-shadow: 0 18px 36px rgba(220, 163, 79, 0.24);
}
.btn-gold:hover {
    color: #28170a;
    box-shadow: 0 22px 42px rgba(220, 163, 79, 0.32);
}
.btn-glass {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(16px);
}
.btn-glass:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.56);
}
.text-link {
    color: var(--yellow-dark);
    font-family: "Outfit", "Manrope", sans-serif;
    font-weight: 700;
}
.text-link:hover { color: var(--wood); }

/* Header */
.site-navbar {
    z-index: 1000;
    padding: 20px 0;
    transition: padding 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.site-navbar .nav-link {
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    font-family: "Outfit", "Manrope", sans-serif;
    font-weight: 600;
    font-size: 0.96rem;
    letter-spacing: -0.01em;
    padding: 0.55rem 0.75rem;
}
.site-navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.35rem;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    opacity: 0;
    transform: scaleX(0.25);
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.site-navbar .nav-link:hover::after {
    opacity: 0.8;
    transform: scaleX(1);
}
.site-navbar .nav-link:hover { color: #fff2d7; }
.site-brand {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    line-height: 1;
    min-width: 210px;
    color: #fff;
}
.site-brand:hover { color: #fff; }
.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-bottom: 0.42rem;
    border-radius: 18px;
    color: #f4d4a3;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 14px 24px rgba(17, 10, 5, 0.16);
    backdrop-filter: blur(14px);
}
.brand-mark svg {
    display: block;
    width: 32px;
    height: 32px;
}
.site-brand strong {
    display: block;
    color: #fff;
    font-size: 1.9rem;
    line-height: 0.95;
}
.site-brand small {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    margin-top: 0.6rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.btn-reserve {
    display: inline-flex;
    align-items: center;
    gap: 0.58rem;
    padding: 0.76rem 1.15rem;
}
.btn-icon {
    display: inline-grid;
    place-items: center;
}
.btn-reserve .icon-svg {
    width: 18px;
    height: 18px;
}
.site-navbar .navbar-toggler {
    width: 52px;
    height: 52px;
    padding: 0;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 12px 24px rgba(16, 10, 5, 0.14);
    transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, color 0.22s ease;
}
.site-navbar .navbar-toggler:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.42);
}
.site-navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 0.18rem rgba(241, 203, 145, 0.28);
}
.site-navbar .navbar-toggler-icon {
    position: relative;
    display: block;
    width: 24px;
    height: 16px;
    background: linear-gradient(currentColor, currentColor) center / 100% 2px no-repeat;
    filter: none;
}
.site-navbar .navbar-toggler-icon::before,
.site-navbar .navbar-toggler-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: top 0.22s ease, bottom 0.22s ease, transform 0.22s ease, opacity 0.18s ease;
}
.site-navbar .navbar-toggler-icon::before { top: 0; }
.site-navbar .navbar-toggler-icon::after { bottom: 0; }
.site-navbar .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-size: 0 0;
}
.site-navbar .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    top: 7px;
    transform: rotate(45deg);
}
.site-navbar .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    bottom: 7px;
    transform: rotate(-45deg);
}
.site-navbar.scrolled,
.inner-page .site-navbar {
    padding: 12px 0;
    background: rgba(255, 248, 241, 0.78);
    border-bottom: 1px solid rgba(60, 40, 25, 0.08);
    box-shadow: 0 16px 34px rgba(60, 40, 25, 0.08);
    backdrop-filter: blur(20px) saturate(150%);
}
.site-navbar.scrolled .nav-link,
.inner-page .site-navbar .nav-link { color: var(--ink); }
.site-navbar.scrolled .nav-link:hover,
.inner-page .site-navbar .nav-link:hover { color: var(--yellow-dark); }
.site-navbar.scrolled .site-brand strong,
.inner-page .site-navbar .site-brand strong { color: var(--ink); }
.site-navbar.scrolled .site-brand small,
.inner-page .site-navbar .site-brand small { color: var(--muted); }
.site-navbar.scrolled .brand-mark,
.inner-page .site-navbar .brand-mark {
    color: var(--yellow-dark);
    background: linear-gradient(135deg, rgba(220, 163, 79, 0.18), rgba(255, 255, 255, 0.92));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 10px 22px rgba(60, 40, 25, 0.08);
}
.site-navbar.scrolled .navbar-toggler,
.inner-page .site-navbar .navbar-toggler {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.76);
    border-color: rgba(60, 40, 25, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 10px 22px rgba(60, 40, 25, 0.08);
}
.site-navbar.scrolled .navbar-toggler:hover,
.inner-page .site-navbar .navbar-toggler:hover {
    background: rgba(255, 248, 241, 0.94);
    border-color: rgba(158, 103, 39, 0.24);
}

/* Hero */
.hero {
    position: relative;
    min-height: 780px;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center center;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(31, 19, 11, 0.72) 0%, rgba(31, 19, 11, 0.46) 18%, rgba(31, 19, 11, 0.18) 42%, rgba(31, 19, 11, 0.14) 58%, rgba(31, 19, 11, 0.34) 82%, rgba(31, 19, 11, 0.56) 100%),
        radial-gradient(circle at -6% 50%, rgba(251, 246, 239, 0.64) 0%, rgba(245, 198, 122, 0.3) 20%, rgba(245, 198, 122, 0) 42%),
        radial-gradient(circle at 106% 40%, rgba(251, 246, 239, 0.42) 0%, rgba(245, 198, 122, 0.24) 18%, rgba(245, 198, 122, 0) 40%),
        radial-gradient(circle at 20% 16%, rgba(246, 211, 150, 0.18), transparent 28%),
        radial-gradient(circle at 84% 16%, rgba(246, 187, 105, 0.14), transparent 24%),
        linear-gradient(180deg, rgba(255, 243, 225, 0.06) 0%, rgba(16, 10, 6, 0.34) 100%);
}
.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 210px;
    background: linear-gradient(180deg, rgba(251, 246, 239, 0) 0%, rgba(251, 246, 239, 0.86) 72%, var(--cream) 100%);
}
.hero-overlay { display: none; }
.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}
.hero-content::before {
    content: "";
    position: absolute;
    right: -60px;
    top: 110px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 186, 112, 0.18), rgba(240, 186, 112, 0) 68%);
    filter: blur(8px);
    z-index: -1;
    animation: heroHalo 12s ease-in-out infinite;
}
.min-vh-hero { min-height: 780px; padding: 146px 0 178px; }
.hero-copy { max-width: 680px; }
.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: #f6d6a3;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    margin-bottom: 1.25rem;
}
.hero-kicker::before {
    content: "";
    width: 42px;
    height: 1px;
    background: currentColor;
}
.hero h1 {
    font-size: clamp(2.95rem, 5.2vw, 5.1rem);
    line-height: 0.94;
    max-width: 640px;
    margin: 0 0 1.2rem;
    text-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}
.hero-subtitle {
    max-width: 560px;
    font-size: 1.06rem;
    color: rgba(255, 255, 255, 0.82);
    margin: 0 0 1.55rem;
}
.rich-copy p,
.rich-copy ul,
.rich-copy ol {
    margin: 0 0 0.8rem;
}
.rich-copy p:last-child,
.rich-copy ul:last-child,
.rich-copy ol:last-child {
    margin-bottom: 0;
}
.rich-copy ul,
.rich-copy ol {
    padding-left: 1.2rem;
}
.hero-subtitle.rich-copy,
.hero-subtitle.rich-copy p,
.hero-subtitle.rich-copy ul,
.hero-subtitle.rich-copy ol {
    color: inherit;
}
.hero-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    max-width: 650px;
    margin: 0 0 2rem;
}
.hero-facts span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.58rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.96);
}
.hero-facts span::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--yellow-2);
    box-shadow: 0 0 0 6px rgba(240, 201, 140, 0.12);
    animation: pointPulse 4.2s ease-in-out infinite;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.95rem; }
.hero-actions .btn { min-width: 210px; }
.hero-aside-card {
    position: relative;
    max-width: 360px;
    padding: 1.5rem;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
    box-shadow: 0 30px 60px rgba(20, 12, 6, 0.18);
    backdrop-filter: blur(22px);
    color: #fff;
}
.hero-aside-label {
    display: inline-flex;
    padding: 0.4rem 0.72rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #f7d8a8;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.hero-aside-card strong {
    display: block;
    font-size: 1.85rem;
    line-height: 1.02;
    margin-bottom: 0.85rem;
}
.hero-aside-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.15rem;
}
.hero-aside-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}
.hero-aside-points span {
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(26, 15, 8, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 700;
    font-size: 0.92rem;
}

/* Feature strip */
.features-floating {
    margin-top: -92px;
    position: relative;
    z-index: 5;
}
.feature-card-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border-radius: 32px;
    border: 1px solid rgba(60, 40, 25, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 251, 245, 0.78));
    box-shadow: 0 26px 60px rgba(60, 40, 25, 0.12);
    backdrop-filter: blur(18px);
}
.mini-feature {
    position: relative;
    padding: 2rem 1.2rem;
    text-align: center;
    transition: transform 0.25s ease, background 0.25s ease;
}
.mini-feature:hover {
    transform: translateY(-4px);
    background: rgba(246, 237, 227, 0.54);
}
.mini-feature:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 24%;
    height: 52%;
    width: 1px;
    background: var(--line);
}
.mini-icon {
    display: inline-grid;
    place-items: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 0.85rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(220, 163, 79, 0.18), rgba(255, 255, 255, 0.82));
    color: var(--yellow-dark);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68), 0 12px 24px rgba(220, 163, 79, 0.08);
    line-height: 1;
}
.mini-icon .icon-svg {
    width: 30px;
    height: 30px;
}
.mini-feature strong {
    display: block;
    font-family: "Outfit", "Manrope", sans-serif;
    font-size: 1.05rem;
    line-height: 1.25;
}

/* Sections */
.section { padding: 92px 0; }
.about-section { padding-top: 114px; }
.gallery-preview,
.location-contact,
.price-section,
.about-section { position: relative; }
.section-label {
    display: inline-block;
    color: var(--yellow-dark);
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.95rem;
}
.section h2 {
    font-size: clamp(2.25rem, 4.2vw, 3.8rem);
    line-height: 1.02;
    margin-bottom: 1.1rem;
    color: var(--ink);
}
.accent-line {
    width: 68px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--yellow), #f3cf97);
    margin: 1.4rem 0 1.75rem;
}
.lead-copy {
    max-width: 560px;
    color: #4d4035;
    font-size: 1.02rem;
}
.image-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #fff;
    border: 1px solid rgba(60, 40, 25, 0.06);
}
.image-frame img { width: 100%; height: 100%; object-fit: cover; }
.image-frame-lg { height: 460px; }
.about-card-soft { position: relative; }
.gallery-rotator-frame {
    isolation: isolate;
    background:
        radial-gradient(circle at 18% 14%, rgba(245, 214, 168, 0.2), transparent 24%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 246, 230, 0.92));
}
.gallery-rotator-image,
.gallery-rotator-buffer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.04);
    filter: saturate(0.96) brightness(0.96);
    transition: opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1), transform 1.35s cubic-bezier(0.22, 1, 0.36, 1), filter 1.1s ease;
    will-change: opacity, transform, filter;
    z-index: 0;
}
.gallery-rotator-image.is-active,
.gallery-rotator-buffer.is-active {
    opacity: 1;
    transform: scale(1);
    filter: saturate(1) brightness(1);
    z-index: 1;
}
.gallery-rotator-buffer {
    pointer-events: none;
}
.gallery-rotator-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        radial-gradient(circle at 14% 12%, rgba(255, 255, 255, 0.14), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(27, 17, 11, 0.08));
}
.gallery-rotator-frame.is-swapping {
    box-shadow: 0 34px 86px rgba(61, 40, 23, 0.15);
}
.about-card-soft::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    left: -54px;
    bottom: -46px;
    background: rgba(220, 163, 79, 0.08);
    z-index: -1;
}

/* Gallery */
.gallery-preview { padding-top: 46px; }
.section-heading-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.8rem;
}
.gallery-grid-clean {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.gallery-tile {
    position: relative;
    height: 220px;
    border-radius: 26px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(60, 40, 25, 0.08);
    box-shadow: var(--shadow-soft);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.gallery-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 45%, rgba(34, 22, 13, 0.18) 100%);
    opacity: 0;
    transition: opacity 0.28s ease;
    z-index: 2;
}
.gallery-tile-image,
.gallery-tile-buffer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.035);
    filter: saturate(0.96) brightness(0.97);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 1.05s cubic-bezier(0.22, 1, 0.36, 1), filter 0.9s ease;
    will-change: transform, opacity, filter;
    z-index: 0;
}
.gallery-tile-image.is-active,
.gallery-tile-buffer.is-active {
    opacity: 1;
    transform: scale(1);
    filter: saturate(1) brightness(1);
    z-index: 1;
}
.gallery-tile-buffer {
    pointer-events: none;
}
.gallery-tile.is-swapping {
    border-color: rgba(220, 163, 79, 0.18);
    box-shadow: 0 22px 48px rgba(60, 40, 25, 0.13);
}
.gallery-tile:hover {
    transform: translateY(-6px);
    border-color: rgba(220, 163, 79, 0.24);
    box-shadow: 0 24px 52px rgba(60, 40, 25, 0.15);
}
.gallery-tile:hover::after { opacity: 1; }

/* Price */
.price-section {
    padding-top: 52px;
    padding-bottom: 46px;
}
.price-panel {
    display: grid;
    grid-template-columns: 0.9fr 1px 1fr;
    align-items: center;
    gap: 2.6rem;
    padding: 2.9rem 3.2rem;
    border-radius: 32px;
    border: 1px solid rgba(60, 40, 25, 0.08);
    background:
        radial-gradient(circle at 10% 14%, rgba(245, 201, 133, 0.24), transparent 28%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 246, 231, 0.94));
    box-shadow: var(--shadow-card);
}
.price-main span {
    color: var(--yellow-dark);
    font-family: "Outfit", "Manrope", sans-serif;
    font-size: clamp(3.5rem, 5.4vw, 5.3rem);
    font-weight: 800;
    letter-spacing: -0.07em;
    line-height: 0.9;
}
.price-main small {
    color: var(--ink);
    font-size: 1.22rem;
    font-weight: 700;
    margin-left: 0.3rem;
}
.price-main p {
    color: var(--muted);
    margin: 0.8rem 0 0;
}
.price-divider {
    width: 1px;
    height: 120px;
    background: var(--line);
}
.price-copy {
    display: flex;
    align-items: center;
    gap: 1.3rem;
    font-weight: 700;
    font-size: 1.08rem;
    color: #3f3127;
}
.price-copy .rich-copy { flex: 1; }
.round-icon {
    display: grid;
    place-items: center;
    width: 74px;
    min-width: 74px;
    height: 74px;
    border-radius: 50%;
    background: rgba(220, 163, 79, 0.14);
    color: var(--yellow-dark);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
}
.round-icon .icon-svg {
    width: 31px;
    height: 31px;
}

/* Cards and contact */
.info-card,
.form-card,
.contact-side-card,
.content-card {
    height: 100%;
    border: 1px solid rgba(60, 40, 25, 0.08);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(18px);
    padding: 2.3rem;
}
.info-card h3,
.form-card h3,
.contact-side-card h2 {
    font-size: 2rem;
    line-height: 1.02;
    margin-bottom: 1rem;
}
.map-card {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 1.3rem;
    align-items: center;
}
.map-copy p { margin-bottom: 0.5rem; }
.map-visual {
    min-height: 250px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f8f2e8 0%, #eadbc5 100%);
    border: 1px solid rgba(151, 119, 76, 0.16);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        inset 0 -26px 38px rgba(118, 88, 53, 0.08);
}
.map-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.34), transparent 24%),
        radial-gradient(circle at 78% 72%, rgba(214, 178, 125, 0.14), transparent 28%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.14), transparent 46%);
    z-index: 2;
    pointer-events: none;
}
.map-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 44%, transparent 42%, rgba(112, 83, 50, 0.1) 100%);
    z-index: 2;
    pointer-events: none;
}
.map-art {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}
.map-pin-shadow {
    position: absolute;
    left: 56%;
    top: 55.6%;
    width: 58px;
    height: 22px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 43, 16, 0.28) 0%, rgba(79, 43, 16, 0.08) 64%, rgba(79, 43, 16, 0) 100%);
    transform: translate(-50%, -50%);
    filter: blur(3px);
    z-index: 1;
    animation: mapPinShadow 4.4s ease-in-out infinite;
}
.map-pin {
    position: absolute;
    left: 56%;
    top: 47.2%;
    width: 58px;
    height: 74px;
    transform: translate(-50%, -50%) rotate(7deg);
    z-index: 3;
    transform-origin: 50% 88%;
    filter: drop-shadow(0 18px 22px rgba(79, 43, 16, 0.25));
    animation: mapPinFloat 4.4s ease-in-out infinite;
}
.map-pin svg {
    width: 100%;
    height: 100%;
    display: block;
}
.reserve-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 246, 230, 0.92));
}
.reserve-card::after {
    content: "";
    position: absolute;
    right: -52px;
    bottom: -62px;
    width: 210px;
    height: 210px;
    border: 1px solid rgba(158, 103, 39, 0.12);
    border-radius: 50%;
    background: rgba(220, 163, 79, 0.08);
}
.reserve-card > * { position: relative; z-index: 2; }
.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--wood);
    font-family: "Outfit", "Manrope", sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 0.6rem;
}
.phone-link-icon,
.contact-item-icon {
    display: inline-grid;
    place-items: center;
    color: var(--yellow-dark);
    background: linear-gradient(135deg, rgba(220, 163, 79, 0.14), rgba(255, 255, 255, 0.86));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.phone-link-icon {
    width: 46px;
    height: 46px;
    border-radius: 15px;
}
.phone-link-icon .icon-svg {
    width: 21px;
    height: 21px;
}

/* Inner pages */
.inner-hero {
    position: relative;
    overflow: hidden;
    padding: 158px 0 94px;
    color: #fff;
    background:
        linear-gradient(110deg, rgba(31, 19, 11, 0.84), rgba(31, 19, 11, 0.5)),
        radial-gradient(circle at 18% 16%, rgba(244, 198, 122, 0.2), transparent 28%),
        url('/uploads/gallery/house-exterior-side.jpg') center/cover;
}
.inner-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(180deg, rgba(251, 246, 239, 0), rgba(251, 246, 239, 0.85) 82%, var(--cream) 100%);
}
.inner-hero > .container-xl { position: relative; z-index: 2; }
.inner-hero .section-label { color: #f4d29a; }
.inner-hero h1 {
    font-size: clamp(2.8rem, 5vw, 4.6rem);
    line-height: 0.96;
    margin-bottom: 0.9rem;
}
.inner-hero p {
    max-width: 700px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
}
.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.gallery-page-card {
    background: rgba(255, 255, 255, 0.86);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(60, 40, 25, 0.08);
    cursor: zoom-in;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.gallery-page-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 52px rgba(60, 40, 25, 0.14);
}
.gallery-page-card img {
    width: 100%;
    height: 270px;
    object-fit: cover;
}
.gallery-page-card div { padding: 1.25rem; }
.gallery-page-card p {
    color: var(--muted);
    margin: 0.35rem 0 0;
}
.gallery-lightbox-shell {
    border: 0;
    background:
        radial-gradient(circle at 50% 18%, rgba(245, 208, 154, 0.12), transparent 24%),
        rgba(18, 12, 8, 0.96);
}
.gallery-lightbox-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    z-index: 10;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.18);
}
.gallery-lightbox-close:hover {
    background-color: rgba(255, 255, 255, 0.14);
}
.gallery-lightbox-counter {
    position: absolute;
    top: 1.35rem;
    left: 1.5rem;
    z-index: 10;
    padding: 0.5rem 0.82rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.88);
    font-family: "Outfit", "Manrope", sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}
.gallery-lightbox-carousel,
.gallery-lightbox-carousel .carousel-inner,
.gallery-lightbox-carousel .carousel-item {
    height: 100%;
}
.gallery-lightbox-stage {
    min-height: 100vh;
    padding: 5.4rem 6rem 8.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-lightbox-image {
    max-width: 100%;
    max-height: calc(100vh - 12rem);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 26px;
    box-shadow: 0 28px 72px rgba(0, 0, 0, 0.3);
}
.gallery-lightbox-caption {
    position: absolute;
    left: 50%;
    bottom: 1.8rem;
    transform: translateX(-50%);
    width: min(760px, calc(100% - 2rem));
    padding: 1rem 1.2rem;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}
.gallery-lightbox-caption strong {
    display: block;
    font-family: "Outfit", "Manrope", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
}
.gallery-lightbox-caption p {
    margin: 0.35rem 0 0;
    color: rgba(255, 255, 255, 0.74);
}
.gallery-lightbox-nav {
    width: 7rem;
    opacity: 1;
}
.gallery-lightbox-nav .carousel-control-prev-icon,
.gallery-lightbox-nav .carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background-size: 1.15rem;
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.18);
}
.gallery-lightbox-nav:hover .carousel-control-prev-icon,
.gallery-lightbox-nav:hover .carousel-control-next-icon {
    background-color: rgba(255, 255, 255, 0.15);
}
.narrow-content { max-width: 900px; }
.content-card {
    font-size: 1.04rem;
    line-height: 1.8;
}
.content-card h2,
.content-card h3 { margin-top: 1.4rem; }
.contact-side-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 245, 221, 0.92));
}
.contact-copy {
    margin-bottom: 0;
}
.contact-big-item {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    margin-top: 1.1rem;
    font-weight: 700;
}
.contact-item-icon {
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 14px;
    margin-top: -0.12rem;
}
.contact-item-icon .icon-svg {
    width: 19px;
    height: 19px;
}
.form-control,
.form-select {
    border-radius: 16px;
    border-color: rgba(60, 40, 25, 0.14);
    padding: 0.86rem 1rem;
    background-color: rgba(255, 255, 255, 0.84);
}
.form-control:focus,
.form-select:focus {
    border-color: var(--yellow);
    box-shadow: 0 0 0 0.25rem rgba(220, 163, 79, 0.14);
}
.contact-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.25rem;
    align-items: flex-end;
}
.contact-recaptcha-wrap {
    margin-left: auto;
    max-width: 100%;
}
.contact-recaptcha-slot {
    width: 256px;
    max-width: 100%;
    min-height: 60px;
    display: flex;
    justify-content: flex-end;
}
.contact-recaptcha-slot .grecaptcha-badge {
    position: static !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    margin: 0 !important;
    box-shadow: none !important;
}
.contact-recaptcha-slot iframe {
    display: block;
    max-width: 100%;
}
.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

/* Footer */
.site-footer {
    position: relative;
    overflow: hidden;
    padding: 56px 0;
    color: #fff;
    background:
        radial-gradient(circle at 84% 20%, rgba(220, 163, 79, 0.16), transparent 20%),
        linear-gradient(110deg, rgba(27, 17, 11, 0.98), rgba(39, 24, 15, 0.94)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 24px),
        var(--walnut);
}
.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.38;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 40%);
}
.site-footer > .container-xl { position: relative; z-index: 2; }
.footer-brand {
    color: #fff;
    font-size: 2rem;
    display: inline-block;
    margin-bottom: 0.45rem;
}
.footer-brand:hover { color: #f4d29a; }
.site-footer p,
.site-footer li,
.site-footer a { color: rgba(255, 255, 255, 0.78); }
.site-footer h6 {
    color: #fff;
    font-family: "Outfit", "Manrope", sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}
.footer-links,
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li,
.contact-list li { margin-bottom: 0.45rem; }
.footer-contact-item {
    display: flex;
    gap: 0.78rem;
    align-items: flex-start;
}
.footer-contact-icon {
    display: inline-grid;
    place-items: center;
    width: 34px;
    min-width: 34px;
    height: 34px;
    border-radius: 12px;
    color: #f4d29a;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-contact-icon .icon-svg {
    width: 17px;
    height: 17px;
}
.socials {
    display: flex;
    gap: 0.75rem;
}
.socials a {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.26);
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
    font-weight: 700;
}
.socials a .icon-svg {
    width: 18px;
    height: 18px;
}
.socials a:hover {
    border-color: #f4d29a;
    color: #f4d29a;
    transform: translateY(-2px);
}

/* Admin */
.admin-body { background: #f7efe2; }
.admin-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 280px 1fr;
}
.admin-sidebar {
    background: var(--walnut);
    color: #fff;
    padding: 28px 22px;
    position: sticky;
    top: 0;
    height: 100vh;
}
.admin-logo {
    display: block;
    color: #fff;
    font-family: "Outfit", "Manrope", sans-serif;
    font-size: 1.8rem;
    line-height: 1;
    margin-bottom: 28px;
}
.admin-logo span {
    display: block;
    color: var(--yellow-2);
    font-family: "Manrope", sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-top: 0.45rem;
}
.admin-nav {
    display: grid;
    gap: 8px;
}
.admin-nav a {
    color: rgba(255, 255, 255, 0.76);
    padding: 12px 14px;
    border-radius: 14px;
    font-weight: 700;
}
.admin-nav a:hover,
.admin-nav a.active {
    background: rgba(220, 163, 79, 0.18);
    color: #fff;
}
.admin-main { min-width: 0; }
.admin-topbar {
    padding: 26px 34px;
    background: rgba(255, 255, 255, 0.72);
    border-bottom: 1px solid rgba(158, 103, 39, 0.14);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.admin-topbar h1 {
    margin: 0;
    font-size: 2.1rem;
}
.admin-topbar p {
    margin: 0.25rem 0 0;
    color: var(--muted);
}
.admin-content { padding: 34px; }
.admin-card,
.stat-card {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(158, 103, 39, 0.14);
    border-radius: 22px;
    padding: 24px;
    box-shadow: var(--shadow-soft);
}
.stat-card span {
    display: block;
    color: var(--yellow-dark);
    font-size: 2.6rem;
    line-height: 1;
    font-family: "Outfit", "Manrope", sans-serif;
    font-weight: 800;
}
.stat-card p {
    margin: 0.5rem 0 0;
    color: var(--muted);
    font-weight: 700;
}
.stat-card.highlight { background: linear-gradient(135deg, #fff4cf, #fff); }
.gallery-admin-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 16px;
}
.file-input-shell {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-height: 58px;
    padding: 0.7rem 0.8rem;
    border: 1px solid rgba(158, 103, 39, 0.18);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 232, 0.92));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.66);
    cursor: pointer;
}
.file-input-shell:hover {
    border-color: rgba(220, 163, 79, 0.42);
}
.file-input-shell.has-file {
    border-color: rgba(220, 163, 79, 0.4);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 240, 214, 0.96));
}
.file-input-control {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}
.file-input-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 154px;
    padding: 0.8rem 1rem;
    border-radius: 14px;
    background: linear-gradient(135deg, #f6d28f 0%, var(--yellow) 58%, #c88224 100%);
    color: #2a180b;
    font-family: "Outfit", "Manrope", sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    box-shadow: 0 12px 24px rgba(220, 163, 79, 0.22);
}
.file-input-name {
    display: block;
    min-width: 0;
    color: var(--muted);
    font-size: 0.96rem;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.rich-editor-shell {
    border: 1px solid rgba(60, 40, 25, 0.14);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
    overflow: hidden;
}
.rich-editor-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    padding: 0.75rem;
    background: linear-gradient(180deg, rgba(248, 241, 230, 0.9), rgba(255, 255, 255, 0.82));
    border-bottom: 1px solid rgba(60, 40, 25, 0.09);
}
.rich-editor-btn {
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
    font-family: "Outfit", "Manrope", sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1;
    padding: 0.68rem 0.85rem;
    box-shadow: 0 8px 18px rgba(60, 40, 25, 0.06);
}
.rich-editor-btn:hover {
    background: rgba(255, 245, 228, 0.96);
    color: var(--yellow-dark);
}
.rich-editor-canvas {
    min-height: 220px;
    padding: 1rem 1rem 1.05rem;
    color: var(--ink);
    line-height: 1.75;
    outline: none;
}
.rich-editor-canvas h2,
.rich-editor-canvas h3 {
    font-family: "Outfit", "Manrope", sans-serif;
    letter-spacing: -0.04em;
    margin: 0 0 0.8rem;
}
.rich-editor-canvas h2 { font-size: 1.6rem; }
.rich-editor-canvas h3 { font-size: 1.25rem; }
.rich-editor-canvas p,
.rich-editor-canvas ul,
.rich-editor-canvas ol {
    margin: 0 0 0.8rem;
}
.rich-editor-canvas ul,
.rich-editor-canvas ol {
    padding-left: 1.25rem;
}
.rich-editor-source {
    display: none;
}
.code-textarea { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.message-box {
    background: #fff8eb;
    border: 1px solid rgba(158, 103, 39, 0.14);
    border-radius: 18px;
    padding: 1.4rem;
    white-space: normal;
}
.detail-list p {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(45, 33, 24, 0.1);
}
.login-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
    background: radial-gradient(circle at 30% 20%, rgba(240, 201, 140, 0.28), transparent 30%), linear-gradient(135deg, #20140d, #6c4320);
}
.login-card {
    max-width: 440px;
    width: 100%;
    background: rgba(255, 255, 255, 0.94);
    padding: 34px;
    border-radius: 26px;
    box-shadow: var(--shadow);
}
.login-logo { color: var(--wood); margin-bottom: 10px; }

/* Motion */
@keyframes heroHalo {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(-12px, 12px, 0) scale(1.04); }
}
@keyframes pointPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(240, 201, 140, 0.2); }
    50% { box-shadow: 0 0 0 8px rgba(240, 201, 140, 0.02); }
}
@keyframes mapPinFloat {
    0%, 100% { transform: translate(-50%, -50%) rotate(7deg); }
    50% { transform: translate(-50%, calc(-50% - 5px)) rotate(5deg); }
}
@keyframes mapPinShadow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.95; }
    50% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.64; }
}
.js-ready [data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1), transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
}
.js-ready [data-reveal="right"] { transform: translateX(34px); }
.js-ready [data-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@media (max-width: 1199.98px) {
    .hero h1 { max-width: 620px; }
    .hero-aside-card { max-width: 330px; }
}

@media (max-width: 991.98px) {
    .site-navbar {
        padding: 12px 0;
        background: rgba(24, 16, 10, 0.84);
        backdrop-filter: blur(16px);
    }
    .site-navbar .navbar-toggler {
        display: grid;
        place-items: center;
        margin-left: auto;
        background: rgba(255, 255, 255, 0.16);
        border-color: rgba(255, 255, 255, 0.34);
    }
    .site-navbar .navbar-collapse { padding-top: 1rem; }
    .inner-page .site-navbar { background: rgba(255, 248, 241, 0.92); }
    .hero {
        min-height: 720px;
        background-position: 60% center;
    }
    .hero-content::before {
        right: -120px;
        top: 90px;
        width: 280px;
        height: 280px;
    }
    .gallery-page .inner-hero {
        padding: 122px 0 56px;
    }
    .gallery-page .inner-hero + .section {
        padding-top: 40px;
    }
    .min-vh-hero {
        min-height: 720px;
        padding: 126px 0 148px;
    }
    .features-floating { margin-top: -58px; }
    .feature-card-wrap { grid-template-columns: repeat(2, 1fr); }
    .mini-feature:nth-child(2)::after { display: none; }
    .gallery-grid-clean { grid-template-columns: repeat(2, 1fr); }
    .price-panel {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2.15rem;
    }
    .price-divider {
        width: 100%;
        height: 1px;
    }
    .contact-form-actions {
        align-items: stretch;
    }
    .contact-recaptcha-wrap {
        margin-left: 0;
        width: 100%;
    }
    .contact-recaptcha-slot {
        justify-content: flex-start;
    }
    .map-card { grid-template-columns: 1fr; }
    .gallery-page-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-lightbox-stage { padding: 5rem 2rem 8rem; }
    .gallery-lightbox-nav { width: 5.5rem; }
    .admin-shell { grid-template-columns: 1fr; }
    .admin-sidebar {
        position: relative;
        height: auto;
    }
    .admin-nav { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575.98px) {
    body { font-size: 15px; }
    .site-brand { min-width: 160px; }
    .brand-mark {
        width: 46px;
        height: 46px;
        margin-bottom: 0.34rem;
        border-radius: 15px;
    }
    .brand-mark svg {
        width: 27px;
        height: 27px;
    }
    .site-brand strong { font-size: 1.45rem; }
    .site-brand small { font-size: 0.66rem; }
    .hero { min-height: 680px; }
    .min-vh-hero {
        min-height: 680px;
        padding: 120px 0 132px;
    }
    .hero h1 { font-size: clamp(2.5rem, 12vw, 3.55rem); }
    .hero-kicker {
        letter-spacing: 0.16em;
        font-size: 0.7rem;
    }
    .hero-subtitle { font-size: 0.98rem; }
    .hero-facts { gap: 0.65rem; }
    .hero-facts span { width: 100%; justify-content: flex-start; }
    .hero-actions .btn {
        width: 100%;
        min-width: 0;
    }
    .contact-recaptcha-slot {
        width: 100%;
    }
    .btn-reserve { justify-content: center; }
    .features-floating { margin-top: -44px; }
    .feature-card-wrap { grid-template-columns: 1fr; }
    .mini-feature::after { display: none !important; }
    .section { padding: 62px 0; }
    .about-section { padding-top: 84px; }
    .image-frame-lg { height: 320px; }
    .section-heading-row { display: block; }
    .section-heading-row .text-link { display: inline-block; margin-top: 0.85rem; }
    .gallery-grid-clean,
    .gallery-page-grid { grid-template-columns: 1fr; }
    .gallery-tile { height: 240px; }
    .gallery-lightbox-close {
        top: 0.9rem;
        right: 0.9rem;
        width: 2.75rem;
        height: 2.75rem;
    }
    .gallery-lightbox-counter {
        top: 0.95rem;
        left: 0.95rem;
        font-size: 0.86rem;
    }
    .gallery-lightbox-stage {
        padding: 4.4rem 1rem 8.6rem;
    }
    .gallery-lightbox-image {
        max-height: calc(100vh - 12.5rem);
        border-radius: 18px;
    }
    .gallery-lightbox-caption {
        bottom: 1rem;
        width: calc(100% - 1rem);
        padding: 0.9rem 1rem;
        border-radius: 18px;
    }
    .gallery-lightbox-nav {
        width: 4rem;
    }
    .gallery-lightbox-nav .carousel-control-prev-icon,
    .gallery-lightbox-nav .carousel-control-next-icon {
        width: 3rem;
        height: 3rem;
    }
    .price-panel,
    .info-card,
    .form-card,
    .contact-side-card,
    .content-card {
        padding: 1.5rem;
        border-radius: 24px;
    }
    .map-visual { min-height: 210px; }
    .phone-link { font-size: 1.16rem; }
    .phone-link-icon {
        width: 42px;
        height: 42px;
    }
    .gallery-page .inner-hero {
        padding: 110px 0 34px;
    }
    .gallery-page .inner-hero h1 {
        margin-bottom: 0.65rem;
    }
    .gallery-page .inner-hero p {
        font-size: 0.98rem;
        margin-bottom: 0;
    }
    .gallery-page .inner-hero + .section {
        padding-top: 24px;
    }
    .inner-hero {
        padding: 134px 0 80px;
    }
    .admin-content,
    .admin-topbar { padding: 20px; }
    .admin-nav { grid-template-columns: 1fr; }
    .file-input-shell {
        flex-direction: column;
        align-items: stretch;
    }
    .file-input-button {
        min-width: 0;
        width: 100%;
    }
    .rich-editor-toolbar {
        gap: 0.35rem;
        padding: 0.65rem;
    }
    .rich-editor-btn {
        padding: 0.6rem 0.72rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
    .js-ready [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

.accordion .accordion-button {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    border: 1px solid #dee2e6;
    border-radius: 8px !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    font-weight: 600;
    transition: all 0.2s ease-in-out;
}

.accordion .accordion-button:hover {
    background: linear-gradient(135deg, #ffffff 0%, #dfe7f3 100%) !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.12);
    transform: translateY(-1px);
    cursor: pointer;
}

.accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #e7f1ff 0%, #cfe2ff 100%) !important;
    color: #0d6efd;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,0.12);
}
