/* =============================================================================
BEAUTY PAGE STYLES
============================================================================= */

:root {
    --gold: #C9A96E;
    --gold-light: #F7F3ED;
    --gold-dark: #B8954F;
    --beige: #E8E0D5;
    --text-color: #333;
    --gray: #888;
    --gray-dark: #666;
    --gray-light: #f5f5f5;
    --off-white: #fafafa;
}

/* HEADER - Beauty */
.header-beauty {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201,169,110,0.2);
}
.header-beauty .header-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-beauty .logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-decoration: none;
    margin: 0;
    padding: 0;
    font-weight: normal;
    line-height: 1;
}
.header-beauty .logo a {
    color: inherit;
    text-decoration: none;
}
.header-beauty .header-nav {
    display: flex;
    gap: 30px;
}
.header-beauty .header-nav-item {
    font-size: 12px;
    color: var(--gray-dark);
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: color 0.3s;
}
.header-beauty .header-nav-item:hover {
    color: var(--gold);
}
.header-beauty .header-reserve {
    padding: 10px 25px;
    background: var(--gold);
    color: white;
    font-size: 12px;
    text-decoration: none;
    letter-spacing: 0.1em;
    border-radius: 4px;
    transition: all 0.3s;
}
.header-beauty .header-reserve:hover {
    background: var(--gold-dark);
}

/* HERO */
.beauty-hero {
    background: linear-gradient(180deg, var(--gold-light) 0%, var(--beige) 100%);
    padding: 180px 40px 80px;
    text-align: center;
    position: relative;
}
.beauty-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9A96E' fill-opacity='0.03'%3E%3Ccircle cx='50' cy='50' r='40'/%3E%3C/g%3E%3C/svg%3E");
}
.subpage-hero.beauty-hero .subpage-hero-bg {
    background: linear-gradient(180deg, var(--gold-light) 0%, var(--beige) 100%);
}
.subpage-hero.beauty-hero .heading-en {
    color: var(--gold);
}
.subpage-hero.beauty-hero .subpage-hero-title {
    color: var(--gold-dark);
}
.subpage-hero.beauty-hero .subpage-hero-lead {
    color: var(--gray-dark);
}

/* CONCEPT */
.concept-section {
    background: white;
}
.concept-grid {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}
.concept-image {
    flex: 0 0 400px;
    aspect-ratio: 4/3;
    background: var(--beige);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    overflow: hidden;
}
.concept-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.concept-content {
    flex: 1;
    text-align: left;
}
.concept-content .heading-en {
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 15px;
}
.concept-content .heading-md {
    font-family: 'Noto Serif JP', serif;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 25px;
}
.concept-text {
    font-size: 14px;
    line-height: 2.2;
    color: var(--gray-dark);
}

/* SECTION HEADER - Beauty */
.beauty-page .section-header .label,
.beauty-page .heading-en {
    color: var(--gold);
}

/* MENU SECTION */
.menu-section {
    background: var(--gold-light);
}
.menu-category {
    margin-bottom: 50px;
}
.menu-category:last-child {
    margin-bottom: 0;
}
.menu-category-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--gold-dark);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--beige);
    text-align: left;
}
.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.menu-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
}
.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.menu-card-img {
    aspect-ratio: 1;
    background: var(--beige);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 12px;
    position: relative;
    overflow: hidden;
}
.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.menu-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 500;
    border-radius: 3px;
}
.badge-recommend {
    background: var(--gold);
    color: white;
}
.badge-new {
    background: #E74C3C;
    color: white;
}
.badge-popular {
    background: #3498DB;
    color: white;
}
.menu-card-body {
    padding: 18px;
}
.menu-card-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}
.menu-card-price {
    font-size: 13px;
    color: var(--gold);
    font-weight: 500;
}

/* CONCERN SECTION */
.concern-section {
    background: white;
}
.concern-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}
.concern-category {
    padding: 25px 30px;
    background: var(--gold-light);
    border-radius: 8px;
    text-align: left;
}
.concern-category-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--gold-dark);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--beige);
}
.concern-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.concern-item {
    padding: 8px 16px;
    background: white;
    color: var(--gold-dark);
    font-size: 12px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(201,169,110,0.2);
}
.concern-item:hover {
    background: var(--gold);
    color: white;
    border-color: var(--gold);
}

/* CAMPAIGN SECTION */
.campaign-section {
    background: var(--gold-light);
}
.campaign-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}
.campaign-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}
.campaign-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.campaign-card-image {
    aspect-ratio: 16/10;
    background: var(--beige);
    overflow: hidden;
}
.campaign-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.campaign-card-body {
    padding: 20px;
}
.campaign-card-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}
.campaign-card-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.campaign-card-price .original-price {
    font-size: 12px;
    color: var(--gray);
    text-decoration: line-through;
}
.campaign-card-price .sale-price {
    font-size: 18px;
    font-weight: 600;
    color: #E74C3C;
}

/* CALENDAR SECTION */
.calendar-section.section-bg {
    background: var(--gold-light);
}
.calendar-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

/* DOCTOR SECTION */
.doctor-section {
    background: white;
}
.doctor-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

/* CLINIC INFO SECTION */
.clinic-info-section {
    background: var(--gold-light);
}
.clinic-info-box {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 35px 45px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}
.clinic-info-dept {
    font-family: 'Noto Serif JP', serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--gold-dark);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--beige);
    text-align: center;
}
.clinic-info-dl {
    text-align: left;
}
.clinic-info-row {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
    font-size: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-light);
}
.clinic-info-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.clinic-info-row dt {
    font-weight: 500;
    min-width: 80px;
    color: var(--gray-dark);
}
.clinic-info-row dd {
    flex: 1;
}

/* CTA SECTION */
.cta-section {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    padding: 70px 40px;
    text-align: center;
}
.cta-section h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 26px;
    font-weight: 400;
    color: white;
    margin-bottom: 15px;
}
.cta-section p {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 35px;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.cta-section .btn-white {
    padding: 18px 45px;
    background: white;
    color: var(--gold-dark);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    transition: all 0.3s;
    text-decoration: none;
}
.cta-section .btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.cta-section .btn-secondary {
    padding: 18px 45px;
    background: transparent;
    border: 1px solid white !important;
    color: white !important;
    font-size: 14px;
    letter-spacing: 0.1em;
    transition: all 0.3s;
    text-decoration: none;
}
.cta-section .btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

/* FOOTER - Beauty */
.footer-beauty .footer-logo {
    color: var(--gold);
}
.footer-beauty .footer-nav-col