.site-header {
position: fixed; top: 0; right: 0; left: 0; z-index: 100; color: var(--white); font-family: "Satoshi Variable", Satoshi, "PingFang SC", "Microsoft YaHei", sans-serif; transition: color 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.site-header__inner {
position: relative; display: grid; grid-template-columns: 200px 1fr auto 132px; grid-template-areas: "logo . utility contact"; column-gap: 10px; align-items: center; width: 100%; height: 94px; padding: 0 30px; border-bottom: 1px solid transparent; background: rgba(255, 255, 255, 0); transition: height 300ms cubic-bezier(0.215, 0.61, 0.355, 1), border-color 300ms cubic-bezier(0.215, 0.61, 0.355, 1), background 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.site-header--no-action .site-header__inner {
grid-template-columns: 200px 1fr auto; grid-template-areas: "logo . utility";
}

.site-header.is-scrolled, .site-header.is-drawer-open {
color: #2B3338;
}

.site-header.is-scrolled .site-header__inner, .site-header.is-drawer-open .site-header__inner {
border-bottom-color: rgba(202, 209, 216, 0.84); background: rgba(255, 255, 255, 0.97);
}

.site-header__brand {
grid-area: logo; display: inline-grid; align-items: center; width: clamp(118px, 10vw, 148px); height: auto; transition: opacity 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.site-header__brand:hover, .site-header__brand:focus-visible {
opacity: 0.62;
}

.site-header .site-logo {
display: block; width: 100%; height: auto; filter: brightness(0) invert(1) drop-shadow(0 1px 12px rgba(0, 0, 0, 0.22)); transition: filter 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.site-header.is-scrolled .site-logo, .site-header.is-drawer-open .site-logo {
filter: none;
}

.site-header__utility {
grid-area: utility; display: flex; align-items: center; justify-self: end; gap: 10px; width: max-content;
}

.site-weather {
display: inline-flex; align-items: center; gap: 4px; width: max-content; min-width: 78px; color: currentColor; font-family: "PingFang SC", "Microsoft YaHei", sans-serif; font-size: 14px; line-height: 22px; white-space: nowrap;
}

.site-weather img {
width: 24px; height: 24px; flex: 0 0 24px; object-fit: contain; transition: filter 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.site-header.is-scrolled .site-weather img, .site-header.is-drawer-open .site-weather img {
filter: brightness(0) saturate(100%) invert(18%) sepia(12%) saturate(559%) hue-rotate(159deg) brightness(94%) contrast(88%);
}

.site-weather__place {
font-weight: 600;
}

.site-weather__label {
font-weight: 500;
}

.site-language {
position: relative; display: inline-flex; align-items: center; min-height: 44px; padding-left: 12px; color: currentColor;
}

.site-language::before {
position: absolute; top: 50%; left: 0; width: 1px; height: 16px; background: currentColor; content: ""; opacity: 0.2; transform: translateY(-50%);
}

.site-language__trigger {
display: inline-flex; align-items: center; gap: 9px; min-height: 44px; padding: 0 2px 0 0; border: 0; color: currentColor; font-size: 13px; font-weight: 500; line-height: 1; list-style: none; cursor: pointer; user-select: none;
}

.site-language__trigger::-webkit-details-marker {
display: none;
}

.site-language__trigger:focus-visible {
outline: 2px solid currentColor; outline-offset: 4px;
}

.site-language__current {
min-width: 46px; white-space: nowrap;
}

.site-language__chevron {
width: 7px; height: 7px; flex: 0 0 7px; margin-top: -4px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: rotate(45deg); transform-origin: 70% 70%; transition: transform 160ms var(--ease);
}

.site-language[open] .site-language__chevron {
transform: translateY(4px) rotate(225deg);
}

.site-language__menu {
position: absolute; top: calc(100% + 8px); right: 0; z-index: 12; display: block; width: 128px; margin: 0; padding: 6px; border: 1px solid rgba(24, 59, 61, 0.13); border-radius: 4px; background: var(--paper); box-shadow: 0 14px 34px rgba(12, 35, 29, 0.16); color: var(--ink); list-style: none; opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-6px); transition: opacity 160ms ease, visibility 160ms ease, transform 160ms var(--ease);
}

.site-language[open] .site-language__menu {
opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
}

.site-language__menu li {
margin: 0; padding: 0;
}

.site-language__option {
display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 40px; padding: 0 10px; border-radius: 3px; color: var(--ink); font-size: 13px; font-weight: 500; line-height: 1.2; transition: background 160ms ease, color 160ms ease;
}

.site-language__option:hover, .site-language__option:focus-visible {
background: rgba(42, 101, 65, 0.09); color: var(--forest); outline: none;
}

.site-language__option:focus-visible {
box-shadow: inset 0 0 0 1px rgba(42, 101, 65, 0.35);
}

.site-language__option.is-active {
background: rgba(42, 101, 65, 0.12); color: var(--forest); font-weight: 600;
}

.site-language__status {
width: 6px; height: 6px; flex: 0 0 6px; border-radius: 50%; background: currentColor; opacity: 0;
}

.site-language__option.is-active .site-language__status {
opacity: 1;
}

.site-header--minimal .site-header__inner {
grid-template-columns: 1fr auto; grid-template-areas: "logo utility";
}

.site-header--minimal .site-header__utility {
justify-self: end;
}

.site-header--minimal .site-language {
padding-left: 0;
}

.site-header--minimal .site-language::before {
display: none;
}

.site-header__nav-group {
position: absolute; top: 50%; left: 50%; display: flex; align-items: center; gap: 14px; width: max-content; transform: translate(-50%, -50%);
}

.site-nav {
display: block;
}

.site-nav__list {
display: flex; justify-content: center; margin: 0; padding: 0; list-style: none;
}

.site-nav__link {
position: relative; display: block; padding: 0 12px; overflow: hidden; color: currentColor; font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.05em; line-height: 1.8; text-align: center; white-space: nowrap;
}

.site-nav__link::before, .site-nav__link::after, .site-action__content::before, .site-action__content::after {
display: block; width: 100%; transition: transform 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.site-nav__link::before {
content: attr(data-naben); transform: translateY(0);
}

.site-nav__link::after {
position: absolute; top: 0; left: 0; content: attr(data-nabja); transform: translateY(100%);
}

.site-nav__link:hover::before, .site-nav__link:focus-visible::before, .site-action:hover .site-action__content::before, .site-action:focus-visible .site-action__content::before {
transform: translateY(-100%);
}

.site-nav__link:hover::after, .site-nav__link:focus-visible::after, .site-action:hover .site-action__content::after, .site-action:focus-visible .site-action__content::after {
transform: translateY(0);
}

.site-nav__text, .site-action__text {
display: none;
}

.site-action {
grid-area: contact; display: inline-block; width: 132px; padding: 5px 12px; overflow: hidden; border-radius: 34px; background: #111111; color: var(--white); transition: background 300ms cubic-bezier(0.215, 0.61, 0.355, 1), color 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.site-action:hover, .site-action:focus-visible {
background: var(--white); color: #111111;
}

.site-action__content {
position: relative; overflow: hidden; font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.02em; line-height: 1.8; text-align: center; white-space: nowrap;
}

.site-action__content::before {
content: attr(data-naben); transform: translateY(0);
}

.site-action__content::after {
position: absolute; top: 0; left: 0; content: attr(data-nabja); transform: translateY(100%);
}

.site-menu-toggle {
grid-area: hamburger; display: none; position: relative; width: 20px; height: 100%; padding: 0; border: 0; background: transparent; color: currentColor; cursor: pointer;
}

.site-menu-toggle span, .site-menu-toggle::before, .site-menu-toggle::after {
position: absolute; top: 50%; left: 0; width: 20px; height: 1px; background: currentColor; content: ""; transform-origin: center; transition: transform 700ms cubic-bezier(0.19, 1, 0.22, 1), opacity 300ms ease;
}

.site-menu-toggle::before {
transform: translateY(-6px);
}

.site-menu-toggle::after {
transform: translateY(6px);
}

.site-menu-toggle[aria-expanded="true"]::before {
transform: rotate(22deg);
}

.site-menu-toggle[aria-expanded="true"] span {
opacity: 0; transform: scaleX(0);
}

.site-menu-toggle[aria-expanded="true"]::after {
transform: rotate(-22deg);
}

.site-drawer {
position: fixed; inset: 0; z-index: 90; overflow-y: auto; padding: 132px 24px 54px; background: radial-gradient(rgba(43, 51, 56, 0.08) 1px, transparent 1px) 0 0 / 22px 22px, #E5EAEF; color: #2B3338; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 360ms cubic-bezier(0.215, 0.61, 0.355, 1), visibility 360ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.site-drawer.is-open {
opacity: 1; visibility: visible; pointer-events: auto;
}

.site-drawer__list {
display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 60px; width: min(100%, 680px); margin: 0 auto; padding: 0; list-style: none;
}

.site-drawer__link {
display: flex; justify-content: space-between; gap: 24px; min-height: 56px; padding: 0 0 18px; border-bottom: 1px solid rgba(146, 157, 172, 0.3); color: #2B3338; transition: color 300ms cubic-bezier(0.215, 0.61, 0.355, 1), border-color 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.site-drawer__link:hover, .site-drawer__link:focus-visible {
border-color: rgba(146, 157, 172, 0.7); color: #929DAC;
}

.site-drawer__primary {
font-size: clamp(1.25rem, 4vw, 1.5rem); font-weight: 400; line-height: 1.15;
}

.site-drawer__secondary {
padding-top: 0.4em; font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.05em; line-height: 1.4; text-align: right;
}

.site-drawer__action {
display: flex; width: max-content; min-height: 36px; align-items: center; gap: 10px; margin: 40px auto 0; padding: 9px 17px; border-radius: 40px; background: #2B3338; color: var(--white); font-size: 0.8125rem; font-weight: 500; line-height: 1; transition: background 300ms cubic-bezier(0.215, 0.61, 0.355, 1), color 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.site-drawer__action::after {
width: 8px; height: 8px; border-top: 1px solid; border-right: 1px solid; content: ""; transform: rotate(45deg);
}

.site-drawer__action:hover, .site-drawer__action:focus-visible {
background: var(--white); color: #2B3338;
}

.site-drawer__footer {
display: flex; align-items: center; justify-content: center; gap: 24px; width: min(100%, 680px); margin: 40px auto 0;
}

.site-drawer__footer .site-drawer__action {
margin: 0;
}

.site-language--drawer {
display: none;
}

.site-language--drawer::before {
display: none;
}

.site-language__label {
font-size: 13px; font-weight: 500;
}

.site-language__value {
display: inline-flex; align-items: center; gap: 9px;
}

.page-hero {
position: relative; z-index: 0; height: 500px; overflow: hidden; background: var(--forest-deep); color: var(--white); isolation: isolate;
}

.page-hero::after {
position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(8, 27, 20, 0.58) 0%, rgba(8, 27, 20, 0.18) 48%, rgba(8, 27, 20, 0.1) 100%), linear-gradient(0deg, rgba(8, 27, 20, 0.3) 0%, rgba(8, 27, 20, 0.06) 62%); content: ""; pointer-events: none;
}

.page-hero__media {
position: absolute; top: -18%; right: 0; left: 0; z-index: 0; height: 118%; overflow: hidden; pointer-events: none; user-select: none; will-change: transform;
}

.page-hero__media img {
width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0.92; transform: scale(1.02);
}

.page-hero__front {
position: relative; z-index: 2; display: flex; width: 100%; height: 100%; align-items: flex-start; padding-top: 187px; pointer-events: none;
}

.page-hero__copy {
width: 100%; padding: 0 clamp(64px, 8.6vw, 124px);
}

.page-hero__eyebrow {
margin: 0; color: rgba(255, 255, 255, 0.68); font-size: 24px; font-weight: 400; letter-spacing: 0; line-height: 1;
}

.page-hero h1 {
max-width: 720px; margin: 0; color: var(--white); font-size: 52px; font-weight: 500; letter-spacing: 0; line-height: 1.5; text-wrap: pretty;
}

.page-hero__lead {
position: relative; width: min(620px, calc(100% - 50px)); margin: 23px 0 0 50px; padding-left: 18px; color: rgba(255, 255, 255, 0.88); font-size: 16px; font-weight: 400; line-height: 1.8; text-wrap: pretty;
}

.page-hero__lead::before {
position: absolute; top: 9px; bottom: 9px; left: 0; width: 1px; background: rgba(255, 255, 255, 0.42); content: ""; pointer-events: none;
}

.page-hero__eyebrow, .page-hero h1 {
filter: blur(8px); opacity: 0; animation: page-hero-title-in 1600ms var(--ease) forwards; will-change: filter, opacity;
}

.page-hero h1 {
animation-delay: 140ms;
}

@keyframes page-hero-title-in {
to { filter: blur(0); opacity: 1; }
}

.spot-card {
display: block; width: 100%; min-width: 0; border-radius: 6px; color: inherit; text-decoration: none;
}

.spot-card:focus-visible {
outline: 2px solid var(--forest); outline-offset: 8px;
}

.spot-card__media {
display: flex; width: 100%; aspect-ratio: 376 / 250; overflow: hidden; border-radius: 6px; background: var(--paper-warm);
}

.spot-card__media img {
display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 420ms var(--ease);
}

.spot-card__placeholder {
display: grid; width: 100%; height: 100%; place-items: center; color: var(--ink-soft); font-size: 14px;
}

.spot-card__media img[hidden], .spot-card__placeholder[hidden] {
display: none;
}

.spot-card__category {
width: max-content; max-width: 100%; margin: 15px 0 0; padding: 3px 18px; border-radius: 30px; background: rgba(24, 59, 61, 0.72); color: var(--white); font-size: 12px; font-weight: 600; letter-spacing: 0.04em; line-height: 1.5;
}

.spot-card__title {
margin: 4px 0 0; color: var(--forest-deep); font-size: clamp(20px, 1.8vw, 26px); font-weight: 520; letter-spacing: 0; line-height: 1.4; text-wrap: pretty; transition: color 180ms var(--ease);
}

.spot-card__summary {
margin: 8px 0 0; color: var(--ink-soft); font-size: 15px; font-weight: 400; letter-spacing: 0; line-height: 1.75; text-wrap: pretty;
}

.spot-card:hover .spot-card__media img, .spot-card:focus-visible .spot-card__media img {
transform: scale(1.035);
}

.spot-card:hover .spot-card__title, .spot-card:focus-visible .spot-card__title {
color: var(--forest);
}

@media (max-width: 1024px) {
.spot-card__title {
margin-top: 5px; font-size: 18px;
}
}

@media (max-width: 960px) {
.spot-card__category {
margin-top: 16px; padding: 2px 15px 3px; font-size: 10px;
}
}

@media (max-width: 768px) {
.spot-card__media {
aspect-ratio: 327 / 217;
}

.spot-card__summary {
margin-top: 6px; font-size: 14px; line-height: 1.7;
}
}

.site-footer {
position: relative; background: var(--forest); color: var(--white);
}

.site-footer__inner {
width: var(--page-width); margin: 0 auto; padding: 68px 0 30px;
}

.footer-top {
display: grid; grid-template-columns: minmax(260px, 1fr) auto auto; gap: clamp(38px, 6vw, 92px); align-items: start;
}

.site-footer--english .footer-top {
grid-template-columns: minmax(260px, 1fr) auto;
}

.footer-logo {
display: block; width: 190px; height: auto; aspect-ratio: 450 / 200; filter: brightness(0) invert(1);
}

.footer-tagline {
max-width: 220px; margin: 18px 0 0; color: rgba(255, 255, 255, 0.78); font-size: 15px;
}

.footer-button {
display: inline-grid; min-height: 38px; place-items: center; margin-top: 18px; padding: 0 18px; border-radius: 999px; background: var(--white); color: var(--forest-deep); font-size: 14px; font-weight: 600;
}

.footer-qr-group {
display: flex; gap: 16px;
}

.footer-dynamic-state {
align-self: center; max-width: 220px; margin: 0; color: rgba(255, 255, 255, 0.72); font-size: 13px; line-height: 1.6;
}

.footer-qr {
width: 104px;
}

.footer-qr__media {
overflow: hidden; border-radius: 6px; background: var(--white);
}

.footer-qr img {
width: 100%; aspect-ratio: 1; object-fit: contain;
}

.footer-qr p {
margin: 9px 0 0; color: rgba(255, 255, 255, 0.82); font-size: 13px; line-height: 1.5;
}

.footer-column h2 {
margin: 0 0 13px; font-size: 16px; font-weight: 600;
}

.footer-column a {
display: block; width: max-content; max-width: 100%; margin-top: 10px; color: rgba(255, 255, 255, 0.82); font-size: 14px;
}

.footer-column a:hover, .footer-column a:focus-visible {
color: var(--white); text-decoration: underline; text-underline-offset: 4px;
}

.footer-contact {
display: grid; gap: 6px; margin-top: 20px; color: rgba(255, 255, 255, 0.82); font-size: 13px; line-height: 1.6;
}

.footer-contact p {
margin: 0;
}

.footer-contact a {
display: inline; width: auto; margin: 0;
}

.footer-bottom {
display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-legal {
display: flex; flex-wrap: wrap; gap: 10px 17px; margin: 0; padding: 0; list-style: none; color: rgba(255, 255, 255, 0.74); font-size: 13px;
}

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

.footer-social a {
display: grid; width: 24px; height: 24px; place-items: center; opacity: 1; transition: opacity 160ms ease, transform 160ms ease;
}

.footer-social a:hover, .footer-social a:focus-visible {
opacity: 0.7; transform: translateY(-1px);
}

.footer-social img {
width: 24px; height: 24px; filter: brightness(0) invert(1);
}

@media (max-width: 1120px) {
.footer-top {
grid-template-columns: 1fr auto;
}

.footer-column {
grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 8px 22px;
}

.footer-column h2 {
width: 100%; margin-bottom: 2px;
}

.footer-column a {
margin-top: 0;
}
}

@media (max-width: 1439.98px) {
.site-header__inner {
grid-template-columns: 1fr auto 132px 20px; grid-template-areas: "logo utility contact hamburger"; gap: 15px; height: 72px;
}

.site-header--no-action .site-header__inner {
grid-template-columns: 1fr auto 20px; grid-template-areas: "logo utility hamburger";
}

.site-header__nav-group {
display: none;
}

.site-menu-toggle {
display: block; height: 72px;
}
}

@media (max-width: 980px) {
.site-header__brand {
width: 104px;
}
}

@media (max-width: 768px) {
.site-header__inner {
height: 72px; padding: 0 20px;
}

.page-hero {
height: min(620px, calc(100svh - 64px)); min-height: 560px;
}

.page-hero::after {
background: linear-gradient(0deg, rgba(8, 27, 20, 0.7) 0%, rgba(8, 27, 20, 0.12) 62%), linear-gradient(90deg, rgba(8, 27, 20, 0.4), rgba(8, 27, 20, 0.08));
}

.page-hero__media img {
object-position: center;
}

.page-hero__front {
align-items: flex-end; padding: 0 0 76px;
}

.page-hero__copy {
padding: 0 24px;
}

.page-hero__eyebrow {
font-size: 15px; line-height: 1.5;
}

.page-hero h1 {
margin-top: 10px; font-size: 32px;
}

.page-hero__lead {
width: calc(100% - 20px); max-width: none; margin: 8px 0 0 20px; padding-left: 20px; font-size: 14px;
}

.page-hero__lead::before {
top: 5px; bottom: 5px;
}
}

@media (max-width: 700px) {
.site-header__inner {
grid-template-columns: 1fr auto 132px 20px; grid-template-areas: "logo utility contact hamburger";
}

.site-header--no-action .site-header__inner {
grid-template-columns: 1fr auto 20px; grid-template-areas: "logo utility hamburger";
}

.site-weather {
display: none;
}

.site-header--minimal .site-header__inner {
grid-template-columns: 1fr auto; grid-template-areas: "logo utility";
}
}

@media (max-width: 620px) {
.site-drawer {
padding: 78px 20px 20px;
}

.footer-top {
grid-template-columns: 1fr; gap: 38px;
}

.footer-qr-group {
gap: 14px;
}

.footer-qr {
width: 112px;
}

.footer-column {
display: block;
}

.footer-column a {
margin-top: 10px;
}

.footer-bottom {
align-items: flex-start; margin-top: 38px;
}
}

@media (max-width: 575.98px) {
.site-header__inner {
grid-template-columns: 1fr 20px; grid-template-areas: "logo hamburger"; height: 64px; padding: 0 15px;
}

.site-header--no-action .site-header__inner {
grid-template-columns: 1fr 20px; grid-template-areas: "logo hamburger";
}

.site-action, .site-header__utility {
display: none;
}

.site-header--minimal .site-header__inner {
grid-template-columns: 1fr auto; grid-template-areas: "logo utility";
}

.site-header--minimal .site-header__utility {
display: flex;
}

.site-header__brand {
width: 132px;
}

.site-menu-toggle {
height: 64px;
}

.site-drawer {
padding-top: 92px;
}

.site-drawer__list {
grid-template-columns: 1fr; gap: 20px;
}

.site-drawer__footer {
align-items: stretch; flex-direction: column; gap: 18px; margin-top: 30px;
}

.site-language--drawer {
display: block; width: 100%; padding-left: 0; border-left: 0; border-bottom: 1px solid rgba(146, 157, 172, 0.3);
}

.site-language--drawer .site-language__trigger {
justify-content: space-between; width: 100%; min-height: 48px; padding: 0 2px;
}

.site-language--drawer .site-language__trigger:focus-visible {
outline: 0; box-shadow: inset 0 -2px rgba(42, 101, 65, 0.55);
}

.site-language--drawer .site-language__current {
min-width: auto;
}

.site-language--drawer .site-language__menu {
position: static; width: 100%; margin: 0 0 10px; padding: 5px; border-color: rgba(24, 59, 61, 0.12); background: rgba(247, 246, 241, 0.7); box-shadow: none; transform: translateY(-4px);
}

.site-language--drawer[open] .site-language__menu {
transform: translateY(0);
}

.site-language--drawer .site-language__option {
min-height: 44px; padding: 0 12px;
}
}

@media (max-width: 520px) {
.site-header__brand {
width: 88px;
}
}

@media (prefers-reduced-motion: reduce) {
.site-language__chevron, .site-language__menu, .site-language__option {
transition: none;
}

.spot-card__media img, .spot-card__title {
transition: none;
}

.spot-card:hover .spot-card__media img, .spot-card:focus-visible .spot-card__media img {
transform: none;
}

.page-hero__media {
transform: none !important; will-change: auto;
}

.page-hero__eyebrow, .page-hero h1 {
filter: none; opacity: 1; animation: none; will-change: auto;
}
}
