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

:root {
    --primary-color: #000000;
    --text-gray: #666666;
    --text-light: #999999;
    --border-color: #e5e5e5;
    --background: #ffffff;
    --background-light: #fafafa;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--primary-color);
    background-color: var(--background);
    font-size: 16px;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--background);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.nav-logo .logo-img {
    height: 24px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--text-gray);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 18px;
    height: 1px;
    background: var(--primary-color);
    margin: 2px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: var(--background);
}

.hero-content {
    text-align: left;
    max-width: 600px;
}

.hero-title {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 32px;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 48px;
    line-height: 1.6;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 24px;
}

.btn-primary, .btn-secondary {
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    border: 1px solid var(--primary-color);
    display: inline-block;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--background);
}

.btn-primary:hover {
    background: var(--text-gray);
    border-color: var(--text-gray);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--background);
}

/* Story Section */
.story {
    padding: 80px 0;
    background: var(--background-light);
}

.story h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 32px;
    color: var(--primary-color);
    letter-spacing: -0.01em;
}

.story-intro {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 32px;
    font-style: italic;
    font-weight: 300;
}

.story-narrative p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 24px;
    line-height: 1.7;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--background);
}

.section-header {
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--primary-color);
    letter-spacing: -0.01em;
}

.section-header p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.service-card {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 32px;
}

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

.service-card h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 15px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--background-light);
}

.contact h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 24px;
    color: var(--primary-color);
    letter-spacing: -0.01em;
}

.contact p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 48px;
    line-height: 1.6;
}

.contact-details {
    margin-bottom: 48px;
}

.contact-item {
    margin-bottom: 24px;
}

.contact-item strong {
    display: block;
    font-weight: 500;
    margin-bottom: 4px;
    color: var(--primary-color);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item p {
    color: var(--text-gray);
    margin: 0;
    font-size: 15px;
}

.personal-note {
    padding: 24px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin: 48px 0;
}

.personal-note p {
    font-size: 16px;
    color: var(--text-gray);
    margin: 0;
    font-style: italic;
}

.contact-form {
    margin-top: 48px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
    font-family: inherit;
    background: transparent;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

/* Footer */
.footer {
    background: var(--background);
    color: var(--text-gray);
    padding: 64px 0 32px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 32px;
}

.footer-logo .footer-logo-img {
    height: 24px;
    width: auto;
    object-fit: contain;
    margin-bottom: 12px;
}

.footer-logo p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.5;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 12px;
}

/* Remove unused styles */
.hero-visual,
.floating-card,
.ai-icon,
.story-content,
.story-image,
.memorial-card,
.memorial-icon,
.contact-content {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-primary,
    .btn-secondary {
        width: auto;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero,
    .story,
    .services,
    .contact {
        padding: 64px 0;
    }
}