:root {
    --color-bg: #f6ede2;
    --color-ivory: #fdf5ec;
    --color-sand: #edd4bf;
    --color-tan: #deb79a;
    --color-amber: #f6b27c;
    --color-copper: #c36a2d;
    --color-brown: #8d4f2d;
    --color-deep: #3b1f1b;
    --color-white: #ffffff;
    --color-muted: rgba(59, 31, 27, 0.66);
    --max-width: 1120px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Noto Sans KR", "Pretendard", sans-serif;
    background: linear-gradient(180deg, var(--color-ivory) 0%, #fef3e8 28%, var(--color-bg) 100%);
    color: var(--color-deep);
    line-height: 1.65;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background: radial-gradient(circle at 20% 10%, rgba(222, 183, 154, 0.32), transparent 45%),
                radial-gradient(circle at 82% 4%, rgba(195, 106, 45, 0.28), transparent 42%),
                linear-gradient(180deg, rgba(255, 241, 229, 0.85) 0%, transparent 65%);
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image: linear-gradient(120deg, rgba(220, 201, 184, 0.15) 0%, rgba(247, 242, 237, 0.05) 55%, rgba(255, 255, 255, 0.15) 100%);
    mix-blend-mode: soft-light;
    pointer-events: none;
}

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

a:hover {
    color: var(--color-copper);
}

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

.container {
    width: min(var(--max-width), 88%);
    margin: 0 auto;
}

.section-block {
    position: relative;
    padding: 6.5rem 0;
}

.section-block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 68px;
    background: linear-gradient(180deg, rgba(243, 178, 124, 0.75), rgba(243, 178, 124, 0));
    transform: translateX(-50%);
}

.section-soft {
    background: linear-gradient(180deg, rgba(243, 178, 124, 0.12) 0%, rgba(255, 255, 255, 0) 100%);
}

.section-emphasis {
    background: linear-gradient(145deg, rgba(243, 178, 124, 0.16), rgba(255, 255, 255, 0));
    border-top: 1px solid rgba(195, 106, 45, 0.2);
    border-bottom: 1px solid rgba(195, 106, 45, 0.18);
}

.header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(249, 246, 243, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(195, 106, 45, 0.25);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.4rem 0;
}

.logo {
    font-family: "Playfair Display", serif;
    font-weight: 600;
    letter-spacing: 0.34rem;
    font-size: 1.4rem;
    color: var(--color-brown);
    text-transform: uppercase;
}

.nav {
    display: flex;
    gap: 1.8rem;
    font-size: 0.95rem;
    letter-spacing: 0.08rem;
}

.nav a {
    position: relative;
    padding-bottom: 0.35rem;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--color-copper);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.nav a:hover::after {
    transform: scaleX(1);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.9rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(195, 106, 45, 0.96), rgba(141, 79, 45, 0.96));
    color: var(--color-white);
    border: 1px solid transparent;
    font-size: 0.95rem;
    letter-spacing: 0.12rem;
    text-transform: uppercase;
    transition: all 0.35s ease;
}

.btn:hover {
    background: linear-gradient(135deg, rgba(243, 178, 124, 0.98), rgba(195, 106, 45, 0.98));
    color: var(--color-white);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.72rem 1.6rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.16);
    color: var(--color-white);
    letter-spacing: 0.18rem;
    text-transform: uppercase;
    font-size: 0.82rem;
    transition: transform 0.28s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    backdrop-filter: blur(14px);
    will-change: transform;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.65);
    color: var(--color-white);
    transform: translateY(-4px) scale(1.06);
}

.btn-ghost:active {
    transform: translateY(-1px) scale(1.02);
}

.btn-outline {
    background: transparent;
    color: var(--color-deep);
    border: 1px solid rgba(59, 31, 27, 0.35);
}

.btn-outline:hover {
    background: linear-gradient(135deg, rgba(195, 106, 45, 0.96), rgba(141, 79, 45, 0.96));
    color: var(--color-white);
    border-color: transparent;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 0.3rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-deep);
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.hero {
    padding-top: 7rem;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    right: 12%;
    top: 50%;
    width: 1px;
    height: 280px;
    background: linear-gradient(180deg, rgba(243, 178, 124, 0.32), rgba(243, 178, 124, 0));
}

.hero-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3.4rem;
    align-items: center;
}

.hero-sub--tagline {
    margin-top: 1.1rem;
    max-width: 520px;
    line-height: 1.7;
    letter-spacing: 0.06rem;
    color: rgba(47, 30, 23, 0.74);
}

.hero-sub--tagline br {
    display: block;
}

.hero-sub {
    font-size: 1.02rem;
    max-width: 480px;
    color: var(--color-muted);
    margin: 0.8rem 0 0;
}


.hero-title {
    display: inline-flex;
    align-items: center;
    gap: clamp(1.4rem, 2.6vw, 2.4rem);
    font-family: "Playfair Display", serif;
    font-size: clamp(2.4rem, 4.6vw, 3.3rem);
    letter-spacing: 0.12rem;
    text-transform: uppercase;
    color: var(--color-brown);
    margin: clamp(0.5rem, 1.8vw, 0.9rem) 0 0;
}

.hero-title .hero-word {
    display: inline-flex;
    align-items: center;
    line-height: 1;
    letter-spacing: 0.16rem;
    font-weight: 500;
}

.hero-title .hero-word--latin {
    letter-spacing: 0.32rem;
}

.hero-divider {
    display: inline-block;
    width: 1px;
    height: clamp(32px, 6vw, 46px);
    background: linear-gradient(180deg, rgba(195, 106, 45, 0.55), rgba(222, 183, 154, 0.2));
}

.hero-eyebrow {
    margin: 0.35rem 0 0;
    text-transform: uppercase;
    letter-spacing: 0.38rem;
    font-size: 0.68rem;
    color: rgba(47, 30, 23, 0.45);
}

.hero-meta {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    margin-top: 1.4rem;
    font-size: 0.75rem;
    letter-spacing: 0.35rem;
    text-transform: uppercase;
    color: rgba(59, 31, 27, 0.58);
}

.hero-meta .separator {
    width: 42px;
    height: 1px;
    background: rgba(59, 31, 27, 0.35);
    display: inline-block;
}

.hero-cta {
    margin-top: 2.4rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.9rem;
    padding: 1.4rem 0 2.2rem;
    width: 100%;
}

.hero-circle {
    position: absolute;
    inset: auto;
    top: 14%;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(195, 106, 45, 0.22), rgba(222, 183, 154, 0.08) 68%, transparent 100%);
    filter: blur(0.2px);
    z-index: -1;
}


.hero-frame {
    position: relative;
    width: min(320px, 88%);
    min-height: 420px;
    background: linear-gradient(145deg, rgba(243, 178, 124, 0.9), rgba(141, 79, 45, 0.96));
    border-radius: 34px;
    padding: 2.6rem 2.2rem 2.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    color: var(--color-white);
    overflow: hidden;
    box-shadow: 0 34px 70px -48px rgba(59, 31, 27, 0.7);
    transition: width 0.45s ease, min-height 0.45s ease, padding 0.45s ease, transform 0.45s ease;
    align-self: center;
}

.hero-frame.expanded {
    width: min(560px, 100%);
    min-height: 600px;
    padding: 2.6rem 2.4rem 2.8rem;
    align-items: stretch;
    gap: 0.6rem;
    transform: translateY(-6px);
}

.hero-frame.expanded .hero-logo,
.hero-frame.expanded .hero-caption {
    opacity: 0;
    transform: translateY(-12px);
    max-height: 0;
    margin: 0;
    pointer-events: none;
}

.hero-frame .hero-logo,
.hero-frame .hero-caption {
    transition: opacity 0.4s ease, transform 0.4s ease, max-height 0.4s ease, margin 0.4s ease;
    will-change: opacity, transform, max-height;
}

.hero-frame .hero-logo {
    width: 140px;
    max-height: 140px;
}

.hero-frame .hero-caption {
    max-height: 36px;
}

.hero-frame.expanded .hero-booking-toggle {
    display: none;
}

.hero-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    mix-blend-mode: screen;
}

.hero-frame-glow {
    position: absolute;
    inset: -30% -20% auto -20%;
    height: 60%;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.35), transparent 70%);
    filter: blur(4px);
}

.hero-logo {
    width: 140px;
    max-height: 140px;
    filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.32));
}

.hero-caption {
    font-size: 0.82rem;
    letter-spacing: 0.48rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.86);
    max-height: 36px;
}

.hero-frame .btn-ghost {
    width: 100%;
    justify-content: center;
    box-shadow: 0 18px 42px -28px rgba(15, 10, 8, 0.6);
}

.btn-link {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    letter-spacing: 0.12rem;
    text-transform: uppercase;
    cursor: pointer;
    padding: 0.4rem 0.6rem;
    transition: color 0.3s ease;
}

.btn-link:hover {
    color: #ffffff;
}

.booking-form {
    display: none;
    width: 100%;
    margin-top: 1.6rem;
    color: rgba(255, 255, 255, 0.95);
    gap: 1.4rem;
}

.hero-frame.expanded .booking-form {
    display: flex;
    flex-direction: column;
    animation: bookingFadeIn 0.45s ease forwards;
}

@keyframes bookingFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.booking-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem 1rem;
}

.booking-fieldset {
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 18px;
    padding: 1.2rem 1.4rem;
    display: grid;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.08);
}

.booking-fieldset legend {
    font-size: 0.85rem;
    letter-spacing: 0.18rem;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    color: rgba(255, 255, 255, 0.85);
}

.booking-toggle {
    display: flex;
    padding: 0.3rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    gap: 0.3rem;
}

.booking-toggle label {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    cursor: pointer;
    font-size: 0.85rem;
    letter-spacing: 0.12rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

.booking-toggle label span {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0;
    border-radius: 999px;
    transition: background 0.3s ease, color 0.3s ease;
    min-height: 42px;
    letter-spacing: 0.2rem;
}

.booking-toggle input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.booking-toggle input:checked + span {
    background: rgba(255, 255, 255, 0.85);
    color: rgba(59, 31, 27, 0.85);
}

.booking-field {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    font-size: 0.85rem;
    letter-spacing: 0.05rem;
}

.booking-field span {
    text-transform: uppercase;
    letter-spacing: 0.16rem;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.62);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.booking-field span em {
    font-style: normal;
    color: rgba(255, 200, 180, 0.95);
    font-size: 0.9em;
    letter-spacing: 0;
    line-height: 1;
}

.date-picker-wrapper {
    position: relative;
    display: grid;
    gap: 0.8rem;
}

.date-picker-display {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    flex-wrap: wrap;
}

.date-picker-display input {
    flex: 1;
    min-width: 200px;
    cursor: pointer;
}

.btn-ghost--mini {
    padding: 0.5rem 1.2rem;
    font-size: 0.74rem;
    letter-spacing: 0.16rem;
}

.date-picker-panel {
    position: relative;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(25, 18, 16, 0.28);
    backdrop-filter: blur(24px);
    padding: 1.4rem;
    display: grid;
    gap: 1rem;
    box-shadow: 0 32px 65px -40px rgba(0, 0, 0, 0.45);
    animation: datePanelFade 0.3s ease;
}

.date-picker-panel[hidden] {
    display: none;
}

@keyframes datePanelFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.date-picker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.26rem;
    font-size: 0.78rem;
}

.date-nav {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 999px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.date-nav:hover {
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
}

.date-grid {
    display: grid;
    gap: 0.6rem;
}

.date-grid-header,
.date-grid-body {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.4rem;
    text-align: center;
    font-size: 0.78rem;
    letter-spacing: 0.12rem;
    color: rgba(255, 255, 255, 0.6);
}

.date-grid-body button {
    border: none;
    border-radius: 12px;
    padding: 0.55rem 0;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.date-grid-body button:hover {
    background: rgba(255, 255, 255, 0.24);
}

.date-grid-body button.selected {
    background: rgba(255, 255, 255, 0.9);
    color: rgba(59, 31, 27, 0.85);
}

.date-grid-body button:disabled {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.35);
    cursor: default;
}

.date-picker-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.booking-field input,
.booking-field select,
.booking-field textarea {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
    font-family: "Noto Sans KR", "Pretendard", sans-serif;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease;
    letter-spacing: 0.02rem;
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.22);
}

.booking-field textarea {
    resize: vertical;
    min-height: 90px;
}

.booking-field.full {
    grid-column: 1 / -1;
}

.time-picker {
    display: grid;
    gap: 0.8rem;
}

.time-picker select {
    width: 100%;
}

.time-toggle {
    display: flex;
    padding: 0.3rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    gap: 0.3rem;
}

.time-toggle label {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    cursor: pointer;
    font-size: 0.82rem;
    letter-spacing: 0.16rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.time-toggle label span {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0;
    border-radius: 999px;
    transition: background 0.3s ease, color 0.3s ease;
    min-height: 40px;
}

.time-toggle input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.time-toggle input:checked + span {
    background: rgba(255, 255, 255, 0.9);
    color: rgba(59, 31, 27, 0.85);
}

.booking-field .field-error,
.booking-field input.field-error,
.booking-field select.field-error,
.booking-field textarea.field-error {
    border-color: rgba(255, 202, 189, 0.8) !important;
    box-shadow: 0 0 0 1px rgba(255, 202, 189, 0.4);
}

.booking-consent {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    letter-spacing: 0.04rem;
    color: rgba(255, 255, 255, 0.75);
}

.booking-consent input {
    width: 16px;
    height: 16px;
    accent-color: rgba(243, 178, 124, 0.85);
    cursor: pointer;
}

.booking-consent .privacy-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.4);
    font-size: 0.78rem;
}

.booking-consent .privacy-link:hover {
    color: #ffffff;
}

.booking-actions {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.booking-note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.08rem;
    margin: 0.4rem 0 0;
}

.booking-feedback {
    margin-top: 1.2rem;
    font-size: 0.85rem;
    letter-spacing: 0.04rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    min-height: 1.2rem;
}

.hero-frame.expanded .booking-feedback {
    margin-top: 1rem;
}
.hero-ribbon {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(195, 106, 45, 0.35);
    box-shadow: 0 26px 55px -32px rgba(59, 31, 27, 0.55);
    backdrop-filter: blur(14px);
    font-size: 0.78rem;
    letter-spacing: 0.26rem;
    text-transform: uppercase;
    color: rgba(59, 31, 27, 0.6);
    margin-top: 0.6rem;
}

.hero-ribbon span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 500;
}

.section-header {
    text-align: center;
    margin-bottom: 3.2rem;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.35rem;
    text-transform: uppercase;
    color: rgba(59, 31, 27, 0.48);
}

.section-header h2 {
    margin-top: 0.7rem;
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    font-family: "Playfair Display", serif;
    color: var(--color-brown);
    letter-spacing: 0.12rem;
}

.section-header p {
    max-width: 620px;
    margin: 0.9rem auto 0;
    color: rgba(59, 31, 27, 0.6);
}

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

.brand-card,
.service-card,
.price-card,
.value-card {
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.86), rgba(246, 229, 212, 0.95));
    border: 1px solid rgba(243, 178, 124, 0.45);
    border-radius: 22px;
    padding: 2.2rem;
    box-shadow: 0 28px 60px -48px rgba(59, 31, 27, 0.5);
    backdrop-filter: blur(14px);
}

.brand-card h3,
.service-card h3,
.value-card h3 {
    font-size: 1.22rem;
    font-family: "Playfair Display", serif;
    color: var(--color-brown);
    margin-bottom: 0.9rem;
}

.brand-card ul,
.brand-card p,
.service-card p,
.value-card p {
    margin: 0;
    color: rgba(59, 31, 27, 0.62);
}

.brand-card ul {
    padding-left: 1.2rem;
    display: grid;
    gap: 0.45rem;
}

.service-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.4rem;
}

.service-card ul {
    padding-left: 1.2rem;
    margin: 0;
    color: rgba(47, 30, 23, 0.55);
    display: grid;
    gap: 0.4rem;
}

.pricing-toggle {
    display: inline-flex;
    border: 1px solid rgba(195, 106, 45, 0.45);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    overflow: hidden;
    box-shadow: 0 18px 45px -38px rgba(59, 31, 27, 0.45);
}

.toggle-btn {
    border: none;
    background: transparent;
    padding: 0.7rem 1.8rem;
    font-size: 0.95rem;
    letter-spacing: 0.12rem;
    cursor: pointer;
    color: rgba(47, 30, 23, 0.5);
    transition: all 0.35s ease;
    text-transform: uppercase;
}

.toggle-btn.active {
    background: linear-gradient(135deg, rgba(243, 178, 124, 0.95), rgba(141, 79, 45, 0.95));
    color: var(--color-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.2rem;
    margin-top: 3.2rem;
}

.price-card {
    position: relative;
    overflow: hidden;
}

.price-card::after {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 18px;
    border: 1px solid rgba(246, 178, 124, 0.35);
    pointer-events: none;
}

.price-card header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.price-card h3 {
    font-size: 1.08rem;
    color: var(--color-deep);
    margin: 0;
}

.badge {
    font-size: 0.78rem;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    background: rgba(243, 178, 124, 0.18);
    color: var(--color-copper);
    letter-spacing: 0.1rem;
    text-transform: uppercase;
}

.time {
    font-size: 0.85rem;
    color: rgba(47, 30, 23, 0.45);
    letter-spacing: 0.14rem;
    text-transform: uppercase;
}

.price {
    display: flex;
    gap: 1.3rem;
    align-items: baseline;
}

.price-original {
    text-decoration: line-through;
    color: rgba(47, 30, 23, 0.35);
}

.price-current {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--color-copper);
}

.desc {
    color: var(--color-muted);
    font-size: 0.96rem;
}

.pricing-note {
    margin-top: 2.4rem;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(59, 31, 27, 0.6);
}

.hidden {
    display: none;
}

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

.contact-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3.2rem;
    align-items: center;
}

.contact-info .section-header {
    text-align: left;
    margin-bottom: 2.2rem;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 1.6rem 0;
    display: grid;
    gap: 1.2rem;
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.26rem;
    text-transform: uppercase;
    color: rgba(47, 30, 23, 0.45);
    margin-bottom: 0.35rem;
}

.contact-list a {
    font-size: 1.05rem;
    color: var(--color-copper);
    text-decoration: underline;
    text-decoration-color: rgba(195, 106, 45, 0.35);
}

.contact-note {
    font-size: 0.9rem;
    color: rgba(47, 30, 23, 0.55);
}

.contact-actions {
    margin-top: 2.4rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-visual {
    display: flex;
    justify-content: center;
}

.contact-card {
    width: min(340px, 100%);
    background: linear-gradient(135deg, rgba(243, 178, 124, 0.68), rgba(141, 79, 45, 0.92));
    color: var(--color-white);
    border-radius: 26px;
    padding: 3rem 2.4rem;
    text-align: center;
    display: grid;
    gap: 0.9rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 32px 80px -48px rgba(59, 31, 27, 0.65);
}

.contact-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    pointer-events: none;
}

.card-title {
    font-size: 1.02rem;
    letter-spacing: 0.42rem;
    text-transform: uppercase;
}

.card-sub {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}

.footer {
    background: rgba(59, 31, 27, 0.95);
    color: var(--color-white);
    padding: 3.8rem 0;
}

.footer-content {
    display: grid;
    gap: 1.6rem;
    text-align: center;
}

.footer-brand .logo {
    color: var(--color-white);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.8rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 214, 186, 0.8);
    font-size: 0.95rem;
    letter-spacing: 0.08rem;
}

.footer-links a:hover {
    color: var(--color-white);
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
}

.fade-in {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

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

@media (max-width: 1024px) {
    .hero::after {
        display: none;
    }
}

@media (max-width: 960px) {
    .nav {
        position: fixed;
        inset: 0;
        background: rgba(249, 246, 243, 0.97);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.2rem;
        transform: translateY(-100%);
        transition: transform 0.45s ease;
        font-size: 1.1rem;
    }

    .nav.active {
        transform: translateY(0);
    }

    .nav-toggle {
        display: flex;
    }

    .btn-outline {
        display: none;
    }

    .header .container {
        padding: 1.1rem 0;
    }

    .hero {
        padding-top: 6.4rem;
    }
}

@media (max-width: 720px) {
    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-title {
        font-size: clamp(1.9rem, 6.2vw, 2.6rem);
        gap: 1.1rem;
        letter-spacing: 0.08rem;
    }

    .hero-title .hero-word--latin {
        letter-spacing: 0.18rem;
    }

    .hero-divider {
        height: 34px;
    }

    .hero-visual {
        gap: 1.8rem;
        padding-bottom: 2.4rem;
    }

    .hero-frame {
        width: 100%;
        min-height: 440px;
        padding: 3.4rem 2.4rem 3rem;
    }

    .hero-frame.expanded {
        min-height: 720px;
        padding: 3rem 2.1rem 2.8rem;
    }

    .hero-frame .btn-ghost {
        font-size: 0.78rem;
        letter-spacing: 0.14rem;
    }

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

    .booking-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.6rem;
    }

    .hero-ribbon {
        flex-direction: column;
        gap: 0.6rem;
        padding: 0.9rem 1.3rem;
        text-align: center;
        width: 100%;
        justify-content: center;
    }

    .section-block::before {
        height: 42px;
    }

    .pricing-toggle {
        width: 100%;
    }

    .toggle-btn {
        flex: 1;
    }

    .contact-actions {
        flex-direction: column;
        align-items: flex-start;
    }

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


