:root {
  --ink: #183a2d;
  --deep: #0c251d;
  --red: #9b3b27;
  --cream: #f4f0e6;
  --paper: #faf8f1;
  --line: rgba(24, 58, 45, .16);
  --serif: "Noto Serif SC", "Songti SC", SimSun, serif;
  --sans: "Noto Sans SC", "Microsoft YaHei", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); }
body.is-intro { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
body.page-shell { animation: page-load .8s cubic-bezier(.16,1,.3,1) both; }
@keyframes page-load { from { opacity: 0; } to { opacity: 1; } }

.intro {
  position: fixed; inset: 0; z-index: 10; overflow: hidden; background: #000;
  transition: opacity 1.1s cubic-bezier(.77,0,.18,1), visibility 1.1s;
}
.intro.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.intro__art { position: absolute; inset: 0; overflow: hidden; background: #000; }
.intro__base, .intro__layer, .intro__final {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain;
  object-position: center; pointer-events: none;
}
.intro__layer { opacity: 0; transform: translateX(-7vw) scale(.9, .96) rotate(-1deg); transform-origin: center; will-change: transform, opacity; }
.intro__final { opacity: 0; transform: scale(1.035); }
.intro__final { will-change: transform, opacity; }
.intro__veil { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(245,244,231,.08), transparent 50%, rgba(12,37,29,.04)); pointer-events: none; }
.intro__caption { position: absolute; left: 5vw; bottom: 7vh; color: var(--ink); display: flex; flex-direction: column; gap: 8px; opacity: 0; animation: caption-in 1s 4.8s both; }
.intro__eyebrow { font-size: 10px; letter-spacing: .28em; font-weight: 700; }
.intro__hint { font: 600 14px var(--serif); letter-spacing: .08em; }
.intro__skip { position: absolute; right: 5vw; bottom: 7vh; border: 0; background: transparent; font-size: 11px; letter-spacing: .14em; cursor: pointer; opacity: 0; animation: caption-in 1s 4.8s both; }
.intro__skip span { margin-left: 10px; font-size: 17px; }
.layer--bird { animation: layer-in 1.35s .35s cubic-bezier(.16,1,.3,1) forwards; }
.layer--flower { animation: layer-in 1.35s 1.05s cubic-bezier(.16,1,.3,1) forwards; }
.layer--note { animation: layer-in 1.35s 1.75s cubic-bezier(.16,1,.3,1) forwards; }
.layer--berry { animation: layer-in 1.35s 2.45s cubic-bezier(.16,1,.3,1) forwards; }
.layer--deer { animation: layer-in 1.35s 3.15s cubic-bezier(.16,1,.3,1) forwards; }
.intro__final { animation: final-in 1.9s 4.15s cubic-bezier(.16,1,.3,1) forwards; }
@keyframes layer-in {
  0% { opacity: 0; transform: translateX(-7vw) scale(.9, .96) rotate(-1deg); }
  42% { opacity: 1; transform: translateX(1.5vw) scale(1.06, .94) rotate(.7deg); }
  61% { opacity: 1; transform: translateX(-.85vw) scale(.96, 1.045) rotate(-.45deg); }
  77% { opacity: 1; transform: translateX(.4vw) scale(1.025, .985) rotate(.2deg); }
  90% { opacity: 1; transform: translateX(-.14vw) scale(.992, 1.008) rotate(-.06deg); }
  100% { opacity: 1; transform: translateX(0) scale(1, 1) rotate(0); }
}
@keyframes final-in {
  0% { opacity: 0; transform: scale(1.035, .975); }
  45% { opacity: 1; transform: scale(.985, 1.015); }
  70% { opacity: 1; transform: scale(1.008, .994); }
  88%, 100% { opacity: 1; transform: scale(1, 1); }
}
@keyframes caption-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.site { opacity: 0; transform: translateY(20px); transition: opacity 1s 0.55s, transform 1s .55s; }
.site.is-ready { opacity: 1; transform: none; }
.topbar { height: 86px; padding: 0 5vw; display: flex; align-items: center; justify-content: space-between; position: absolute; top: 0; width: 100%; z-index: 2; color: white; }
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: 200px; }
.brand__mark { width: 34px; height: 34px; border: 1px solid currentColor; border-radius: 50%; display: grid; place-items: center; font: 700 16px var(--serif); }
.brand strong { display: block; font: 700 17px var(--serif); letter-spacing: .12em; }
.brand small { display: block; margin-top: 2px; font-size: 7px; letter-spacing: .12em; opacity: .8; }
.nav { display: flex; gap: 32px; font-size: 12px; }
.nav a { position: relative; opacity: .76; transition: opacity .2s; }
.nav a:hover, .nav a.is-active { opacity: 1; }
.nav a::before { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: currentColor; transition: right .35s cubic-bezier(.16,1,.3,1); }
.nav a:hover::before { right: 0; }
.nav a.is-active::after { content: ""; position: absolute; width: 4px; height: 4px; border-radius: 50%; background: #e9c497; left: 50%; bottom: -11px; animation: nav-dot-in .4s cubic-bezier(.16,1,.3,1) both; }
@keyframes nav-dot-in { from { opacity: 0; transform: translateY(-4px) scale(.5); } to { opacity: 1; transform: none; } }
.topbar__cta { font-size: 11px; border-bottom: 1px solid rgba(255,255,255,.6); padding-bottom: 8px; }
.topbar__cta span { margin-left: 12px; font-size: 15px; }

.hero { min-height: 760px; height: 100vh; position: relative; color: white; overflow: hidden; }
.hero__image { position: absolute; inset: 0; background: url('img/DSCF0157.JPG') center 56% / cover; transform: scale(1.04); animation: hero-drift 16s ease-out forwards; }
.hero__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,34,25,.76), rgba(10,36,27,.2) 58%, rgba(10,36,27,.1)), linear-gradient(0deg, rgba(7,28,22,.45), transparent 36%); }
.hero__content { position: absolute; left: 11vw; bottom: 18vh; }
.kicker { font-size: 11px; letter-spacing: .2em; margin: 0 0 22px; font-weight: 700; }
.kicker--green { color: #ae442d; }
.hero h1, h2 { margin: 0; font: 600 clamp(42px, 6vw, 88px)/1.2 var(--serif); letter-spacing: .02em; }
.hero h1 em, h2 em, blockquote em { color: #d8995e; font-style: normal; }
.hero__desc { margin: 26px 0 34px; color: rgba(255,255,255,.82); font-size: 15px; line-height: 2; }
.button { display: inline-flex; align-items: center; gap: 24px; padding: 14px 19px; font-size: 11px; letter-spacing: .1em; transition: transform .2s, background .2s; }
.button:hover { transform: translateY(-3px); }
.button span { font-size: 18px; line-height: 0; }
.button--light { color: white; border: 1px solid rgba(255,255,255,.65); }
.button--dark { color: var(--paper); background: var(--ink); }
.hero__rail { position: absolute; right: 5vw; bottom: 8vh; display: flex; align-items: center; gap: 13px; font-size: 10px; letter-spacing: .14em; writing-mode: vertical-rl; }
.hero__rail i { width: 1px; height: 52px; background: rgba(255,255,255,.65); }
.hero__scroll { position: absolute; bottom: 8vh; left: 50%; transform: translateX(-50%); font-size: 10px; letter-spacing: .15em; opacity: .8; }
.hero__scroll span { margin-left: 12px; font-size: 16px; }
@keyframes hero-drift { to { transform: scale(1); } }

.intro-copy, .wander, .gallery, .visit { padding: 140px 11vw; }
.section-label { font-size: 10px; font-weight: 700; letter-spacing: .25em; color: rgba(24,58,45,.48); }
.intro-copy { display: grid; grid-template-columns: 17% 43% 40%; gap: 0; align-items: start; }
.intro-copy h2 { font-size: clamp(40px, 5.7vw, 78px); }
.intro-copy h2 span { color: #ae442d; }
.intro-copy__body { padding: 38px 12% 0 11%; color: #59675d; font-size: 14px; line-height: 2.15; }
.intro-copy__body p { margin: 0 0 17px; }
.text-link { display: inline-block; margin-top: 20px; color: var(--red); font-size: 12px; font-weight: 700; border-bottom: 1px solid rgba(155,59,39,.4); padding-bottom: 8px; }
.text-link span { margin-left: 20px; font-size: 16px; }

.stats-band { background: var(--ink); color: white; padding: 54px 11vw; display: grid; grid-template-columns: repeat(4, 1fr); }
.stats-band > div { padding-left: 28px; border-left: 1px solid rgba(255,255,255,.18); }
.stats-band strong { display: block; font: 500 clamp(36px, 4vw, 56px) var(--serif); }
.stats-band strong span { font-size: .45em; color: #e4aa73; margin-left: 4px; }
.stats-band small { display: block; margin-top: 7px; color: rgba(255,255,255,.6); font-size: 11px; }

.wander { background: #e9e3d5; }
.wander__header, .gallery__header { display: flex; justify-content: space-between; align-items: end; gap: 12%; }
.wander h2, .gallery h2 { font-size: clamp(38px, 5vw, 70px); }
.wander h2 em, .gallery h2 em { color: var(--red); }
.wander__lead, .gallery__header > p { max-width: 280px; color: #697266; font-size: 13px; line-height: 2; }
.route { position: relative; margin-top: 88px; display: grid; grid-template-columns: 1.2fr .8fr 1fr; gap: 24px; align-items: end; }
.route__line { position: absolute; left: 0; right: 0; top: 42%; border-top: 1px dashed rgba(24,58,45,.38); }
.route-card { position: relative; z-index: 1; }
.route-card--small { margin-bottom: 80px; }
.route-card__photo { height: 300px; background-size: cover; background-position: center; filter: saturate(.85); }
.route-card__photo, .visit__image, .page-hero { transition: background-position 1.2s cubic-bezier(.16,1,.3,1); }
.route-card:hover .route-card__photo { background-position: 52% 46%; }
.route-card--large .route-card__photo { height: 390px; }
.route-card--wide .route-card__photo { height: 260px; }
.photo--stone { background-image: url('img/DSCF0123.jpg'); }
.photo--lamp { background-image: url('img/DSCF0110.jpg'); }
.photo--mountain { background-image: url('img/DSCF0293.jpg'); }
.route-card__content { padding: 18px 4px 0; position: relative; }
.route-card__content > span { font-size: 9px; color: #a64a34; letter-spacing: .14em; }
.route-card h3 { margin: 9px 0 8px; font: 600 23px var(--serif); }
.route-card p { margin: 0; max-width: 230px; color: #737a70; font-size: 12px; line-height: 1.8; }
.route-card a { position: absolute; right: 5px; top: 22px; color: var(--red); font-size: 22px; }

.quote-section { min-height: 650px; position: relative; color: white; display: grid; grid-template-columns: 50% 50%; }
.quote-section__image { background: linear-gradient(90deg, rgba(5,20,15,.08), rgba(5,20,15,.3)), url('img/DSCF0293.jpg') center / cover; }
.quote-section__text { background: var(--deep); padding: 12vw 10vw; display: flex; flex-direction: column; justify-content: center; }
.section-label--light { color: rgba(255,255,255,.5); }
blockquote { margin: 45px 0 28px; font: 600 clamp(32px, 4.4vw, 64px)/1.45 var(--serif); }
.quote-section__line { width: 36px; border-top: 1px solid #d8995e; }
.quote-section small { margin-top: 18px; font-size: 11px; opacity: .6; letter-spacing: .14em; }

.gallery { background: var(--paper); }
.gallery__header { align-items: start; }
.gallery__header > p { padding-top: 34px; }
.gallery-grid { margin-top: 76px; display: grid; grid-template-columns: 1fr 1.42fr 1fr; grid-template-rows: 280px 340px; gap: 22px; }
.gallery-item { position: relative; overflow: hidden; margin: 0; }
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.6,.2,1); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item figcaption { position: absolute; left: 17px; bottom: 16px; color: white; text-shadow: 0 1px 6px rgba(0,0,0,.4); font: 600 14px var(--serif); }
.gallery-item figcaption span { display: inline-block; margin-right: 13px; font: 10px var(--sans); opacity: .8; }

.visit { display: grid; grid-template-columns: 1fr 1fr; gap: 12%; align-items: center; background: #e8e1d3; }
.visit h2 { font-size: clamp(42px, 5.5vw, 78px); }
.visit h2 em { color: var(--red); }
.visit__copy > p:not(.kicker) { max-width: 380px; margin: 30px 0 22px; color: #697266; font-size: 14px; line-height: 2.05; }
.visit__details { display: flex; flex-direction: column; gap: 10px; margin: 25px 0 32px; color: var(--ink); font-size: 11px; }
.visit__image { min-height: 580px; background: url('img/DSCF0157.JPG') center / cover; }
.footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 28px 5vw; background: var(--deep); color: rgba(255,255,255,.62); font-size: 10px; letter-spacing: .08em; }
.brand--footer { color: white; }

.js-reveal { opacity: 1; transform: none; }
.js-ready .js-reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .9s cubic-bezier(.16,1,.3,1); transition-delay: var(--reveal-delay, 0ms); }
.js-ready .js-reveal.is-visible { opacity: 1; transform: none; }
.js-ready .js-reveal--image { transform: translateY(24px) scale(.985); }
.js-ready .js-reveal--image.is-visible { transform: none; }
.page-card, .gallery-item, .hotel-grid img { transition: box-shadow .35s ease, transform .5s cubic-bezier(.16,1,.3,1); }
.page-card:hover { box-shadow: 0 18px 35px rgba(24,58,45,.12); transform: translateY(-5px); }
.hotel-grid img:hover { transform: scale(.985); }
.text-link { transition: color .25s, border-color .25s, padding-left .25s; }
.text-link:hover { color: #c05c3b; border-color: currentColor; padding-left: 6px; }
.page-hero__content .kicker { animation: hero-copy-in .9s .18s cubic-bezier(.16,1,.3,1) both; }
.page-hero__content h1 { animation: hero-copy-in 1s .28s cubic-bezier(.16,1,.3,1) both; }
.page-hero__content p:last-child { animation: hero-copy-in .9s .42s cubic-bezier(.16,1,.3,1) both; }
@keyframes hero-copy-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

@media (max-width: 760px) {
  .intro__caption { left: 7vw; bottom: 5vh; }
  .intro__skip { right: 7vw; bottom: 5vh; }
  .intro__base, .intro__layer, .intro__final { object-position: 48% center; }
  .topbar { height: 72px; padding: 0 6vw; }
  .brand { min-width: 0; }
  .brand strong { font-size: 15px; }
  .brand small { display: none; }
  .brand__mark { width: 30px; height: 30px; }
  .nav { display: none; }
  .topbar__cta { font-size: 10px; }
  .hero { min-height: 650px; height: 90svh; }
  .hero__image { background-position: 60% center; }
  .hero__content { left: 8vw; bottom: 13vh; }
  .hero h1 { font-size: 50px; }
  .hero__desc { font-size: 13px; }
  .hero__rail { display: none; }
  .hero__scroll { left: auto; right: 8vw; transform: none; bottom: 5vh; }
  .intro-copy, .wander, .gallery, .visit { padding: 82px 8vw; }
  .intro-copy { display: block; }
  .intro-copy__main { margin-top: 40px; }
  .intro-copy__body { padding: 30px 0 0; }
  .stats-band { padding: 38px 8vw; grid-template-columns: 1fr 1fr; gap: 30px 0; }
  .stats-band > div { padding-left: 18px; }
  .stats-band strong { font-size: 38px; }
  .wander__header, .gallery__header { display: block; }
  .wander__lead, .gallery__header > p { padding: 0; margin-top: 26px; }
  .route { margin-top: 56px; display: block; }
  .route__line { display: none; }
  .route-card, .route-card--small { margin: 0 0 46px; }
  .route-card__photo, .route-card--large .route-card__photo, .route-card--wide .route-card__photo { height: 270px; }
  .quote-section { display: block; }
  .quote-section__image { height: 44vh; min-height: 280px; }
  .quote-section__text { min-height: 470px; padding: 70px 8vw; }
  .gallery-grid { margin-top: 50px; grid-template-columns: 1fr 1fr; grid-template-rows: 260px 180px 220px; gap: 12px; }
  .gallery-item--tall { grid-row: span 2; }
  .gallery-item--wide { grid-column: auto; }
  .gallery-item figcaption { left: 10px; bottom: 10px; font-size: 12px; }
  .visit { display: block; }
  .visit__image { min-height: 380px; margin-top: 50px; }
  .footer { align-items: flex-start; flex-direction: column; padding: 30px 8vw; }
}

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

/* Shared layouts for the standalone section pages. */
.page-shell { min-height: 100vh; background: var(--paper); }
.page-topbar { position: relative; color: var(--ink); border-bottom: 1px solid var(--line); }
.page-topbar .nav { flex-wrap: wrap; justify-content: center; gap: 18px; }
.page-topbar .nav a.is-active::after { background: var(--red); }
.page-topbar .topbar__cta { border-color: rgba(24,58,45,.45); }
.page-topbar .brand__mark { border-color: var(--ink); }
.page-hero { min-height: 460px; padding: 104px 11vw 78px; background: var(--ink); color: white; display: flex; align-items: end; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: 0; background-position: center; background-repeat: no-repeat; background-size: cover; opacity: .34; mix-blend-mode: screen; pointer-events: none; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: 0; background: linear-gradient(90deg, rgba(8,34,25,.7), rgba(8,34,25,.08)); pointer-events: none; }
.page-hero--story::before { background-image: url("img/封面/bird.png"); background-position: 78% center; }
.page-hero--wander::before { background-image: url("img/封面/fllower.png"); background-position: 70% center; }
.page-hero--gallery::before { background-image: url("img/封面/蓝莓.png"); background-position: 78% center; }
.page-hero--healing::before { background-image: url("img/封面/便签.png"); background-position: 78% center; }
.page-hero--coffee::before { background-image: url("img/封面/鹿.png"); background-position: 78% center; }
.page-hero--opc::before { background-image: url("img/封面/bird.png"); background-position: 76% center; }
.page-hero--hotel::before { background-image: url("img/封面/fllower.png"); background-position: 76% center; }
.page-hero--story { background: linear-gradient(90deg, rgba(8,34,25,.38), rgba(8,34,25,.08)), url("img/DSCF0157.JPG") center 48% / cover; }
.page-hero--wander { background: linear-gradient(90deg, rgba(8,34,25,.55), rgba(8,34,25,.12)), url("img/DSCF0293.jpg") center / cover; }
.page-hero--gallery { background: linear-gradient(90deg, rgba(8,34,25,.55), rgba(8,34,25,.12)), url("img/DSCF0148.jpg") center 54% / cover; }
.page-hero--healing { background: linear-gradient(90deg, rgba(8,34,25,.62), rgba(8,34,25,.1)), url("img/DSCF0094.jpg") center / cover; }
.page-hero--coffee { background: linear-gradient(90deg, rgba(8,34,25,.62), rgba(8,34,25,.1)), url("img/DSCF0157.JPG") center / cover; }
.page-hero--opc { background: linear-gradient(90deg, rgba(8,34,25,.66), rgba(8,34,25,.12)), url("img/DSCF0123.jpg") center / cover; }
.page-hero--hotel { background: linear-gradient(90deg, rgba(8,34,25,.6), rgba(8,34,25,.1)), url("img/民宿/1mc0412000e0j9e7lFF1E_W_1280_853_R5.webp") center / cover; }
.page-hero__content { position: relative; z-index: 1; max-width: 780px; }
.page-hero h1 { margin: 18px 0 0; font: 600 clamp(42px, 6vw, 82px)/1.2 var(--serif); letter-spacing: .02em; }
.page-hero h1 em { color: #d8995e; font-style: normal; }
.page-hero p:last-child { max-width: 490px; margin: 22px 0 0; color: rgba(255,255,255,.75); font-size: 14px; line-height: 2; }
.page-content { padding: 100px 11vw; }
.page-intro { display: grid; grid-template-columns: 42% 58%; gap: 10%; align-items: start; }
.page-intro h2 { font-size: clamp(36px, 4.6vw, 66px); }
.page-intro h2 em { color: var(--red); font-style: normal; }
.page-intro__text { padding-top: 25px; color: #697266; font-size: 14px; line-height: 2.1; }
.page-intro__text p { margin: 0 0 20px; }
.page-note { margin-top: 60px; padding: 26px 30px; border-left: 2px solid #c1754d; background: #eee8da; color: var(--ink); font: 600 18px/1.7 var(--serif); }
.page-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 76px; }
.page-card { background: #eee8da; min-height: 255px; padding: 27px; display: flex; flex-direction: column; justify-content: end; }
.page-card__number { color: var(--red); font-size: 10px; letter-spacing: .16em; margin-bottom: auto; }
.page-card h3 { margin: 34px 0 10px; font: 600 25px var(--serif); }
.page-card p { margin: 0; color: #697266; font-size: 12px; line-height: 1.9; }
.page-cards--photos .page-card { min-height: 390px; padding: 0; overflow: hidden; position: relative; color: white; }
.page-card__photo { position: absolute; inset: 0; background: center / cover; transition: transform .6s; }
.page-card:hover .page-card__photo { transform: scale(1.05); }
.page-card__photo--mountain { background-image: url("img/DSCF0094.jpg"); }
.page-card__photo--lamp { background-image: url("img/DSCF0110.jpg"); }
.page-card__photo--rock { background-image: url("img/DSCF0123.jpg"); }
.page-card__photo--house { background-image: url("img/DSCF0157.JPG"); }
.page-card__overlay { position: absolute; inset: 0; padding: 24px; display: flex; flex-direction: column; justify-content: end; background: linear-gradient(0deg, rgba(7,29,22,.74), transparent 65%); }
.page-card__overlay h3 { margin: 0 0 4px; font: 600 23px var(--serif); }
.page-card__overlay p { color: rgba(255,255,255,.75); }
.standalone-route { margin-top: 76px; display: grid; gap: 50px; }
.standalone-route article { display: grid; grid-template-columns: 1fr 1fr; gap: 9%; align-items: center; }
.standalone-route article:nth-child(even) .standalone-route__image { order: 2; }
.standalone-route__image { min-height: 390px; background: center / cover; }
.standalone-route__image--stream { background-image: url("img/DSCF0157.JPG"); }
.standalone-route__image--light { background-image: url("img/DSCF0148.jpg"); }
.standalone-route__image--mountain { background-image: url("img/DSCF0293.jpg"); }
.standalone-route__copy span { color: var(--red); font-size: 10px; letter-spacing: .16em; }
.standalone-route__copy h2 { margin: 14px 0 16px; font-size: clamp(30px, 3.8vw, 55px); }
.standalone-route__copy p { max-width: 420px; color: #697266; font-size: 14px; line-height: 2.1; }
.placeholder { background: #e9e3d5; }
.placeholder__inner { max-width: 780px; margin: 0 auto; text-align: center; padding: 22px 0 48px; }
.placeholder__inner h2 { font-size: clamp(36px, 5vw, 68px); }
.placeholder__inner h2 em { color: var(--red); font-style: normal; }
.placeholder__inner p { max-width: 540px; margin: 24px auto 0; color: #697266; font-size: 14px; line-height: 2.1; }
.placeholder__mark { width: 56px; height: 56px; margin: 0 auto 30px; border: 1px solid var(--red); color: var(--red); border-radius: 50%; display: grid; place-items: center; font: 600 22px var(--serif); }
.placeholder__line { width: 40px; border-top: 1px solid #c1754d; display: block; margin: 34px auto 0; }
.hotel-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr; grid-template-rows: 290px 220px; gap: 16px; margin-top: 70px; }
.hotel-grid img { display: block; width: 100%; height: 100%; object-fit: cover; }
.hotel-grid img:first-child { grid-row: span 2; }
.hotel-grid img:nth-child(2) { grid-column: span 2; }
.hotel-copy { display: grid; grid-template-columns: 1fr 1fr; gap: 10%; margin-top: 75px; }
.hotel-copy h2 { font-size: clamp(34px, 4.4vw, 62px); }
.hotel-copy h2 em { color: var(--red); font-style: normal; }
.hotel-copy__text { color: #697266; font-size: 14px; line-height: 2.1; }
.hotel-copy__text p { margin: 0 0 18px; }
.panorama-page { padding-bottom: 70px; }
.panorama-frame { margin-top: 45px; background: #0b1813; padding: 10px; }
.panorama-frame iframe { display: block; width: 100%; height: min(72vh, 780px); min-height: 520px; border: 0; background: #17251e; }
.panorama-actions { display: flex; justify-content: space-between; gap: 20px; align-items: center; margin-top: 18px; color: #697266; font-size: 12px; }

@media (max-width: 1000px) {
  .page-topbar .nav { gap: 12px; }
  .page-topbar .nav a { font-size: 10px; }
  .page-intro { gap: 5%; }
}

@media (max-width: 760px) {
  .page-topbar { height: 72px; }
  .page-topbar .nav { display: none; }
  .page-topbar .topbar__cta { display: block; }
  .page-hero { min-height: 420px; padding: 78px 8vw 58px; }
  .page-hero h1 { font-size: 47px; }
  .page-content { padding: 74px 8vw; }
  .page-intro, .hotel-copy { display: block; }
  .page-intro__text { padding-top: 30px; }
  .page-note { margin-top: 36px; padding: 20px; font-size: 16px; }
  .page-cards, .hotel-grid { grid-template-columns: 1fr; }
  .page-cards { margin-top: 48px; }
  .page-cards--photos .page-card { min-height: 300px; }
  .standalone-route { margin-top: 48px; gap: 48px; }
  .standalone-route article, .standalone-route article:nth-child(even) { display: block; }
  .standalone-route article:nth-child(even) .standalone-route__image { order: initial; }
  .standalone-route__image { min-height: 280px; margin-bottom: 25px; }
  .hotel-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 220px 145px 145px; margin-top: 45px; }
  .hotel-grid img:first-child { grid-row: auto; grid-column: span 2; }
  .hotel-grid img:nth-child(2) { grid-column: auto; }
  .hotel-copy { margin-top: 50px; }
  .hotel-copy__text { margin-top: 26px; }
  .panorama-frame iframe { min-height: 480px; height: 68vh; }
  .panorama-actions { align-items: flex-start; flex-direction: column; }
}
