/* ===========================
       DESIGN TOKENS
    =========================== */
:root {
    /* Season palette */
    --clr-spring: #e36757;
    --clr-summer: #75bfa3;
    --clr-autumn: #f0a563;
    --clr-winter: #79add9;
    --clr-allseason: #3e3a39;

    /* Season light backgrounds */
    --bg-spring: #fdf6f4;
    --bg-summer: #f0f9f5;
    --bg-autumn: #fef8ef;
    --bg-winter: #eff4fb;
    --bg-allseason: #f5f3f0;

    /* Common colours */
    --clr-dark: #33322f;
    --clr-cream: #fffcf1;
    --clr-text-muted: #666;
    --clr-border: #c1c1c1;

    /* Typography */
    --font-serif: "Noto Serif JP", serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-serif);
    background: var(--clr-cream);
    color: var(--clr-dark);
    letter-spacing: 0.0075em;
    line-height: 1.7;
}

a:hover {
    opacity: 0.7;
}

.sp-only {
    display: none;

    @media screen and (max-width: 768px) {
        display: block;
    }
}

/* ===========================
       HEADER
    =========================== */
.header {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 1920/1080;
}

.header__img {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.header__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.header__img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.40);
}

.header__content {
    position: relative;
    z-index: 1;
    padding: 80px 40px;
    top: 50%;
    transform: translateY(-50%);
}

.header-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: fit-content;
    margin-inline: auto;
}

.curved-text-wrapper {
    width: 60vw;
    max-width: 880px;
    display: inline-flex;
    align-items: baseline;
    height: 10vw;
    justify-content: center;
}

.curved-text-wrapper svg {
    overflow: visible;
}

.curved-text--top text {
    font-family: var(--font-serif);
    font-size: clamp(24px, calc(-3.5px + 4.58vw), 48px);
    font-weight: 500;
    fill: white;
    letter-spacing: 3px;
}

.curved-text-wrapper+.text-subheading {
    margin-top: clamp(16px, 2.4vw, 34px);
}

.text-subheading {
    font-family: var(--font-serif);
    font-size: clamp(38px, calc(-20.2px + 7.63vw), 90px);
    font-weight: 500;
    line-height: 1.3;
    color: white;
    letter-spacing: 0px;
    text-align: center;
    margin: 0;
}

.text-subheading+.text-heading {
    margin-top: clamp(16px, 2.4vw, 34px);
}

.text-heading+.text-ruled {
    margin-top: clamp(24px, 4.3vw, 62px);
}

.text-heading {
    font-family: var(--font-serif);
    font-size: clamp(45px, calc(-32.2px + 10.02vw), 112px);
    font-weight: 500;
    line-height: 1.1;
    color: white;
    letter-spacing: -1px;
    text-align: center;
    margin: 0;
}

.text-ruled {
    display: inline-block;
    width: 100%;
    padding: 4px 0;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    text-align: center;
    font-family: var(--font-serif);
    font-size: clamp(21px, calc(-10.4px + 4.06vw), 48px);
    font-weight: 500;
    color: white;
    letter-spacing: 3px;
    margin: 0;
}

/* ===========================
       LEAD
    =========================== */
.lead {
    display: grid;
    grid-template-columns: 1fr minmax(0, 1080px) 1fr;
    background: #fff;
}

.lead__inner {
    grid-column: 1 / 3;
    display: flex;
    align-items: center;
    gap: max(5.2%, 60px);
}

.lead__fig {
    flex: 1;
    min-width: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    width: 50%;
    max-width: 800px;
}

.lead__fig img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.lead__body {
    flex-shrink: 0;
    width: 100%;
    max-width: 568px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-weight: bold;
}

.lead__ttl {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.7;
    color: var(--clr-dark);
    letter-spacing: 0.0075em;
}

.lead__desc {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.7;
    color: var(--clr-dark);
    letter-spacing: 0.0075em;
}

.lead__desc-accent {
    color: var(--clr-spring);
}

/* ===========================
       PHOTO STRIP
    =========================== */
.photo-strip {
    overflow: hidden;
    padding: 40px 0;
    background: #fff;
}


.photo-strip__track {
    display: flex;
    gap: 25px;
    width: max-content;
    animation: marquee-scroll 90s linear infinite;
}

/* .photo-strip:hover .photo-strip__track {
    animation-play-state: paused;
} */

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.photo-strip__item {
    flex-shrink: 0;
    width: 420px;
    height: 237px;
    border-radius: 8px;
    overflow: hidden;
}

.photo-strip__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===========================
       SEASON
    =========================== */
.season {
    padding: 80px 0;
    overflow: hidden;
    position: relative;
    background: #fff;
}


/* bleed grid */
.bleed {
    display: grid;
    grid-template-columns: 1fr minmax(0, 1080px) 1fr;
}

.season__header-inner {
    grid-column: 2 / 4;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 60px 24px 0 40px;
    width: 100%;
    position: relative;
}

/* Season colour tokens — inherited by all descendants */
.season--spring {
    --clr-season: var(--clr-spring);
    --bg-season: var(--bg-spring);
}

.season--summer {
    --clr-season: var(--clr-summer);
    --bg-season: var(--bg-summer);
}

.season--autumn {
    --clr-season: var(--clr-autumn);
    --bg-season: var(--bg-autumn);
}

.season--winter {
    --clr-season: var(--clr-winter);
    --bg-season: var(--bg-winter);
}

.season--allseason {
    --clr-season: var(--clr-allseason);
    --bg-season: var(--bg-allseason);
}

.season .season__header-inner {
    background: var(--bg-season);
}

.season--spring .season__header-inner::after,
.season--summer .season__header-inner::after,
.season--autumn .season__header-inner::after,
.season--winter .season__header-inner::after,
.season--allseason .season__header-inner::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 735px;
    bottom: 1px;
    left: 0;
    transform: translate(0, 100%);
}

.season__header-inner:not(.reverse)::after {
    border-bottom-left-radius: 100px;
}

.season__header-inner.reverse::after {
    border-bottom-right-radius: 100px;
}

.season .season__header-inner::after {
    background: var(--bg-season);
}

.season__header-inner.reverse {
    padding-right: 20px;
    padding-left: 0;
    grid-column: 1 / 3;
    justify-self: end;
    text-align: right;
}

.season__title {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 1080px;
}


.season__title-kanji {
    font-family: var(--font-serif);
    font-size: clamp(60px, 8vw, 100px);
    font-weight: 500;
    line-height: 1;
    color: var(--clr-dark);
}

.season .season__title-kanji,
.season .season__title-roman {
    color: var(--clr-season, var(--clr-dark));
}

.season__title-roman {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 500;
    color: var(--clr-dark);
    letter-spacing: 2px;
}


.season__subrow {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    max-width: 1080px;
}

.season__header-inner.reverse .season__subrow {
    flex-direction: row-reverse;
    margin-left: auto;
}

.season__subtitle {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 700;
    color: var(--clr-text-muted);
    line-height: 1.8;
    text-align: center;
}

.season-controls {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}

.season-controls__btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--clr-dark);
    flex-shrink: 0;
    background: none;
    border: none;
    padding: 0;
}

.season-controls__btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.season-controls__btn:hover {
    opacity: 0.5;
}

.season-controls__count {
    font-family: var(--font-serif);
    font-size: 14px;
    color: var(--clr-dark);
    min-width: 48px;
    text-align: center;
    letter-spacing: 1px;
}

.season-controls__count span {
    color: inherit;
    opacity: 0.5;
}

.season .season-controls__btn,
.season .season-controls__count {
    color: var(--clr-season, var(--clr-dark));
}

.season .swiper-season {
    padding-right: 0 !important;
    overflow: visible !important;
    height: 735px;
    padding-top: 90px;
}

/* ===========================
       CARD
    =========================== */
.card {
    background: transparent;
    display: flex;
    flex-direction: column;
}

.card__header {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 50px;
}

.card__badge {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: var(--clr-dark);
    color: #fff;
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 8px 0 8px 0;
}

/* Fallback: bare img (before JS wraps it) */
.card__header>img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    border-radius: 8px 8px 0 0;
}

/* Photo slider inside card header */
.card-photos {
    width: 100%;
    /* height: 230px; */
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.card-photos .swiper-wrapper,
.card-photos .swiper-slide {
    /* height: 100%; */
}

.card-photos .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-photos .swiper-pagination {
    bottom: 8px;
}

.card-photos .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.6;
}

.card-photos .swiper-pagination-bullet-active {
    opacity: 1;
}

.card__title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    box-sizing: border-box;
    background: var(--clr-dark);
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.7;
    padding: 8px 16px;
    border-radius: 0 0 8px 8px;
    text-align: center;
}

.season .card__title {
    background: var(--clr-season, var(--clr-dark));
}

.card__body {
    padding: 32px 4px 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.card__text {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 500;
    color: var(--clr-dark);
    line-height: 1.7;
}

.card__meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px 56px;
}

.card__meta-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.card__meta-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card__meta-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card__meta-text {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 700;
    color: var(--clr-dark);
    white-space: nowrap;
}

/* ===========================
       DISHS / FOOD
    =========================== */
.dishs {
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1080px;
    margin: 0 auto;
}

.stitle {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.stitle__heading {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.7;
    color: var(--clr-dark);
}

.stitle__sub {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 700;
    color: var(--clr-dark);
    margin-top: -12px;
}

.stitle__line {
    width: 160px;
    height: 1px;
    background: var(--clr-dark);
    flex-shrink: 0;
    margin-top: 40px;
}

.stitle__intro {
    font-size: 15px;
    color: var(--clr-text-muted);
    line-height: 1.8;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.tags__item {
    display: flex;
    flex-direction: column;
    width: 320px;
    border-radius: 8px;
    overflow: hidden;
    cursor: default;
}

.tags__item img {
    width: 100%;
    aspect-ratio: 320/173;
    object-fit: cover;
    display: block;
    border-radius: 8px 8px 0 0;
}

.tags__item span {
    background: white;
    color: var(--clr-dark);
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    padding: 16px 10px;
    border-radius: 0 0 8px 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ===========================
       MAP
    =========================== */
.map {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

.map__label {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: var(--clr-dark);
    color: #fff;
    padding: 28px 32px;
    border-radius: 0 0 8px 0;
}

.map__label-title {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.7;
    text-align: center;
}

.map--md {
    height: 360px;
}

.map--lg {
    height: 480px;
}

.map--full {
    height: 694px;
}

.map--flat {
    border-radius: 0;
}

.btn {
    display: inline-flex;
    width: 320px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 28px;
    border-radius: 999px;
    background: var(--clr-dark);
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-family: var(--font-serif);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: opacity 0.2s;
}

.btn__text {
    width: 100%;
    text-align: center;
}

.btn__circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-section {
    background: white;
    padding: 0 0 180px;
}

.map-section__inner {
    max-width: 1080px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

/* ===========================
       FOOTER
    =========================== */
.footer {
    background: var(--clr-cream);
    color: var(--clr-dark);
    padding: 0;
}

.footer__top {
    padding: 57px 40px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.footer__logo img {
    height: 106px;
    width: auto;
    display: block;
    object-fit: contain;
    margin: 0 auto;
}

.footer__info {
    display: flex;
    flex-direction: column;
}

.footer__info p {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 700;
    color: var(--clr-dark);
    line-height: 1.7;
}

.footer__nav {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 12px;
}

.footer__nav-item {
    display: flex;
    align-items: center;
    gap: 0;
}

.footer__nav-item+.footer__nav-item::before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 16px;
    background: var(--clr-border);
    margin: 0 16px;
}

.footer__nav-item a {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 700;
    color: var(--clr-dark);
    text-decoration: none;
    white-space: nowrap;
}

.footer__nav-item a:hover {
    opacity: 0.7;
}

.footer__bottom {
    background: var(--clr-dark);
    padding: 16px 40px;
    text-align: center;
}

.footer__copyright {
    font-size: 12px;
    color: #fff;
    letter-spacing: 0.5px;
}

/* ===========================
       LEAD SECTION WRAPPER
    =========================== */
.lead-section {
    background: #fff;
}

/* ===========================
       PHOTO STRIP OVERRIDE
    =========================== */
.photo-strip--lead {
    background: #fff;
    padding-bottom: 0;
}

/* ===========================
       NAVIGATION
    =========================== */
.nav-circles {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 68px;
    padding: 240px 40px 120px;
    background: #fff;
}

.nav-circles a {
    text-decoration: none;
}

.circle-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.circle-card__img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--clr-season);
}

.circle-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.circle-card:hover .circle-card__img img {
    transform: scale(1.08);
}

.circle-card__text {
    margin-top: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}


.circle-card__title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

/* Circle-card colour tokens */
.circle-card--spring {
    --clr-season: var(--clr-spring);
}

.circle-card--summer {
    --clr-season: var(--clr-summer);
}

.circle-card--autumn {
    --clr-season: var(--clr-autumn);
}

.circle-card--winter {
    --clr-season: var(--clr-winter);
}

.circle-card--all {
    --clr-season: var(--clr-allseason);
}

.circle-card .circle-card__title,
.circle-card .circle-card__sub {
    color: var(--clr-season);
}

.circle-card .circle-card__arrow-head {
    border-color: var(--clr-season);
}

.circle-card__sub {
    font-size: 13px;
    color: #888;
    letter-spacing: 1px;
    margin: 0;
}

.circle-card__arrow {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: arrow-bounce 1.8s ease-in-out infinite;
}

.circle-card__arrow-head {
    width: 12px;
    height: 12px;
    border-right: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
    transform: rotate(45deg);
}



@keyframes arrow-bounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(8px);
        opacity: 0.5;
    }
}


/* ===========================
       MOBILE SIDE NAV BUTTONS
    =========================== */
.swiper-nav-wrap {
    position: relative;
}

.swiper-nav-btn {
    position: absolute;
    z-index: 20;
    top: 225px;
    /* center of card-photos area (padding-top ~60px + img 190px/2) */
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.08);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    padding: 0;
    transition: opacity 0.2s;
}

.swiper-nav-btn:hover {
    opacity: 0.7;
}

.swiper-nav-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--clr-season);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.swiper-nav-btn--prev {
    left: 8px;
}

.swiper-nav-btn--next {
    right: 8px;
}

/* Dishs slider side buttons centered vertically */
.tags-nav-wrap .swiper-nav-btn {
    top: 50%;
}


/* ===========================
       SEASON CARD META ICON — season colour backgrounds
    =========================== */
.season .card__meta-icon--season {
    background: var(--clr-season);
}

/* Reverse-layout season title alignment */
.season__header-inner.reverse .season__title {
    margin-left: auto;
}

/* ===========================
       DISHS SECTION OVERRIDES
    =========================== */
.dishs--page {
    background: var(--clr-cream);
    max-width: 100%;
    padding: 120px 40px 0;
}

.dishs-2 {
    padding-bottom: 120px;
}

.dishs__inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.map-section__btn-row {
    display: flex;
    justify-content: center;
    padding-top: 32px;
}

/* Container đảm bảo SVG co giãn theo chiều rộng màn hình */
.curved-text-wrapper svg {
    width: 100%;
    height: auto;
    display: block;
}

/* ===========================
       Page top button
    =========================== */

 .pageTop a {
     width: 50px;
     height: 50px;
     border-radius: 100%;
     display: flex;
     justify-content: center;
     align-items: center;
     position: fixed;
     right: 20px;
     bottom: 20px;
     z-index: 10;
     rotate: 180deg;
     background-color: white;
     transition: all 0.3s ease, filter 0.3s ease;
     opacity: 0.5;
}
 .pageTop a:hover {
     background-color: var(--main-green);
     filter: drop-shadow(0px 8px 5px #3d260488);
     rotate: 270deg;
     opacity: 1;
}

/* ===========================
       RESPONSIVE MEDIA QUERIES
    =========================== */

/* min-width queries */
@media (min-width: 768px) {

    /* Nav */
    .swiper-nav-btn {
        display: none !important;
    }
}

@media (min-width: 1024px) {

    /* Season — fixed slide width */
    .swiper-season .swiper-slide {
        width: 480px;
    }
}

/* max-width queries, large → small */
@media (max-width: 960px) {

    /* Nav */
    .nav-circles {
        gap: 32px;
        padding: 160px 24px 80px;
    }

    .circle-card__img {
        width: 130px;
        height: 130px;
    }

    .circle-card__title {
        font-size: 18px;
    }
}

@media (max-width: 768px) {

    /* Hero */
    .header__content {
        padding: 32px 24px;
    }

    .curved-text-wrapper {
        /* height: 80px;
        max-width: 480px; */
    }

    .curved-text-wrapper svg {
        height: auto;
    }

    .curved-text--top text {
        font-size: 46px;
    }

    /* Lead */
    .lead__inner {
        flex-direction: column;
        gap: 0;
    }

    .lead__fig {
        width: 100%;
        max-width: 100%;
        padding-inline: 20px;
    }

    .lead__body {
        max-width: 100%;
        padding: 32px 24px 40px;
    }

    .lead__ttl {
        font-size: 26px;
    }

    .lead__desc {
        font-size: 16px;
    }

    /* Photo strip */
    .photo-strip.photo-strip--lead {
        padding: 0;
    }

    .photo-strip__item {
        width: 335px;
        height: 189px;
    }

    /* Nav */
    .circle-card__img {
        width: 148px;
        height: 148px;
    }

    .circle-card {
        position: relative;
    }

    .circle-card__img img {
        filter: brightness(0.7);
    }

    .circle-card__text {
        position: absolute;
        top: 40%;
        --clr-season: white;
    }

    .circle-card__arrow {
        position: absolute;
        bottom: 15%;
    }

    .circle-card .circle-card__arrow-head {
        border-width: 3px;
        border-color: white;
    }

    /* Season */
    .season__title {
        justify-content: center;
    }

    .season__header-inner.reverse {
        padding: 40px 20px 0;
    }

    .season__header-inner {
        padding: 40px 20px 0;
    }


    .season .season__header-inner::after {
        border-radius: unset;
        content: none;
    }

    .season-controls {
        display: none;
    }

    .swiper-nav-wrap {
        padding-inline: 20px;
        position: relative;
        background: var(--bg-season);
    }

    /* Dishs */
    .dishs--page {
        padding: 80px 20px 0;
    }

    .dishs {
        padding: 60px 20px;
    }

    .stitle__heading {
        font-size: 36px;
    }

    .stitle__sub {
        font-size: 24px;
    }

    .tags {
        gap: 20px;
    }

    .tags__item {
        width: calc(50% - 10px);
    }

    /* Map */
    .map--full {
        height: 460px;
    }

    .map__label {
        padding: 12px 20px;
    }

    .map__label-title {
        font-size: 22px;
    }

    .map-section {
        padding-bottom: 80px;
    }

    .dishs .swiper-slide {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 600px) {

    /* Nav */
    .nav-circles>a:nth-child(4) {
        grid-column: 1;
    }

    .nav-circles>a:nth-child(5) {
        grid-column: 2;
    }

    .circle-card__title {
        font-size: 16px;
    }

    .circle-card__sub {
        font-size: 11px;
    }

    .circle-card__arrow {
        margin-top: 8px;
    }
}

@media (max-width: 480px) {

    /* Hero */
    .header {
        aspect-ratio: 3 / 4;
    }

    .header__content {
        padding: 24px 16px;
    }

    .curved-text-wrapper {
        height: 102px;
        max-width: 280px;
    }

    .curved-text--top text {
        font-size: 22px;
    }

    .curved-text-wrapper+.text-subheading {
        margin-top: 10px;
    }

    .text-subheading {
        font-size: 38px;
    }

    .text-subheading+.text-heading {
        margin-top: 0;
    }

    .text-heading {
        font-size: 51px;
    }

    .text-heading+.text-ruled {
        margin-top: 24px;
    }

    .text-ruled {
        font-size: 19px;
    }

    #arc-top {
        /* Thay đổi thông số A (Elliptical Arc)
           Giảm bán kính (350,330 -> 200,150) để tăng độ cong
           Thu hẹp khoảng cách điểm đầu và cuối (40,740 -> 100,680) */
        d: path("M 100,350 A 200,150 0 0,1 680,350");
    }

    .curved-text-wrapper text {
        font-size: 72px;
        /* Có thể tăng size chữ trên mobile nếu cần */
    }

    /* Lead */
    .lead__body {
        padding: 24px 16px 32px;
        gap: 8px;
    }

    .lead__ttl {
        font-size: 26px;
        text-align: center;
    }

    .lead__desc {
        font-size: 15px;
    }

    /* Nav */
    .nav-circles {
        padding: 73px 20px 10px;
    }

    .circle-card__title {
        font-size: 16px;
    }

    /* Season */
    .season {
        padding: 56px 0 0;
    }

    .season__header-inner {
        font-size: 26px;
        text-align: center;
    }

    .season .swiper-nav-btn {
        top: 155px;
    }

    .season__title-kanji {
        font-size: 64px;
    }

    .season__title-roman {
        font-size: 48px;
    }

    .season__subtitle {
        font-size: 26px;
    }

    .season .swiper-season {
        height: auto;
        padding-block: 32px;
    }

    .season--allseason .season__title {
        flex-direction: column;
    }

    .season--allseason .season__title-roman {
        width: max-content;
        margin-left: -16px;
    }

    .season--allseason {
        padding-bottom: 56px;
    }

    /* Cards */
    .card-photos {
        height: auto;
    }

    .card__header {
        padding-bottom: 44px;
    }

    .card__title {
        font-size: 17px;
    }

    .card__body {
        padding-top: 20px;
        gap: 24px;
    }

    .card__text {
        font-size: 14px;
    }

    .card__meta {
        gap: 12px 32px;
    }

    /* Dishs */
    .dishs--page {
        padding: 56px 16px 0;
    }

    .dishs {
        padding: 48px 0;
    }

    .stitle__heading {
        font-size: 28px;
    }

    .stitle__sub {
        font-size: 20px;
    }

    .stitle__line {
        margin-top: 20px;
    }

    .stitle__intro {
        font-size: 14px;
    }

    .tags {
        gap: 16px;
    }

    .tags__item {
        width: 100%;
    }

    .dishs__inner {
        gap: 40px;
    }

    .dishs-2 {
        padding: 16px 0 40px;
    }

    .dishs__inner .swiper-nav-btn {
        background: var(--clr-dark);
        top: 40%;
    }

    .dishs__inner svg {
        stroke: white;
    }

    /* Map */
    .map--full {
        height: 320px;
    }

    .map__label {
        padding: 10px 16px;
        width: 100%;
    }

    .map__label-title {
        font-size: 18px;
    }

    .map-section {
        padding-bottom: 80px;
    }

    .map-section__btn-row {
        padding-top: 28px;
    }

    /* Footer */
    .footer__top {
        padding: 64px 20px 32px;
    }

    .footer__bottom {
        padding: 14px 8px;
    }

    .footer__nav-item a {
        font-size: 14px;
    }

    .footer__nav {
        flex-direction: column;
        gap: 8px;
    }

    .footer__nav-item+.footer__nav-item::before {
        display: none;
    }

    .footer__nav-item {
        border-left: 1px solid var(--clr-border);
        border-right: 1px solid var(--clr-border);
        padding: 2px 20px;
    }
}