/* ========================================
   COREBELLO (코어벨로) Design System
   ======================================== */

/* -------- CSS Custom Properties -------- */
:root {
    --primary: #8B6F5E;
    --primary-dark: #6E5749;
    --primary-light: #A58D7E;
    --accent: #C49A6C;
    --accent-hover: #B58A5C;
    --bg: #FAF6F2;
    --bg-warm: #F5EDE5;
    --text: #2C1F1A;
    --text-light: #5A4A40;
    --text-muted: #8B7B70;
    --border: #D4C4BB;
    --white: #FFFDF9;
    --card-bg: #FFFFFF;

    --font-heading-en: 'Cormorant Garamond', serif;
    --font-heading-kr: 'Noto Serif KR', serif;
    --font-body-en: 'Inter', sans-serif;
    --font-body-kr: 'Pretendard Variable', 'Pretendard', sans-serif;

    --nav-height: 80px;
    --section-padding: 120px;
    --container-width: 1200px;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body-kr);
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none;
}

/* Restore cursor for touch devices */
@media (pointer: coarse) {
    body {
        cursor: auto;
    }

    .custom-cursor {
        display: none !important;
    }
}

a {
    color: inherit;
    text-decoration: none;
    cursor: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    border: none;
    background: none;
    font: inherit;
    cursor: none;
}

/* -------- Custom Cursor -------- */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 28px;
    height: 28px;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 0.15s var(--ease-out), opacity 0.2s;
    opacity: 0;
    mix-blend-mode: difference;
}

.custom-cursor.visible {
    opacity: 1;
}

.custom-cursor.hovering {
    transform: translate(-50%, -50%) scale(1.5);
}

/* -------- Film Grain Overlay -------- */
.film-grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* -------- Container -------- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* -------- Typography -------- */
.section-label {
    display: block;
    font-family: var(--font-heading-en);
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 500;
}

.section-label-light {
    color: var(--accent);
}

.section-heading {
    font-family: var(--font-heading-kr);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 400;
    line-height: 1.4;
    color: var(--text);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-heading-light {
    color: var(--white);
}

.section-desc {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 48px;
}

.section-desc-light {
    color: rgba(255, 253, 249, 0.7);
}

.text-center {
    text-align: center;
}

.text-center .section-label {
    text-align: center;
}

.text-center.section-desc,
.section-desc.text-center {
    margin-left: auto;
    margin-right: auto;
}

/* -------- Section base -------- */
.section {
    padding: var(--section-padding) 0;
}

/* -------- Buttons -------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    font-family: var(--font-body-kr);
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s var(--ease-out);
    letter-spacing: 0.02em;
    cursor: none;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    border: 1.5px solid var(--accent);
}

.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196, 154, 108, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 253, 249, 0.6);
}

.btn-outline:hover {
    background: rgba(255, 253, 249, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 48px;
    font-size: 1.0625rem;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.4s var(--ease-out), border-bottom 0.4s, backdrop-filter 0.4s;
    padding: 0 24px;
}

.navbar.scrolled {
    background-color: rgba(250, 246, 242, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

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

.nav-logo-text {
    font-family: var(--font-heading-en);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--white);
    transition: color 0.4s;
}

.navbar.scrolled .nav-logo-text {
    color: var(--primary);
}

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

.nav-link {
    font-family: var(--font-body-kr);
    font-size: 0.9375rem;
    font-weight: 400;
    color: rgba(255, 253, 249, 0.85);
    transition: color 0.3s;
    letter-spacing: 0.02em;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: width 0.3s var(--ease-out);
}

.nav-link:hover::after {
    width: 100%;
}

.navbar.scrolled .nav-link {
    color: var(--text-light);
}

.navbar.scrolled .nav-link:hover {
    color: var(--primary);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
    padding: 8px;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
    border-radius: 2px;
}

.navbar.scrolled .hamburger-line {
    background: var(--primary);
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s var(--ease-in-out), filter 0.6s;
    transform: scale(1.05);
    filter: saturate(0.85) brightness(0.95);
}

.hero:hover .hero-bg-img {
    transform: scale(1.08);
    filter: saturate(0.95) brightness(0.9) sepia(0.08);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(44, 31, 26, 0.45) 0%,
            rgba(44, 31, 26, 0.25) 40%,
            rgba(44, 31, 26, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 800px;
}

.hero-heading {
    font-family: var(--font-heading-kr);
    font-size: clamp(2.25rem, 6vw, 3.75rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.35;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-heading-line {
    display: block;
}

.hero-sub {
    font-family: var(--font-body-kr);
    font-size: clamp(0.9375rem, 2vw, 1.125rem);
    color: rgba(255, 253, 249, 0.8);
    margin-bottom: 36px;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}

.badge {
    padding: 8px 20px;
    background: rgba(255, 253, 249, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 253, 249, 0.2);
    border-radius: 100px;
    font-size: 0.8125rem;
    color: rgba(255, 253, 249, 0.9);
    font-weight: 400;
    letter-spacing: 0.02em;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    background: var(--bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.6s var(--ease-out);
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--border);
    border-radius: 8px;
    z-index: -1;
}

.about-desc {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.8;
}

.about-features {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--bg-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.about-feature strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
}

.about-feature span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* ========================================
   SERVICE SECTION
   ======================================== */
.service {
    background: var(--bg-warm);
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.service-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
    box-shadow: 0 2px 12px rgba(139, 111, 94, 0.06);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(139, 111, 94, 0.12);
}

.service-card-img {
    overflow: hidden;
    height: 240px;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.service-card:hover .service-card-img img {
    transform: scale(1.06);
}

.service-card-body {
    padding: 28px 24px 32px;
}

.service-card-title {
    font-family: var(--font-heading-kr);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 8px;
}

.service-card-time {
    font-size: 0.8125rem;
    color: var(--accent);
    margin-bottom: 8px;
    font-weight: 500;
}

.service-card-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========================================
   PRICE SECTION
   ======================================== */
.price {
    background: var(--primary);
    color: var(--white);
}

.price-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 56px;
}

.price-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s var(--ease-out), background 0.3s;
}

.price-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.12);
}

.price-card-thumb {
    height: 160px;
    overflow: hidden;
}

.price-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.price-card:hover .price-card-thumb img {
    opacity: 0.85;
}

.price-card-body {
    padding: 24px;
}

.price-card-title {
    font-family: var(--font-heading-kr);
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--white);
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-item span {
    color: rgba(255, 253, 249, 0.7);
    font-size: 0.875rem;
}

.price-item strong {
    color: var(--accent);
    font-family: var(--font-heading-en);
    font-size: 1.125rem;
    font-weight: 600;
}

.price-note {
    font-size: 0.8125rem;
    color: rgba(255, 253, 249, 0.5);
    margin-top: 12px;
    font-style: italic;
}

/* Price Extra Sections */
.price-extra {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
}

.price-extra-title {
    font-family: var(--font-heading-kr);
    font-size: 1.0625rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--white);
}

.price-table-wrap {
    overflow-x: auto;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
}

.price-table th,
.price-table td {
    padding: 12px 16px;
    text-align: left;
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.price-table th {
    color: var(--accent);
    font-weight: 500;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-table td {
    color: rgba(255, 253, 249, 0.8);
}

.price-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.price-option span {
    color: rgba(255, 253, 249, 0.7);
    font-size: 0.875rem;
}

.price-option strong {
    color: var(--accent);
    font-size: 0.9375rem;
}

/* Price Notice */
.price-notice {
    background: var(--accent);
    border-radius: 12px;
    padding: 28px 32px;
    text-align: center;
}

.price-notice-main {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 8px;
}

.price-notice-sub {
    font-size: 0.8125rem;
    color: rgba(255, 253, 249, 0.7);
}

/* ========================================
   RESERVATION SECTION
   ======================================== */
.reservation {
    background: var(--bg);
}

/* Timeline */
.timeline {
    position: relative;
    margin: 64px 0;
    padding: 0 24px;
}

.timeline-line {
    position: absolute;
    top: 16px;
    left: calc(10% + 16px);
    right: calc(10% + 16px);
    height: 2px;
    background: var(--border);
}

.timeline-line-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--accent);
    transition: width 1.2s var(--ease-out);
}

.timeline-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative;
}

.timeline-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg);
    border: 2px solid var(--border);
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
    transition: all 0.5s var(--ease-out);
}

.timeline-step.active .timeline-dot {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 0 6px rgba(196, 154, 108, 0.2);
}

.timeline-label {
    font-family: var(--font-heading-en);
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 6px;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0.6;
    transition: opacity 0.4s;
}

.timeline-step.active .timeline-label {
    opacity: 1;
}

.timeline-title {
    font-size: 0.8125rem;
    color: var(--text-light);
    line-height: 1.4;
    transition: color 0.4s;
}

.timeline-step.active .timeline-title {
    color: var(--text);
    font-weight: 500;
}

.timeline-title small {
    display: block;
    font-size: 0.6875rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Cancellation */
.cancellation {
    max-width: 700px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: 12px;
    padding: 36px;
    box-shadow: 0 2px 16px rgba(139, 111, 94, 0.06);
}

.cancellation-title {
    font-family: var(--font-heading-kr);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 24px;
    text-align: center;
}

.cancellation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cancellation-item {
    display: flex;
    flex-direction: column;
    padding: 16px;
    background: var(--bg);
    border-radius: 8px;
    text-align: center;
}

.cancellation-when {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.cancellation-result {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--primary);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.contact-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(139, 111, 94, 0.85) 0%,
            rgba(44, 31, 26, 0.75) 100%);
}

.contact-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 24px;
    max-width: 700px;
}

.contact-heading {
    font-family: var(--font-heading-kr);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contact-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 253, 249, 0.9);
    font-size: 1rem;
    transition: color 0.3s;
}

.contact-item:hover {
    color: var(--accent);
}

.contact-item svg {
    flex-shrink: 0;
}

.contact-cta {
    margin-top: 16px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--bg);
    border-top: 2px solid var(--primary);
    padding: 48px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 40px;
    align-items: start;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.footer-logo-text {
    font-family: var(--font-heading-en);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.08em;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 28px;
    padding-top: 6px;
}

.footer-nav a {
    font-size: 0.875rem;
    color: var(--text-light);
    transition: color 0.3s;
}

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

.footer-info {
    text-align: right;
}

.footer-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.8;
}

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

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.fade-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.15s;
}

.delay-2 {
    transition-delay: 0.3s;
}

.delay-3 {
    transition-delay: 0.45s;
}

/* ========================================
   RESPONSIVE — TABLET (768px)
   ======================================== */
@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
        --nav-height: 64px;
    }

    /* Nav */
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        transition: right 0.4s var(--ease-out);
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-menu .nav-link {
        color: var(--text);
        font-size: 1.25rem;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image img {
        height: 360px;
    }

    .about-image::after {
        display: none;
    }

    /* Service */
    .service-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Price */
    .price-grid {
        grid-template-columns: 1fr;
    }

    /* Timeline */
    .timeline {
        padding: 0;
    }

    .timeline-line {
        left: 24px;
        right: 24px;
    }

    .timeline-title {
        font-size: 0.75rem;
    }

    /* Cancellation */
    .cancellation-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-info {
        text-align: center;
    }
}

/* ========================================
   RESPONSIVE — MOBILE (375px)
   ======================================== */
@media (max-width: 480px) {
    :root {
        --section-padding: 64px;
    }

    .hero-heading {
        font-size: 2rem;
    }

    .hero-badges {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .badge {
        font-size: 0.75rem;
        padding: 6px 12px;
        text-align: center;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .price-extra {
        padding: 24px 16px;
    }

    .price-notice {
        padding: 20px 16px;
    }

    /* Timeline vertical on small mobile */
    .timeline-steps {
        flex-direction: column;
        gap: 32px;
        padding-left: 40px;
    }

    .timeline-line {
        left: 16px;
        right: auto;
        top: 0;
        bottom: 0;
        width: 2px;
        height: auto;
    }

    .timeline-line-fill {
        width: 100% !important;
        height: 0;
        transition: height 1.2s var(--ease-out);
    }

    .timeline-step {
        flex-direction: row;
        text-align: left;
        gap: 16px;
        align-items: flex-start;
    }

    .timeline-dot {
        position: absolute;
        left: -40px;
        flex-shrink: 0;
        margin-bottom: 0;
    }

    .cancellation {
        padding: 24px 16px;
    }

    .contact-info {
        flex-direction: column;
        gap: 16px;
    }
}

/* ========================================
   MULTI-PAGE COMPONENTS
   ======================================== */

/* -------- Page Hero (Sub-pages) -------- */
.page-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero-short {
    min-height: 45vh;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.85) brightness(0.9);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 100px 24px 60px;
}

.page-hero-heading {
    font-family: var(--font-heading-kr);
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.35;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.page-hero-sub {
    font-size: clamp(0.875rem, 2vw, 1.0625rem);
    color: rgba(255, 253, 249, 0.75);
    font-weight: 300;
}

/* -------- Button Text -------- */
.btn-text {
    display: inline-flex;
    align-items: center;
    padding: 8px 0;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--accent);
    border: none;
    background: none;
    transition: color 0.3s;
    cursor: none;
}

.btn-text:hover {
    color: var(--accent-hover);
}

/* -------- About Story Grid -------- */
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-story-desc {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 16px;
}

.about-story-img {
    border-radius: 8px;
    overflow: hidden;
}

.about-story-img img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.6s var(--ease-out);
}

.about-story-img:hover img {
    transform: scale(1.03);
}

/* -------- Philosophy Cards -------- */
.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}

.philosophy-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 36px;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
    box-shadow: 0 2px 12px rgba(139, 111, 94, 0.06);
}

.philosophy-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(139, 111, 94, 0.1);
}

.philosophy-num {
    font-family: var(--font-heading-en);
    font-size: 2rem;
    font-weight: 300;
    color: var(--accent);
    margin-bottom: 16px;
    line-height: 1;
}

.philosophy-title {
    font-family: var(--font-heading-kr);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 12px;
}

.philosophy-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* -------- Equipment Cards -------- */
.equip-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
}

.equip-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
    box-shadow: 0 2px 12px rgba(139, 111, 94, 0.06);
}

.equip-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(139, 111, 94, 0.1);
}

.equip-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.equip-title {
    font-family: var(--font-heading-kr);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text);
}

.equip-desc {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* -------- Service Detail Grid -------- */
.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.service-detail-grid.reverse {
    direction: rtl;
}

.service-detail-grid.reverse>* {
    direction: ltr;
}

.service-detail-img {
    border-radius: 8px;
    overflow: hidden;
    position: sticky;
    top: 100px;
}

.service-detail-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.6s var(--ease-out);
}

.service-detail-img:hover img {
    transform: scale(1.03);
}

.service-detail-desc {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 28px;
}

.service-detail-info {
    background: var(--bg-warm);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 28px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.info-value {
    font-size: 0.875rem;
    color: var(--text);
    font-weight: 500;
    text-align: right;
}

.detail-features-title {
    font-family: var(--font-heading-kr);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 12px;
}

.detail-features-list {
    list-style: none;
}

.detail-features-list li {
    position: relative;
    padding-left: 20px;
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.8;
}

.detail-features-list li::before {
    content: '·';
    position: absolute;
    left: 4px;
    color: var(--accent);
    font-weight: 700;
    font-size: 1.2em;
}

/* Section Divider */
.section-divider {
    padding: 0;
}

.section-divider hr {
    border: none;
    border-top: 1px solid var(--border);
}

/* -------- Process Grid -------- */
.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
}

.process-step {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(139, 111, 94, 0.06);
    transition: transform 0.3s var(--ease-out);
}

.process-step:hover {
    transform: translateY(-4px);
}

.process-num {
    font-family: var(--font-heading-en);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent);
    margin-bottom: 12px;
}

.process-step h3 {
    font-family: var(--font-heading-kr);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text);
}

.process-step p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* -------- FAQ Accordion -------- */
.faq-list {
    max-width: 800px;
    margin: 48px auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text);
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-toggle {
    font-size: 1.25rem;
    color: var(--accent);
    transition: transform 0.3s;
    font-weight: 300;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out), padding 0.3s;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-answer p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* -------- Price Included -------- */
.price-included {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
}

.included-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.included-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.included-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 1rem;
    margin-top: 2px;
}

.included-item strong {
    display: block;
    font-size: 0.875rem;
    color: var(--white);
    margin-bottom: 2px;
}

.included-item p {
    font-size: 0.75rem;
    color: rgba(255, 253, 249, 0.6);
}

/* -------- Step Detail Cards -------- */
.step-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
}

.step-detail-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(139, 111, 94, 0.06);
}

.step-detail-num {
    font-family: var(--font-heading-en);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent);
    margin-bottom: 12px;
}

.step-detail-card h3 {
    font-family: var(--font-heading-kr);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.step-detail-card p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* -------- Payment Cards -------- */
.payment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
}

.payment-card {
    text-align: center;
    background: var(--bg-warm);
    border-radius: 12px;
    padding: 36px 24px;
}

.payment-card h3 {
    font-family: var(--font-heading-kr);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.payment-amount {
    font-family: var(--font-heading-kr);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.payment-card p:last-child {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* -------- Cancellation colors -------- */
.cancellation-result.good {
    color: #2e7d32;
}

.cancellation-result.warn {
    color: #e65100;
}

.cancellation-result.bad {
    color: #c62828;
}

/* -------- Checklist -------- */
.checklist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
}

.checklist-item {
    background: var(--bg-warm);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}

.checklist-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.checklist-item h3 {
    font-family: var(--font-heading-kr);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text);
}

.checklist-item p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* -------- Contact Full -------- */
.contact-full {
    min-height: 80vh;
}

/* -------- Contact Methods -------- */
.contact-methods-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}

.contact-method {
    text-align: center;
    background: var(--bg-warm);
    border-radius: 12px;
    padding: 40px 28px;
    transition: transform 0.3s var(--ease-out);
}

.contact-method:hover {
    transform: translateY(-4px);
}

.contact-method-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.contact-method h3 {
    font-family: var(--font-heading-kr);
    font-size: 1.0625rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--text);
}

.contact-method p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* -------- Response Grid -------- */
.response-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}

.response-item {
    text-align: center;
}

.response-icon {
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.response-item h3 {
    font-family: var(--font-heading-kr);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text);
}

.response-item p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* -------- Business Info Card -------- */
.business-info-card {
    max-width: 600px;
    margin: 48px auto 0;
    background: var(--bg-warm);
    border-radius: 12px;
    padding: 36px;
}

.business-info-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.875rem;
}

.business-info-row:last-child {
    border-bottom: none;
}

.business-info-row span {
    color: var(--text-muted);
    flex-shrink: 0;
    margin-right: 16px;
}

.business-info-row strong {
    color: var(--text);
    text-align: right;
    font-weight: 500;
}

/* -------- Nav Active Link -------- */
.nav-link.active::after {
    width: 100%;
}

.navbar.scrolled .nav-link.active {
    color: var(--primary);
}

/* ========================================
   RESPONSIVE — MULTI-PAGE (Tablet)
   ======================================== */
@media (max-width: 768px) {
    .page-hero {
        min-height: 45vh;
    }

    .page-hero-short {
        min-height: 35vh;
    }

    .page-hero-content {
        padding: 80px 24px 40px;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-story-img img {
        height: 300px;
    }

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

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

    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .service-detail-grid.reverse {
        direction: ltr;
    }

    .service-detail-img {
        position: static;
    }

    .service-detail-img img {
        height: 280px;
    }

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

    .step-detail-grid {
        grid-template-columns: 1fr;
    }

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

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

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

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

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

    .contact-full {
        min-height: 60vh;
    }
}

@media (max-width: 480px) {
    .philosophy-card {
        padding: 24px;
    }

    .step-detail-card {
        padding: 24px;
    }

    .business-info-card {
        padding: 24px;
    }

    .business-info-row {
        flex-direction: column;
        gap: 4px;
    }

    .business-info-row strong {
        text-align: left;
    }
}