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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafaf8;
}

.navbar {
    background-color: #1a1a1a;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: #d4af37;
    letter-spacing: 1px;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #999;
    padding: 0.3rem 0.8rem;
    border: 1px solid #444;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #d4af37;
}

.hero-section {
    height: 85vh;
    background-image: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1400&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #3a3a3a;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.55);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.hero-overlay p {
    font-size: 1.3rem;
    color: #e8e8e8;
    margin-bottom: 2.5rem;
    max-width: 700px;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #d4af37;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-primary:hover {
    background-color: #b8941f;
    transform: translateY(-2px);
}

.intro-section {
    background-color: #fff;
    padding: 5rem 2rem;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.intro-section h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 400;
}

.intro-section p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #444;
}

.image-text-section {
    display: flex;
    flex-wrap: wrap;
    background-color: #f4f1eb;
}

.section-image {
    flex: 1 1 50%;
    min-width: 320px;
    background-color: #c9c4b8;
}

.section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section-content {
    flex: 1 1 50%;
    min-width: 320px;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 400;
}

.section-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #555;
}

.philosophy-section {
    background-color: #2c2c2c;
    padding: 5rem 2rem;
}

.container-wide {
    max-width: 1300px;
    margin: 0 auto;
}

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.philosophy-card {
    flex: 1 1 300px;
    background-color: #3a3a3a;
    padding: 2.5rem 2rem;
    border-left: 4px solid #d4af37;
}

.philosophy-card h4 {
    font-size: 1.4rem;
    color: #d4af37;
    margin-bottom: 1rem;
    font-weight: 400;
}

.philosophy-card p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.7;
}

.services-preview {
    background-color: #fff;
    padding: 5rem 2rem;
}

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

.services-preview h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3.5rem;
    color: #1a1a1a;
    font-weight: 400;
}

.services-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.service-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background-color: #fafaf8;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #d0d0d0;
}

.service-item h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 0.8rem;
    color: #1a1a1a;
    font-weight: 400;
}

.service-item p {
    font-size: 0.95rem;
    color: #555;
    margin: 0 1.5rem 1rem;
    flex-grow: 1;
}

.service-item .price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #d4af37;
    margin: 0 1.5rem 1rem;
}

.select-service {
    margin: 0 1.5rem 1.5rem;
    padding: 0.8rem 1.5rem;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #333;
}

.reservation-section {
    background-color: #f4f1eb;
    padding: 5rem 2rem;
}

.reservation-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

.reservation-text {
    flex: 1 1 400px;
}

.reservation-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 400;
}

.reservation-text p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

.reservation-form-wrapper {
    flex: 1 1 500px;
}

.reservation-form {
    background-color: #fff;
    padding: 2.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #d4af37;
    color: #1a1a1a;
    border: none;
    font-size: 1.05rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #b8941f;
}

.testimonial-section {
    background-color: #2c2c2c;
    padding: 5rem 2rem;
}

.testimonial-section h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #d4af37;
    font-weight: 400;
}

.testimonials {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.testimonial {
    background-color: #3a3a3a;
    padding: 2.5rem;
    border-left: 4px solid #d4af37;
}

.testimonial p {
    font-size: 1.1rem;
    color: #ddd;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #aaa;
    font-style: normal;
}

.cta-final {
    height: 60vh;
    background-image: url('https://images.unsplash.com/photo-1466978913421-dad2ebd01d17?w=1400&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #4a4a4a;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cta-overlay {
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.cta-overlay h2 {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 300;
}

.cta-overlay p {
    font-size: 1.2rem;
    color: #e8e8e8;
    margin-bottom: 2rem;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-secondary:hover {
    background-color: #fff;
    color: #1a1a1a;
}

.footer {
    background-color: #1a1a1a;
    color: #aaa;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-section {
    flex: 1 1 250px;
}

.footer-section h4 {
    color: #d4af37;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #d4af37;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.footer-disclaimer p {
    font-size: 0.8rem;
    color: #777;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #666;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-content p {
    flex: 1 1 400px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-content a {
    color: #d4af37;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #d4af37;
    color: #1a1a1a;
}

.btn-accept:hover {
    background-color: #b8941f;
}

.btn-reject {
    background-color: #444;
    color: #fff;
}

.btn-reject:hover {
    background-color: #555;
}

.page-header {
    background-color: #2c2c2c;
    padding: 4rem 2rem 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 0.8rem;
    font-weight: 300;
}

.page-header p {
    font-size: 1.2rem;
    color: #ccc;
}

.story-section {
    background-color: #fff;
    padding: 4rem 2rem;
}

.story-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #444;
}

.founder-section {
    background-color: #f4f1eb;
    padding: 4rem 0;
}

.founder-grid {
    display: flex;
    flex-wrap: wrap;
}

.founder-image {
    flex: 1 1 50%;
    min-width: 320px;
    background-color: #c9c4b8;
}

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

.founder-content {
    flex: 1 1 50%;
    min-width: 320px;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.founder-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 400;
}

.founder-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #555;
}

.values-section {
    background-color: #fff;
    padding: 5rem 2rem;
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 400;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.value-item {
    flex: 1 1 300px;
    padding: 2rem;
    background-color: #fafaf8;
    border-top: 3px solid #d4af37;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 400;
}

.value-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.team-section {
    background-color: #f4f1eb;
    padding: 5rem 2rem;
}

.team-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 400;
}

.team-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.team-member {
    flex: 1 1 calc(25% - 2rem);
    min-width: 240px;
    background-color: #fff;
    overflow: hidden;
}

.team-member img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #d0d0d0;
}

.team-member h4 {
    font-size: 1.3rem;
    margin: 1.2rem 1rem 0.5rem;
    color: #1a1a1a;
    font-weight: 400;
}

.team-member p {
    font-size: 0.9rem;
    color: #777;
    margin: 0 1rem 1.2rem;
}

.philosophy-detail {
    background-color: #fff;
    padding: 4rem 2rem;
}

.philosophy-detail h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 400;
}

.philosophy-detail p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #444;
}

.commitment-section {
    background-color: #2c2c2c;
    padding: 5rem 2rem;
    text-align: center;
}

.commitment-content {
    max-width: 800px;
    margin: 0 auto;
}

.commitment-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #d4af37;
    font-weight: 400;
}

.commitment-content p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-inline {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #d4af37;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-inline:hover {
    background-color: #b8941f;
}

.services-intro {
    background-color: #fff;
    padding: 3rem 2rem;
}

.services-intro p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.2rem;
}

.services-detailed {
    background-color: #fafaf8;
    padding: 4rem 2rem;
}

.service-block {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 5rem;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-block.reverse {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1 1 45%;
    min-width: 320px;
    background-color: #c9c4b8;
}

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

.service-details {
    flex: 1 1 55%;
    min-width: 320px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 400;
}

.service-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

.service-details p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.service-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
    color: #333;
}

.service-details ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.service-details ul li {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.additional-info {
    background-color: #fff;
    padding: 3rem 2rem;
}

.additional-info h2 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-weight: 400;
}

.additional-info p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
}

.reservation-cta {
    background-color: #2c2c2c;
    padding: 4rem 2rem;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.3rem;
    color: #d4af37;
    margin-bottom: 1rem;
    font-weight: 400;
}

.cta-content p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #d4af37;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.05rem;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #b8941f;
}

.contact-main {
    background-color: #fff;
    padding: 4rem 2rem;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

.contact-info {
    flex: 1 1 500px;
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
    font-weight: 400;
}

.info-block p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.contact-visual {
    flex: 1 1 400px;
    background-color: #c9c4b8;
}

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

.contact-note {
    background-color: #f4f1eb;
    padding: 3rem 2rem;
}

.contact-note h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-weight: 400;
}

.contact-note p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
}

.contact-note a {
    color: #d4af37;
    text-decoration: underline;
}

.contact-additional {
    background-color: #fff;
    padding: 3rem 2rem;
}

.contact-additional h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-weight: 400;
}

.contact-additional p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
}

.thanks-section {
    background-color: #fff;
    padding: 5rem 2rem;
    min-height: 60vh;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-container h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.thanks-message {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.thanks-details {
    background-color: #f4f1eb;
    padding: 1.5rem;
    margin-bottom: 2.5rem;
    border-left: 4px solid #d4af37;
}

.thanks-details p {
    font-size: 1.1rem;
    color: #333;
}

.thanks-info h2 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    margin-top: 2rem;
    color: #1a1a1a;
    font-weight: 400;
}

.thanks-info ul {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    padding-left: 1.5rem;
}

.thanks-info ul li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-primary {
    background-color: #d4af37;
    color: #1a1a1a;
}

.btn-primary:hover {
    background-color: #b8941f;
}

.btn-secondary {
    background-color: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.btn-secondary:hover {
    background-color: #1a1a1a;
    color: #fff;
}

.thanks-additional {
    background-color: #f4f1eb;
    padding: 3rem 2rem;
}

.thanks-additional h2 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-weight: 400;
}

.thanks-additional p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
}

.legal-content {
    background-color: #fff;
    padding: 4rem 2rem;
}

.legal-content h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-weight: 400;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 400;
}

.legal-content h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #444;
    font-weight: 400;
}

.legal-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content ul li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.legal-content a {
    color: #d4af37;
    text-decoration: underline;
}

.legal-updated {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
    font-style: italic;
    color: #777;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 2.5rem;
    }

    .hero-overlay p {
        font-size: 1.1rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .service-item {
        flex: 1 1 100%;
    }

    .team-member {
        flex: 1 1 calc(50% - 2rem);
    }
}