:root {
    --navy: #062B50;
    --gold: #D6B04A;
    --gold-soft: #F8E8AE;
    --ivory: #F7FAFC;
    --white: #FFFFFF;
    --sage: #2F7D6D;
    --teal: #0E6BA8;
    --ink: #172132;
    --muted: #667085;
    --line: rgba(6, 43, 80, .12);
    --shadow: 0 22px 60px rgba(6, 43, 80, .11);
    --shadow-hover: 0 28px 70px rgba(6, 43, 80, .17);
    --surface: #FFFFFF;
    --surface-blue: #F2F7FC;
    --surface-gold: #FFF8E6;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Inter", Arial, sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top right, rgba(14, 107, 168, .08), transparent 34vw),
        linear-gradient(180deg, #FFFFFF 0%, var(--ivory) 42%, #FFFFFF 100%);
    line-height: 1.68;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

body.nav-open {
    overflow: hidden;
}

body.lightbox-open {
    overflow: hidden;
}

.scroll-progress {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    height: 3px;
    background: transparent;
    pointer-events: none;
}

.scroll-progress span {
    display: block;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transform-origin: left center;
    background: linear-gradient(90deg, var(--gold), var(--teal), var(--navy));
}

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

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

h1,
h2,
h3 {
    font-family: "Lora", Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 16px;
    color: var(--navy);
    letter-spacing: 0;
}

h1 {
    font-size: clamp(2.4rem, 7vw, 5.6rem);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 3.2rem);
}

h3 {
    font-size: 1.42rem;
}

p {
    margin: 0 0 16px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    min-height: 78px;
    padding: 14px clamp(18px, 4vw, 56px);
    background: rgba(255, 255, 255, .92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
    transition: min-height .25s ease, padding .25s ease, box-shadow .25s ease, background .25s ease;
}

.site-header.is-scrolled {
    min-height: 64px;
    padding-top: 9px;
    padding-bottom: 9px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 12px 34px rgba(6, 43, 80, .08);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 50%;
    font-size: 1.55rem;
    background: var(--navy);
    transition: transform .25s ease, box-shadow .25s ease;
}

.brand:hover .brand-mark {
    transform: rotate(10deg) scale(1.04);
    box-shadow: 0 10px 22px rgba(6, 43, 80, .18);
}

.brand-logo {
    width: 58px;
    height: 42px;
    object-fit: contain;
    border-radius: 8px;
}

.brand strong,
.footer-brand {
    display: block;
    color: var(--navy);
    font-weight: 700;
}

.brand small {
    display: block;
    font-size: .72rem;
    color: var(--muted);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: .95rem;
    color: var(--navy);
}

.site-nav a {
    font-weight: 600;
    position: relative;
    padding-bottom: 4px;
    transition: color .2s ease;
}

.site-nav a:not(.nav-cta)::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    content: "";
    transform: scaleX(0);
    transform-origin: left center;
    background: var(--gold);
    transition: transform .22s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--teal);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
    transform: scaleX(1);
}

.nav-cta,
.btn,
.site-nav .nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 20px;
    border-radius: 8px;
    border: 1px solid transparent;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.nav-cta,
.contact-actions .btn {
    gap: 8px;
}

.nav-cta svg,
.contact-actions .btn svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.nav-cta svg path,
.contact-actions .btn svg path,
.contact-icon svg path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nav-cta::before,
.btn::before {
    position: absolute;
    inset: 0;
    content: "";
    transform: translateX(-105%);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .36), transparent);
    transition: transform .55s ease;
}

.nav-cta:hover,
.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.nav-cta:hover::before,
.btn:hover::before {
    transform: translateX(105%);
}

.nav-cta,
.btn-primary {
    background: var(--gold);
    color: var(--navy);
    box-shadow: 0 12px 28px rgba(201, 168, 90, .28);
}

.btn-light {
    background: var(--white);
    color: var(--navy);
    border-color: rgba(255, 255, 255, .4);
}

.btn-outline {
    border-color: var(--gold);
    color: var(--navy);
    background: transparent;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: var(--navy);
    font-size: 1.25rem;
}

.hero {
    position: relative;
    min-height: min(760px, calc(100vh - 78px));
    display: grid;
    align-items: center;
    padding: clamp(72px, 11vw, 140px) clamp(20px, 6vw, 86px);
    overflow: hidden;
    background: var(--navy);
}

.hero-media {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(6, 43, 80, .94) 0%, rgba(6, 43, 80, .74) 48%, rgba(6, 43, 80, .18) 100%),
        var(--hero-image, url("../../uploads/brand/expert-thanh-hang-side.jpg"));
    background-position: center, right 10% top;
    background-size: cover, auto 108%;
    background-repeat: no-repeat;
    transform: translate3d(var(--hero-shift-x, 0), var(--hero-shift-y, 0), 0) scale(1.04);
    transition: transform .65s ease;
}

.hero::after {
    position: absolute;
    right: clamp(20px, 7vw, 90px);
    bottom: clamp(24px, 7vw, 90px);
    width: min(34vw, 340px);
    aspect-ratio: 1;
    border: 1px solid rgba(201, 168, 90, .28);
    border-radius: 50%;
    content: "";
    opacity: .72;
    pointer-events: none;
    animation: slow-breathe 8s ease-in-out infinite;
}

.hero-content > * {
    animation: hero-rise .7s ease both;
}

.hero-content > *:nth-child(2) {
    animation-delay: .08s;
}

.hero-content > *:nth-child(3) {
    animation-delay: .16s;
}

.hero-content > *:nth-child(4) {
    animation-delay: .24s;
}

.hero-content > *:nth-child(5) {
    animation-delay: .32s;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    color: var(--white);
}

.hero h1,
.hero h2,
.hero-content h1,
.hero-content p {
    color: var(--white);
}

.hero-tagline {
    font-size: clamp(1.1rem, 2.3vw, 1.55rem);
    color: var(--gold-soft) !important;
    font-weight: 600;
}

.hero-actions,
.cta-actions,
.contact-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.eyebrow {
    color: var(--gold);
    font-weight: 800;
    text-transform: uppercase;
    font-size: .78rem;
    letter-spacing: 0;
}

.section,
.cta-section {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: clamp(58px, 8vw, 96px) 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.experience-strip {
    padding-bottom: clamp(30px, 5vw, 68px);
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 16px 44px rgba(6, 43, 80, .08);
}

.journey-step {
    position: relative;
    min-height: 210px;
    padding: 26px;
    border-right: 1px solid var(--line);
    transition: background .24s ease, transform .24s ease;
}

.journey-step:last-child {
    border-right: 0;
}

.journey-step span {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    font-weight: 800;
}

.journey-step::after {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 22px;
    height: 3px;
    content: "";
    transform: scaleX(.18);
    transform-origin: left center;
    background: var(--gold);
    transition: transform .28s ease;
}

.journey-step:hover {
    z-index: 1;
    background: var(--surface-blue);
    transform: translateY(-4px);
}

.journey-step:hover::after {
    transform: scaleX(1);
}

.center {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.problem-grid,
.service-grid,
.package-grid,
.reason-grid,
.article-grid,
.product-grid,
.detail-grid,
.policy-grid {
    display: grid;
    gap: 18px;
}

.problem-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.soft-card,
.service-card,
.package-card,
.detail-card,
.product-card,
.article-card,
.contact-card,
.booking-form,
.booking-card,
blockquote {
    background: rgba(255, 255, 255, .92);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(6, 43, 80, .06);
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease;
}

.soft-card:hover,
.service-card:hover,
.package-card:hover,
.detail-card:hover,
.product-card:hover,
.article-card:hover,
.contact-card:hover,
.booking-card:hover,
blockquote:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 168, 90, .48);
    box-shadow: var(--shadow-hover);
}

.soft-card {
    padding: 24px;
}

.soft-card span,
.service-icon {
    color: var(--gold);
    font-size: 1.9rem;
    font-weight: 700;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, .85fr);
    gap: clamp(26px, 5vw, 70px);
    align-items: center;
}

.check-list,
.rich-content ul,
.package-card ul {
    padding-left: 20px;
}

.check-list li,
.rich-content li,
.package-card li {
    margin-bottom: 8px;
}

.portrait-panel {
    margin: 0;
}

.portrait-panel img,
.content-cover,
.product-detail > img {
    border-radius: 8px;
    width: 100%;
    min-height: 340px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.menu-showcase {
    padding-top: clamp(36px, 6vw, 82px);
}

.menu-board-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.menu-board,
.category-cover,
.category-visual {
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(201, 168, 90, .28);
    background: var(--navy);
    box-shadow: var(--shadow);
}

.menu-board img,
.category-cover img,
.category-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease, opacity .55s ease;
}

.menu-board {
    aspect-ratio: auto;
}

.menu-board a {
    display: grid;
    height: 100%;
    color: inherit;
}

.menu-board img {
    aspect-ratio: 4 / 3;
}

.menu-board-body {
    padding: 18px;
    background: var(--white);
}

.menu-board-body h3 {
    margin-bottom: 10px;
}

.menu-board-body p {
    color: var(--muted);
}

.menu-board-body span {
    color: var(--teal);
    font-weight: 800;
}

.menu-board:hover img,
.category-cover:hover img,
.category-visual:hover img {
    transform: scale(1.035);
    opacity: .96;
}

.training-layout {
    display: grid;
    grid-template-columns: minmax(320px, .72fr) minmax(0, 1fr);
    gap: clamp(24px, 5vw, 56px);
    align-items: start;
}

.business-photo img {
    min-height: 420px;
    object-position: center;
}

.academy-photo img {
    aspect-ratio: 16 / 10;
    min-height: 360px;
    object-position: center;
}

.care-pass-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.care-pass-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    gap: 16px;
    padding: clamp(22px, 3vw, 30px);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.care-pass-head {
    display: grid;
    gap: 8px;
}

.care-pass-head span {
    color: var(--teal);
    font-weight: 900;
}

.care-pass-head h3 {
    font-size: clamp(1.9rem, 4vw, 2.55rem);
}

.care-pass-head strong {
    width: fit-content;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(201, 168, 90, .16);
    color: var(--navy);
}

.care-pass-card p {
    color: var(--muted);
}

.care-pass-card ul,
.training-card ul {
    padding-left: 19px;
}

.care-pass-card li,
.training-card li {
    margin-bottom: 7px;
}

.care-pass-card small {
    margin-top: auto;
    color: var(--teal);
    font-weight: 900;
}

.training-summary {
    display: grid;
    gap: 14px;
}

.academy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.training-card {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 16px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.training-card > span,
.academy-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    font-weight: 900;
}

.academy-icon {
    --academy-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 6v14'/%3E%3Cpath d='M3 6h7a2 2 0 0 1 2 2v12a2 2 0 0 0-2-2H3z'/%3E%3Cpath d='M21 6h-7a2 2 0 0 0-2 2v12a2 2 0 0 1 2-2h7z'/%3E%3C/svg%3E");
}

.academy-icon::before {
    content: "";
    width: 27px;
    height: 27px;
    background: currentColor;
    -webkit-mask: var(--academy-icon) center / contain no-repeat;
    mask: var(--academy-icon) center / contain no-repeat;
}

.academy-icon-crown {
    --academy-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11.6 3.1a.5.5 0 0 1 .8 0l3.1 4.3a.5.5 0 0 0 .6.1l4.5-2a.5.5 0 0 1 .7.6L19 17H5L2.7 6.1a.5.5 0 0 1 .7-.6l4.5 2a.5.5 0 0 0 .6-.1z'/%3E%3Cpath d='M5 21h14'/%3E%3C/svg%3E");
}

.academy-icon-diamond {
    --academy-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 3h12l4 6-10 12L2 9z'/%3E%3Cpath d='M11 3 8 9l4 12 4-12-3-6'/%3E%3Cpath d='M2 9h20'/%3E%3C/svg%3E");
}

.academy-icon-medal {
    --academy-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7.2 2h9.6l-2.4 5.2a6 6 0 1 1-4.8 0z'/%3E%3Cpath d='m9 16 2 2 4-4'/%3E%3C/svg%3E");
}

.academy-icon-star {
    --academy-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m12 2 3.1 6.3 6.9 1-5 4.8 1.2 6.9-6.2-3.3L5.8 21 7 14.1 2 9.3l6.9-1z'/%3E%3C/svg%3E");
}

.academy-icon-certificate {
    --academy-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z'/%3E%3Cpath d='M14 2v6h6'/%3E%3Cpath d='M9 15l2 2 4-4'/%3E%3C/svg%3E");
}

.academy-icon-briefcase {
    --academy-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 6V5a2 2 0 0 1 2-2h0a2 2 0 0 1 2 2v1'/%3E%3Cpath d='M3 7h18v12a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/%3E%3Cpath d='M3 13h18'/%3E%3C/svg%3E");
}

.academy-icon-refresh {
    --academy-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 12a9 9 0 0 1 15-6.7L21 8'/%3E%3Cpath d='M21 3v5h-5'/%3E%3Cpath d='M21 12a9 9 0 0 1-15 6.7L3 16'/%3E%3Cpath d='M3 21v-5h5'/%3E%3C/svg%3E");
}

.academy-icon-users {
    --academy-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M22 21v-2a4 4 0 0 0-3-3.9'/%3E%3Cpath d='M16 3.1a4 4 0 0 1 0 7.8'/%3E%3C/svg%3E");
}

.academy-icon-gift {
    --academy-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 12v10H4V12'/%3E%3Cpath d='M2 7h20v5H2z'/%3E%3Cpath d='M12 22V7'/%3E%3Cpath d='M12 7H7.5A2.5 2.5 0 1 1 10 4.5C10 6 12 7 12 7'/%3E%3Cpath d='M12 7h4.5A2.5 2.5 0 1 0 14 4.5C14 6 12 7 12 7'/%3E%3C/svg%3E");
}

.student-benefit-grid div {
    display: grid;
    gap: 10px;
    align-content: start;
}

.student-benefit-grid .academy-icon {
    margin-bottom: 2px;
}

.training-card h2 {
    margin-bottom: 8px;
    font-size: 1.35rem;
}

.training-card p {
    color: var(--muted);
}

.training-card strong {
    display: block;
    margin-top: 10px;
    color: var(--teal);
}

.portrait-panel figcaption {
    margin-top: 12px;
    color: var(--muted);
}

.navy-band {
    width: 100%;
    max-width: none;
    padding-left: max(20px, calc((100vw - 1180px) / 2));
    padding-right: max(20px, calc((100vw - 1180px) / 2));
    background: var(--navy);
    color: var(--white);
}

.navy-band h2,
.navy-band p {
    color: var(--white);
}

.navy-band .service-card {
    background: rgba(255, 255, 255, .96);
}

.navy-band .service-card h3 {
    color: var(--navy);
}

.navy-band .service-card p {
    color: var(--muted);
}

.navy-band .service-card a {
    color: var(--teal);
}

.service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.package-card,
.detail-card {
    padding: 24px;
}

.service-card a,
.text-link,
.article-card a {
    color: var(--teal);
    font-weight: 800;
}

.package-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.package-card strong {
    display: block;
    color: var(--teal);
    margin-top: 16px;
}

.package-icon {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 16px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    font-size: 1.35rem;
    font-weight: 800;
}

.product-band {
    width: 100%;
    max-width: none;
    padding-left: max(20px, calc((100vw - 1180px) / 2));
    padding-right: max(20px, calc((100vw - 1180px) / 2));
    background:
        linear-gradient(180deg, rgba(242, 247, 252, .96), rgba(255, 255, 255, .96));
    border-top: 1px solid rgba(6, 43, 80, .08);
    border-bottom: 1px solid rgba(6, 43, 80, .08);
}

.modern-wellness-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr .85fr;
    gap: 16px;
    margin-bottom: 22px;
}

.modern-wellness-card {
    position: relative;
    min-height: 310px;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(6, 43, 80, .1);
    border-radius: 8px;
    background: var(--navy);
    box-shadow: var(--shadow);
}

.modern-wellness-card img {
    width: 100%;
    height: 100%;
    min-height: 310px;
    object-fit: cover;
    opacity: .94;
    filter: saturate(.96) contrast(1.02);
    transition: transform .55s ease, opacity .55s ease;
}

.modern-wellness-card:hover img {
    transform: scale(1.04);
    opacity: 1;
}

.modern-wellness-card::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, transparent 30%, rgba(6, 43, 80, .82));
}

.modern-wellness-card figcaption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 1;
    display: grid;
    gap: 6px;
    color: var(--white);
}

.modern-wellness-card strong {
    font-size: 1.16rem;
}

.modern-wellness-card span {
    color: rgba(255, 255, 255, .82);
    line-height: 1.5;
}

.pill-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.pill-row span,
.filter-row a,
.badge {
    border-radius: 999px;
    padding: 9px 14px;
    background: var(--white);
    border: 1px solid var(--line);
    color: var(--navy);
    font-weight: 700;
}

.reason-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.reason-item {
    border-left: 3px solid var(--gold);
    padding: 16px 18px;
    background: var(--white);
    border-radius: 0 8px 8px 0;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.image-grid figure {
    margin: 0;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    min-height: 240px;
    background: var(--navy);
}

.gallery-trigger {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.image-grid img {
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
    transition: transform .55s ease, opacity .55s ease;
}

.article-card img,
.product-card img {
    transition: transform .55s ease, opacity .55s ease;
}

.image-grid figure:hover img,
.article-card:hover img,
.product-card:hover img {
    transform: scale(1.045);
    opacity: .94;
}

.lightbox[hidden] {
    display: none;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: clamp(18px, 4vw, 48px);
    background: rgba(6, 43, 80, .86);
}

.lightbox figure {
    width: min(1080px, 100%);
    max-height: 86vh;
    margin: 0;
    display: grid;
    gap: 12px;
}

.lightbox img {
    width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: 8px;
    background: var(--navy);
    box-shadow: 0 28px 80px rgba(0, 0, 0, .38);
}

.lightbox figcaption {
    color: var(--white);
    text-align: center;
    font-weight: 700;
}

.lightbox-close {
    position: fixed;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .32);
    border-radius: 50%;
    background: rgba(255, 255, 255, .94);
    color: var(--navy);
    font-size: 1.65rem;
    cursor: pointer;
}

.image-grid figcaption {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    background: rgba(6, 43, 80, .82);
    color: var(--white);
    font-size: .88rem;
}

.image-grid figcaption span {
    display: block;
    color: rgba(255, 255, 255, .76);
}

.testimonial-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

blockquote {
    margin: 0;
    padding: 24px;
}

.faq-section {
    padding-top: clamp(34px, 5vw, 72px);
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-list details {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 10px 30px rgba(6, 43, 80, .05);
}

.faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    cursor: pointer;
    color: var(--navy);
    font-weight: 800;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--ivory);
    color: var(--teal);
    content: "+";
    transition: transform .2s ease, background .2s ease;
}

.faq-list details[open] summary::after {
    transform: rotate(45deg);
    background: var(--gold);
    color: var(--navy);
}

.faq-list details p {
    padding: 0 20px 20px;
    color: var(--muted);
}

cite {
    display: block;
    color: var(--teal);
    font-style: normal;
    font-weight: 700;
}

.article-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-scope-section {
    padding-top: 12px;
}

.content-scope-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.content-scope-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    gap: 12px;
    padding: clamp(22px, 3vw, 30px);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(242,247,252,.82));
    box-shadow: var(--shadow-soft);
    transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.content-scope-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 168, 90, .5);
    box-shadow: var(--shadow-hover);
}

.content-scope-card span {
    color: var(--teal);
    font-size: .86rem;
    font-weight: 900;
    text-transform: uppercase;
}

.content-scope-card h2 {
    font-size: clamp(1.35rem, 2.6vw, 1.75rem);
}

.content-scope-card p {
    color: var(--muted);
}

.content-scope-card .text-link {
    margin-top: auto;
}

.article-card {
    overflow: hidden;
}

.article-card img,
.product-card img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
}

.article-card div,
.product-card div {
    padding: 20px;
}

.article-card span,
.product-card span {
    color: var(--sage);
    font-size: .86rem;
    font-weight: 800;
}

.related-section {
    padding-top: clamp(34px, 5vw, 58px);
}

.related-section .section-heading {
    margin-bottom: 22px;
}

.related-section .section-heading h2 {
    font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.related-card {
    min-height: 100%;
}

.related-card img {
    aspect-ratio: 16 / 9;
}

.related-card div {
    display: grid;
    gap: 8px;
    padding: 18px;
}

.related-card h3 {
    margin: 0;
    font-size: clamp(1.08rem, 1.8vw, 1.28rem);
    line-height: 1.32;
}

.related-card p {
    margin: 0;
    color: var(--muted);
    font-size: .96rem;
    line-height: 1.6;
}

.cta-section {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    margin-bottom: 70px;
    padding: 34px;
    border-radius: 8px;
    background: var(--navy);
    color: var(--white);
}

.cta-section h2,
.cta-section p {
    color: var(--white);
}

.page-hero {
    width: min(980px, calc(100% - 40px));
    margin: 0 auto;
    padding: clamp(70px, 9vw, 120px) 0 42px;
}

.content-page,
.contact-layout,
.product-detail,
.service-detail-layout {
    display: grid;
    gap: 30px;
}

.service-detail-layout,
.contact-layout,
.product-detail {
    grid-template-columns: minmax(0, 1fr) 380px;
    align-items: start;
}

.contact-layout {
    grid-template-columns: minmax(280px, 2fr) minmax(0, 3fr);
}

.contact-layout .booking-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding: clamp(24px, 4vw, 34px);
}

.contact-layout .booking-form .field-full,
.contact-layout .booking-form button {
    grid-column: 1 / -1;
}

.rich-content {
    max-width: 850px;
    font-size: 1.03rem;
}

.rich-content figure {
    margin: 28px 0;
}

.rich-content figure img,
.rich-content > img {
    display: block;
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.rich-content figcaption {
    margin-top: 10px;
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.5;
}

.rich-content .image-pair {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 28px 0;
}

.rich-content .image-pair figure {
    margin: 0;
}

.content-page-gioi-thieu {
    grid-template-columns: 1fr;
    gap: clamp(22px, 4vw, 40px);
}

.about-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    gap: clamp(28px, 5vw, 58px);
    align-items: start;
}

.about-visual {
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    background: var(--white);
    border: 1px solid rgba(201, 168, 90, .28);
    box-shadow: var(--shadow);
}

.about-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-visual-team {
    aspect-ratio: 16 / 7;
    width: min(100%, 1120px);
}

.about-visual-team img {
    object-position: center center;
}

.about-visual-location {
    position: sticky;
    top: 104px;
    aspect-ratio: 4 / 5;
    max-height: 560px;
}

.about-visual-location img {
    object-position: center top;
}

.about-visual figcaption {
    padding: 12px 14px;
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.5;
    background: var(--white);
}

.content-page-gioi-thieu .content-cover {
    width: 100%;
    min-height: 0;
    max-height: 560px;
    aspect-ratio: 3 / 4;
    justify-self: start;
    object-fit: cover;
    object-position: center top;
}

.content-page-gioi-thieu .rich-content {
    max-width: none;
}

.rich-content h2 {
    margin-top: 34px;
    font-size: 1.8rem;
}

.breadcrumb {
    color: var(--muted);
    margin-bottom: 22px;
    font-size: .92rem;
}

.booking-card,
.contact-card,
.booking-form {
    padding: 24px;
}

.contact-info-list {
    display: grid;
    gap: 12px;
    margin: 20px 0 16px;
}

.contact-info-item {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface-blue);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-info-item:hover {
    transform: translateY(-2px);
    border-color: rgba(201, 168, 90, .48);
    background: var(--white);
    box-shadow: 0 14px 34px rgba(6, 43, 80, .08);
}

.contact-icon {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    box-shadow: 0 12px 26px rgba(6, 43, 80, .14);
}

.contact-icon svg {
    width: 21px;
    height: 21px;
}

.contact-icon-zalo {
    background: linear-gradient(135deg, var(--teal), var(--navy));
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: 0;
}

.contact-info-item strong,
.contact-info-item small {
    display: block;
}

.contact-info-item small {
    color: var(--muted);
    line-height: 1.45;
}

.contact-hours {
    margin-top: 10px;
    color: var(--muted);
}

.btn-zalo {
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: 0;
}

.service-list {
    display: grid;
    gap: 26px;
}

.category-panel {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 28px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.category-panel.has-image {
    grid-template-columns: minmax(260px, 2fr) minmax(0, 3fr);
    align-items: start;
}

.category-panel.has-image .category-visual {
    grid-row: span 2;
}

.category-panel.has-image .mini-service-list {
    grid-column: 2;
}

.category-visual {
    min-height: 260px;
    aspect-ratio: 4 / 3;
}

.category-cover {
    aspect-ratio: 3 / 2;
    margin-bottom: 26px;
}

.mini-service-list {
    display: grid;
    gap: 10px;
}

.mini-service-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 8px;
    background: var(--ivory);
    border: 1px solid var(--line);
}

.mini-service-list small {
    color: var(--muted);
    font-weight: 700;
    text-align: right;
    white-space: nowrap;
}

dl {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 6px 12px;
}

dt {
    color: var(--muted);
}

dd {
    margin: 0;
    font-weight: 700;
}

.policy-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.policy-grid div {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
}

.policy-grid strong,
.policy-grid span {
    display: block;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.filter-row .active {
    background: var(--navy);
    color: var(--white);
}

.empty-state {
    display: grid;
    justify-items: center;
    gap: 12px;
    padding: clamp(28px, 5vw, 48px);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255,255,255,.86);
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.empty-state p {
    max-width: 620px;
    color: var(--muted);
}

.product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
    overflow: hidden;
}

.product-card strong,
.price {
    display: block;
    color: var(--teal);
    font-size: 1.1rem;
    font-weight: 800;
}

.note {
    padding: 16px;
    background: var(--surface-blue);
    border-left: 3px solid var(--teal);
    border-radius: 0 8px 8px 0;
}

.booking-form {
    display: grid;
    gap: 16px;
}

.booking-form.is-submitting {
    opacity: .72;
    pointer-events: none;
}

.booking-form label {
    position: relative;
}

.booking-form label::after {
    position: absolute;
    right: 12px;
    bottom: 13px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    content: "";
    background: transparent;
    transition: background .18s ease, box-shadow .18s ease;
}

.booking-form label.is-valid::after {
    background: var(--sage);
    box-shadow: 0 0 0 4px rgba(122, 143, 106, .15);
}

.booking-form label.is-invalid input,
.booking-form label.is-invalid select,
.booking-form label.is-invalid textarea {
    border-color: #B85C5C;
    box-shadow: 0 0 0 4px rgba(184, 92, 92, .1);
}

.field-counter {
    justify-self: end;
    margin-top: -4px;
    color: var(--muted);
    font-size: .78rem;
}

label {
    display: grid;
    gap: 7px;
    font-weight: 700;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px 13px;
    font: inherit;
    background: var(--white);
    color: var(--ink);
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(201, 168, 90, .16);
}

textarea {
    resize: vertical;
}

.hp-field {
    position: absolute;
    left: -9999px;
}

.flash {
    width: min(960px, calc(100% - 40px));
    margin: 18px auto 0;
    padding: 14px 18px;
    border-radius: 8px;
    background: var(--white);
    border: 1px solid var(--line);
    font-weight: 700;
}

.flash-success {
    border-color: rgba(122, 143, 106, .5);
    color: #37512F;
}

.flash-error {
    border-color: rgba(180, 60, 60, .45);
    color: #8A2E2E;
}

.site-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, .76);
    padding: 58px clamp(20px, 6vw, 80px) 28px;
}

.site-footer a {
    display: block;
    color: var(--white);
    margin-bottom: 8px;
}

.site-footer h3,
.footer-brand {
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr .8fr .8fr;
    gap: 30px;
    width: min(1180px, 100%);
    margin: 0 auto;
}

.footer-bottom {
    width: min(1180px, 100%);
    margin: 30px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: .9rem;
}

.floating-actions {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 60;
    display: grid;
    gap: 10px;
}

.floating-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 9px 16px 9px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #E4C77A, var(--gold));
    color: var(--navy);
    font-weight: 800;
    box-shadow: 0 10px 28px rgba(6, 43, 80, .18);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.action-icon {
    display: inline-grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(6, 43, 80, .12);
    color: var(--navy);
}

.action-icon svg,
.back-to-top svg {
    width: 18px;
    height: 18px;
}

.action-icon svg path,
.back-to-top svg path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.action-icon-zalo {
    background: var(--navy);
    color: var(--gold);
    font-size: .95rem;
    letter-spacing: 0;
}

.floating-actions a:hover {
    transform: translateX(-3px);
    background: #DDBD73;
    box-shadow: var(--shadow-hover);
}

.back-to-top {
    position: fixed;
    right: 18px;
    bottom: 172px;
    z-index: 60;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(201, 168, 90, .45);
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity .2s ease, transform .2s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.reveal-item {
    opacity: 0;
    transform: translateY(26px);
}

.reveal-item.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .7s ease var(--reveal-delay, 0ms), transform .7s ease var(--reveal-delay, 0ms);
}

@keyframes hero-rise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slow-breathe {
    0%,
    100% {
        transform: scale(.96);
        opacity: .48;
    }
    50% {
        transform: scale(1.04);
        opacity: .78;
    }
}

@keyframes nav-drop {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1020px) {
    .site-nav {
        position: absolute;
        left: 18px;
        right: 18px;
        top: 70px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: 8px;
        box-shadow: var(--shadow);
        transform: translateY(-8px);
        opacity: 0;
    }

    .site-nav.is-open {
        display: flex;
        animation: nav-drop .18s ease forwards;
    }

    .nav-toggle {
        display: grid;
        place-items: center;
    }

    .problem-grid,
    .service-grid,
    .package-grid,
    .care-pass-grid,
    .content-scope-grid,
    .modern-wellness-grid,
    .menu-board-grid,
    .journey-grid,
    .article-grid,
    .product-grid,
    .image-grid,
    .testimonial-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .split,
    .service-detail-layout,
    .contact-layout,
    .product-detail,
    .training-layout,
    .category-panel,
    .category-panel.has-image,
    .cta-section,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .category-panel.has-image .category-visual,
    .category-panel.has-image .mini-service-list {
        grid-column: 1;
        grid-row: auto;
    }

    .category-visual {
        width: 100%;
        min-height: 0;
    }

    .about-content-grid {
        grid-template-columns: 1fr;
    }

    .about-visual-team {
        aspect-ratio: 16 / 8.5;
    }

    .about-visual-location {
        position: static;
        width: min(420px, 100%);
        justify-self: center;
    }

    .content-page-gioi-thieu .content-cover {
        width: min(420px, 100%);
        justify-self: center;
    }

    .journey-step:nth-child(2n) {
        border-right: 0;
    }

    .journey-step:nth-child(n + 3) {
        border-top: 1px solid var(--line);
    }
}

@media (max-width: 680px) {
    .brand {
        min-width: 0;
    }

    .brand small {
        display: none;
    }

    .hero {
        min-height: 650px;
    }

    .hero-media {
        background-position: center, center top;
        background-size: cover, auto 100%;
    }

    .hero-actions,
    .cta-actions,
    .contact-actions {
        flex-direction: column;
    }

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

    .content-page-gioi-thieu .content-cover {
        width: min(340px, 100%);
    }

    .about-visual-location {
        width: 100%;
        aspect-ratio: 4 / 5;
    }

    .training-card {
        grid-template-columns: 1fr;
    }

    .problem-grid,
    .service-grid,
    .package-grid,
    .care-pass-grid,
    .academy-grid,
    .content-scope-grid,
    .modern-wellness-grid,
    .rich-content .image-pair,
    .menu-board-grid,
    .journey-grid,
    .reason-grid,
    .article-grid,
    .product-grid,
    .image-grid,
    .testimonial-row,
    .policy-grid {
        grid-template-columns: 1fr;
    }

    .mini-service-list a {
        display: grid;
    }

    .floating-actions {
        left: 10px;
        right: 10px;
        bottom: 10px;
        grid-template-columns: repeat(3, 1fr);
    }

    .floating-actions a {
        min-width: 0;
        padding: 9px 8px;
        font-size: .86rem;
    }

    .journey-step {
        min-height: auto;
        border-right: 0;
        border-top: 1px solid var(--line);
    }

    .journey-step:first-child {
        border-top: 0;
    }

    .back-to-top {
        right: 12px;
        bottom: 66px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

    .reveal-item {
        opacity: 1;
        transform: none;
    }
}
