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

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

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1 1 400px;
    margin: 0;
    font-size: 14px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #c8a882;
    color: #ffffff;
}

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

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

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

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.brand {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: #2c2c2c;
    font-weight: 400;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #c8a882;
}

.ad-disclosure {
    font-size: 11px;
    color: #666666;
    padding: 4px 8px;
    border: 1px solid #e5e5e5;
}

.hero-section {
    margin-bottom: 0;
}

.hero-image-wrapper {
    position: relative;
    height: 600px;
    background-color: #2c2c2c;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    text-align: center;
    color: #ffffff;
    max-width: 700px;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 300;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #c8a882;
    color: #ffffff;
    font-weight: 500;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.cta-primary:hover {
    background-color: #b39771;
}

.intro-section {
    padding: 100px 20px;
    background-color: #f9f9f9;
}

.intro-section h2 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.intro-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.visual-break {
    padding: 0;
    background-color: #ffffff;
}

.split-content {
    display: flex;
    flex-wrap: wrap;
}

.split-image,
.split-text {
    flex: 1 1 500px;
}

.split-image {
    background-color: #e5e5e5;
}

.split-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
}

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

.split-text h3 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.services-preview {
    padding: 100px 20px;
    background-color: #ffffff;
}

.services-preview h2 {
    font-size: 42px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.service-card {
    flex: 1 1 320px;
    background-color: #f9f9f9;
}

.service-image {
    background-color: #e5e5e5;
    height: 280px;
}

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

.service-card h3 {
    font-size: 24px;
    font-weight: 500;
    margin: 24px 24px 12px 24px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0 24px 16px 24px;
}

.price {
    font-size: 20px;
    font-weight: 600;
    color: #c8a882;
    margin: 0 24px 24px 24px;
}

.cta-center {
    text-align: center;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 36px;
    background-color: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.philosophy-section {
    padding: 100px 20px;
    background-color: #2c2c2c;
    color: #ffffff;
}

.philosophy-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

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

.philosophy-text h2 {
    font-size: 38px;
    font-weight: 500;
    margin-bottom: 30px;
}

.philosophy-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #e5e5e5;
}

.philosophy-image {
    flex: 1 1 500px;
    background-color: #1a1a1a;
}

.philosophy-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
}

.testimonials-section {
    padding: 100px 20px;
    background-color: #f9f9f9;
}

.testimonials-section h2 {
    font-size: 42px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.testimonials-flow {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

blockquote {
    background-color: #ffffff;
    padding: 40px;
    border-left: 4px solid #c8a882;
}

blockquote p {
    font-size: 20px;
    line-height: 1.6;
    font-style: italic;
    color: #2c2c2c;
    margin-bottom: 16px;
}

cite {
    font-size: 16px;
    font-style: normal;
    color: #666666;
}

.reservation-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.reservation-section h2 {
    font-size: 42px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 50px;
}

.reservation-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 1px solid #d0d0d0;
    background-color: #ffffff;
    color: #2c2c2c;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

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

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

.location-section {
    padding: 100px 20px;
    background-color: #f9f9f9;
}

.location-content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

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

.location-text h2 {
    font-size: 38px;
    font-weight: 500;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.location-info {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-block h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

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

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

.footer-col {
    flex: 1 1 220px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
}

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

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col a {
    font-size: 14px;
    color: #b5b5b5;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #c8a882;
}

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

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

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

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

.page-hero {
    background-color: #2c2c2c;
    padding: 100px 20px;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 48px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 16px;
}

.page-hero-content p {
    font-size: 20px;
    color: #e5e5e5;
    font-weight: 300;
}

.story-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.story-section h2 {
    font-size: 38px;
    font-weight: 500;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.story-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.team-section {
    padding: 100px 20px;
    background-color: #f9f9f9;
}

.team-section h2 {
    font-size: 42px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.team-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.team-member {
    flex: 1 1 320px;
    background-color: #ffffff;
}

.member-image {
    background-color: #e5e5e5;
    height: 380px;
}

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

.team-member h3 {
    font-size: 22px;
    font-weight: 500;
    margin: 24px 24px 12px 24px;
    color: #1a1a1a;
}

.team-member p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0 24px 24px 24px;
}

.philosophy-detail {
    padding: 100px 20px;
    background-color: #ffffff;
}

.philosophy-split {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.philosophy-content {
    flex: 1 1 450px;
}

.philosophy-content h2 {
    font-size: 38px;
    font-weight: 500;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

.philosophy-visual {
    flex: 1 1 450px;
    background-color: #e5e5e5;
}

.philosophy-visual img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
}

.values-section {
    padding: 100px 20px;
    background-color: #2c2c2c;
    color: #ffffff;
}

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

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

.value-item {
    flex: 1 1 260px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
}

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

.value-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #e5e5e5;
}

.awards-section {
    padding: 100px 20px;
    background-color: #f9f9f9;
}

.awards-section h2 {
    font-size: 38px;
    font-weight: 500;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.awards-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.cta-section {
    padding: 100px 20px;
    background-color: #c8a882;
    text-align: center;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 40px;
    font-weight: 300;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #1a1a1a;
    font-weight: 500;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

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

.services-detailed {
    padding: 80px 20px;
    background-color: #ffffff;
}

.service-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
}

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

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

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

.service-detail-content {
    flex: 1 1 480px;
}

.service-detail-content h2 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.service-pricing {
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.price-amount {
    font-size: 32px;
    font-weight: 600;
    color: #c8a882;
    margin-right: 10px;
}

.price-unit {
    font-size: 16px;
    color: #666666;
}

.service-comparison {
    padding: 100px 20px;
    background-color: #f9f9f9;
}

.service-comparison h2 {
    font-size: 42px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-comparison > p {
    text-align: center;
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 50px;
}

.comparison-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.comparison-item {
    flex: 1 1 260px;
    padding: 30px;
    background-color: #ffffff;
}

.comparison-item h4 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

.booking-cta {
    padding: 100px 20px;
    background-color: #ffffff;
    text-align: center;
}

.booking-cta h2 {
    font-size: 38px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.booking-cta p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 40px;
}

.contact-main {
    padding: 80px 20px;
    background-color: #ffffff;
}

.contact-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

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

.contact-info-primary h2 {
    font-size: 38px;
    font-weight: 500;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

.contact-block h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.contact-block p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 12px;
}

.contact-note {
    font-size: 15px;
    color: #666666;
    font-style: italic;
}

.email-display {
    font-weight: 600;
    color: #c8a882;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.day {
    font-weight: 500;
    color: #2c2c2c;
}

.time {
    color: #666666;
}

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

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

.directions-section {
    padding: 100px 20px;
    background-color: #f9f9f9;
}

.directions-section h2 {
    font-size: 42px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.direction-option {
    flex: 1 1 260px;
    padding: 30px;
    background-color: #ffffff;
}

.direction-option h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.direction-option p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 12px;
}

.policies-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.policies-section h2 {
    font-size: 38px;
    font-weight: 500;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.policy-item {
    margin-bottom: 30px;
}

.policy-item h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

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

.reservation-prompt h2 {
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 20px;
}

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

.thanks-section {
    padding: 100px 20px;
    background-color: #f9f9f9;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 20px;
    color: #4a4a4a;
    margin-bottom: 60px;
}

.confirmation-details {
    background-color: #ffffff;
    padding: 50px;
    margin-bottom: 50px;
    text-align: left;
}

.confirmation-details h2 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.next-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.step {
    flex: 1 1 260px;
}

.step h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.step p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
}

.service-reference {
    background-color: #ffffff;
    padding: 40px;
    margin-bottom: 50px;
    text-align: left;
}

.service-reference h2 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-name {
    font-size: 22px;
    font-weight: 600;
    color: #c8a882;
    margin-bottom: 16px;
}

.service-note {
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
}

.additional-info {
    margin-bottom: 50px;
}

.additional-info h2 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.additional-info p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 30px;
}

.thanks-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.thanks-link {
    padding: 12px 28px;
    background-color: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    font-weight: 500;
    transition: all 0.3s ease;
}

.thanks-link:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

.thanks-note {
    background-color: #fff8e7;
    padding: 20px;
    margin-bottom: 40px;
    border-left: 4px solid #c8a882;
}

.thanks-note p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0;
}

.return-home {
    margin-top: 40px;
}

.legal-page {
    padding: 80px 20px;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.legal-intro {
    font-size: 16px;
    color: #666666;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 500;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

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

.legal-page ul {
    list-style: disc;
    margin-left: 30px;
    margin-bottom: 16px;
}

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

.legal-page a {
    color: #c8a882;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #b39771;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e5e5e5;
}

.cookies-table th {
    background-color: #f9f9f9;
    font-weight: 600;
    color: #1a1a1a;
}

.cookies-table td {
    font-size: 15px;
    color: #4a4a4a;
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .intro-section h2,
    .story-section h2,
    .philosophy-content h2 {
        font-size: 28px;
    }

    .services-preview h2,
    .testimonials-section h2,
    .reservation-section h2,
    .values-section h2,
    .service-comparison h2,
    .directions-section h2,
    .cta-section h2,
    .reservation-prompt h2 {
        font-size: 32px;
    }

    .split-text {
        padding: 40px 30px;
    }

    .main-nav {
        gap: 15px;
        font-size: 14px;
    }

    .service-detail,
    .philosophy-layout,
    .philosophy-split {
        gap: 30px;
    }

    .page-hero {
        padding: 60px 20px;
    }

    .page-hero-content h1,
    .thanks-content h1 {
        font-size: 32px;
    }

    .confirmation-details {
        padding: 30px 20px;
    }
}