@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat-latin-500-600.woff2') format('woff2');
    font-weight: 500 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/playfair-display-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Variables */
:root {
    --color-accent: #d48148;
    --color-accent-strong: #a55a2d;
    --color-accent-dark: #8f451c;
    --color-text: #1a1a1a;
    --color-text-muted: #666;
    --color-background: #f8f6f3;
    --color-surface: #fff;
    --color-border: #eee;
    --color-error: #7d2424;
    --color-error-background: #fff1f1;
    --color-success: #2f633d;
    --color-success-background: #eef8f0;
    --header-height: 90px;
    --content-width: 1200px;
    --radius-small: 2px;
    --radius-medium: 4px;
    --shadow-small: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 15px 45px rgba(0, 0, 0, 0.15);
    --transition-standard: 0.3s ease;
}

html ::selection {
    color: inherit;
    background-color: rgba(212, 129, 72, 0.18);
}

html ::-moz-selection {
    color: inherit;
    background-color: rgba(212, 129, 72, 0.18);
}

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

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    background: var(--color-background);
    color: var(--color-text);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
}

body.menu-open,
body.dialog-open {
    overflow: hidden;
}

[hidden] {
    display: none !important;
}

img {
    max-width: 100%;
}

a {
    color: var(--color-accent-strong);
}

button,
input,
textarea {
    font: inherit;
}

:focus-visible {
    outline: 2px solid var(--color-accent-strong);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    top: -100px;
    left: 10px;
    z-index: 30000;
    padding: 10px 20px;
    background: var(--color-accent-strong);
    color: var(--color-surface);
    font-weight: 600;
    text-decoration: none;
    transition: top var(--transition-standard);
}

.skip-link:focus {
    top: 10px;
}

/* Header and navigation */
#header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    width: 100%;
    background: var(--color-surface);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body.scroll-down #header-wrapper {
    transform: translateY(-100%);
}

body.scroll-up #header-wrapper,
body.at-top #header-wrapper {
    transform: translateY(0);
}

#navbar {
    display: flex;
    width: 100%;
    height: var(--header-height);
    align-items: center;
    border-bottom: 1px solid rgba(212, 129, 72, 0.1);
    background: var(--color-surface);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-content {
    display: flex;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    align-items: center;
    justify-content: space-between;
}

.nav-left,
.nav-right {
    display: flex;
    flex: 1;
    align-items: center;
}

.nav-center {
    display: flex;
    flex: 2;
    justify-content: center;
}

.nav-right {
    gap: 20px;
    justify-content: flex-end;
}

.logo img {
    display: block;
    max-width: none;
    width: auto;
    height: 50px;
    transition: transform var(--transition-standard);
}

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

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-menu a {
    position: relative;
    padding: 5px 0;
    color: var(--color-text);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    transition: color var(--transition-standard);
}

.nav-menu a::after {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    content: '';
    transition: width var(--transition-standard);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--color-accent-strong);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.lang-selector {
    display: flex;
    gap: 8px;
    align-items: center;
    color: var(--color-text);
    font-size: 0.8rem;
    font-weight: 600;
}

.lang-selector a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color var(--transition-standard);
}

.lang-selector a:hover {
    color: var(--color-text);
}

.lang-selector .active {
    color: var(--color-accent-strong);
}

.btn-book {
    display: inline-block;
    padding: 12px 24px;
    border: 0;
    border-radius: var(--radius-small);
    background: var(--color-accent-strong);
    color: var(--color-surface) !important;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: background var(--transition-standard), box-shadow var(--transition-standard), transform var(--transition-standard);
    white-space: nowrap;
}

.btn-book:not(:disabled):hover {
    background: var(--color-accent-dark);
    box-shadow: 0 5px 15px rgba(212, 129, 72, 0.2);
    transform: translateY(-2px);
}

.btn-book:disabled,
.btn-primary:disabled {
    cursor: not-allowed;
    opacity: 0.55;
    transform: none;
}

.burger {
    z-index: 10001;
    display: none;
    min-width: 44px;
    min-height: 44px;
    padding: 10px;
    border: 0;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.burger span {
    width: 25px;
    height: 2px;
    background: var(--color-text);
    transition: transform var(--transition-standard), opacity var(--transition-standard);
}

.burger.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.burger.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-only {
    display: none;
}

/* Shared layout and typography */
.main-layout {
    margin-top: var(--header-height);
    padding: 60px 20px;
}

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

.hero-header {
    padding: 40px 0;
    text-align: center;
}

.hero-header h1 {
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    line-height: 1.2;
}

.hero-header p {
    max-width: 650px;
    margin: 0 auto;
    color: var(--color-text-muted);
    font-size: 1.05rem;
}

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    min-width: 170px;
    padding: 13px 24px;
    border: 1px solid var(--color-accent-strong);
    border-radius: var(--radius-small);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: background var(--transition-standard), border-color var(--transition-standard), color var(--transition-standard), transform var(--transition-standard);
}

.btn-primary {
    background: var(--color-accent-strong);
    color: var(--color-surface);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text);
}

.btn-primary:not(:disabled):hover,
.btn-secondary:hover {
    border-color: var(--color-text);
    background: var(--color-text);
    color: var(--color-surface);
    transform: translateY(-2px);
}

.section-title p {
    max-width: 720px;
    margin: 18px auto 0;
    color: var(--color-text-muted);
}

.section-title {
    margin-bottom: 50px;
    text-align: center;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 2.5rem);
}

.section-kicker {
    display: block;
    margin-bottom: 8px;
    color: var(--color-accent-strong);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.gold-line {
    width: 50px;
    height: 2px;
    margin: 20px auto;
    background: var(--color-accent);
}

.grid-container {
    display: grid;
    max-width: var(--content-width);
    margin: 40px auto;
    gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Home */
.home-page {
    padding-top: 36px;
}

.home-hero {
    display: grid;
    max-width: 1320px;
    min-height: 620px;
    margin: 0 auto 110px;
    overflow: hidden;
    background: var(--color-surface);
    box-shadow: var(--shadow-small);
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
}

.home-hero-copy {
    display: flex;
    padding: clamp(48px, 7vw, 90px);
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}

.home-hero-copy h1 {
    max-width: 620px;
    margin-bottom: 18px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.7rem, 5vw, 4.7rem);
    line-height: 1.05;
}

.home-hero-copy > p:not(.home-hero-subtitle) {
    max-width: 540px;
    color: var(--color-text-muted);
}

.home-hero-subtitle {
    margin-bottom: 18px;
    color: var(--color-accent-strong);
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.35rem, 2.5vw, 1.9rem);
}

.home-hero-actions {
    justify-content: flex-start;
}

.home-hero-media {
    min-height: 620px;
    overflow: hidden;
}

.home-hero-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.home-intro,
.home-house,
.reviews-section {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 90px 0;
}

.home-intro .section-title {
    max-width: 820px;
    margin-right: auto;
    margin-left: auto;
}

.quick-facts {
    display: grid;
    max-width: 920px;
    margin: 0 auto;
    border-top: 1px solid rgba(212, 129, 72, 0.25);
    border-bottom: 1px solid rgba(212, 129, 72, 0.25);
    list-style: none;
    grid-template-columns: repeat(3, 1fr);
}

.quick-facts li {
    padding: 25px 20px;
    text-align: center;
}

.quick-facts li + li {
    border-left: 1px solid rgba(212, 129, 72, 0.25);
}

.quick-facts strong {
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.home-house {
    max-width: none;
    background: #eee9e3;
}

.home-house-layout {
    display: grid;
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 40px;
    align-items: center;
    gap: 70px;
}

.home-house-layout.has-media {
    grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
}

.home-house-layout:not(.has-media) {
    max-width: 820px;
    text-align: center;
}

.home-house-layout:not(.has-media) .home-house-copy {
    width: 100%;
}

.home-house-copy h2,
.location-copy h2,
.contact-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
}

.home-house-copy p {
    max-width: 600px;
    color: var(--color-text-muted);
    font-size: 1.05rem;
}

.home-house-layout:not(.has-media) .home-house-copy p {
    margin-inline: auto;
}

.gold-line-left {
    margin-left: 0;
}

.home-house-layout:not(.has-media) .gold-line-left {
    margin-inline: auto;
}

.home-house-gallery {
    display: grid;
    min-height: 480px;
    gap: 18px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, minmax(220px, 1fr));
}

.home-house-photo {
    overflow: hidden;
    background: #ddd5cc;
}

.home-house-photo.is-main {
    grid-row: 1 / -1;
}

.home-house-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-container {
    position: relative;
    display: block;
    height: 450px;
    overflow: hidden;
    border: 0;
    background: #e0e0e0;
    box-shadow: var(--shadow-medium);
    color: inherit;
    cursor: pointer;
    transition: box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.img-container img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.img-container:hover,
.img-container:focus-visible {
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.25);
    transform: translateY(-8px);
}

.img-container:hover img,
.img-container:focus-visible img {
    transform: scale(1.06);
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    width: 100%;
    height: 50%;
    padding-bottom: 30px;
    align-items: flex-end;
    justify-content: center;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.photo-overlay h3,
.photo-title {
    color: var(--color-surface);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Services */
.services-section {
    margin-bottom: 40px;
    padding: 80px 0;
    background: var(--color-surface);
}

.services-section.home-services {
    margin-bottom: 0;
    padding-top: 120px;
}

.services-page {
    max-width: var(--content-width);
    margin: 30px auto 80px;
}

.services-grid {
    display: grid;
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 20px;
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
}

.service-item {
    padding: 28px 22px;
    text-align: center;
}

.service-card {
    min-height: 250px;
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    box-shadow: var(--shadow-small);
}

.service-icon {
    display: block;
    margin-bottom: 15px;
    color: var(--color-accent-strong);
    font-size: 1.5rem;
}

.service-icon-svg {
    display: block;
    width: 1.45rem;
    height: 1.45rem;
    margin-inline: auto;
    overflow: visible;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-icon-wifi {
    display: grid;
    height: 1.6em;
    place-items: center;
}

.service-icon-svg circle {
    fill: currentColor;
    stroke: none;
}

.service-item h3 {
    margin-bottom: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.service-item p {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.section-action {
    margin-top: 45px;
    text-align: center;
}

.reviews-section {
    max-width: var(--content-width);
}

.reviews-grid {
    display: grid;
    max-width: var(--content-width);
    margin: 0 auto;
    gap: 28px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-card {
    display: flex;
    min-height: 330px;
    padding: 34px;
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    box-shadow: var(--shadow-small);
    flex-direction: column;
}

.review-rating {
    margin: 0 0 18px;
    color: var(--color-accent-strong);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.review-card blockquote {
    color: #555;
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    line-height: 1.7;
}

.review-card footer {
    display: flex;
    margin-top: auto;
    padding-top: 28px;
    border-top: 1px solid var(--color-border);
    flex-direction: column;
    gap: 3px;
}

.review-card footer strong {
    font-size: 0.78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.review-card footer span {
    color: var(--color-text-muted);
    font-size: 0.72rem;
}

.final-cta {
    max-width: 1000px;
    margin: 90px auto 20px;
    padding: 65px 30px;
    border: 1px solid rgba(212, 129, 72, 0.25);
    background: var(--color-surface);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.final-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
}

.final-cta p {
    max-width: 650px;
    margin: 18px auto 0;
    color: var(--color-text-muted);
}

.page-introduction {
    max-width: 820px;
    margin: 30px auto 90px;
    padding: 55px;
    background: var(--color-surface);
    box-shadow: var(--shadow-small);
    text-align: center;
}

.page-introduction p {
    margin-top: 18px;
    color: var(--color-text-muted);
}

/* Full gallery and lightbox */
.gallery-full {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 40px;
}

.gallery-single {
    max-width: 760px;
    grid-template-columns: 1fr;
}

.gallery-full .img-container {
    width: 100%;
}

.lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 20000;
    display: flex;
    padding: 70px 30px 30px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.98);
}

.lightbox-content {
    display: flex;
    max-width: min(1000px, 90vw);
    max-height: 85vh;
    margin: 0;
    align-items: center;
    flex-direction: column;
    gap: 16px;
}

.lightbox-content img {
    display: block;
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.lightbox-content figcaption {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    text-align: center;
}

.close-lightbox {
    position: absolute;
    top: 25px;
    right: 35px;
    border: 0;
    background: transparent;
    color: var(--color-text);
    cursor: pointer;
    font-size: 2.5rem;
    line-height: 1;
}

/* Location */
.location-section {
    max-width: 900px;
    margin: 30px auto 90px;
}

.location-card {
    padding: clamp(45px, 8vw, 90px);
    border: 1px solid rgba(212, 129, 72, 0.25);
    background: var(--color-surface);
    box-shadow: var(--shadow-small);
    text-align: center;
}

.location-copy {
    max-width: 650px;
    margin: 0 auto;
}

.location-copy p {
    margin-top: 16px;
    color: var(--color-text-muted);
}

.location-copy .location-address {
    color: var(--color-text);
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
}

.location-copy .btn-primary {
    margin-top: 30px;
}

/* Contact */
.contact-section {
    max-width: var(--content-width);
    margin: 40px auto 80px;
}

.contact-options {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-card {
    min-height: 360px;
    padding: clamp(35px, 5vw, 60px);
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    box-shadow: var(--shadow-small);
}

.contact-booking-card {
    background: #eee9e3;
}

.contact-card > p {
    margin-top: 18px;
    color: var(--color-text-muted);
}

.contact-list {
    display: grid;
    margin-top: 26px;
    gap: 18px;
    list-style: none;
}

.contact-list li {
    display: grid;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--color-border);
    gap: 2px;
}

.contact-list span {
    color: var(--color-text-muted);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.contact-list a {
    color: var(--color-text);
    font-weight: 600;
    overflow-wrap: anywhere;
    text-underline-offset: 3px;
}

.contact-booking-action {
    margin-top: 30px;
}

/* Legal pages */
.terms-container {
    max-width: 920px;
    margin: 40px auto 80px;
    padding: 0 20px;
}

.terms-content {
    padding: 50px;
    border-radius: var(--radius-medium);
    background: var(--color-surface);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.terms-section {
    margin-bottom: 40px;
    scroll-margin-top: 120px;
}

.terms-section:last-child {
    margin-bottom: 0;
}

.terms-section h2 {
    margin-bottom: 20px;
    color: var(--color-accent-strong);
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
}

.terms-section h3 {
    margin: 24px 0 10px;
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.45;
}

.terms-section p,
.terms-section dd {
    color: #555;
    line-height: 1.8;
}

.terms-section p + p {
    margin-top: 14px;
}

.terms-section code {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.terms-section a {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.terms-section ul {
    margin-top: 15px;
    list-style: none;
}

.terms-section li {
    position: relative;
    margin-bottom: 15px;
    padding-left: 25px;
    color: #555;
    font-size: 0.95rem;
}

.terms-section li::before {
    position: absolute;
    top: -5px;
    left: 0;
    color: var(--color-accent-strong);
    content: '•';
    font-size: 1.5rem;
}

.legal-meta {
    margin-bottom: 30px;
    color: var(--color-text-muted);
    font-size: 0.88rem;
}

.legal-development-notice {
    margin-bottom: 34px;
    padding: 18px 20px;
    border: 1px solid rgba(187, 118, 72, 0.35);
    border-radius: var(--radius-small);
    background: #fff8f2;
    color: #604c40;
    line-height: 1.65;
}

.legal-development-notice strong {
    display: block;
    margin-bottom: 5px;
    color: var(--color-accent-strong);
}

.legal-toc {
    margin-bottom: 48px;
    padding: 26px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-small);
    background: var(--color-background);
    scroll-margin-top: 120px;
}

.legal-toc h2 {
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
}

.legal-toc ol {
    display: grid;
    padding-left: 22px;
    gap: 9px 28px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.legal-toc a {
    color: var(--color-text);
    line-height: 1.45;
    text-underline-offset: 3px;
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
    color: var(--color-accent-strong);
}

.legal-details {
    display: grid;
    margin-top: 18px;
    gap: 12px;
    min-width: 0;
}

.legal-details div {
    display: grid;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-border);
    gap: 3px;
    min-width: 0;
}

.legal-details dt {
    color: var(--color-text-muted);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.legal-details dd {
    margin: 0;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.legal-details a {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.legal-note {
    margin-top: 18px;
    padding: 16px 18px;
    border-left: 3px solid var(--color-accent);
    background: var(--color-background);
    color: #555;
    line-height: 1.7;
}

.legal-back-link {
    display: inline-block;
    margin-top: 18px;
    font-size: 0.86rem;
    text-underline-offset: 3px;
}

/* Error page */
.error-page {
    display: flex;
    min-height: calc(100vh - var(--header-height));
    padding-top: 80px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.error-404 h1 {
    color: var(--color-accent-strong);
    font-family: 'Playfair Display', serif;
    font-size: clamp(5rem, 18vw, 8rem);
    line-height: 1;
}

.error-404 h2 {
    margin: 15px 0;
    font-size: clamp(1.5rem, 5vw, 2rem);
}

.error-404 p {
    max-width: 500px;
    margin: 0 auto 35px;
    color: var(--color-text-muted);
}

/* Footer */
.main-footer {
    margin-top: 80px;
    padding: 60px 20px 40px;
    border-top: 1px solid var(--color-border);
    background: var(--color-surface);
}

.footer-content {
    display: grid;
    max-width: var(--content-width);
    margin: 0 auto;
    align-items: center;
    gap: 40px;
    grid-template-columns: 0.9fr 1.8fr 1.2fr 0.9fr;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.footer-brand img {
    width: auto;
    height: 40px;
    margin-bottom: 10px;
}

.footer-brand p {
    color: var(--color-text-muted);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-brand .footer-cin {
    margin-top: 5px;
    font-size: 0.7rem;
    letter-spacing: 1px;
}

.footer-info p {
    margin-bottom: 5px;
    color: var(--color-text);
    font-size: 0.85rem;
    overflow-wrap: anywhere;
}

.footer-info {
    min-width: 0;
}

.footer-info a {
    color: inherit;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.footer-info a:hover {
    color: var(--color-accent-strong);
}

.footer-navigation {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 20px;
    justify-content: center;
}

.footer-links {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.footer-navigation a,
.footer-links a {
    color: var(--color-text);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
}

.footer-navigation a:hover,
.footer-links a:hover {
    color: var(--color-accent-strong);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #f4f4f4;
    text-align: center;
}

.footer-bottom p {
    color: var(--color-text-muted);
    font-size: 0.72rem;
}

/* Public site promotion */
.site-promotion-overlay {
    position: fixed;
    inset: 0;
    z-index: 20000;
    display: flex;
    padding: 20px;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    background: rgba(26, 26, 26, 0.46);
    opacity: 0;
    transition: opacity 180ms ease;
}

.site-promotion-overlay.is-visible {
    opacity: 1;
}

.site-promotion-dialog {
    position: relative;
    width: min(100%, 500px);
    max-height: calc(100vh - 40px);
    max-height: calc(100dvh - 40px);
    padding: clamp(32px, 6vw, 48px);
    border: 1px solid rgba(212, 129, 72, 0.24);
    border-radius: 18px;
    overflow-y: auto;
    background: var(--color-surface);
    box-shadow: var(--shadow-medium);
    transform: translateY(12px);
    transition: transform 180ms ease;
}

.site-promotion-overlay.is-visible .site-promotion-dialog {
    transform: translateY(0);
}

.site-promotion-close {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    width: 44px;
    height: 44px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    color: var(--color-text);
    background: transparent;
    cursor: pointer;
    font-size: 1.75rem;
    line-height: 1;
}

.site-promotion-close:hover {
    background: var(--color-background);
}

.site-promotion-label {
    margin: 0 48px 12px 0;
    color: var(--color-accent-strong);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-promotion-dialog h2 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 7vw, 2.8rem);
    line-height: 1.14;
}

.site-promotion-body {
    margin: 18px 0 0;
    color: var(--color-text-muted);
}

.site-promotion-cta {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    min-height: 46px;
    margin-top: 26px;
    padding: 11px 22px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-accent-strong);
    border-radius: var(--radius-small);
    color: var(--color-surface);
    background: var(--color-accent-strong);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
}

.site-promotion-cta:hover {
    border-color: var(--color-accent-dark);
    background: var(--color-accent-dark);
}

/* Privacy notice and floating actions */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 10002;
    display: flex;
    width: 100%;
    padding: 15px 20px;
    align-items: center;
    gap: 20px;
    justify-content: center;
    background: var(--color-text);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    color: var(--color-surface);
    transform: translateY(110%);
    transition: transform 0.35s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner p {
    font-size: 0.85rem;
}

.cookie-banner a {
    color: var(--color-accent-strong);
}

.btn-cookie {
    padding: 8px 20px;
    border: 0;
    border-radius: var(--radius-small);
    background: var(--color-accent-strong);
    color: var(--color-surface);
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    transition: background var(--transition-standard);
}

.btn-cookie:hover {
    background: var(--color-accent-dark);
}

.whatsapp-float {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 999;
    display: flex;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: #25d366;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
    color: var(--color-surface);
    text-decoration: none;
    transition: background var(--transition-standard), box-shadow var(--transition-standard), transform var(--transition-standard);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

.whatsapp-float:hover {
    background: #1eae54;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 101px;
    z-index: 999;
    display: flex;
    width: 45px;
    height: 45px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: var(--color-surface);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    color: var(--color-text);
    cursor: pointer;
    opacity: 0;
    transform: translateY(10px);
    transition: background var(--transition-standard), color var(--transition-standard), opacity var(--transition-standard), transform var(--transition-standard), visibility var(--transition-standard);
    visibility: hidden;
}

.back-to-top.show {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.back-to-top:hover {
    background: var(--color-accent-strong);
    color: var(--color-surface);
}

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* Responsive */
@media (min-width: 769px) {
    .footer-content {
        width: calc(100% - 132px);
    }
}

@media (max-width: 1150px) {
    .logo img {
        height: 44px;
    }

    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .burger {
        display: flex;
    }

    #navbar .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 10000;
        display: flex;
        width: 100vw;
        height: 100vh;
        align-items: center;
        flex-direction: column;
        gap: 35px;
        justify-content: center;
        background: var(--color-surface);
        transform: translateX(100%);
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1), visibility 0s linear 0.5s;
    }

    #navbar .nav-menu.active {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
        transition-delay: 0s;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        display: inline-block;
        font-size: 0.9rem;
        letter-spacing: 2px;
    }

    .nav-menu .btn-book {
        margin-top: 20px;
        padding: 15px 40px;
    }
}

@media (max-width: 992px) {
    .home-hero {
        max-width: 760px;
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .home-hero-media {
        min-height: 520px;
    }

    .home-house-layout.has-media,
    .contact-options {
        grid-template-columns: 1fr;
    }

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

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

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

@media (max-width: 768px) {
    .main-footer {
        padding-bottom: 140px;
    }

    .nav-content {
        padding: 0 20px;
    }

    .main-layout {
        padding: 45px 20px;
    }

    .home-page {
        padding-top: 20px;
    }

    .home-hero {
        margin-bottom: 60px;
    }

    .home-hero-media {
        min-height: 420px;
    }

    .home-hero-copy {
        padding: 42px 28px;
    }

    .home-hero-copy h1 {
        font-size: clamp(2.5rem, 12vw, 3.4rem);
    }

    .hero-header p {
        font-size: 0.95rem;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .home-intro,
    .home-house,
    .reviews-section {
        padding: 65px 0;
    }

    .services-section.home-services {
        padding-top: 100px;
    }

    .quick-facts {
        grid-template-columns: 1fr;
    }

    .quick-facts li + li {
        border-top: 1px solid rgba(212, 129, 72, 0.25);
        border-left: 0;
    }

    .home-house-layout {
        padding: 0 24px;
    }

    .home-house-gallery {
        min-height: 0;
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .home-house-photo,
    .home-house-photo.is-main {
        height: 360px;
        grid-row: auto;
    }

    .review-card {
        min-height: 0;
        padding: 28px;
    }

    .page-introduction {
        padding: 38px 26px;
    }

    .img-container {
        height: 350px;
    }

    .gallery-full {
        padding: 0;
    }

    .contact-card,
    .terms-content {
        padding: 28px;
    }

    .legal-toc ol {
        grid-template-columns: 1fr;
    }

    .contact-card {
        min-height: 0;
    }

    .final-cta {
        margin-top: 60px;
        padding: 45px 22px;
    }

    .footer-content {
        gap: 45px;
        grid-template-columns: 1fr;
    }

    .cookie-banner {
        padding: 15px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .back-to-top {
        right: 20px;
        bottom: 87px;
        width: 40px;
        height: 40px;
    }

    .whatsapp-float {
        right: 20px;
        bottom: 20px;
        width: 52px;
        height: 52px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-link-long {
        font-size: 0.85rem;
    }

    .gallery-full .img-container {
        height: 320px;
    }

    .terms-container {
        padding-inline: 12px;
    }

    .terms-content {
        padding: 24px 18px;
    }

    .legal-toc {
        padding: 22px 18px;
    }
}

@media (max-width: 430px) {
    .site-promotion-overlay {
        padding: 14px;
    }

    .site-promotion-dialog {
        max-height: calc(100vh - 28px);
        max-height: calc(100dvh - 28px);
        padding: 34px 24px 28px;
        border-radius: 14px;
    }

    .site-promotion-dialog h2 {
        font-size: clamp(1.85rem, 10vw, 2.3rem);
    }

    .site-promotion-cta {
        padding-inline: 18px;
    }
}

@media (max-width: 480px) {
    .home-services .section-action .btn-secondary {
        width: fit-content;
        max-width: 100%;
        min-width: 0;
        padding-inline: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
