/*
Theme Name: Cavallonatura Rescue
Theme URI: https://www.cavallonatura.com/
Author: Cavallonatura
Description: Tema WordPress premium su misura per il Centro Sportivo Cavallonatura di Castelbuono. Mantiene pagine, articoli e contenuti esistenti, aggiungendo un layout editoriale, responsive e accessibile.
Version: 2.0.27
Requires at least: 6.6
Tested up to: 7.0
Requires PHP: 7.4
Text Domain: cavallonatura-premium
*/

:root {
  --ink: #1d2a20;
  --forest: #23402a;
  --forest-deep: #14251a;
  --moss: #68785d;
  --sage: #b7c0aa;
  --cream: #f3efe5;
  --cream-deep: #e6dfd0;
  --sand: #c3a477;
  --white: #fffdf8;
  --line: rgba(29, 42, 32, 0.17);
  --serif: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--forest);
  color: var(--cream);
}

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

button,
input,
textarea {
  font: inherit;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.shell {
  width: min(1320px, calc(100% - 96px));
  margin-inline: auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--moss);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow--light {
  color: rgba(255, 253, 248, 0.72);
}

.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  min-height: 58px;
  padding: 0 26px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--cream {
  background: var(--cream);
  color: var(--forest-deep);
}

.button--cream:hover {
  background: var(--white);
}

.button--dark {
  background: var(--forest-deep);
  color: var(--white);
}

.button--dark:hover {
  background: var(--forest);
}

.button--outline {
  border-color: var(--ink);
  color: var(--ink);
}

.button--outline:hover {
  background: var(--ink);
  color: var(--cream);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: gap 180ms ease, opacity 180ms ease;
}

.text-link:hover {
  gap: 28px;
}

.text-link--light {
  color: var(--white);
}

/* Header */
.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 96px;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  border-bottom: 1px solid rgba(29, 42, 32, 0.14);
  color: var(--ink);
  transition: background 180ms ease, height 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header--light {
  border-bottom-color: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.site-header--scrolled {
  position: fixed;
  height: 76px;
  background: rgba(243, 239, 229, 0.96);
  box-shadow: 0 8px 35px rgba(20, 37, 26, 0.08);
  color: var(--ink);
  backdrop-filter: blur(14px);
}

.brand {
  position: relative;
  z-index: 52;
  display: flex;
  width: 218px;
  height: 58px;
  align-items: center;
}

.brand img {
  width: 100%;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav > a {
  position: relative;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.07em;
}

.nav > a:not(.nav-contact, .nav-mobile-phone)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav > a:hover::after,
.nav > a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-contact {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 28px;
  margin-left: 8px;
  padding: 0 18px;
  border: 1px solid currentColor;
}

.nav-mobile-phone {
  display: none;
}

.menu-toggle {
  position: relative;
  z-index: 52;
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 10px;
  width: 28px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease, top 180ms ease;
}

.menu-toggle span:first-child { top: 18px; }
.menu-toggle span:last-child { top: 29px; }
.menu-toggle--open span:first-child { top: 24px; transform: rotate(45deg); }
.menu-toggle--open span:last-child { top: 24px; transform: rotate(-45deg); }

/* Homepage hero */
.home-hero {
  position: relative;
  min-height: 940px;
  height: 100svh;
  color: var(--white);
  overflow: hidden;
}

.home-hero-image,
.home-hero-shade {
  position: absolute;
  inset: 0;
}

.home-hero-image {
  background-image: none;
  background-position: center 48%;
  background-size: cover;
  transform: scale(1.015);
}

.home-hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 22, 13, 0.76) 0%, rgba(9, 22, 13, 0.37) 50%, rgba(9, 22, 13, 0.14) 100%),
    linear-gradient(0deg, rgba(9, 22, 13, 0.58) 0%, transparent 45%);
}

.home-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  padding-top: 0;
}

.hero-kicker {
  margin-bottom: 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.home-hero h1 {
  max-width: 960px;
  margin-bottom: 34px;
  font-size: clamp(66px, 8.3vw, 132px);
  line-height: 0.86;
}

.home-hero h1 em {
  color: #d9ceb8;
  font-weight: 400;
}

.hero-intro {
  max-width: 610px;
  margin-bottom: 42px;
  font-size: 18px;
  line-height: 1.65;
}

.hero-foot {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 30px;
  left: 0;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 253, 248, 0.7);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Homepage content */
.intro-section {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 35px 100px;
  padding-block: 150px;
}

.intro-heading h2,
.section-head h2,
.page-intro h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(48px, 5.3vw, 82px);
}

.intro-copy {
  padding-top: 40px;
}

.intro-copy .lead {
  margin-bottom: 28px;
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.45;
}

.intro-copy > p:not(.lead) {
  max-width: 620px;
  margin-bottom: 34px;
  color: #526055;
}

.intro-image {
  position: relative;
  grid-column: 1 / -1;
  height: 590px;
  margin: 70px 0 0;
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.intro-image figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  width: 240px;
  height: 170px;
  flex-direction: column;
  justify-content: center;
  padding: 28px 34px;
  background: var(--cream);
}

.intro-image figcaption strong {
  font-family: var(--serif);
  font-size: 54px;
  font-weight: 400;
  line-height: 1;
}

.intro-image figcaption span {
  margin-top: 5px;
  color: var(--moss);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.experience-section {
  padding-block: 140px;
  background: var(--forest-deep);
  color: var(--white);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 80px;
  margin-bottom: 70px;
}

.section-head > p {
  max-width: 430px;
  margin: 0;
  color: var(--moss);
}

.experience-section .section-head > p,
.more-routes .section-head > p {
  color: rgba(255, 253, 248, 0.6);
}

.experience-grid {
  display: grid;
  grid-template-columns: 1.36fr 1fr;
  grid-template-rows: repeat(2, 360px);
  gap: 18px;
}

.experience-card {
  position: relative;
  overflow: hidden;
}

.experience-card--large {
  grid-row: 1 / 3;
}

.experience-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.2,.75,.2,1);
}

.experience-card:hover > img {
  transform: scale(1.045);
}

.experience-card-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 17, 10, 0.78), rgba(7, 17, 10, 0.05) 75%);
}

.experience-card-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 40px;
}

.experience-card-content > span {
  display: block;
  margin-bottom: 13px;
  color: rgba(255, 253, 248, 0.65);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.experience-card h3 {
  margin: 0;
  font-size: 44px;
  line-height: 0.98;
}

.experience-card--large h3 {
  font-size: 64px;
}

.experience-card p {
  max-width: 390px;
  margin: 16px 70px 0 0;
  color: rgba(255, 253, 248, 0.7);
  font-size: 14px;
}

.experience-card b {
  position: absolute;
  right: 38px;
  bottom: 38px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  font-family: var(--sans);
  font-weight: 400;
}

.land-section {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  min-height: 760px;
  background: var(--forest);
  color: var(--white);
}

.land-image {
  min-height: 720px;
  background: url("assets/images/snow-premium.webp") center / cover;
}

.land-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 8vw;
}

.land-content h2 {
  max-width: 600px;
  margin-bottom: 32px;
  font-size: clamp(52px, 5vw, 78px);
}

.land-content > p:not(.eyebrow) {
  max-width: 580px;
  margin-bottom: 48px;
  color: rgba(255, 253, 248, 0.72);
}

.land-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 46px;
  padding-block: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.land-facts div {
  display: flex;
  flex-direction: column;
}

.land-facts strong {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
}

.land-facts span {
  color: rgba(255, 253, 248, 0.5);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.land-content .text-link {
  align-self: flex-start;
}

.routes-section {
  padding-block: 150px;
  text-align: center;
}

.section-head--center {
  justify-content: center;
  text-align: center;
}

.section-head--center .eyebrow {
  justify-content: center;
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 65px;
  text-align: left;
}

.route-image {
  position: relative;
  display: block;
  height: 400px;
  margin-bottom: 25px;
  overflow: hidden;
}

.route-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.route-card:hover img { transform: scale(1.04); }

.route-image span {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  background: var(--cream);
  color: var(--moss);
  font-size: 11px;
}

.route-card > p {
  margin-bottom: 6px;
  color: var(--moss);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.route-card h3 {
  margin-bottom: 0;
  font-size: 33px;
}

.testimonials-section {
  padding-block: 140px;
  background: var(--cream-deep);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.testimonials-grid blockquote {
  position: relative;
  min-height: 360px;
  margin: 0;
  padding: 48px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.testimonials-grid blockquote > span {
  color: var(--moss);
  font-family: var(--serif);
  font-size: 68px;
  line-height: 0.7;
}

.testimonials-grid blockquote > p {
  max-width: 520px;
  margin: 18px 0 52px;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.45;
}

.testimonials-grid blockquote footer {
  position: absolute;
  right: 48px;
  bottom: 40px;
  left: 48px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.testimonials-grid b {
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.testimonials-grid small {
  color: var(--moss);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Shared contact band */
.contact-band {
  position: relative;
  min-height: 650px;
  color: var(--white);
  overflow: hidden;
}

.contact-band-image,
.contact-band-overlay {
  position: absolute;
  inset: 0;
}

.contact-band-image {
  background: url("assets/images/cta-italian-saddle.webp") 68% center / cover;
  transform: scale(1.01);
}

.contact-band-overlay {
  background: linear-gradient(90deg, rgba(8, 19, 11, 0.88), rgba(8, 19, 11, 0.36));
}

.contact-band-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 650px;
  flex-direction: column;
  justify-content: center;
}

.contact-band h2 {
  max-width: 800px;
  margin-bottom: 28px;
  font-size: clamp(58px, 6vw, 94px);
}

.contact-band-content > p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 42px;
  color: rgba(255, 253, 248, 0.74);
  font-size: 18px;
}

/* Footer */
.footer {
  background: #0f1c14;
  color: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.35fr 0.72fr 0.93fr;
  gap: 70px;
  padding-block: 90px 75px;
}

.footer-brand img {
  width: 250px;
  margin-bottom: 25px;
}

.footer-brand p {
  max-width: 360px;
  color: rgba(255, 253, 248, 0.58);
}

.footer-label {
  margin-bottom: 24px;
  color: rgba(255, 253, 248, 0.38);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-nav a,
.footer-contact a {
  color: rgba(255, 253, 248, 0.78);
  font-size: 14px;
}

.footer-nav a:hover,
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-block: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 253, 248, 0.36);
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-bottom p { margin: 0; }

/* Internal page hero and intros */
.page-hero {
  position: relative;
  display: flex;
  min-height: 690px;
  align-items: flex-end;
  padding-block: 180px 100px;
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.page-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 20, 12, 0.78), rgba(8, 20, 12, 0.22)), linear-gradient(0deg, rgba(8, 20, 12, 0.55), transparent 55%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  max-width: 1040px;
  margin-bottom: 26px;
  font-size: clamp(68px, 8vw, 120px);
}

.page-hero-content > p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 253, 248, 0.76);
  font-size: 18px;
}

.page-intro {
  padding-block: 130px;
  text-align: center;
}

.page-intro .eyebrow {
  justify-content: center;
}

.page-intro h2 {
  margin-inline: auto;
  margin-bottom: 30px;
}

.page-intro > p {
  max-width: 700px;
  margin: 0 auto;
  color: #556258;
  font-size: 18px;
}

.page-intro--split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 100px;
  align-items: end;
  text-align: left;
}

.page-intro--split .eyebrow { justify-content: flex-start; }
.page-intro--split h2 { margin: 0; }
.page-intro--split > p { margin: 0; }

/* Services */
.services-list {
  padding-bottom: 140px;
}

.service-row {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 100px;
  align-items: center;
  padding-block: 70px;
  border-top: 1px solid var(--line);
}

.service-row--reverse .service-image { order: 2; }
.service-row--reverse .service-content { order: 1; }

.service-image {
  position: relative;
  height: 530px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-image > span {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 55px;
  height: 55px;
  place-items: center;
  background: var(--cream);
  color: var(--moss);
  font-size: 11px;
}

.service-content h2,
.walk-content h2,
.trek-card-head h2 {
  margin-bottom: 28px;
  font-size: clamp(48px, 4.2vw, 68px);
}

.service-content > p:not(.eyebrow) {
  max-width: 580px;
  margin-bottom: 20px;
  color: #536057;
}

.service-content .text-link { margin-top: 15px; }

/* Walks */
.walks-list {
  padding-bottom: 150px;
}

.walk-row {
  display: grid;
  grid-template-columns: 70px minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 34px 55px;
  align-items: center;
  padding-block: 70px;
  border-top: 1px solid var(--line);
}

.walk-number {
  align-self: start;
  padding-top: 6px;
  color: var(--moss);
  font-size: 11px;
}

.walk-image { height: 520px; }
.walk-image img { width: 100%; height: 100%; object-fit: cover; }
.walk-content > p:not(.eyebrow) { margin-bottom: 30px; color: #536057; }

.more-routes {
  padding-block: 140px;
  background: var(--forest);
  color: var(--white);
}

.more-routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.more-routes-grid article {
  min-height: 250px;
  padding: 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.more-routes-grid span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
}

.more-routes-grid h3 {
  margin: 36px 0 16px;
  font-size: 31px;
  letter-spacing: -0.035em;
}

.more-routes-grid p {
  margin: 0;
  color: rgba(255, 253, 248, 0.62);
  font-size: 13px;
}

/* Trekking */
.trek-list {
  padding-bottom: 150px;
}

.trek-card {
  margin-bottom: 125px;
}

.trek-card:last-child { margin-bottom: 0; }

.trek-card-image {
  position: relative;
  height: 590px;
}

.trek-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trek-card-image > span {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  width: 80px;
  height: 80px;
  place-items: center;
  background: var(--cream);
  color: var(--moss);
  font-size: 12px;
}

.trek-card-head {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 90px;
  align-items: end;
  padding-block: 55px;
  border-bottom: 1px solid var(--line);
}

.trek-card-head h2 { margin: 0; }
.trek-card-head > p { margin: 0; color: #536057; }

.trek-days details {
  border-bottom: 1px solid var(--line);
}

.trek-days summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 27px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  list-style: none;
  text-transform: uppercase;
}

.trek-days summary::-webkit-details-marker { display: none; }
.trek-days summary span { color: var(--moss); font-size: 22px; font-weight: 300; transition: transform 180ms ease; }
.trek-days details[open] summary span { transform: rotate(45deg); }
.trek-days details p { max-width: 940px; margin: 0; padding: 0 0 32px; color: #536057; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 330px;
  gap: 18px;
  padding-bottom: 150px;
}

.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.gallery-item--wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.gallery-item:hover img { transform: scale(1.035); }

.gallery-item::after {
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(transparent, rgba(8, 20, 12, 0.7));
  content: "";
}

.gallery-item figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 18px;
  left: 24px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 22px;
}

/* Contact page */
.contact-page {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 100px;
  align-items: start;
  padding-block: 190px 130px;
}

.contact-page-intro h1 {
  max-width: 760px;
  margin-bottom: 35px;
  font-size: clamp(64px, 7vw, 108px);
}

.contact-page-intro > p:not(.eyebrow) {
  max-width: 640px;
  margin-bottom: 55px;
  color: #536057;
  font-size: 18px;
}

.contact-links {
  border-top: 1px solid var(--line);
}

.contact-links a {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 25px;
  align-items: center;
  padding-block: 18px;
  border-bottom: 1px solid var(--line);
}

.contact-links span {
  color: var(--moss);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-links strong {
  font-size: 14px;
  font-weight: 500;
}

.contact-panel {
  background: var(--cream-deep);
}

.contact-panel > img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.contact-panel > div {
  padding: 48px;
}

.contact-panel h2 {
  margin-bottom: 22px;
  font-size: 48px;
}

.contact-panel > div > p:not(.eyebrow) {
  margin-bottom: 30px;
  color: #536057;
}

.location-band {
  min-height: 570px;
  padding-block: 130px;
  background: linear-gradient(90deg, rgba(14, 34, 20, 0.9), rgba(14, 34, 20, 0.42)), url("assets/images/quattro-finaite.jpg") center / cover;
  color: var(--white);
}

.location-band h2 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(58px, 6vw, 90px);
}

.location-band .shell > p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 35px;
  color: rgba(255, 253, 248, 0.72);
}

/* Responsive */
@media (max-width: 1100px) {
  .shell { width: min(100% - 64px, 1040px); }
  .site-header { padding-inline: 32px; }
  .nav { gap: 20px; }
  .nav > a { font-size: 11px; }
  .brand { width: 190px; }
  .intro-section { gap: 40px 60px; }
  .experience-card--large h3 { font-size: 54px; }
  .routes-grid { grid-template-columns: repeat(2, 1fr); gap: 50px 24px; }
  .service-row { gap: 60px; }
  .walk-row { grid-template-columns: 50px 1fr 0.8fr; gap: 30px; }
  .contact-page { gap: 60px; }
}

@media (max-width: 860px) {
  .shell { width: calc(100% - 42px); }
  .site-header { height: 78px; padding-inline: 21px; }
  .site-header--scrolled { height: 68px; }
  .brand { width: 178px; height: 48px; }
  .menu-toggle { display: block; }
  .nav {
    position: fixed;
    z-index: 51;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 18px;
    padding: 110px 32px 40px;
    background: var(--cream);
    color: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }
  .nav--open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav > a { font-family: var(--serif); font-size: 38px; font-weight: 400; letter-spacing: -0.03em; }
  .nav-contact { min-height: auto; margin: 7px 0 0; padding: 0; border: 0; }
  .nav-mobile-phone { display: block; margin-top: 20px; color: var(--moss); font-family: var(--sans) !important; font-size: 12px !important; font-weight: 700 !important; letter-spacing: 0.08em !important; text-transform: uppercase; }
  .site-header:has(.nav--open) { color: var(--ink); }
  .site-header:has(.nav--open) .brand-logo--light { display: none; }
  .site-header:has(.nav--open) .brand-logo--dark { display: block; }

  .home-hero { min-height: 740px; }
  .home-hero-content { padding-top: 36px; }
  .home-hero h1 { font-size: clamp(58px, 13vw, 94px); }
  .hero-foot span { display: none; }
  .hero-foot { justify-content: flex-end; }

  .intro-section { grid-template-columns: 1fr; padding-block: 100px; }
  .intro-copy { padding-top: 0; }
  .intro-image { height: 460px; margin-top: 30px; }

  .section-head { align-items: flex-start; flex-direction: column; gap: 28px; }
  .experience-section { padding-block: 100px; }
  .experience-grid { grid-template-columns: 1fr; grid-template-rows: repeat(3, 490px); }
  .experience-card--large { grid-row: auto; }
  .experience-card--large h3,
  .experience-card h3 { font-size: 52px; }

  .land-section { grid-template-columns: 1fr; }
  .land-image { min-height: 550px; }
  .land-content { padding: 90px 8vw; }

  .routes-section { padding-block: 100px; }
  .route-image { height: 420px; }
  .testimonials-section { padding-block: 100px; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .page-hero { min-height: 620px; }
  .page-intro { padding-block: 100px; }
  .page-intro--split { grid-template-columns: 1fr; gap: 35px; align-items: start; }

  .service-row { grid-template-columns: 1fr; gap: 42px; }
  .service-row--reverse .service-image,
  .service-row--reverse .service-content { order: initial; }
  .service-image { height: 500px; }

  .walk-row { grid-template-columns: 40px 1fr; }
  .walk-image { grid-column: 2; }
  .walk-content { grid-column: 2; }
  .more-routes-grid { grid-template-columns: repeat(2, 1fr); }

  .trek-card-head { grid-template-columns: 1fr; gap: 25px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-page { grid-template-columns: 1fr; padding-top: 145px; }
  .contact-panel { max-width: 680px; }
}

@media (max-width: 560px) {
  body { font-size: 15px; }
  .shell { width: calc(100% - 36px); }
  .eyebrow { margin-bottom: 18px; }
  .button-row { align-items: flex-start; flex-direction: column; gap: 22px; }

  .home-hero { min-height: 700px; }
  .home-hero-image { background-position: 58% center; }
  .home-hero-content { justify-content: flex-end; padding-bottom: 100px; }
  .hero-kicker { margin-bottom: 20px; font-size: 10px; }
  .home-hero h1 { margin-bottom: 28px; font-size: clamp(52px, 16vw, 74px); }
  .hero-intro { font-size: 15px; }
  .hero-foot { display: none; }

  .intro-heading h2,
  .section-head h2,
  .page-intro h2 { font-size: 47px; }
  .intro-copy .lead { font-size: 21px; }
  .intro-image { height: 400px; }
  .intro-image figcaption { width: 180px; height: 130px; padding: 22px; }
  .intro-image figcaption strong { font-size: 42px; }

  .experience-grid { grid-template-rows: repeat(3, 440px); }
  .experience-card-content { padding: 28px; }
  .experience-card h3,
  .experience-card--large h3 { font-size: 44px; }
  .experience-card p { margin-right: 0; }
  .experience-card b { top: 28px; right: 28px; bottom: auto; }

  .land-image { min-height: 430px; }
  .land-content { padding: 75px 22px; }
  .land-content h2 { font-size: 48px; }
  .land-facts { grid-template-columns: 1fr; gap: 18px; }

  .routes-grid { grid-template-columns: 1fr; }
  .route-image { height: 440px; }
  .testimonials-grid blockquote { min-height: 390px; padding: 34px; }
  .testimonials-grid blockquote > p { font-size: 21px; }
  .testimonials-grid blockquote footer { right: 34px; bottom: 30px; left: 34px; align-items: flex-start; flex-direction: column; gap: 5px; }

  .contact-band,
  .contact-band-content { min-height: 620px; }
  .contact-band h2 { font-size: 52px; }

  .footer-top { grid-template-columns: 1fr; gap: 50px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 7px; }

  .page-hero { min-height: 570px; padding-bottom: 70px; }
  .page-hero h1 { font-size: 58px; }
  .page-hero-content > p:not(.eyebrow) { font-size: 15px; }

  .service-image,
  .walk-image { height: 390px; }
  .service-content h2,
  .walk-content h2,
  .trek-card-head h2 { font-size: 46px; }

  .walk-row { grid-template-columns: 1fr; padding-block: 50px; }
  .walk-number,
  .walk-image,
  .walk-content { grid-column: 1; }
  .walk-number { padding: 0; }
  .more-routes-grid { grid-template-columns: 1fr; }

  .trek-card { margin-bottom: 90px; }
  .trek-card-image { height: 440px; }
  .trek-card-image > span { width: 60px; height: 60px; }

  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 360px; }
  .gallery-item--wide { grid-column: span 1; }

  .contact-page { padding-bottom: 90px; }
  .contact-page-intro h1 { font-size: 58px; }
  .contact-links a { grid-template-columns: 1fr; gap: 3px; }
  .contact-panel > img { height: 300px; }
  .contact-panel > div { padding: 34px 26px; }
  .contact-panel h2 { font-size: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Premium edition */
body {
  letter-spacing: -0.008em;
}

body::after {
  position: fixed;
  z-index: 100;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.055) 0 1px, transparent 1.3px),
    radial-gradient(circle at 80% 70%, rgba(18,37,24,.035) 0 1px, transparent 1.2px);
  background-size: 7px 7px, 11px 11px;
  content: "";
  opacity: .22;
  pointer-events: none;
}

h1,
h2,
h3 {
  letter-spacing: -0.052em;
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 900ms cubic-bezier(.22,.7,.25,1), transform 900ms cubic-bezier(.22,.7,.25,1);
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready .intro-copy[data-reveal] { transition-delay: 120ms; }
.motion-ready .intro-image[data-reveal] { transition-delay: 80ms; }

.booking-rail {
  position: fixed;
  z-index: 48;
  right: 26px;
  bottom: 24px;
  display: flex;
  align-items: stretch;
  min-height: 50px;
  border: 1px solid rgba(255,255,255,.32);
  box-shadow: 0 16px 46px rgba(11,24,15,.18);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.booking-rail > span {
  display: flex;
  align-items: center;
  padding: 0 18px;
  background: rgba(243,239,229,.92);
  color: var(--moss);
}

.booking-rail a,
.booking-rail button {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
  border: 0;
  background: rgba(20,37,26,.96);
  color: var(--white);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.booking-rail b { font-size: 13px; font-weight: 400; }

.site-header {
  mix-blend-mode: normal;
}

.site-header:not(.site-header--scrolled) .brand img {
  filter: drop-shadow(0 4px 18px rgba(0,0,0,.14));
}

.site-header--scrolled {
  border-bottom: 1px solid rgba(29,42,32,.1);
  box-shadow: 0 14px 45px rgba(16,31,20,.07);
}

.nav-contact {
  background: rgba(255,255,255,.025);
  transition: background 180ms ease, color 180ms ease;
}

.nav-contact:hover {
  background: currentColor;
}

.nav-contact:hover span,
.nav-contact:hover {
  color: var(--cream);
}

.site-header--light:not(.site-header--scrolled) .nav-contact:hover {
  background: var(--cream);
  color: var(--forest-deep);
}

.home-hero::after,
.page-hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  border: 15px solid rgba(255,255,255,.025);
  content: "";
  pointer-events: none;
}

.home-hero-image {
  animation: hero-breathe 20s ease-in-out infinite alternate;
  filter: saturate(.83) contrast(1.03);
}

@keyframes hero-breathe {
  from { transform: scale(1.015); }
  to { transform: scale(1.075); }
}

.home-hero-shade {
  background:
    linear-gradient(90deg, rgba(7,20,11,.82) 0%, rgba(7,20,11,.42) 47%, rgba(7,20,11,.12) 100%),
    linear-gradient(0deg, rgba(7,20,11,.62) 0%, transparent 48%),
    linear-gradient(180deg, rgba(7,20,11,.26), transparent 28%);
}

.hero-content-premium::before {
  position: absolute;
  left: 0;
  width: 1px;
  height: 74px;
  margin-top: -122px;
  background: rgba(255,255,255,.48);
  content: "";
}

.home-hero h1 {
  max-width: 1080px;
  font-size: clamp(76px, 8.8vw, 144px);
  font-weight: 500;
  letter-spacing: -.065em;
}

.home-hero h1 em {
  color: #e0d4be;
  font-weight: 400;
}

.hero-kicker {
  letter-spacing: .28em;
}

.hero-side-note,
.contact-band-side-note {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: 27px;
  color: rgba(255,255,255,.55);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  transform: translateY(-50%) rotate(90deg) translateX(50%);
  transform-origin: right center;
}

.hero-edition {
  position: absolute;
  z-index: 3;
  top: 132px;
  right: 66px;
  display: flex;
  width: 112px;
  height: 112px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  color: var(--white);
}

.hero-edition span {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
}

.hero-edition small {
  margin-top: 5px;
  font-size: 7px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero-foot {
  align-items: center;
}

.hero-progress {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 170px;
}

.hero-progress i {
  width: 110px;
  height: 1px;
  background: linear-gradient(90deg, var(--cream) 25%, rgba(255,255,255,.25) 25%);
}

.hero-progress span { color: var(--white); }
.hero-progress small { opacity: .6; }

.button {
  position: relative;
  overflow: hidden;
}

.button::before {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.13);
  content: "";
  transform: translateX(-103%);
  transition: transform 420ms cubic-bezier(.2,.7,.2,1);
}

.button:hover::before { transform: translateX(0); }
.button > * { position: relative; }

.premium-frame::before {
  position: absolute;
  z-index: -1;
  top: -22px;
  right: 34px;
  bottom: 38px;
  left: -22px;
  border: 1px solid rgba(35,64,42,.24);
  content: "";
}

.intro-image img {
  filter: saturate(.88) contrast(1.02);
}

.manifesto-section {
  position: relative;
  padding-block: 120px;
  border-top: 1px solid rgba(29,42,32,.12);
  border-bottom: 1px solid rgba(29,42,32,.12);
  background: #e9e2d5;
  overflow: hidden;
}

.manifesto-section::before {
  position: absolute;
  top: -110px;
  right: -15px;
  color: rgba(35,64,42,.045);
  content: "CN";
  font-family: var(--serif);
  font-size: 430px;
  line-height: 1;
}

.manifesto-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .28fr 1.45fr .48fr;
  gap: 55px;
  align-items: start;
}

.manifesto-index {
  padding-top: 24px;
  color: var(--moss);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.manifesto-grid blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(53px, 5.4vw, 86px);
  letter-spacing: -.052em;
  line-height: .98;
}

.manifesto-grid blockquote em {
  color: var(--moss);
  font-weight: 400;
}

.manifesto-note {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.manifesto-note span {
  display: block;
  margin-bottom: 18px;
  color: var(--moss);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.manifesto-note p {
  margin: 0;
  color: #4d5b51;
  font-size: 13px;
}

.experience-section {
  position: relative;
}

.experience-section::before {
  position: absolute;
  top: 44px;
  right: 5vw;
  color: rgba(255,255,255,.03);
  content: "EXPERIENCE";
  font-family: var(--serif);
  font-size: 12vw;
  letter-spacing: -.04em;
}

.experience-card-content > span {
  letter-spacing: .2em;
}

.experience-card {
  border: 1px solid rgba(255,255,255,.08);
}

.experience-card b {
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.experience-card:hover b {
  background: var(--cream);
  color: var(--forest-deep);
  transform: rotate(45deg);
}

.ritual-section {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 940px;
  background: var(--cream);
}

.ritual-visual {
  position: relative;
  min-height: 940px;
  overflow: hidden;
}

.ritual-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.78) contrast(1.06);
}

.ritual-visual-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  width: 245px;
  min-height: 120px;
  justify-content: center;
  flex-direction: column;
  padding: 28px 34px;
  background: var(--cream);
}

.ritual-visual-caption span {
  font-family: var(--serif);
  font-size: 23px;
}

.ritual-visual-caption small {
  color: var(--moss);
  font-size: 8px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.ritual-content {
  position: relative;
  padding: 120px 8vw;
}

.ritual-sticky {
  position: sticky;
  top: 120px;
}

.ritual-content h2 {
  max-width: 620px;
  margin-bottom: 30px;
  font-size: clamp(60px, 5.6vw, 88px);
}

.ritual-lead {
  max-width: 570px;
  margin-bottom: 42px;
  color: #536057;
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.45;
}

.ritual-steps {
  max-width: 620px;
  margin: 0 0 38px;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.ritual-steps li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  padding-block: 22px;
  border-bottom: 1px solid var(--line);
}

.ritual-steps li > span {
  padding-top: 4px;
  color: var(--moss);
  font-size: 9px;
}

.ritual-steps h3 {
  margin: 0 0 3px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
}

.ritual-steps p {
  margin: 0;
  color: var(--moss);
  font-size: 12px;
}

.land-section {
  border-top: 1px solid rgba(255,255,255,.08);
}

.land-content {
  position: relative;
  overflow: hidden;
}

.land-content::after {
  position: absolute;
  right: -40px;
  bottom: -90px;
  color: rgba(255,255,255,.035);
  content: "M";
  font-family: var(--serif);
  font-size: 430px;
  line-height: .75;
}

.land-content > * { position: relative; z-index: 1; }

.routes-grid .route-card:nth-child(even) {
  transform: translateY(46px);
}

.route-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(11,25,15,.16));
  content: "";
}

.route-card h3 {
  font-size: 38px;
  font-weight: 500;
}

.testimonials-section {
  position: relative;
  overflow: hidden;
}

.testimonials-section::after {
  position: absolute;
  top: 80px;
  right: 6vw;
  color: rgba(35,64,42,.055);
  content: "“";
  font-family: var(--serif);
  font-size: 420px;
  line-height: .7;
}

.testimonials-section .shell { position: relative; z-index: 1; }

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

.testimonials-grid blockquote:first-child {
  grid-column: 1 / -1;
  min-height: 330px;
  padding-right: 20%;
}

.testimonials-grid blockquote:first-child > p {
  max-width: 900px;
  font-size: 39px;
  line-height: 1.25;
}

.testimonials-grid blockquote:not(:first-child) {
  min-height: 390px;
  padding: 40px;
}

.testimonials-grid blockquote:not(:first-child) > p {
  font-size: 21px;
}

.testimonials-grid blockquote:not(:first-child) footer {
  right: 40px;
  left: 40px;
  align-items: flex-start;
  flex-direction: column;
  gap: 4px;
}

.contact-band-side-note {
  right: 30px;
}

.contact-band-signature {
  position: absolute;
  right: 0;
  bottom: 48px;
  display: grid;
  grid-template-columns: 36px 210px;
  gap: 16px;
  align-items: start;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.3);
}

.contact-band-signature span {
  color: rgba(255,255,255,.45);
  font-size: 9px;
}

.contact-band-signature p {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.35;
}

.page-hero {
  isolation: isolate;
  background-attachment: fixed;
  filter: saturate(.92);
}

.page-hero-corner {
  position: absolute;
  z-index: 2;
  right: 54px;
  bottom: 52px;
  display: flex;
  width: 118px;
  height: 118px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 50%;
}

.page-hero-corner span {
  font-family: var(--serif);
  font-size: 29px;
  line-height: 1;
}

.page-hero-corner small {
  margin-top: 5px;
  font-size: 7px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.service-image,
.walk-image,
.trek-card-image,
.gallery-item,
.contact-panel > img {
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(21,36,25,.07);
}

.service-image img,
.walk-image img,
.trek-card-image img,
.gallery-item img {
  filter: saturate(.86) contrast(1.025);
}

.footer-top {
  padding-top: 110px;
}

@media (max-width: 1100px) {
  .hero-edition { display: none; }
  .manifesto-grid { grid-template-columns: .22fr 1.3fr .5fr; gap: 35px; }
  .ritual-content { padding-inline: 6vw; }
  .testimonials-grid blockquote:not(:first-child) { min-height: 430px; }
}

@media (max-width: 860px) {
  body::after { display: none; }
  .booking-rail { right: 16px; bottom: 14px; }
  .booking-rail > span { display: none; }
  .home-hero::after,
  .page-hero::after { border-width: 8px; }
  .hero-side-note,
  .contact-band-side-note { display: none; }
  .hero-content-premium::before { display: none; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 28px; }
  .manifesto-index { padding: 0; }
  .manifesto-note { max-width: 420px; }
  .ritual-section { grid-template-columns: 1fr; }
  .ritual-visual { min-height: 680px; }
  .ritual-content { padding: 100px 8vw; }
  .ritual-sticky { position: static; }
  .routes-grid .route-card:nth-child(even) { transform: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid blockquote:first-child { grid-column: auto; padding-right: 48px; }
  .testimonials-grid blockquote:first-child > p { font-size: 30px; }
  .contact-band-signature { display: none; }
  .page-hero { background-attachment: scroll; }
  .page-hero-corner { right: 30px; bottom: 36px; width: 88px; height: 88px; }
  .page-hero-corner span { font-size: 22px; }
}

@media (max-width: 560px) {
  .booking-rail a,
  .booking-rail button { min-height: 48px; padding-inline: 17px; }
  .home-hero h1 { font-size: clamp(58px, 17vw, 78px); }
  .hero-progress { display: none; }
  .manifesto-section { padding-block: 90px; }
  .manifesto-section::before { font-size: 260px; }
  .manifesto-grid blockquote { font-size: 48px; }
  .ritual-visual { min-height: 520px; }
  .ritual-visual-caption { width: 205px; min-height: 100px; padding: 22px; }
  .ritual-content { padding: 86px 20px; }
  .ritual-content h2 { font-size: 55px; }
  .ritual-lead { font-size: 20px; }
  .testimonials-grid blockquote:first-child { min-height: 420px; padding: 34px; }
  .testimonials-grid blockquote:first-child > p { font-size: 25px; }
  .page-hero-corner { display: none; }
}

/* Multilingual navigation */
.language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 18px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
}
.language-switcher a { padding: 8px 3px 6px; border-bottom: 1px solid transparent; opacity: .58; }
.language-switcher a:hover,
.language-switcher a.active { border-bottom-color: currentColor; opacity: 1; }

/* Cinematic hero sequence */
.home-hero-image { overflow: hidden; }
.hero-slide {
  position: absolute;
  inset: -2%;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 1300ms cubic-bezier(.22,.61,.36,1), transform 8s ease-out;
}
.hero-slide.is-active { opacity: 1; transform: scale(1.075); }
.hero-slide--water { background-position: center 58%; }
.hero-slide--trail { background-position: center 62%; }
.hero-slide--coast { background-position: center 58%; }
.hero-slide--country { background-position: center 48%; }

/* Guided booking */
body.dialog-is-open { overflow: hidden; }
.booking-dialog[hidden] { display: none; }
.booking-dialog { position: fixed; z-index: 120; inset: 0; }
.booking-dialog-backdrop { position: absolute; inset: 0; background: rgba(10,22,14,.64); opacity: 0; backdrop-filter: blur(7px); transition: opacity 260ms ease; }
.booking-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(620px, 100%);
  height: 100%;
  overflow-y: auto;
  padding: clamp(72px, 9vh, 110px) clamp(26px, 6vw, 72px) 46px;
  background: var(--cream);
  box-shadow: -28px 0 90px rgba(9,22,13,.22);
  transform: translateX(102%);
  transition: transform 360ms cubic-bezier(.22,.61,.36,1);
}
.booking-dialog.is-open .booking-dialog-backdrop { opacity: 1; }
.booking-dialog.is-open .booking-panel { transform: translateX(0); }
.booking-close { position: absolute; top: 24px; right: 28px; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--ink); cursor: pointer; font-family: var(--serif); font-size: 30px; line-height: 1; }
.booking-head h2 { max-width: 470px; margin: 10px 0 30px; font-family: var(--serif); font-size: clamp(45px, 6vw, 68px); font-weight: 500; letter-spacing: -.045em; line-height: .92; }
.booking-progress { position: relative; display: flex; height: 28px; align-items: flex-start; justify-content: flex-end; border-top: 1px solid var(--line); color: var(--moss); font-size: 10px; letter-spacing: .12em; }
.booking-progress i { position: absolute; top: -1px; left: 0; width: 33.333%; height: 2px; background: var(--forest); transition: width 280ms ease; }
.booking-progress span { padding-top: 8px; }
.booking-form { margin-top: clamp(36px, 7vh, 70px); }
.booking-step { display: none; margin: 0; padding: 0; border: 0; }
.booking-step.is-active { display: grid; gap: 15px; animation: booking-in 360ms ease both; }
.booking-step legend { width: 100%; margin-bottom: 24px; font-family: var(--serif); font-size: 34px; font-weight: 500; letter-spacing: -.03em; line-height: 1; }
.booking-choice { position: relative; cursor: pointer; }
.booking-choice input { position: absolute; opacity: 0; }
.booking-choice > span { display: block; padding: 19px 20px; border: 1px solid var(--line); transition: background 180ms ease, border-color 180ms ease, color 180ms ease; }
.booking-choice b { display: block; font-family: var(--serif); font-size: 25px; font-weight: 500; line-height: 1.1; }
.booking-choice small { display: block; margin-top: 7px; color: var(--moss); font-size: 12px; }
.booking-choice input:checked + span { border-color: var(--forest); background: var(--forest); color: var(--white); }
.booking-choice input:checked + span small { color: var(--sage); }
.booking-step > label:not(.booking-choice) { display: grid; gap: 8px; color: var(--moss); font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.booking-step input[type="text"],
.booking-step input[type="number"],
.booking-step select { width: 100%; min-height: 58px; padding: 0 15px; border: 1px solid var(--line); border-radius: 0; background: rgba(255,253,248,.56); color: var(--ink); font: 16px var(--sans); text-transform: none; }
.booking-privacy { color: var(--moss); font-size: 12px; }
.booking-actions { display: flex; align-items: center; justify-content: flex-end; gap: 16px; margin-top: 34px; }
.booking-back { border: 0; border-bottom: 1px solid currentColor; padding: 7px 0; background: transparent; color: var(--moss); cursor: pointer; font: 700 12px var(--sans); }
.booking-actions [hidden] { display: none; }
@keyframes booking-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* Fine-pointer depth, intentionally restrained */
@media (pointer: fine) {
  .experience-card img,
  .route-card img,
  .premium-frame img { transform: scale(1.02) translate(calc(var(--mx, 0) * 7px), calc(var(--my, 0) * 7px)); transition: transform 700ms cubic-bezier(.22,.61,.36,1); }
  .experience-card:hover img,
  .route-card:hover img,
  .premium-frame:hover img { transform: scale(1.055) translate(calc(var(--mx, 0) * 7px), calc(var(--my, 0) * 7px)); }
}

@media (max-width: 1100px) {
  .language-switcher { margin-left: 6px; }
}
@media (max-width: 860px) {
  .language-switcher { position: absolute; z-index: 53; right: 77px; margin: 0; }
  .booking-panel { padding-top: 82px; }
}
@media (max-width: 560px) {
  .brand { width: 140px; }
  .language-switcher { right: 65px; gap: 5px; }
  .language-switcher a { padding-inline: 2px; }
  .booking-panel { padding-inline: 20px; }
  .booking-head h2 { font-size: 46px; }
  .booking-actions { justify-content: space-between; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; transform: none; }
  .booking-panel,
  .booking-dialog-backdrop,
  .booking-step { transition: none; animation: none; }
}

/* WordPress integration */
.brand-logo {
  position: absolute;
  inset: 0 auto auto 0;
}

.brand-logo--light { display: none; }
.brand-logo--dark { display: block; }
.site-header--light:not(.site-header--scrolled) .brand-logo--light { display: block; }
.site-header--light:not(.site-header--scrolled) .brand-logo--dark { display: none; }

.skip-link {
  position: fixed;
  z-index: 99999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--cream);
  color: var(--ink);
  font-weight: 700;
  transform: translateY(-180%);
}

.skip-link:focus { transform: translateY(0); }

body.admin-bar .site-header--scrolled { top: 32px; }
body.menu-is-open { overflow: hidden; }

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--sand);
  outline-offset: 4px;
}

.editorial-main {
  min-height: 72vh;
  padding: 180px 0 120px;
}

.editorial-entry { max-width: 1100px; }
.editorial-header { max-width: 900px; margin-bottom: 64px; }
.editorial-header h1,
.archive-header h1,
.not-found h1 {
  max-width: 940px;
  margin: 12px 0 0;
  font-family: var(--serif);
  font-size: clamp(56px, 8vw, 112px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: .88;
}

.editorial-meta { margin-top: 26px; color: var(--moss); }
.editorial-featured { margin: 0 0 64px; }
.editorial-featured img { width: 100%; max-height: 720px; object-fit: cover; }
.editorial-content { max-width: 820px; font-size: 18px; }
.editorial-content > * { margin-top: 0; margin-bottom: 1.4em; }
.editorial-content h2,
.editorial-content h3 {
  margin-top: 1.5em;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1;
}
.editorial-content h2 { font-size: clamp(42px, 6vw, 68px); }
.editorial-content h3 { font-size: clamp(32px, 4vw, 46px); }
.editorial-content a { text-decoration: underline; text-underline-offset: 4px; }
.editorial-content img { height: auto; }
.editorial-content blockquote { margin: 2.4em 0; padding-left: 30px; border-left: 2px solid var(--sand); font-family: var(--serif); font-size: 32px; line-height: 1.15; }
.editorial-content .alignwide { width: min(1100px, 92vw); max-width: none; margin-left: 50%; transform: translateX(-50%); }
.editorial-content .alignfull { width: 100vw; max-width: none; margin-left: 50%; transform: translateX(-50%); }
.post-navigation { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 76px; padding-top: 26px; border-top: 1px solid var(--line); }
.post-navigation a:last-child { text-align: right; }

.archive-header { margin-bottom: 72px; }
.post-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 72px 40px; }
.post-card-image { display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream-deep); }
.post-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.post-card:hover .post-card-image img { transform: scale(1.035); }
.post-card-content { padding: 27px 0 0; }
.post-card-content h2 { margin: 8px 0 14px; font-family: var(--serif); font-size: clamp(36px, 4vw, 52px); font-weight: 500; letter-spacing: -.035em; line-height: .98; }
.post-card-content > p:not(.eyebrow) { max-width: 620px; color: var(--moss); }
.archive-pagination { margin-top: 90px; }
.nav-links { display: flex; align-items: center; gap: 12px; }
.page-numbers { padding: 9px 13px; border: 1px solid var(--line); }
.page-numbers.current { background: var(--ink); color: var(--cream); }

.not-found { min-height: 76vh; padding-top: 190px; padding-bottom: 120px; }
.not-found > p:not(.eyebrow) { max-width: 650px; margin: 34px 0; font-size: 19px; }

@media (max-width: 782px) {
  body.admin-bar .site-header--scrolled { top: 46px; }
}

@media (max-width: 860px) {
  .editorial-main { padding-top: 130px; }
  .post-grid { grid-template-columns: 1fr; }
  .post-navigation { grid-template-columns: 1fr; }
  .post-navigation a:last-child { text-align: left; }
}

@media (max-width: 560px) {
  .editorial-main { padding: 116px 0 82px; }
  .editorial-header { margin-bottom: 42px; }
  .editorial-header h1,
  .archive-header h1,
  .not-found h1 { font-size: 55px; }
  .editorial-content { font-size: 16px; }
  .not-found { padding-top: 135px; }
}

/* 2.0.4 — exact visual parity with the approved Sites preview */
html,
body { overflow-x: clip; }

.home-hero-image {
  filter: saturate(.88) contrast(1.015) brightness(1.06);
}

.home-hero-shade {
  background:
    linear-gradient(90deg, rgba(7,20,11,.66) 0%, rgba(7,20,11,.27) 49%, rgba(7,20,11,.06) 100%),
    linear-gradient(0deg, rgba(7,20,11,.44) 0%, transparent 46%),
    linear-gradient(180deg, rgba(7,20,11,.16), transparent 27%);
}

.hero-kicker,
.home-hero h1,
.hero-intro { text-shadow: 0 3px 28px rgba(5, 14, 8, .18); }

.hero-content-premium { transform: translateY(-46px); }
.language-switcher--mobile { display: none; }
.hero-progress { min-width: 218px; }

.hero-pause {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-left: 3px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 50%;
  background: rgba(10,22,14,.12);
  color: var(--white);
  cursor: pointer;
}

.hero-pause b { font-family: var(--sans); font-size: 10px; font-weight: 600; letter-spacing: -2px; transform: translateX(-1px); }
.hero-pause.is-paused b { width: 0; height: 0; border-top: 5px solid transparent; border-bottom: 5px solid transparent; border-left: 8px solid currentColor; font-size: 0; letter-spacing: 0; transform: translateX(1px); }

/* WordPress-only structural normalization; no change to the approved geometry. */
.footer-menu,
.footer-legal ul { margin: 0; padding: 0; list-style: none; }
.footer-menu { display: flex; align-items: flex-start; flex-direction: column; gap: 11px; }
.footer-legal ul { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 9px 18px; }
.footer-legal a { color: inherit; }
.footer-widget > :last-child { margin-bottom: 0; }
.cn-texture-disabled::after,
.cn-frame-disabled .home-hero::after,
.cn-frame-disabled .page-hero::after { display: none; }
.cn-motion-disabled [data-reveal],
.cn-motion-disabled.motion-ready [data-reveal],
.cn-motion-disabled .motion-ready [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }

@media (min-width: 1121px) {
  .site-header { height: 116px; }
  .site-header--scrolled { height: 84px; }
  .brand { width: 190px; height: 100px; flex: 0 0 190px; }
  .site-header--scrolled .brand { width: 150px; height: 78px; flex-basis: 150px; }
  .brand img { width: 100%; height: auto; max-height: 100%; object-fit: contain; }
  .nav { gap: clamp(17px, 1.8vw, 28px); }
  .nav > a { font-size: 13.5px; letter-spacing: .045em; white-space: nowrap; }
  .nav-contact { gap: 18px; margin-left: 2px; }
  .language-switcher--header { position: static; gap: 6px; margin-left: 13px; font-size: 10.5px; }
}

@media (max-width: 1260px) and (min-width: 1121px) {
  .site-header { padding-inline: 28px; }
  .brand { width: 166px; flex-basis: 166px; }
  .nav { gap: 16px; }
  .nav > a { font-size: 12.5px; }
  .nav-contact { gap: 12px; padding-inline: 14px; }
  .language-switcher--header { margin-left: 7px; gap: 3px; font-size: 9.5px; }
}

@media (max-width: 1120px) {
  .site-header,
  .site-header--scrolled { height: 88px; padding-inline: 24px; }
  .site-header--scrolled { height: 74px; }
  .brand { width: 152px; height: 80px; flex: 0 0 152px; }
  .site-header--scrolled .brand { width: 126px; height: 66px; flex-basis: 126px; }
  .brand img { width: 100%; height: auto; max-height: 100%; object-fit: contain; }
  .menu-toggle { display: block; flex: 0 0 48px; }
  .language-switcher--header { display: none; }

  .nav {
    position: fixed;
    z-index: 51;
    inset: 0;
    display: flex;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 15px;
    padding: calc(112px + env(safe-area-inset-top)) 7vw calc(34px + env(safe-area-inset-bottom));
    background: var(--cream);
    color: var(--ink);
    opacity: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav--open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav > a { flex: 0 0 auto; min-height: 42px; font-family: var(--serif); font-size: clamp(35px, 5vw, 48px); font-weight: 400; letter-spacing: -.03em; line-height: 1.05; white-space: normal; }
  .nav > a::after { display: none; }
  .nav-contact { min-height: 42px; margin: 4px 0 0; padding: 0; border: 0; }
  .nav-mobile-phone { display: block; margin-top: 7px; padding-block: 10px; }

  .language-switcher--mobile {
    position: static;
    display: flex;
    width: min(100%, 370px);
    align-items: center;
    gap: 4px;
    margin: 6px 0 0;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    font-size: 11px;
  }

  .language-switcher--mobile a { display: grid; min-width: 44px; min-height: 44px; place-items: center; padding: 0; }
  .site-header--menu-open { color: var(--ink); }
  .site-header--menu-open .brand-logo--light { display: none !important; }
  .site-header--menu-open .brand-logo--dark { display: block !important; }
  .hero-content-premium { transform: none; }
  .page-hero { background-attachment: scroll; }
}

@media (max-width: 560px) {
  .site-header,
  .site-header--scrolled { height: 80px; padding-inline: 16px; }
  .site-header--scrolled { height: 70px; }
  .brand { width: 136px; height: 71px; flex-basis: 136px; }
  .site-header--scrolled .brand { width: 118px; height: 62px; flex-basis: 118px; }
  .nav { gap: 12px; padding: calc(94px + env(safe-area-inset-top)) 24px calc(24px + env(safe-area-inset-bottom)); }
  .nav > a { min-height: 38px; font-size: clamp(34px, 11vw, 43px); }
  .nav-mobile-phone { margin-top: 2px; }
  .language-switcher--mobile { margin-top: 2px; }
  .home-hero-content { padding-bottom: 88px; }
  .home-hero h1 { font-size: clamp(54px, 16vw, 72px); }
  .hero-intro { max-width: 94%; margin-bottom: 32px; }
  .hero-progress { display: none; }
  .booking-panel { height: 100dvh; padding: calc(76px + env(safe-area-inset-top)) 20px calc(28px + env(safe-area-inset-bottom)); }
  .booking-rail { right: 12px; bottom: calc(12px + env(safe-area-inset-bottom)); }
  .footer-legal ul { justify-content: flex-start; }
}

@media (max-width: 380px) {
  .site-header,
  .site-header--scrolled { padding-inline: 12px; }
  .brand { width: 122px; height: 64px; flex-basis: 122px; }
  .site-header--scrolled .brand { width: 108px; height: 57px; flex-basis: 108px; }
  .nav { padding-inline: 20px; }
  .nav > a { font-size: 34px; }
  .booking-rail { left: 12px; }
  .booking-rail button { width: 100%; justify-content: space-between; }
}

@media (max-width: 1120px) and (max-height: 650px) {
  .nav { gap: 8px; padding-top: calc(78px + env(safe-area-inset-top)); padding-bottom: calc(16px + env(safe-area-inset-bottom)); }
  .nav > a { min-height: 32px; font-size: 30px; }
  .nav-mobile-phone { margin-top: 0; padding-block: 5px; }
  .language-switcher--mobile { margin-top: 0; padding-top: 7px; }
  .language-switcher--mobile a { min-height: 36px; }
}

@media (max-width: 1120px) and (max-height: 460px) {
  .nav { gap: 4px; padding-top: calc(68px + env(safe-area-inset-top)); }
  .nav > a { min-height: 28px; font-size: 26px; }
  .nav-mobile-phone { font-size: 10px !important; }
  .language-switcher--mobile { width: 310px; }
  .language-switcher--mobile a { min-width: 38px; min-height: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-pause { display: none; }
}
