/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.5;
    color: #1a1a1a;
    background-color: #ffffff;
    font-size: 16px;
    font-weight: 400;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

h1 {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 1.75rem;
    font-weight: 300;
    color: #666666;
    letter-spacing: -0.005em;
    margin-bottom: 2.5rem;
}

h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

p {
    margin-bottom: 1.75rem;
    color: #444444;
    font-weight: 400;
    line-height: 1.6;
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #f0f0f0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

.logo {
    flex-shrink: 0;
}

.logo-image {
    height: 45px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.logo-image:hover {
    opacity: 1;
}

.main-navigation {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    text-decoration: none;
    color: #333333;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    padding: 0.75rem 0;
    transition: opacity 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    opacity: 0.7;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
}

.hamburger-line {
    width: 24px;
    height: 1px;
    background-color: #333333;
    margin: 4px 0;
    transition: all 0.3s ease;
}

/* Main Content */
.main-content {
    padding-top: 90px;
    min-height: calc(100vh - 180px);
}

/* Hero Section */
.hero-section {
    padding: 8rem 3rem 6rem;
    text-align: center;
    background-color: #ffffff;
    position: relative;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background-color: #e8e8e8;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    color: #000000;
    margin-bottom: 0;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #666666;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Page Header */
.page-header {
    padding: 6rem 3rem 4rem;
    text-align: center;
    background-color: #ffffff;
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 40px;
    background-color: #e8e8e8;
}

.page-header-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-title {
    margin-bottom: 0;
    color: #000000;
}

.page-subtitle {
    font-size: 1.125rem;
    color: #666666;
    font-weight: 300;
    line-height: 1.5;
    margin: 2rem 0 0 0;
}

/* Content Sections */
.content-section {
    padding: 6rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.content-section:nth-child(even) {
    background-color: #fafafa;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 6rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.content-grid.reverse {
    grid-template-columns: 0.85fr 1fr;
}

.text-block {
    max-width: 480px;
    padding: 1rem 0;
}

.text-block h2 {
    margin-bottom: 2.5rem;
    color: #000000;
    font-weight: 300;
}

.text-block p {
    margin-bottom: 2rem;
    line-height: 1.65;
    color: #444444;
}

.image-block {
    position: relative;
    padding-top: 2rem;
}

.content-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

/* Gallery Section */
.gallery-section {
    padding: 6rem 3rem;
    background-color: #ffffff;
}

.gallery-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item:nth-child(2) {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-item:nth-child(3) {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-item:nth-child(4) {
    grid-column: span 2;
    grid-row: span 1;
}

.gallery-item:nth-child(5) {
    grid-column: span 1;
    grid-row: span 1;
}

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

/* Services Section */
.services-section {
    padding: 6rem 3rem;
    background-color: #fafafa;
}

.services-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.6fr 1fr;
    gap: 6rem;
    align-items: start;
}

.services-image {
    position: relative;
}

.service-main-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-category {
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 2rem;
}

.service-category:last-child {
    border-bottom: none;
}

.service-category h3 {
    margin-bottom: 2rem;
    color: #000000;
    font-size: 1.25rem;
    font-weight: 500;
}

.service-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.service-item:last-child {
    border-bottom: none;
}

.service-info {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.75rem;
}

.service-name {
    color: #000000;
    font-weight: 500;
    font-size: 1rem;
}

.service-price {
    color: #000000;
    font-weight: 600;
    font-size: 1.125rem;
}

.service-desc {
    color: #555555;
    line-height: 1.6;
    margin: 0;
    font-size: 0.875rem;
}

.service-content {
    padding: 0;
}

.service-title {
    margin-bottom: 1.5rem;
    color: #000000;
    font-weight: 500;
    font-size: 1.125rem;
}

.service-description {
    color: #555555;
    line-height: 1.65;
    margin-bottom: 2rem;
}

.service-details {
    margin-top: 1.5rem;
}

.service-duration {
    font-size: 0.875rem;
    color: #777777;
    font-weight: 400;
}

/* Contact Section */
.contact-section {
    padding: 6rem 3rem;
    background-color: #ffffff;
}

.contact-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.7fr 1fr;
    gap: 6rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 400px;
}

.contact-block {
    padding: 0;
}

.contact-block h3 {
    margin-bottom: 1.25rem;
    color: #000000;
    font-size: 1.125rem;
    font-weight: 500;
}

.contact-content p {
    color: #555555;
    line-height: 1.65;
    margin-bottom: 2rem;
}

.contact-details {
    margin-top: 3rem;
}

    .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 2rem;
        padding: 1.5rem 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .contact-link {
        font-size: 1rem;
    }

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-size: 0.875rem;
    color: #777777;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-link {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.125rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #666666;
}

.contact-image {
    position: relative;
    padding-top: 2rem;
}

.contact-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.feature-item h4 {
    margin-bottom: 1rem;
    color: #000000;
    font-weight: 500;
    font-size: 1rem;
}

.feature-item p {
    color: #555555;
    line-height: 1.65;
}

/* Booking Info */
.booking-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.info-item h4 {
    margin-bottom: 1rem;
    color: #000000;
    font-weight: 500;
}

.info-item p {
    color: #555555;
    line-height: 1.65;
}

/* Content Block */
.content-block {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.content-block h2 {
    margin-bottom: 2.5rem;
    color: #000000;
}

.content-block p {
    color: #555555;
    line-height: 1.65;
    margin-bottom: 2.5rem;
}

/* Legal Section */
.legal-section {
    padding: 6rem 3rem;
    background-color: #fafafa;
}

.legal-content {
    max-width: 700px;
    margin: 0 auto;
}

.legal-block {
    margin-bottom: 4rem;
}

.legal-block h2 {
    margin-bottom: 1.5rem;
    color: #000000;
    font-size: 1.125rem;
    font-weight: 500;
}

.legal-block p {
    color: #555555;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.legal-block ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-block li {
    color: #555555;
    line-height: 1.65;
    margin-bottom: 0.75rem;
}

.legal-block h2 {
    margin-bottom: 1.25rem;
    color: #000000;
    font-size: 1.125rem;
    font-weight: 500;
}

.legal-block h3 {
    margin-bottom: 1rem;
    color: #000000;
    font-size: 1rem;
    font-weight: 500;
}

.legal-block h4 {
    margin-bottom: 0.75rem;
    color: #000000;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Footer */
.site-footer {
    background-color: #000000;
    color: #ffffff;
    padding: 4rem 3rem 3rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    font-weight: 500;
}

.footer-section h4 {
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
    color: #999999;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-description {
    color: #888888;
    line-height: 1.6;
    font-weight: 300;
}

.footer-nav {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 1rem;
}

.footer-nav a {
    color: #888888;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 300;
}

.footer-nav a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #222222;
    padding-top: 2.5rem;
    text-align: center;
}

.copyright {
    color: #666666;
    font-size: 0.875rem;
    font-weight: 300;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav-list {
    list-style: none;
    padding: 1.5rem;
}

.mobile-nav-item {
    margin-bottom: 0.25rem;
}

.mobile-nav-link {
    display: block;
    padding: 1rem 0;
    text-decoration: none;
    color: #333333;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: opacity 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        padding: 0 2rem;
        height: 80px;
    }

    .logo-image {
        height: 38px;
    }

    .nav-list {
        gap: 2rem;
    }

    .main-navigation {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-section,
    .page-header {
        padding: 5rem 2rem 3rem;
    }

    .content-section {
        padding: 4rem 2rem;
    }

    .content-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .content-grid.reverse {
        grid-template-columns: 1fr;
    }

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

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(4) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .services-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .service-main-img {
        height: 400px;
    }

    .services-list {
        gap: 3rem;
    }

    .features-grid,
    .booking-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .content-image,
    .contact-img {
        height: 380px;
    }

    .gallery-image {
        height: 200px;
    }

    .service-main-img {
        height: 350px;
    }

    .services-list {
        gap: 2.5rem;
    }

    .service-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .service-name {
        font-size: 0.95rem;
    }

    .service-price {
        font-size: 1rem;
    }

    .service-desc {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 15px;
    }

    .header-container {
        padding: 0 1.5rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    .hero-section,
    .page-header {
        padding: 4rem 1.5rem 2.5rem;
    }

    .content-section {
        padding: 3rem 1.5rem;
    }

    .nav-list {
        gap: 1.5rem;
    }

    .content-image,
    .contact-img {
        height: 320px;
    }

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

    .gallery-image {
        height: 180px;
    }

    .service-main-img {
        height: 280px;
    }

    .services-list {
        gap: 2rem;
    }

    .service-category h3 {
        font-size: 1.125rem;
    }

    .service-name {
        font-size: 0.9rem;
    }

    .service-price {
        font-size: 0.95rem;
    }

    .service-desc {
        font-size: 0.8rem;
    }

    .footer-content {
        gap: 2rem;
    }
}

/* Focus States */
.nav-link:focus,
.mobile-nav-link:focus,
.mobile-menu-toggle:focus {
    outline: 2px solid #000000;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .site-header,
    .site-footer,
    .mobile-menu-toggle {
        display: none;
    }

    .main-content {
        padding-top: 0;
    }

    body {
        font-size: 12px;
    }

    .content-section:nth-child(even) {
        background-color: #ffffff;
    }
}