* {
    box-sizing: border-box;
}

:root {
    --primary: #fffbf0;
    --secondary: #2d2d2d;
    --btn: #d4af37;
    --description: #8b7355;
    --label: #a67c52;
    --border-img: #e0e0e0;
    --accent1: #f5f5f5;
    --accent2: #fff8dc;
}

html,
body {
    scroll-behavior: smooth;
}

html {
    font-size: 62.5%;
}

body {
    font-size: 1.6rem;
    font-family: "Poppins", sans-serif;
    background: var(--primary);
}
/*---------- Common ----------*/

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "Sora", sans-serif;
}

input,
textarea,
select,
button {
    font-size: inherit;
    font-family: inherit;
}

.container {
    width: 1170px;
    max-width: calc(100% - 48px);
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo span {
    font-family: "Sora", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    margin-left: 5px;
}

.btn {
    --height: 56px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    height: var(--height);
    line-height: var(--height);
    border: 1px solid rgba(0, 9, 88, 0.7);
    border-radius: 99px;
    font-weight: 600;
    font-size: 1.4rem;
    text-align: center;
}

.btn:hover {
    opacity: 0.9;
    cursor: pointer;
}

.btn--primary {
    color: #fff;
    background: linear-gradient(135deg, #d4af37 0%, #c89f2d 100%);
    border: none;
    box-shadow: 0px 13px 26px -8px rgba(212, 175, 55, 0.5);
    transition: all 0.3s ease;
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0px 18px 36px -8px rgba(212, 175, 55, 0.6);
}

.btn__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    stroke: var(--btn);
    box-shadow: 4px 3px 10px -1px rgba(212, 175, 55, 0.4);
}

.section-heading {
    font-weight: 700;
    font-size: 5.2rem;
    line-height: 1.19;
    color: #1a1a1a;
    position: relative;
    display: inline-block;
}

.section-heading::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #d4af37 0%, #c89f2d 100%);
    border-radius: 2px;
}

.section-desc {
    margin-top: 24px;
    font-size: 1.6rem;
    line-height: 1.88;
    color: var(--description);
}

/*---------- Header ----------*/
.header {
    padding: 26px 0 8px 0;
    position: sticky;
    top: -25px;
    z-index: 999;
    /* background: var(--primary); */
    background: rgba(0, 0, 0, 0.05); /* nền mờ */
    backdrop-filter: blur(10px); /* hiệu ứng kính mờ */
    -webkit-backdrop-filter: blur(10px);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar__list {
    display: flex;
}

.navbar__link {
    padding: 8px 18px;
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 1;
    color: var(--label);
}

.navbar__link:hover {
    color: #000958;
    text-shadow: 1px 0 0 currentColor;
}

/* ------Search - form -------*/
.search-form {
    position: relative;
    display: flex;
    padding-left: 20px;
    border-radius: 99px;
    background: #0009580f;
}

.search-form__input,
.search-form__btn {
    background: transparent;
    outline: none;
    border: none;
}

.search-form__input {
    width: 240px;
    padding: 14px 0;
    margin-right: 32px;
}

.search-form__input:not(:placeholder-shown) ~ .search-form__btn {
    color: #333;
}

.search-form__input:not(:placeholder-shown) ~ .search-form__clear {
    display: block;
}

.search-form__btn {
    width: 50px;
    border-radius: 0 99px 99px 0;
    color: #000;
    font-size: 20px;
    cursor: pointer;
}

.search-form__btn:hover {
    background: #16182308;
}

.search-form__clear {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    outline: none;
    border: none;
    color: #666;
    background: transparent;
    display: none;
}

.navbar__item--dropdown {
    position: relative;
}

.navbar__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 140px;
    padding: 8px 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
    z-index: 99;
}

/* Hiện dropdown khi hover */
.navbar__item--dropdown:hover .navbar__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar__dropdown-link {
    display: block;
    padding: 10px 18px;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--label);
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.navbar__dropdown-link:hover {
    background: #fdf6e3;
}

/*---------- Hero ----------*/
.hero {
    margin-top: 74px;
}

.hero__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* column-gap: 120px; */
}

.hero__media {
    position: relative;
    display: flex;
    padding-bottom: 94px;
}

.hero__img-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 388px;
    height: 488px;
    border: 4px solid #d4af37;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
}

.hero__img {
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

.hero__decor {
    position: absolute;
    z-index: -1;
}

.hero__decor-left {
    left: -58px;
    bottom: 10px;
}

.hero__decor-right {
    top: 16px;
    right: -43px;
}

.hero__img-wrap-small {
    align-self: flex-end;
    width: 186px;
    height: 244px;
    margin: 0 0 -58px -24px;
    border: 2px solid var(--border-img);
}

.hero__list {
    position: absolute;
    left: 129px;
    bottom: 0;
    width: 250px;
    height: 156px;
    padding: 18px 14px;
    background: #fff;
    box-shadow: -17px 14px 68px -4px rgba(207, 174, 132, 0.25);
    border-radius: 10px;
}

.hero-list-item {
    display: flex;
}

.hero-list-item__thumb {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
    background: #2d2d2d;
}

.hero-list-item:nth-of-type(2) .hero-list-item__thumb {
    background: #c6e2fa;
}

.hero-list-item__info {
    margin-left: 10px;
}

.hero-list-item__title {
    font-family: "Sora", sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    line-height: 1;
    color: var(--secondary);
}

.hero-list-item__skeleton {
    margin-top: 6px;
    width: var(--width, 118px);
    height: 4px;
    background: var(--secondary);
    opacity: 0.08;
    border-radius: 10px;
}

.hero-list-item__separate {
    display: block;
    width: 100%;
    height: 2px;
    margin: 20px 0;
    background: #f2f2f2;
    border-radius: 99px;
}

.hero__content {
    padding-left: 120px;
}

.hero__heading {
    font-weight: 700;
    font-size: 6.6rem;
    line-height: 1.15;
    color: #1a1a1a;
    text-shadow: 2px 2px 4px rgba(212, 175, 55, 0.1);
}

.hero__desc {
    width: 391px;
    margin-top: 24px;
    font-size: 1.6rem;
    line-height: 1.88;
    color: var(--description);
}

.hero__row {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.hero__cta-btn {
    --height: 60px;
    font-size: 1.6rem;
    min-width: 190px;
}

.hero__cta-link {
    margin-left: 24px;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1;
    text-decoration: underline;
    color: var(--secondary);
}

/*---------- About ----------*/
.about {
    margin-top: 138px;
}

.about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    row-gap: 146px;
}

.about__media {
    position: relative;
}

.about__label {
    font-family: Sora, sans-serif;
    font-weight: 600;
    font-size: 1.6rem;
    line-height: 1;
    color: var(--label);
}

.about__heading {
    margin-top: 15px;
}

.about__heading,
.about__desc {
    width: 444px;
}

.about__checklist {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: flex-start;
    gap: 36px;
    margin-top: 54px;
}

.about__check-item {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 230px;
    column-gap: 10px;
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 1;
    color: #48496a;
}

.about__check-item::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: var(--btn);
    box-shadow: 0px 4px 15px -3px rgba(85, 229, 99, 0.42);
    border-radius: 4px;
}

.about__check-item::after {
    position: absolute;
    top: 2px;
    left: 5px;
    content: url(../../assets/icons-lion/check.svg);
}

.about__card {
    position: absolute;
    top: 165px;
    left: 0;
    width: 136px;
    padding: 30px 26px;
    background: var(--accent2);
    box-shadow: -15px 26px 48px rgba(85, 240, 255, 0.17);
    border-radius: 10px;
    text-align: center;
}

.about__card-title {
    font-family: Sora, sans-serif;
    font-weight: 700;
    font-size: 4.2rem;
    line-height: 1;
    color: #999999;
}

.about__card-desc {
    margin-top: 14px;
    font-size: 1.4rem;
    line-height: 1.43;
    color: #ddd;
}

.about__card-decor {
    position: absolute;
    top: -24px;
    right: -8px;
    rotate: 30deg;
    width: 50px;
    height: 50px;
}

.about__img-wrap {
    position: relative;
    width: 494px;
    margin-left: auto;
}

.about__img-wrap::after {
    position: absolute;
    inset: auto 0 0 0;
    z-index: -1;
    content: "";
    height: 336px;
    background: linear-gradient(180deg, #fff8f0 0%, #d4a574 100%);
    border-radius: 16px;
}

.about__img {
    width: 450px;
    display: block;
    margin: 0 auto;
}

.about__media-decor {
    position: absolute;
    top: 157px;
    right: -50px;
    z-index: -1;
}

.about__img-wrap-bottom {
    width: 458px;
    margin-left: 0;
    background: linear-gradient(180deg, #ffe8d0 0%, #bf8860 100%);
    border: 2px solid #e0e0e0;
    box-shadow: 0px 17px 77px -8px rgba(166, 101, 32, 0.17);
    border-radius: 18px;
}

.about__img-wrap-bottom::after {
    content: none;
}

.about__img-bottom {
    width: 100%;
    height: 380px;
}

.about__decor-img {
    position: absolute;
}

.about__decor-img:nth-child(1) {
    top: 13px;
    right: 64px;
}

.about__decor-img:nth-child(2) {
    top: -16px;
    right: 13px;
}

.about__decor-img:nth-child(3) {
    top: 33px;
    right: -21px;
}

.about__decor-img:nth-child(4) {
    top: 268px;
    right: -33px;
}

.about__decor-img:nth-child(5) {
    bottom: 150px;
    right: 10px;
}

.about__decor-img:nth-child(6) {
    right: -24px;
    bottom: -40px;
}

.about__decor-img:nth-child(7) {
    right: -33px;
    bottom: -47px;
}

.about__decor-img:nth-child(8) {
    right: -42px;
    bottom: -55px;
}

.about__desc-bottom {
    width: 511px;
    margin-bottom: 50px;
}

.tab__list {
    position: relative;
    display: inline-flex;
    column-gap: 56px;
}

.tab__list::after,
.tab__item--active::after,
.tab__content-more::after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    border-radius: 1px;
    background: var(--btn);
    opacity: 0.07;
}

.tab__item--active::after {
    width: 95px;
    opacity: 1;
}

.tab__item {
    position: relative;
    display: flex;
    align-items: center;
    column-gap: 12px;
    padding-bottom: 10px;
    cursor: pointer;
}

.tab__icon {
    width: 150px;
}

.tab__title {
    font-family: "Sora", sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 1;
    color: #48496a;
}

.tab__contents {
    position: relative; /* làm container */
    padding-top: 36px;
}

.tab__content-item {
    /* display: none; */
    /* js */
    position: absolute; /* tất cả cùng 1 vị trí */
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
    /* js */
}

.tab__content-item--active {
    /* display: block; */
    /* js */
    opacity: 1;
    visibility: visible;
    /* js */
}

.tab__content-desc {
    width: 391px;
    font-size: 1.4rem;
    line-height: 1.71;
    color: #656689;
}

.tab__content-more {
    position: relative;
    display: inline-block;
    margin-top: 32px;
    padding-bottom: 5px;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1;
    color: var(--btn);
}

.tab__content-more::after {
    opacity: 1;
    height: 1.5px;
}

/*---------- detail ----------*/
.detail {
    margin-top: 190px;
    padding: 68px 0 100px;
    background: #fff8f0;
}

.detail__top {
    text-align: center;
}

.detail__label {
    margin-bottom: 15px;
    font-family: "sora", sans-serif;
    font-weight: 600;
    font-size: 1.6rem;
    line-height: 1;
    color: var(--label);
}

.detail__body {
    display: grid;
    grid-template-columns: auto 1fr auto;
    column-gap: 30px;
    margin-top: 70px;
}

.detail-item {
    width: 294px;
    padding: 30px;
    background: #fff;
    border: 2px solid #d4af37;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.15);
}

/* Transition */
.detail-item {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    cursor: pointer;
}

.detail-item.visible {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    cursor: pointer;
    opacity: 1;
    transform: translateY(0);
}
.detail-item.visible:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 40px rgba(212, 175, 55, 0.25);
    border-color: #c89f2d;
}
/* ----------- */

.detail-item + .detail-item {
    margin-top: 24px;
}

.detail-item__heading {
    position: relative;
    padding-left: 12px;
    font-weight: 600;
    font-size: 2.2rem;
    line-height: 1;
    color: var(--secondary);
}

.detail-item__heading::before {
    position: absolute;
    inset: 0 auto 0 0;
    content: "";
    display: inline-block;
    width: 2px;
    border-radius: 1px;
    background: linear-gradient(var(--btn), #8aee8d);
}

.detail-item__desc {
    margin-top: 18px;
    font-size: 1.4rem;
    line-height: 1.71;
    color: var(--description);
}

.detail-item__more {
    display: inline-flex;
    align-items: center;
    margin-top: 24px;
    font-family: "sora", sans-serif;
    font-size: 1.2rem;
    line-height: 1;
    color: var(--btn);
}

.detail__column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.detail__media {
    position: relative;
    margin-top: 18px;
}

.detail__media::after {
    content: "";
    position: absolute;
    height: 350px;
    left: 30px;
    right: 30px;
    bottom: 30px;
    background: linear-gradient(180deg, #ffe8d0 0%, #8b6f47 100%);
    border-radius: 10px;
}

.detail__img {
    position: relative;
    display: block;
    margin-top: 90px;
    z-index: 1;
    width: 100%;
}

/* Transition */
.detail__img {
    transition: transform 0.4s ease;
}

.detail__media:hover .detail__img {
    transform: scale(1.12);
}

/* ------ */

.detail__cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 45px;
}

.detail__cta {
    min-width: 214px;
    color: var(--btn);
    border-color: currentColor;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.detail__cta:hover {
    background-color: var(--btn);
    color: #fff;
}
/*---------- gallery ----------*/
.gallery {
    padding: 130px 0 78px 0;
}

.gallery__desc,
.gallery__heading {
    text-align: center;
}

.gallery__desc {
    margin-bottom: 15px;
    font-family: "sora", sans-serif;
    font-weight: 600;
    font-size: 1.6rem;
    line-height: 1;
    color: var(--description);
}

.gallery__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 35px;
    margin-top: 45px;
}

.gallery-item {
    cursor: pointer;
    text-align: center;
}

.gallery-item__img-wrap {
    margin: 0 16px;
}

.gallery-item__img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 340px;
    border-radius: 20px;
    object-fit: cover;
    transition: all 0.4s ease;
    border: 3px solid #d4af37;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
}

.gallery-item__title {
    margin-top: 34px;
    font-size: 1.4rem;
    line-height: 1;
    color: var(--label);
}

.gallery-item__name {
    margin-top: 14px;
    font-weight: 600;
    font-size: 2.2rem;
    line-height: 1;
    color: var(--secondary);
}

/* 🔥 HOVER */
.gallery-item:hover .gallery-item__img {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.35);
    border-color: #c89f2d;
}

.gallery__cta-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 48px;
}

.gallery__cta {
    min-width: 193px;
    color: var(--btn);
    border-color: var(--btn);
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.gallery__cta:hover {
    background-color: var(--btn);
    color: #fff;
}

/*---------- Footer ----------*/
.footer {
    margin-top: 102px;
    background: linear-gradient(to right, #fff8f0 42%, transparent 42%);
}

.footer__inner {
    display: flex;
}

.footer__left {
    padding: 114px 0 148px;
    width: 42%;
}

.footer__right {
    flex: 1;
    padding: 52px 0 48px 0;
}

.subscribe-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 50px 0 68px;
    padding: 40px;
    background: linear-gradient(135deg, #f5f5f5 0%, #fff8dc 100%);
    border-radius: 20px;
    box-shadow: 0px 15px 40px -10px rgba(212, 175, 55, 0.15);
}

.subscribe-section__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.subscribe-section__title {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.4;
}

.subscribe-section__desc {
    font-size: 1.4rem;
    color: var(--description);
    line-height: 1.6;
    margin: 0;
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.subscribe-form__group {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.subscribe-form__field {
    display: flex;
    align-items: center;
    height: 52px;
    padding: 0 18px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    background: #fff;
    transition: all 0.3s ease;
}

.subscribe-form__field:hover {
    border-color: var(--btn);
    background: #fffbf0;
}

.subscribe-form__field:focus-within {
    border-color: var(--btn);
    box-shadow: 0px 4px 12px rgba(212, 175, 55, 0.15);
}

.subscribe-form__field i {
    color: var(--label);
    margin-right: 12px;
    font-size: 1.6rem;
}

.subscribe-form__input {
    flex: 1;
    height: 100%;
    padding: 0;
    border: none;
    outline: none;
    background: transparent;
    font-size: 1.4rem;
    color: var(--secondary);
}

.subscribe-form__input::placeholder {
    color: var(--description);
    opacity: 0.6;
    font-weight: 300;
}

.subscribe-form__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 52px;
    font-weight: 600;
    font-size: 1.4rem;
    min-width: 160px;
}

.subscribe-form__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0px 18px 30px -8px rgba(212, 175, 55, 0.35);
}

.subscribe-section__image {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 350px;
}

.subscribe-section__img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.subscribe-section__badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--btn);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 10px 30px rgba(212, 175, 55, 0.4);
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.badge__text {
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
    text-align: center;
}

.footer__heading {
    font-weight: 600;
    font-size: 1.8rem;
}

.footer__heading--mt {
    margin-top: 20px;
    line-height: 1.11;
    color: var(--secondary);
}

.social-list {
    display: flex;
    column-gap: 16px;
    margin-top: 16px;
}

.social-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
}

.footer__row {
    display: grid;
    grid-template-columns: auto auto;
    gap: 58px 137px;
    margin-left: 129px;
}

.footer__list {
    margin-top: 14px;
}

.footer__link {
    font-size: 1.4rem;
    line-height: 2;
    color: #656689;
}

.footer__link:hover {
    text-decoration: underline;
}

.footer__copyright {
    margin: 52px 0 0 22px;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.17;
    color: var(--description);
    opacity: 0.5;
}

/* Animation */
/* Trạng thái ban đầu - ẩn đi */
.hero__content,
.hero__media,
.about__content,
.about__media,
.detail-item,
.detail__media,
.gallery-item {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

/* Khi có class visible thì hiện ra */
.hero__content.visible,
.hero__media.visible,
.about__content.visible,
.about__media.visible,
.detail-item.visible,
.detail__media.visible,
.gallery-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger cho detail-item và gallery-item */
.detail-item:nth-child(2) {
    transition-delay: 0.1s;
}
.detail-item:nth-child(3) {
    transition-delay: 0.2s;
}

.gallery-item:nth-child(2) {
    transition-delay: 0.1s;
}
.gallery-item:nth-child(3) {
    transition-delay: 0.2s;
}
.gallery-item:nth-child(4) {
    transition-delay: 0.3s;
}

/* Reponsive */
@media (max-width: 576px) {
    /* ── CHUNG ── */
    .section-heading {
        font-size: 3.2rem;
    }

    /* ── HEADER ── */
    .header {
        padding: 16px 0;
        top: 0;
    }

    .header__inner {
        flex-wrap: wrap;
        gap: 10px;
    }

    .header-action {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .header-action__link {
        display: none;
    }

    .header-action__btn {
        --height: 40px;
        min-width: 90px;
        font-size: 1.2rem;
    }

    .navbar {
        order: 3;
        width: 100%;
        overflow-x: auto;
    }

    .navbar__list {
        flex-wrap: nowrap;
        gap: 0;
    }

    .navbar__link {
        padding: 8px 12px;
        font-size: 1.2rem;
        white-space: nowrap;
    }

    /* ── HERO ── */
    .hero {
        margin-top: 32px;
    }

    .hero__inner {
        flex-direction: column;
        gap: 40px;
    }

    .hero__media {
        width: 100%;
        padding-bottom: 60px;
        justify-content: center;
    }

    .hero__img-wrap {
        width: 280px;
        height: 350px;
    }

    .hero__img-wrap-small {
        display: none;
    }

    .hero__decor-left {
        left: -20px;
    }

    .hero__decor-right {
        right: -10px;
    }

    .hero__list {
        left: 50%;
        transform: translateX(-50%);
        width: 220px;
    }

    .hero__content {
        padding-left: 0;
        width: 100%;
    }

    .hero__heading {
        font-size: 3.8rem;
    }

    .hero__desc {
        width: 100%;
        font-size: 1.4rem;
    }

    .hero__row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .hero__cta-link {
        margin-left: 0;
    }

    /* ── ABOUT ── */
    .about {
        margin-top: 60px;
    }

    .about__inner {
        grid-template-columns: 1fr;
        row-gap: 48px;
    }

    .about__heading,
    .about__desc,
    .about__desc-bottom,
    .tab__content-desc {
        width: 100%;
    }

    .about__checklist {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 32px;
    }

    .about__check-item {
        min-width: unset;
        font-size: 1.5rem;
    }

    .about__img-wrap {
        width: 100%;
        margin-left: 0;
    }

    .about__img {
        width: 100%;
    }

    .about__card {
        top: auto;
        bottom: 16px;
        left: 16px;
        width: 110px;
        padding: 20px 16px;
    }

    .about__card-title {
        font-size: 3rem;
    }

    .about__media-decor {
        display: none;
    }

    .about__img-wrap-bottom {
        width: 100%;
    }

    .about__img-bottom {
        height: 260px;
    }

    /* Tab */
    .tab__list {
        column-gap: 24px;
    }

    .tab__title {
        font-size: 1.4rem;
    }

    .tab__icon {
        width: 18px;
    }

    /* ── DETAIL ── */
    .detail {
        margin-top: 60px;
        padding: 48px 0 60px;
    }

    .detail__body {
        grid-template-columns: 1fr;
        row-gap: 20px;
    }

    .detail-item {
        width: 100%;
        padding: 20px;
    }

    .detail__media {
        order: -1; /* ảnh lên trên */
        margin-top: 0;
    }

    .detail__media::after {
        left: 10px;
        right: 10px;
        height: 250px;
    }

    .detail__img {
        margin-top: 50px;
    }

    /* ── GALLERY ── */
    .gallery {
        padding: 60px 0 0 0;
    }

    .gallery__list {
        grid-template-columns: 1fr 1fr;
        column-gap: 16px;
        row-gap: 24px;
    }

    .gallery-item__img {
        height: 180px;
    }

    .gallery-item__img-wrap {
        margin: 0 4px;
    }

    .gallery-item__title {
        margin-top: 16px;
        font-size: 1.2rem;
    }

    .gallery-item__name {
        font-size: 1.6rem;
    }

    /* ── FOOTER ── */
    .footer {
        margin-top: 60px;
        background: none;
        background-color: #f1f8e9;
    }

    .footer__inner {
        flex-direction: column;
    }

    .footer__left {
        width: 100%;
        padding: 48px 0 40px;
    }

    .subscribe-section {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }

    .subscribe-section__image {
        height: 250px;
    }

    .subscribe-section__title {
        font-size: 2rem;
    }

    .subscribe-form__submit {
        min-width: 100%;
    }

    .footer__right {
        padding: 0 0 48px;
    }

    .footer__row {
        grid-template-columns: 1fr 1fr;
        gap: 32px 24px;
        margin-left: 0;
    }

    .footer__copyright {
        margin: 32px 0 0 0;
    }
}
