:root {
 --primary-color: #b99d75;
 --primary-dark: #a0845c;
 --secondary-color: #1a2a3a;
 --text-dark: #222222;
 --text-light: #f0f0f0;
 --text-muted: #666666;
 --bg-light: #f9f6f2;
 --bg-white: #ffffff;
 --border-color: #e0e0e0;
 
 --font-main: 'Roboto', sans-serif;
 --font-headings: 'Playfair Display', serif;
 
 --radius-sm: 4px;
 --radius-md: 8px;
 --radius-lg: 12px;

 --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
 --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
 --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
 
 --transition: all 0.3s ease-in-out;
}

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

html {
 scroll-behavior: smooth;
}

body {
 font-family: var(--font-main);
 font-size: 16px;
 line-height: 1.7;
 color: var(--text-dark);
 background: var(--bg-white);
 -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
 font-family: var(--font-headings);
 font-weight: 700;
 line-height: 1.3;
 color: var(--secondary-color);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }

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

a:hover {
 color: var(--primary-dark);
}

.container {
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 20px;
}

.section {
 padding: 80px 0;
}

.section.bg-light {
 background: var(--bg-light);
}

.section-header.centered {
 text-align: center;
 max-width: 700px;
 margin: 0 auto 50px;
}

.section-label {
 display: inline-block;
 font-family: var(--font-main);
 background: var(--primary-color);
 color: white;
 padding: 6px 16px;
 border-radius: 20px;
 font-size: 0.85rem;
 font-weight: 500;
 margin-bottom: 16px;
 text-transform: uppercase;
 letter-spacing: 1px;
}

.section-title {
 margin-bottom: 16px;
}

.section-subtitle {
 color: var(--text-muted);
 font-size: 1.1rem;
 max-width: 600px;
 margin: 0 auto;
}

.btn {
 display: inline-block;
 padding: 12px 28px;
 font-family: var(--font-main);
 font-weight: 500;
 font-size: 1rem;
 border-radius: var(--radius-md);
 border: 2px solid transparent;
 cursor: pointer;
 transition: var(--transition);
 text-align: center;
}

.btn-primary {
 background-color: var(--primary-color);
 color: white;
}

.btn-primary:hover {
 background-color: var(--primary-dark);
 color: white;
 transform: translateY(-2px);
 box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
 background-color: var(--primary-color);
 color: white;
}

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

.btn-white:hover {
 background: var(--bg-light);
 transform: translateY(-2px);
}

.header {
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 z-index: 1000;
 background: #fff;
 box-shadow: var(--shadow-sm);
 transition: var(--transition);
}

.header.scrolled {
 background: rgba(255, 255, 255, 0.95);
 backdrop-filter: blur(10px);
}

.nav {
 height: 80px;
 display: flex;
 align-items: center;
 justify-content: space-between;
}

.nav-logo {
 font-family: var(--font-headings);
 font-size: 1.75rem;
 font-weight: 700;
 color: var(--secondary-color);
}
.nav-logo:hover {
 color: var(--primary-color);
}

.nav-menu {
 display: flex;
}

.nav-links {
 display: flex;
 align-items: center;
 gap: 32px;
 list-style: none;
}

.nav-link {
 font-weight: 500;
 color: var(--text-dark);
 padding: 8px 0;
 position: relative;
}

.nav-link::after {
 content: '';
 position: absolute;
 bottom: 0;
 left: 50%;
 transform: translateX(-50%);
 width: 0;
 height: 2px;
 background-color: var(--primary-color);
 transition: var(--transition);
}

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

.nav-actions {
 display: flex;
 align-items: center;
 gap: 16px;
}

.nav-toggle {
 display: none;
 background: none;
 border: none;
 cursor: pointer;
 padding: 8px;
 z-index: 1001;
}

.nav-toggle span {
 display: block;
 width: 24px;
 height: 2px;
 background: var(--secondary-color);
 margin: 6px 0;
 transition: var(--transition);
}

.hero {
 position: relative;
 height: 90vh;
 min-height: 700px;
 background: url('assets/img-c42b60d9.jpg') no-repeat center center/cover;
 display: flex;
 align-items: center;
 justify-content: center;
 text-align: center;
 color: white;
}

.hero-overlay {
 position: absolute;
 inset: 0;
 background: rgba(0, 0, 0, 0.5);
}

.hero-content {
 position: relative;
 z-index: 2;
}

.star-rating {
 font-size: 1.5rem;
 color: #ffd700;
 margin-bottom: 1rem;
}

.hero-title {
 color: white;
 margin-bottom: 1rem;
}

.hero-subtitle {
 font-size: 1.25rem;
 font-weight: 300;
 max-width: 600px;
 margin: 0 auto 2rem;
 line-height: 1.6;
}

.booking-widget {
 background: rgba(255,255,255,0.9);
 padding: 20px;
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-lg);
 margin-top: 2rem;
 backdrop-filter: blur(5px);
}

.booking-form {
 display: flex;
 flex-wrap: wrap;
 gap: 16px;
 align-items: flex-end;
}
.booking-form .form-group {
 flex: 1;
 min-width: 150px;
 text-align: left;
}
.booking-form label {
 display: block;
 font-family: var(--font-main);
 color: var(--text-dark);
 font-weight: 500;
 font-size: 0.9rem;
 margin-bottom: 8px;
}

.booking-form input, .booking-form select {
 width: 100%;
 padding: 12px;
 border: 1px solid var(--border-color);
 border-radius: var(--radius-md);
 font-family: var(--font-main);
 font-size: 1rem;
}

.booking-form button {
 padding: 14px 28px;
 flex-shrink: 0;
}

.cards-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 30px;
}

.card {
 background: white;
 border-radius: var(--radius-lg);
 overflow: hidden;
 box-shadow: var(--shadow-md);
 transition: var(--transition);
 display: flex;
 flex-direction: column;
}

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

.card-image {
 width: 100%;
 height: 220px;
 object-fit: cover;
}

.card-body {
 padding: 24px;
 flex-grow: 1;
 display: flex;
 flex-direction: column;
}

.card-title {
 font-size: 1.4rem;
 margin-bottom: 12px;
}

.card-text {
 color: var(--text-muted);
 flex-grow: 1;
 margin-bottom: 20px;
}

.card-button {
 align-self: flex-start;
 font-weight: 500;
 text-transform: uppercase;
 letter-spacing: 0.5px;
 font-size: 0.9rem;
 color: var(--primary-color);
 padding: 10px 0;
 border-bottom: 2px solid transparent;
}
.card-button:hover{
 color: var(--primary-dark);
 border-bottom-color: var(--primary-dark);
}

.amenities-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 30px;
 text-align: center;
}

.amenity-item {
 padding: 30px;
 background: white;
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-sm);
 transition: var(--transition);
}
.amenity-item:hover {
 transform: translateY(-5px);
 box-shadow: var(--shadow-md);
}

.amenity-icon {
 width: 60px;
 height: 60px;
 margin: 0 auto 20px;
 background: var(--primary-color);
 color: white;
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
}
.amenity-icon svg {
 width: 28px;
 height: 28px;
}
.amenity-item h3 {
 margin-bottom: 10px;
}

.media-object {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 50px;
 align-items: center;
}
.media-object.reversed {
 grid-template-columns: 1fr 1fr;
}
.media-object.reversed .media-visual { order: 1; }
.media-object.reversed .media-copy { order: 2; }
.media-copy ul {
 list-style-position: inside;
 padding-left: 0;
 margin: 20px 0;
}
.media-copy li {
 margin-bottom: 10px;
 padding-left: 1.5rem;
 position: relative;
}
.media-copy li::before {
 content: '';
 color: var(--primary-color);
 position: absolute;
 left: 0;
 font-weight: bold;
}
.media-visual img {
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-lg);
}

.reviews-grid {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 30px;
 max-width: 900px;
 margin: 0 auto;
}
.review-card {
 background: white;
 padding: 30px;
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-sm);
 display: flex;
 gap: 20px;
 align-items: flex-start;
}
.review-avatar {
 width: 70px;
 height: 70px;
 border-radius: 50%;
 object-fit: cover;
 flex-shrink: 0;
}
.review-content p {
 font-style: italic;
 color: var(--text-muted);
 margin-bottom: 15px;
}
.review-author {
 font-weight: 700;
 color: var(--secondary-color);
}
.review-rating {
 color: #ffd700;
}

.cta-banner {
 background: var(--secondary-color);
 color: white;
 padding: 60px;
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-lg);
 display: flex;
 justify-content: space-between;
 align-items: center;
 flex-wrap: wrap;
 gap: 30px;
}
.cta-banner h2 {
 color: white;
}
.cta-banner p {
 color: var(--text-light);
 max-width: 500px;
}

.footer {
 background: var(--secondary-color);
 color: var(--text-light);
 padding: 80px 0 30px;
 margin-top: 80px;
 font-size: 0.95rem;
}
.footer-grid {
 display: grid;
 grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
 gap: 40px;
 margin-bottom: 50px;
}
.footer-logo {
 display: block;
 font-family: var(--font-headings);
 font-size: 1.75rem;
 color: white;
 margin-bottom: 15px;
}
.footer-description {
 color: #a9b3be;
 line-height: 1.7;
}
.footer-social {
 display: flex;
 gap: 15px;
 margin-top: 20px;
}
.footer-social a {
 color: white;
 font-size: 1.25rem;
}
.footer-social a:hover {
 color: var(--primary-color);
}
.footer-social svg {
 width: 24px;
 height: 24px;
}
.footer-heading {
 font-family: var(--font-main);
 text-transform: uppercase;
 letter-spacing: 1px;
 font-weight: 500;
 font-size: 1rem;
 color: white;
 margin-bottom: 20px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a, .footer-contact p, .footer-contact a {
 color: #a9b3be;
}
.footer-links a:hover, .footer-contact a:hover {
 color: white;
}
.footer-contact p {
 margin-bottom: 12px;
 display: flex;
 align-items: flex-start;
 gap: 10px;
}
.footer-contact svg {
 width: 18px;
 height: 18px;
 flex-shrink: 0;
 margin-top: 4px;
 color: var(--primary-color);
}
.footer-note {
 font-size: 0.85rem;
 color: #a9b3be;
 font-style: italic;
 margin-top: 15px;
}
.footer-bottom {
 border-top: 1px solid rgba(255,255,255,0.1);
 padding-top: 30px;
 display: flex;
 justify-content: space-between;
 align-items: center;
 font-size: 0.9rem;
 color: #a9b3be;
}
.footer-legal a {
 margin-left: 20px;
}

.page-header-section {
 padding: 120px 0 60px;
 background: var(--bg-light);
 text-align: center;
}
.page-header-section h1 { margin-bottom: 1rem; }
.page-header-section p { max-width: 600px; margin: 0 auto; color: var(--text-muted); }

.team-section { text-align: center; }
.team-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
 gap: 30px;
 max-width: 1000px;
 margin: 50px auto 0;
}
.team-member {
 transition: var(--transition);
}
.team-member:hover {
 transform: translateY(-5px);
}
.team-photo {
 width: 150px;
 height: 150px;
 border-radius: 50%;
 object-fit: cover;
 margin: 0 auto 20px;
 box-shadow: var(--shadow-md);
 border: 4px solid white;
}
.team-role {
 font-size: 0.9rem;
 color: var(--primary-color);
 font-weight: 500;
}

.values-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 30px;
 text-align: center;
}
.value-item {
 background: white;
 padding: 30px;
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-sm);
 border-top: 4px solid var(--primary-color);
}
.value-item h3 { margin-bottom: 10px; }
.value-item p { color: var(--text-muted); }

.service-detailed {
 display: grid;
 grid-template-columns: 1.2fr 1fr;
 gap: 50px;
 align-items: center;
 margin-bottom: 80px;
}
.service-detailed.reversed {
 grid-template-columns: 1fr 1.2fr;
}
.service-detailed.reversed .service-visual { order: 2; }
.service-detailed.reversed .service-info { order: 1; }
.service-visual img {
 width: 100%;
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-lg);
}
.service-info ul {
 list-style: none;
 margin: 20px 0;
}
.service-info li {
 padding-left: 25px;
 position: relative;
 margin-bottom: 10px;
}
.service-info li::before {
 content: '•';
 color: var(--primary-color);
 position: absolute;
 left: 0;
 font-size: 1.5rem;
 line-height: 1;
}

.contact-page-grid {
 display: grid;
 grid-template-columns: 1.5fr 1fr;
 gap: 50px;
}
.form-group {
 margin-bottom: 20px;
}
.form-group label {
 display: block;
 margin-bottom: 8px;
 font-weight: 500;
}
.form-group input, .form-group textarea {
 width: 100%;
 padding: 14px;
 border: 1px solid var(--border-color);
 border-radius: var(--radius-md);
 font-size: 1rem;
 font-family: var(--font-main);
 transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus {
 outline: none;
 border-color: var(--primary-color);
 box-shadow: 0 0 0 3px rgba(185, 157, 117, 0.2);
}
textarea { resize: vertical; min-height: 120px; }
.checkbox-group { display: flex; align-items: center; gap: 10px; }
.checkbox-group label { margin-bottom: 0; }
.contact-info-item { margin-bottom: 30px; }
.contact-info-item h3 { margin-bottom: 10px; }

.map-container {
 height: 450px;
 border-radius: var(--radius-lg);
 overflow: hidden;
 margin: 40px 0;
 box-shadow: var(--shadow-md);
}

.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { margin-top: 30px; margin-bottom: 15px; }
.legal-content ul { list-style-position: inside; margin-bottom: 15px;}
.legal-content li { margin-bottom: 5px; }
.cookie-table { width: 100%; border-collapse: collapse; margin: 30px 0; }
.cookie-table th, .cookie-table td { border: 1px solid var(--border-color); padding: 12px; text-align: left;}
.cookie-table th { background-color: var(--bg-light); }

.thank-you-section { text-align: center; padding: 120px 0;}
.thank-you-icon {
 width: 80px;
 height: 80px;
 color: var(--primary-color);
 margin: 0 auto 20px;
}
.thank-you-content h1 { margin-bottom: 20px; }
.thank-you-content p { margin-bottom: 30px; max-width: 500px; margin-left: auto; margin-right: auto;}

.cookie-banner {
 display: none;
 position: fixed;
 bottom: 20px;
 left: 20px;
 right: 20px;
 max-width: 500px;
 background: var(--secondary-color);
 color: white;
 padding: 20px;
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-lg);
 z-index: 1001;
 display: none;
 align-items: center;
 justify-content: space-between;
 gap: 20px;
}
.cookie-banner p { margin: 0; font-size: 0.9rem; }
.cookie-banner a { color: var(--primary-color); }
.cookie-buttons { display: flex; gap: 10px; flex-shrink: 0;}
.cookie-buttons button { padding: 8px 16px; border: none; border-radius: var(--radius-md); cursor: pointer; }
#accept-cookies { background: var(--primary-color); color: white; }
#decline-cookies { background: #4a5a6a;}

.input-error {
 border-color: #dc2626 !important;
 box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1) !important;
}
.field-error {
 color: #dc2626;
 font-size: 0.85rem;
 margin-top: 4px;
}
.spinner {
 display: inline-block;
 width: 16px;
 height: 16px;
 border: 2px solid rgba(255,255,255,0.3);
 border-radius: 50%;
 border-top-color: #fff;
 animation: spin 0.8s linear infinite;
 margin-right: 8px;
 vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 992px) {
 .cards-grid, .values-grid { grid-template-columns: 1fr 1fr; }
 .reviews-grid { grid-template-columns: 1fr; }
 .footer-grid { grid-template-columns: 1fr 1fr; }
 .media-object, .service-detailed, .service-detailed.reversed { grid-template-columns: 1fr; }
 .contact-page-grid { grid-template-columns: 1fr; }
 .booking-form { flex-direction: column; align-items: stretch; }
}

@media (max-width: 768px) {
 .nav-menu {
 position: fixed;
 top: 0;
 right: -100%;
 width: 60%;
 height: 100%;
 background: var(--bg-white);
 flex-direction: column;
 padding: 100px 40px 40px;
 align-items: flex-start;
 box-shadow: -5px 0 15px rgba(0,0,0,0.1);
 transition: var(--transition);
 }
 .nav-menu.active {
 right: 0;
 }
 .nav-links {
 flex-direction: column;
 align-items: flex-start;
 gap: 24px;
 }
 .nav-toggle {
 display: block;
 }
 .nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
 .nav-toggle.active span:nth-child(2) { opacity: 0; }
 .nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
 
 .cards-grid, .values-grid { grid-template-columns: 1fr; }
 .footer-grid { grid-template-columns: 1fr; }
 .footer-bottom { flex-direction: column; gap: 15px; }
 .cta-banner { text-align: center; }
}