* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --apple-blue: #007AFF;
    --apple-blue-hover: #0051D5;
    --apple-gray-light: #F5F5F7;
    --apple-gray-medium: #D2D2D7;
    --apple-gray-dark: #86868B;
    --apple-text-primary: #1D1D1F;
    --apple-text-secondary: #6E6E73;
    --apple-white: #FFFFFF;
    --apple-shadow: rgba(0, 0, 0, 0.1);
    --apple-shadow-hover: rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
    background: var(--apple-white);
    color: var(--apple-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 22px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    z-index: 1000;
    padding: 12px 0;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 21px;
    font-weight: 600;
    color: var(--apple-text-primary);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--apple-text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: -0.2px;
}

.nav-menu a:hover {
    color: var(--apple-text-primary);
}

.language-selector select {
    background: var(--apple-white);
    color: var(--apple-text-primary);
    border: 1px solid var(--apple-gray-medium);
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.2s ease;
}

.language-selector select:hover {
    border-color: var(--apple-blue);
}

.language-selector select:focus {
    outline: none;
    border-color: var(--apple-blue);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

/* Hero Section */
.hero {
    margin-top: 60px;
    padding: 120px 0 80px;
    text-align: center;
    background: var(--apple-white);
    position: relative;
}

.hero-title {
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--apple-text-primary);
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 28px;
    color: var(--apple-text-secondary);
    margin-bottom: 16px;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.hero-description {
    font-size: 21px;
    color: var(--apple-text-primary);
    margin-bottom: 12px;
    font-weight: 400;
}

.hero-features {
    font-size: 19px;
    color: var(--apple-text-secondary);
    margin-bottom: 12px;
    line-height: 1.5;
}

.hero-tagline {
    font-size: 19px;
    color: var(--apple-text-secondary);
    margin-bottom: 12px;
}

.hero-location {
    font-size: 17px;
    color: var(--apple-text-secondary);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 22px;
    border-radius: 22px;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    font-size: 17px;
    letter-spacing: -0.2px;
}

.btn-primary {
    background: var(--apple-blue);
    color: white;
    box-shadow: 0 4px 14px rgba(0, 122, 255, 0.25);
}

.btn-primary:hover {
    background: var(--apple-blue-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 122, 255, 0.35);
}

.btn-secondary {
    background: var(--apple-white);
    color: var(--apple-blue);
    border: 1px solid var(--apple-blue);
}

.btn-secondary:hover {
    background: var(--apple-gray-light);
    transform: translateY(-1px);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 48px;
    margin-bottom: 12px;
    text-align: center;
    color: var(--apple-text-primary);
    font-weight: 600;
    letter-spacing: -1px;
    line-height: 1.1;
}

.section-subtitle {
    text-align: center;
    color: var(--apple-text-secondary);
    font-size: 21px;
    margin-bottom: 48px;
    font-weight: 400;
}

/* Highlights Section */
.highlights {
    background: var(--apple-gray-light);
}

.highlights-intro {
    text-align: center;
    font-size: 21px;
    color: var(--apple-text-secondary);
    margin-bottom: 64px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.feature-card {
    background: var(--apple-white);
    padding: 32px;
    border-radius: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px var(--apple-shadow);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--apple-shadow-hover);
}

.feature-card h3 {
    color: var(--apple-text-primary);
    margin-bottom: 8px;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.feature-card p {
    color: var(--apple-text-secondary);
    font-size: 17px;
    line-height: 1.5;
}

.highlights-closing {
    text-align: center;
    font-size: 21px;
    color: var(--apple-text-primary);
    margin-top: 64px;
    font-weight: 400;
}

/* Gallery Section */
.gallery {
    background: var(--apple-white);
}

.gallery-description {
    text-align: center;
    color: var(--apple-text-secondary);
    font-size: 21px;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.gallery-placeholder {
    background: var(--apple-gray-light);
    padding: 80px;
    border-radius: 18px;
    text-align: center;
    color: var(--apple-text-secondary);
    border: 2px dashed var(--apple-gray-medium);
    font-size: 17px;
}

/* Notice Section */
.notice {
    background: var(--apple-gray-light);
    text-align: center;
}

.notice p {
    margin-bottom: 16px;
    font-size: 19px;
    color: var(--apple-text-secondary);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.notice-highlight {
    font-size: 24px;
    font-weight: 600;
    color: var(--apple-blue);
    margin: 32px auto;
    max-width: 800px;
    letter-spacing: -0.5px;
}

/* Space Section */
.space-section {
    background: var(--apple-white);
}

.space-intro,
.space-welcome {
    text-align: center;
    font-size: 21px;
    color: var(--apple-text-secondary);
    margin-bottom: 16px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.space-details {
    margin-top: 64px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.space-details h3 {
    color: var(--apple-text-primary);
    font-size: 32px;
    margin-top: 48px;
    margin-bottom: 16px;
    font-weight: 600;
    letter-spacing: -0.8px;
}

.space-details ul {
    list-style: none;
    padding-left: 0;
}

.space-details li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    color: var(--apple-text-secondary);
    font-size: 17px;
    line-height: 1.6;
}

.space-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--apple-blue);
    font-weight: 600;
    font-size: 18px;
}

.space-details p {
    color: var(--apple-text-secondary);
    margin-bottom: 16px;
    font-size: 17px;
    line-height: 1.6;
}

/* Tools Section */
.tools-section {
    background: var(--apple-gray-light);
}

.tools-intro {
    text-align: center;
    font-size: 21px;
    color: var(--apple-text-secondary);
    margin-bottom: 64px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.tool-card {
    background: var(--apple-white);
    padding: 40px;
    border-radius: 18px;
    margin-bottom: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px var(--apple-shadow);
}

.tool-card:hover {
    box-shadow: 0 8px 24px var(--apple-shadow-hover);
    transform: translateY(-2px);
}

.tool-card h3 {
    color: var(--apple-text-primary);
    font-size: 32px;
    margin-bottom: 16px;
    font-weight: 600;
    letter-spacing: -0.8px;
}

.tool-card p {
    color: var(--apple-text-secondary);
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 1.6;
}

.tool-card ul {
    list-style: none;
    padding-left: 0;
    margin: 16px 0;
}

.tool-card li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--apple-text-secondary);
    font-size: 17px;
    line-height: 1.6;
}

.tool-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--apple-blue);
    font-size: 20px;
    line-height: 1.2;
}

.tool-tagline {
    font-style: normal;
    color: var(--apple-blue);
    margin-top: 24px;
    font-size: 19px;
    font-weight: 500;
}

/* Printing Section */
.printing-section {
    background: var(--apple-white);
}

.printing-intro {
    text-align: center;
    color: var(--apple-text-secondary);
    font-size: 21px;
    margin-bottom: 48px;
    font-weight: 400;
}

.printing-section h3 {
    color: var(--apple-text-primary);
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 16px;
    font-weight: 600;
    letter-spacing: -0.6px;
}

.printing-section ul,
.printing-section ol {
    margin-left: 24px;
    color: var(--apple-text-secondary);
    margin-bottom: 24px;
    font-size: 17px;
    line-height: 1.8;
}

.printing-section li {
    margin-bottom: 8px;
}

.printing-note {
    background: var(--apple-gray-light);
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid var(--apple-blue);
    margin-top: 32px;
    color: var(--apple-text-secondary);
    font-size: 17px;
    line-height: 1.6;
}

/* Equipment Section */
.equipment-section {
    background: var(--apple-gray-light);
}

.equipment-section p {
    color: var(--apple-text-secondary);
    margin-bottom: 16px;
    font-size: 17px;
    line-height: 1.6;
}

.equipment-section ul {
    margin-left: 24px;
    color: var(--apple-text-secondary);
    margin-bottom: 24px;
    font-size: 17px;
    line-height: 1.8;
}

.equipment-section li {
    margin-bottom: 8px;
}

.equipment-tagline {
    font-style: normal;
    color: var(--apple-blue);
    font-size: 19px;
    margin-top: 24px;
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    background: var(--apple-white);
}

.faq-section h3 {
    color: var(--apple-text-primary);
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 16px;
    font-weight: 600;
    letter-spacing: -0.6px;
}

.faq-section ul {
    margin-left: 24px;
    color: var(--apple-text-secondary);
    margin-bottom: 32px;
    font-size: 17px;
    line-height: 1.8;
}

.faq-section li {
    margin-bottom: 8px;
}

.faq-list {
    margin-top: 64px;
}

.faq-item {
    background: var(--apple-gray-light);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 16px;
    border-left: 4px solid var(--apple-blue);
    transition: all 0.2s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px var(--apple-shadow);
}

.faq-question {
    color: var(--apple-text-primary);
    font-size: 21px;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: -0.4px;
}

.faq-answer {
    color: var(--apple-text-secondary);
    margin-top: 8px;
    font-size: 17px;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    background: var(--apple-gray-light);
    text-align: center;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
    background: var(--apple-white);
    padding: 40px;
    border-radius: 18px;
    margin-bottom: 32px;
    box-shadow: 0 2px 8px var(--apple-shadow);
}

.contact-info p {
    color: var(--apple-text-secondary);
    margin-bottom: 16px;
    font-size: 17px;
    line-height: 1.6;
}

.contact-directions {
    color: var(--apple-text-secondary);
    font-size: 17px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--apple-white);
    padding: 40px 0;
    text-align: center;
    border-top: 0.5px solid rgba(0, 0, 0, 0.1);
}

.footer p {
    color: var(--apple-text-secondary);
    font-size: 14px;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 19px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .section-subtitle {
        font-size: 19px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .tool-card {
        padding: 24px;
    }
    
    .tool-card h3 {
        font-size: 24px;
    }
    
    .space-details h3 {
        font-size: 24px;
    }
    
    .faq-question {
        font-size: 19px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 21px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .container {
        padding: 0 16px;
    }
}
