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

:root {
    --primary-color: #000000;
    --accent-color: #FFB6D9;
    --text-color: #333333;
    --bg-color: #FFFFFF;
    --border-color: #E5E5E5;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    font-size: 16px;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

.heart {
    color: var(--accent-color);
    display: inline-block;
    margin: 0 0.25rem;
}

/* Navigation */
.navbar {
    background-color: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    display: block;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--accent-color);
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    text-align: center;
    background-color: var(--bg-color);
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.hero-tagline {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 0.875rem 2rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 2px;
    transition: all 0.3s;
    display: inline-block;
    cursor: pointer;
    border: 2px solid var(--primary-color);
}

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

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

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

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

/* Overview Section */
.overview {
    padding: 4rem 0;
    background-color: #FAFAFA;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.overview-item {
    text-align: center;
    padding: 2rem;
}

.overview-item h3 {
    margin-bottom: 0.5rem;
}

.overview-item p {
    font-size: 0.9rem;
    color: var(--text-color);
}

/* Featured Section */
.featured {
    padding: 4rem 0;
}

.featured-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.featured-box {
    padding: 2.5rem;
    border: 1px solid var(--border-color);
}

.featured-box h2 {
    margin-bottom: 1rem;
}

.link-arrow {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    transition: gap 0.3s;
}

.link-arrow:hover {
    gap: 1rem;
}

/* Page Header */
.page-header {
    padding: 4rem 0 2rem 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-header .subtitle {
    font-size: 1.125rem;
    color: var(--text-color);
    font-weight: 400;
}

/* Content Blocks */
.content-block {
    max-width: 800px;
    margin: 0 auto 3rem auto;
    padding: 2rem 0;
}

.content-block .lead {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-content {
    padding: 3rem 0;
}

/* Mission Box */
.mission-box {
    max-width: 800px;
    margin: 3rem auto;
    padding: 2.5rem;
    border: 2px solid var(--border-color);
    text-align: center;
    background-color: #FAFAFA;
}

.mission-box h2 {
    margin-bottom: 1rem;
}

/* Steps Section */
.steps {
    padding: 3rem 0;
}

.step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: var(--font-heading);
}

.step-content h3 {
    margin-bottom: 1rem;
}

.checklist {
    list-style: none;
}

.checklist li {
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checklist li .heart {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

/* Brand Categories */
.brands {
    padding: 3rem 0;
}

.brand-category {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.brand-category:last-of-type {
    border-bottom: none;
}

.brand-category h2 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.brand-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    align-items: center;
}

.brand-list span {
    font-size: 1rem;
}

.brand-note {
    max-width: 800px;
    margin: 3rem auto 0 auto;
    padding: 2rem;
    background-color: #FAFAFA;
    text-align: center;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background-color: #FAFAFA;
}

.cta-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-box h2 {
    margin-bottom: 1rem;
}

.cta-box p {
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--bg-color);
    padding: 3rem 0 1.5rem 0;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer h3, .footer h4 {
    color: var(--bg-color);
    margin-bottom: 1rem;
}

.footer p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.875rem;
}

/* FAQ Section */
.faq-section {
    padding: 3rem 0;
}

.faq-item {
    max-width: 900px;
    margin: 0 auto 2rem auto;
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.faq-item h3 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.faq-item p {
    margin-bottom: 0;
    color: var(--text-color);
}

/* Contact Section */
.contact-section {
    padding: 3rem 0;
}

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

.contact-info {
    padding: 1rem 0;
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.info-block p {
    margin-bottom: 0.5rem;
}

.no-appointment {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #FAFAFA;
    text-align: center;
}

.map-container {
    height: 450px;
    border: 1px solid var(--border-color);
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

/* Blog Categories */
.blog-categories {
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

.categories {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.category {
    padding: 0.5rem 1.5rem;
    text-decoration: none;
    color: var(--text-color);
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.category:hover,
.category.active {
    background-color: var(--primary-color);
    color: var(--bg-color);
    border-color: var(--primary-color);
}

/* Blog Posts */
.blog-posts {
    padding: 3rem 0;
}

.blog-post {
    max-width: 900px;
    margin: 0 auto 3rem auto;
    padding: 3rem;
    border: 1px solid var(--border-color);
}

.blog-post h2 {
    margin-bottom: 1rem;
}

.post-meta {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.post-excerpt {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.post-content {
    line-height: 1.8;
}

.post-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.post-content ul {
    margin-bottom: 1.5rem;
}

.post-content .highlight {
    padding: 1.5rem;
    background-color: #FAFAFA;
    margin: 2rem 0;
    border-left: 3px solid var(--accent-color);
}

.post-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.post-footer a {
    color: var(--primary-color);
    font-weight: 500;
}

.upcoming-posts {
    max-width: 900px;
    margin: 3rem auto;
    padding: 2rem;
    background-color: #FAFAFA;
}

.upcoming-posts h3 {
    margin-bottom: 1rem;
}

.upcoming-posts ul {
    list-style: none;
}

.upcoming-posts li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.upcoming-posts li:last-child {
    border-bottom: none;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-color);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        display: none;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    h1 {
        font-size: 2rem;
    }

    .step {
        flex-direction: column;
        gap: 1rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

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

    .blog-post {
        padding: 2rem 1rem;
    }
}

/* Standards Section */
.standards-section {
    padding: 3rem 0;
}

.standard-block {
    max-width: 900px;
    margin: 0 auto 3rem auto;
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.standard-block h2 {
    margin-bottom: 1.5rem;
}

.not-accept-block {
    max-width: 900px;
    margin: 3rem auto 2rem auto;
    padding: 2rem;
    background-color: #FAFAFA;
    border-left: 3px solid var(--accent-color);
}

.not-accept-block h2 {
    margin-bottom: 1rem;
}

.not-accept-block ul {
    list-style: none;
    padding-left: 0;
}

.not-accept-block li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.not-accept-block li:last-child {
    border-bottom: none;
}

.questions-box {
    max-width: 900px;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: #FAFAFA;
    text-align: center;
}

.questions-box a {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
}

/* Payment Section */
.payment-section {
    padding: 3rem 0;
}

.commission-block,
.schedule-block,
.options-block,
.details-block,
.example-block {
    max-width: 900px;
    margin: 0 auto 3rem auto;
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.commission-visual {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
}

.commission-you,
.commission-store {
    text-align: center;
    padding: 2rem;
}

.commission-you {
    flex: 1;
    background-color: #FAFAFA;
}

.percentage {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.percentage.small {
    font-size: 2rem;
    color: var(--text-color);
}

.commission-note {
    text-align: center;
    font-weight: 500;
    margin-top: 2rem;
}

.payment-dates {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.date-item {
    padding: 1rem;
    text-align: center;
    border: 1px solid var(--border-color);
    font-weight: 500;
}

.details-block ul,
.not-accept-block ul {
    list-style: none;
    padding-left: 0;
}

.details-block li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.example-block {
    background-color: #FAFAFA;
    text-align: center;
}