@charset "utf-8";

:root {
    --cream: #FAF7F2;
    --warm-white: #FDF9F4;
    --forest: #2D4A3E;
    --gold: #B8963E;
    --gold-light: #D4AF6A;
    --charcoal: #2C2C2C;
    --mid-gray: #6B6B6B;
    --light-gray: #E8E4DC;
    --sage: #7A9E8E;
    --sage-pale: #EEF5F2;
    --indigo: #2C3E6B;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--cream);
    color: var(--charcoal);
    font-family: 'Noto Serif JP', serif;
    font-weight: 300;
    line-height: 1.9;
    overflow-x: hidden;
}

/* SHARED */
.container {
    max-width: 820px;
    margin: 0 auto;
}

.section-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px;
    font-style: italic;
    color: var(--gold);
    letter-spacing: 0.35em;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gold);
    opacity: 0.3;
    max-width: 80px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(30px, 5vw, 48px);
    font-weight: 300;
    color: var(--forest);
    line-height: 1.3;
    margin-bottom: 40px;
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* HERO */
.hero {
    min-height: 100vh;
    background: linear-gradient(160deg, #1a3329 0%, #2D4A3E 45%, #3a5a4a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 80px 24px 60px;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(184, 150, 62, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(196, 130, 106, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-ornament {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    font-style: italic;
    color: var(--gold-light);
    letter-spacing: 0.3em;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 1s ease 0.2s forwards;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 8vw, 88px);
    font-weight: 300;
    color: #fff;
    letter-spacing: 0.06em;
    line-height: 1.15;
    margin-bottom: 8px;
    opacity: 0;
    animation: fadeUp 1s ease 0.4s forwards;
}

.hero-title span {
    color: var(--gold-light);
    font-style: italic;
}

.hero-subtitle {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(13px, 2vw, 16px);
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.25em;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 1s ease 0.6s forwards;
}

.hero-tagline {
    font-size: clamp(18px, 3.5vw, 26px);
    color: #fff;
    font-weight: 400;
    line-height: 1.7;
    max-width: 640px;
    margin-bottom: 8px;
    opacity: 0;
    animation: fadeUp 1s ease 0.8s forwards;
}

.hero-tagline-sub {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 1s ease 0.9s forwards;
}

.hero-locations {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 1s ease 1s forwards;
}

.hero-locations span {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.2em;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 7px 18px;
}

.hero-cta {
    display: inline-block;
    border: 1px solid var(--gold-light);
    color: var(--gold-light);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.25em;
    padding: 16px 48px;
    text-decoration: none;
    transition: all 0.4s ease;
    opacity: 0;
    animation: fadeUp 1s ease 1.2s forwards;
}

.hero-cta:hover {
    background: var(--gold-light);
    color: var(--forest);
}

.scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeUp 1s ease 1.6s forwards;
}

.scroll-hint span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 11px;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.35);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* PHILOSOPHY */
.philosophy {
    background: var(--warm-white);
    padding: 120px 24px;
    position: relative;
}

.philosophy::before {
    content: 'PHILOSOPHY';
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 8vw, 90px);
    font-weight: 300;
    color: rgba(45, 74, 62, 0.04);
    letter-spacing: 0.15em;
    white-space: nowrap;
    pointer-events: none;
}

.philosophy-text {
    font-size: clamp(14px, 1.8vw, 16px);
    color: var(--charcoal);
    line-height: 2.1;
    font-weight: 300;
    margin-bottom: 28px;
}

.philosophy-highlight {
    border-left: 2px solid var(--gold);
    padding: 24px 32px;
    margin: 48px 0;
    background: rgba(184, 150, 62, 0.04);
}

.philosophy-highlight p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(17px, 2.5vw, 22px);
    font-style: italic;
    color: var(--forest);
    line-height: 1.8;
}

/* FEATURES */
.features {
    background: var(--cream);
    padding: 100px 24px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2px;
    margin-top: 60px;
    background: var(--light-gray);
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    background: var(--warm-white);
    padding: 48px 36px;
    transition: background 0.3s ease;
}

.feature-item:hover {
    background: var(--forest);
}

.feature-item:hover .feature-title,
.feature-item:hover .feature-text {
    color: rgba(255, 255, 255, 0.9);
}

.feature-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 300;
    color: var(--light-gray);
    line-height: 1;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.feature-item:hover .feature-num {
    color: rgba(255, 255, 255, 0.15);
}

.feature-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--forest);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.feature-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    color: var(--mid-gray);
    line-height: 1.9;
    font-weight: 300;
    transition: color 0.3s ease;
}

/* STAGES */
.stages {
    background: var(--forest);
    padding: 120px 24px;
    position: relative;
    overflow: hidden;
}

.stages::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 90% 50%, rgba(184, 150, 62, 0.07) 0%, transparent 60%);
    pointer-events: none;
}

.stages .section-label {
    color: var(--gold-light);
}

.stages .section-label::after {
    background: var(--gold-light);
}

.stages .section-title {
    color: #fff;
}

.stages-list {
    margin-top: 72px;
}

.stage-item {
    display: grid;
    grid-template-columns: 180px 1fr;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 56px 0;
    gap: 60px;
    align-items: start;
}

.stage-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stage-age-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 6vw, 68px);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.08);
    line-height: 1;
    margin-bottom: 12px;
}

.stage-age-label {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--gold-light);
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 6px;
}

.stage-age-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.3);
}

.stage-content-title {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(17px, 2.5vw, 21px);
    font-weight: 400;
    color: #fff;
    margin-bottom: 18px;
    line-height: 1.6;
}

.stage-content-body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(13px, 1.6vw, 14px);
    color: rgba(255, 255, 255, 0.65);
    line-height: 2.1;
    font-weight: 300;
}

.stage-keywords {
    margin-top: 20px;
}

.stage-keyword {
    display: inline-block;
    border: 1px solid rgba(184, 150, 62, 0.5);
    color: var(--gold-light);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.15em;
    padding: 4px 14px;
    margin-right: 8px;
    margin-top: 8px;
}

/* NURSERY */
.nursery {
    background: var(--sage-pale);
    padding: 120px 24px;
    position: relative;
    overflow: hidden;
}

.nursery::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 90% 20%, rgba(122, 158, 142, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 5% 80%, rgba(184, 150, 62, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.nursery::after {
    content: '英語';
    position: absolute;
    font-family: 'Noto Serif JP', serif;
    font-size: 260px;
    font-weight: 300;
    color: rgba(122, 158, 142, 0.07);
    right: -10px;
    bottom: -20px;
    line-height: 1;
    pointer-events: none;
}

.nursery .section-label {
    color: var(--sage);
}

.nursery .section-label::after {
    background: var(--sage);
}

.nursery .section-title {
    color: var(--forest);
}

.nursery .section-title em {
    color: var(--sage);
}

.nursery-header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 40px;
    margin-bottom: 64px;
}

.nursery-title-en {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(14px, 2vw, 18px);
    font-style: italic;
    color: var(--sage);
    opacity: 0.8;
    margin-top: -28px;
}

.nursery-badge {
    background: var(--forest);
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.2em;
    padding: 10px 20px;
    white-space: nowrap;
    align-self: flex-start;
    margin-top: 8px;
}

.nursery-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
    position: relative;
}

.nursery-text {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(14px, 1.8vw, 16px);
    color: var(--charcoal);
    line-height: 2.2;
    font-weight: 300;
    margin-bottom: 20px;
}

.nursery-emphasis {
    border-left: 2px solid var(--gold);
    padding: 20px 24px;
    background: rgba(184, 150, 62, 0.05);
    margin: 36px 0;
}

.nursery-emphasis p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(18px, 2.5vw, 22px);
    font-style: italic;
    color: var(--forest);
    line-height: 1.8;
}

.nursery-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(16px, 2.2vw, 20px);
    font-style: italic;
    color: var(--sage);
    margin-top: 36px;
    line-height: 1.7;
}

.gift-visual {
    background: linear-gradient(135deg, var(--forest) 0%, #1a3329 100%);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
}

.gift-visual::before {
    content: '🎁';
    position: absolute;
    font-size: 110px;
    right: -10px;
    bottom: -10px;
    opacity: 0.12;
    line-height: 1;
}

.gift-visual-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    font-style: italic;
    color: var(--gold-light);
    letter-spacing: 0.2em;
    margin-bottom: 16px;
}

.gift-visual-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 300;
    color: #fff;
    line-height: 1.6;
}

.gift-visual-text em {
    font-style: italic;
    color: var(--gold-light);
}

.nursery-list {
    list-style: none;
    display: grid;
    gap: 2px;
    background: rgba(122, 158, 142, 0.1);
}

.nursery-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    padding: 18px 22px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    color: var(--charcoal);
    font-weight: 300;
    line-height: 1.7;
    transition: background 0.3s ease;
}

.nursery-list li:hover {
    background: var(--sage-pale);
}

.nursery-list li::before {
    content: '✦';
    color: var(--sage);
    font-size: 10px;
    flex-shrink: 0;
    margin-top: 5px;
}

/* MUSIC */
.music {
    background: var(--cream);
    padding: 120px 24px;
}

.music-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 960px;
    margin: 0 auto;
}

.music-visual {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--forest) 0%, #1a3329 100%);
    position: relative;
    overflow: hidden;
}

.music-visual::before {
    content: '♩';
    position: absolute;
    font-size: 200px;
    color: rgba(184, 150, 62, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    line-height: 1;
}

.music-visual-label {
    position: absolute;
    bottom: 40px;
    left: 40px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    line-height: 1.3;
}

.music-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(13px, 1.6vw, 15px);
    color: var(--charcoal);
    line-height: 2.1;
    font-weight: 300;
}

.music-list {
    list-style: none;
    margin-top: 28px;
    display: grid;
    gap: 12px;
}

.music-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    color: var(--mid-gray);
    font-weight: 300;
}

.music-list li::before {
    content: '—';
    color: var(--gold);
    flex-shrink: 0;
}

/* TRAVELERS */
.travelers {
    background: linear-gradient(160deg, #1e2d4a 0%, #2C3E6B 50%, #1e2d4a 100%);
    padding: 120px 24px;
    position: relative;
    overflow: hidden;
}

.travelers::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 60% at 80% 30%, rgba(212, 175, 106, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 10% 70%, rgba(196, 130, 106, 0.07) 0%, transparent 50%);
    pointer-events: none;
}

.travelers::after {
    content: '旅';
    position: absolute;
    font-family: 'Noto Serif JP', serif;
    font-size: 300px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.03);
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
    pointer-events: none;
}

.travelers .section-label {
    color: var(--gold-light);
}

.travelers .section-label::after {
    background: var(--gold-light);
}

.travelers .section-title {
    color: #fff;
}

.travelers .section-title em {
    color: var(--gold-light);
}

.travelers-inner {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
}

.travelers-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(15px, 2vw, 18px);
    font-style: italic;
    color: rgba(255, 255, 255, 0.45);
    margin-top: -28px;
    margin-bottom: 40px;
}

.travelers-body {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 2.1;
    font-weight: 300;
    font-family: 'Noto Sans JP', sans-serif;
    margin-bottom: 20px;
}

.travelers-highlight {
    border-left: 2px solid var(--gold);
    padding: 20px 24px;
    background: rgba(184, 150, 62, 0.07);
    margin: 32px 0;
}

.travelers-highlight p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(17px, 2vw, 21px);
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.travelers-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(17px, 2.2vw, 22px);
    font-style: italic;
    color: var(--gold-light);
    margin-top: 32px;
}

.travelers-cards {
    display: grid;
    gap: 2px;
    background: rgba(255, 255, 255, 0.06);
    margin-bottom: 24px;
}

.travelers-card {
    background: rgba(255, 255, 255, 0.04);
    padding: 24px 26px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: background 0.3s ease;
}

.travelers-card:hover {
    background: rgba(255, 255, 255, 0.09);
}

.travelers-card-icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.travelers-card-title {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 4px;
    font-family: 'Noto Sans JP', sans-serif;
}

.travelers-card-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    line-height: 1.7;
    font-family: 'Noto Sans JP', sans-serif;
}

.memo-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 106, 0.25);
    padding: 28px;
    position: relative;
    margin-bottom: 24px;
}

.memo-box::before {
    content: '📝';
    position: absolute;
    top: -14px;
    left: 24px;
    font-size: 22px;
}

.memo-box-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-style: italic;
    color: var(--gold-light);
    margin-bottom: 12px;
    margin-top: 6px;
}

.memo-box-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.9;
    font-weight: 300;
    font-family: 'Noto Sans JP', sans-serif;
}

.memo-box-text strong {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

.payment-note {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 26px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 28px;
}

.payment-note-icon {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.payment-note-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 300;
    line-height: 1.9;
}

.payment-note-text strong {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.travelers-cta {
    display: inline-block;
    background: var(--gold);
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.2em;
    padding: 16px 40px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.travelers-cta:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* LOCATIONS */
.locations {
    background: var(--warm-white);
    padding: 120px 24px;
}

.locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 60px;
}

.location-card {
    background: var(--cream);
    border: 1px solid var(--light-gray);
    padding: 48px 40px;
    transition: box-shadow 0.3s ease;
}

.location-card:hover {
    box-shadow: 0 8px 40px rgba(45, 74, 62, 0.08);
}

.location-badge {
    display: inline-block;
    background: var(--forest);
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.2em;
    padding: 6px 18px;
    margin-bottom: 28px;
}

.location-list {
    list-style: none;
    display: grid;
    gap: 14px;
}

.location-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    color: var(--charcoal);
    font-weight: 300;
    line-height: 1.7;
}

.loc-icon {
    flex-shrink: 0;
    width: 22px;
}

/* CONTACT */
.contact {
    background: var(--forest);
    padding: 120px 24px;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(184, 150, 62, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.contact .section-label {
    color: var(--gold-light);
}

.contact .section-label::after {
    background: var(--gold-light);
}

.contact .section-title {
    color: #fff;
}

.contact-intro {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 300;
    line-height: 2;
    margin-bottom: 16px;
    position: relative;
}

.contact-note {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    color: var(--gold-light);
    font-weight: 300;
    border-left: 2px solid var(--gold);
    padding-left: 16px;
    margin-bottom: 48px;
    line-height: 1.9;
    position: relative;
}

.contact-phones {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 48px;
    position: relative;
}

.contact-phone-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 36px 28px;
}

.contact-card-icon {
    font-size: 26px;
    margin-bottom: 14px;
}

.contact-card-label {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 11px;
    color: var(--gold-light);
    letter-spacing: 0.2em;
    margin-bottom: 10px;
}

.contact-card-value {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.contact-card-sub {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    margin-top: 8px;
    line-height: 1.8;
}

/* FORM */
.contact-form {
    display: grid;
    gap: 24px;
    position: relative;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: var(--gold-light);
    letter-spacing: 0.15em;
}

.form-required {
    color: var(--gold-light);
}

.form-input {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 300;
    padding: 14px 18px;
    outline: none;
    transition: border-color 0.3s ease;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-input:focus {
    border-color: var(--gold-light);
}

.form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23D4AF6A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-select option {
    background: var(--forest);
    color: #fff;
}

.form-textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.8;
}

.form-submit {
    margin-top: 8px;
    align-self: flex-start;
}

/* BUTTONS */
.btn-primary {
    display: inline-block;
    background: var(--gold);
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.2em;
    padding: 18px 52px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* FOOTER */
footer {
    background: #111;
    padding: 60px 24px;
    text-align: center;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}

.footer-locations {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.2em;
    margin-bottom: 8px;
}

.footer-contact {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 0.1em;
}

/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .stage-item {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .nursery-header {
        grid-template-columns: 1fr;
    }

    .nursery-body {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .music-inner {
        grid-template-columns: 1fr;
    }

    .music-visual {
        aspect-ratio: 16/9;
    }

    .travelers-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    .contact-phones {
        grid-template-columns: 1fr;
    }
}