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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #fafafa;
}

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

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.nav-brand a {
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: #5a5a5a;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2c2c2c;
}

.ad-label {
    font-size: 11px;
    color: #999;
    background-color: #f0f0f0;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    background-color: #ffffff;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #f8f6f3;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-image {
    flex: 1;
    background-color: #ddd;
    position: relative;
    overflow: hidden;
}

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

.featured-split {
    display: flex;
    background-color: #ffffff;
}

.featured-split.reverse {
    flex-direction: row-reverse;
}

.featured-image {
    flex: 1;
    background-color: #e5e5e5;
    min-height: 500px;
}

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

.featured-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.featured-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 18px;
}

.services-preview {
    padding: 100px 0;
    background-color: #f8f6f3;
}

.services-preview h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
}

.services-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    flex: 1;
    background-color: #ffffff;
    overflow: hidden;
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 20px 20px 12px;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #5a5a5a;
    margin: 0 20px 16px;
}

.service-card .price {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #2c2c2c;
    margin: 0 20px 20px;
}

.services-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2c2c2c;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #f8f6f3;
    color: #2c2c2c;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #2c2c2c;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #2c2c2c;
    color: #ffffff;
}

.btn-link {
    display: inline-block;
    color: #2c2c2c;
    text-decoration: underline;
    font-size: 16px;
    font-weight: 600;
    transition: opacity 0.3s;
}

.btn-link:hover {
    opacity: 0.7;
}

.reservation-split {
    display: flex;
    background-color: #ffffff;
    padding: 80px 0;
}

.reservation-content {
    flex: 1;
    padding: 0 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.reservation-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 24px;
}

.reservation-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 18px;
}

.reservation-form-container {
    flex: 1;
    padding: 60px;
    background-color: #f8f6f3;
    display: flex;
    align-items: center;
}

.reservation-form {
    width: 100%;
    max-width: 500px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c2c2c;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    border: 1px solid #d5d5d5;
    background-color: #ffffff;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.testimonials {
    padding: 100px 0;
    background-color: #ffffff;
}

.testimonials h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: flex;
    gap: 40px;
}

.testimonial {
    flex: 1;
    padding: 40px;
    background-color: #f8f6f3;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    color: #2c2c2c;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial cite {
    font-size: 14px;
    color: #5a5a5a;
    font-style: normal;
}

.closing-split {
    display: flex;
    background-color: #ffffff;
}

.closing-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #2c2c2c;
    color: #ffffff;
}

.closing-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 24px;
}

.closing-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #d5d5d5;
    margin-bottom: 18px;
}

.closing-content .btn-link {
    color: #ffffff;
}

.closing-image {
    flex: 1;
    background-color: #e5e5e5;
}

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

.footer {
    background-color: #1a1a1a;
    color: #d5d5d5;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
}

.footer-section h3 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #999;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #d5d5d5;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    padding: 30px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    margin-bottom: 20px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #999;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #777;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 24px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
    color: #d5d5d5;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 24px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cookie-accept {
    background-color: #ffffff;
    color: #2c2c2c;
}

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

.btn-cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-hero {
    padding: 100px 0 60px;
    background-color: #f8f6f3;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 18px;
    color: #5a5a5a;
    max-width: 700px;
    margin: 0 auto;
}

.story-split {
    display: flex;
    background-color: #ffffff;
    padding: 80px 0;
}

.story-content {
    flex: 1;
    padding: 0 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 24px;
}

.story-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 18px;
}

.story-image {
    flex: 1;
    background-color: #e5e5e5;
}

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

.philosophy-section {
    padding: 100px 0;
    background-color: #f8f6f3;
}

.philosophy-section h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
}

.philosophy-grid {
    display: flex;
    gap: 40px;
}

.philosophy-item {
    flex: 1;
}

.philosophy-item h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.philosophy-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.team-split {
    display: flex;
    background-color: #ffffff;
    padding: 80px 0;
}

.team-split.reverse {
    flex-direction: row-reverse;
}

.team-image {
    flex: 1;
    background-color: #e5e5e5;
}

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

.team-content {
    flex: 1;
    padding: 0 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 24px;
}

.team-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 18px;
}

.sourcing-section {
    padding: 100px 0;
    background-color: #f8f6f3;
}

.sourcing-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
}

.sourcing-split {
    display: flex;
    gap: 60px;
}

.sourcing-content {
    flex: 1;
}

.sourcing-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 18px;
}

.sourcing-list {
    flex: 1;
}

.sourcing-list h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 24px;
}

.sourcing-list ul {
    list-style: none;
}

.sourcing-list ul li {
    font-size: 16px;
    line-height: 2;
    color: #4a4a4a;
    padding-left: 20px;
    position: relative;
}

.sourcing-list ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c2c2c;
}

.values-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.values-section h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.values-section > .container > p {
    text-align: center;
    font-size: 18px;
    color: #5a5a5a;
    max-width: 800px;
    margin: 0 auto 60px;
}

.values-grid {
    display: flex;
    gap: 40px;
}

.value-card {
    flex: 1;
    padding: 40px;
    background-color: #f8f6f3;
}

.value-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.invitation-section {
    padding: 100px 0;
    background-color: #2c2c2c;
    color: #ffffff;
    text-align: center;
}

.invitation-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
}

.invitation-section p {
    font-size: 18px;
    line-height: 1.7;
    color: #d5d5d5;
    max-width: 700px;
    margin: 0 auto 40px;
}

.invitation-section .btn-primary {
    background-color: #ffffff;
    color: #2c2c2c;
}

.invitation-section .btn-primary:hover {
    background-color: #f0f0f0;
}

.services-detail {
    padding: 80px 0;
}

.service-detail-item {
    display: flex;
    margin-bottom: 100px;
    background-color: #ffffff;
}

.service-detail-item.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 24px;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 16px;
}

.service-features {
    list-style: none;
    margin: 24px 0 32px;
}

.service-features li {
    font-size: 15px;
    line-height: 2;
    color: #4a4a4a;
    padding-left: 20px;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c2c2c;
    font-weight: 700;
}

.service-detail-image {
    flex: 1;
    background-color: #e5e5e5;
}

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

.dietary-note {
    padding: 80px 0;
    background-color: #f8f6f3;
}

.dietary-note h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.dietary-note p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    max-width: 900px;
    margin: 0 auto 18px;
    text-align: center;
}

.reservation-cta {
    padding: 100px 0;
    background-color: #2c2c2c;
    color: #ffffff;
    text-align: center;
}

.reservation-cta h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
}

.reservation-cta p {
    font-size: 18px;
    color: #d5d5d5;
    margin-bottom: 40px;
}

.reservation-cta .btn-primary {
    background-color: #ffffff;
    color: #2c2c2c;
}

.reservation-cta .btn-primary:hover {
    background-color: #f0f0f0;
}

.contact-split {
    display: flex;
    padding: 80px 0;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
}

.contact-block {
    margin-bottom: 40px;
}

.contact-block h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-email {
    color: #4a4a4a;
    pointer-events: none;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 500px;
    background-color: #e5e5e5;
    position: relative;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px;
}

.map-overlay p {
    font-size: 16px;
    font-weight: 600;
    color: #2c2c2c;
    line-height: 1.6;
}

.additional-info {
    padding: 80px 0;
    background-color: #f8f6f3;
}

.additional-info h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
}

.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.info-item {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 280px;
}

.info-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.info-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a4a4a;
}

.final-cta {
    padding: 100px 0;
    background-color: #2c2c2c;
    color: #ffffff;
    text-align: center;
}

.final-cta h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
}

.final-cta p {
    font-size: 18px;
    color: #d5d5d5;
    margin-bottom: 40px;
}

.final-cta .btn-primary {
    background-color: #ffffff;
    color: #2c2c2c;
}

.final-cta .btn-primary:hover {
    background-color: #f0f0f0;
}

.thanks-section {
    padding: 100px 0;
    min-height: 70vh;
}

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

.thanks-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.thanks-content > p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    text-align: center;
    margin-bottom: 60px;
}

.confirmation-details,
.thanks-service-info,
.preparation-info {
    background-color: #f8f6f3;
    padding: 40px;
    margin-bottom: 40px;
}

.confirmation-details h2,
.thanks-service-info h2,
.preparation-info h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}

.confirmation-details p,
.thanks-service-info p,
.preparation-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 12px;
}

.confirmation-details ul {
    list-style: none;
    margin-top: 20px;
}

.confirmation-details ul li {
    font-size: 15px;
    line-height: 2;
    color: #4a4a4a;
    padding-left: 20px;
    position: relative;
}

.confirmation-details ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c2c2c;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 60px 0 40px;
}

.anticipation {
    text-align: center;
    font-size: 17px;
    line-height: 1.7;
    color: #5a5a5a;
}

.legal-page {
    padding: 60px 0 100px;
}

.legal-page h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
}

.legal-updated {
    font-size: 14px;
    color: #999;
    margin-bottom: 40px;
}

.legal-content {
    max-width: 900px;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 28px;
    margin-bottom: 12px;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0 16px 20px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 8px;
}

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

.legal-content a:hover {
    text-decoration: none;
}

@media (max-width: 768px) {
    .hero-split,
    .featured-split,
    .reservation-split,
    .closing-split,
    .story-split,
    .team-split,
    .contact-split,
    .sourcing-split,
    .service-detail-item {
        flex-direction: column;
    }

    .hero-content,
    .featured-content,
    .reservation-content,
    .closing-content,
    .story-content,
    .team-content,
    .contact-info,
    .sourcing-content,
    .sourcing-list,
    .service-detail-content {
        padding: 40px 20px;
    }

    .reservation-form-container,
    .service-detail-content {
        padding: 40px 20px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .services-grid,
    .testimonials-grid,
    .philosophy-grid,
    .values-grid {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        justify-content: center;
    }

    .nav-links {
        gap: 15px;
        font-size: 13px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }
}
