:root {
  --color-white: #ffffff;
  --color-black: #000000;
  --color-heading: #000000;
  --color-text: #626262;
  --color-muted: #777777;
  --color-rule: #eeeeee;
  --color-menu-edge: #e1e4e6;
  --color-blue: #030dfd;
  --color-violet: #3f00ff;
  --color-cyan: #009ace;
  --color-wine: #8d2424;
  --color-deep-red: #a82e2e;
  --color-red: #c23b3b;
  --color-alert: #ff0000;
  --color-charcoal: #2a2a2a;
  --color-line: #508d24;
  --color-weebly: #3478f6;
  --color-orange: #eb8e09;
  --color-purple: #5848b7;
  --color-contact-label: #5040ae;
  --color-contact-copy: #414141;
  --font-brand: "Montserrat", "Noto Sans SC", sans-serif;
  --font-nav: "Josefin Sans", "Noto Sans SC", sans-serif;
  --font-heading: "Crimson Text", "Noto Serif SC", serif;
  --font-body: "Quattrocento", "Noto Sans SC", serif;
  --font-ui: Arial, "Noto Sans SC", sans-serif;
  --container: 1286px;
  --hero-width: 1600px;
  --header-height: 50px;
  --gallery-ratio: 4 / 3;
  --transition-fast: 0.2s ease;
  --transition-menu: 0.3s cubic-bezier(0, 0.085, 0.68, 0.53);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--color-white);
}

body {
  min-width: 320px;
  margin: 0;
  padding-bottom: 62px;
  color: var(--color-black);
  background: var(--color-white);
  font-family: "Helvetica Neue", Helvetica, Arial, "Noto Sans SC", sans-serif;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

.page-container {
  width: calc(100% - 40px);
  max-width: var(--container);
  margin-inline: auto;
}

.text-blue {
  color: var(--color-blue);
}

.text-violet {
  color: var(--color-violet);
}

.text-cyan {
  color: var(--color-cyan);
}

.text-wine {
  color: var(--color-wine);
}

.text-deep-red {
  color: var(--color-deep-red);
}

.text-red {
  color: var(--color-red);
}

.text-alert {
  color: var(--color-alert);
}

.text-charcoal {
  color: var(--color-charcoal);
}

.text-muted {
  color: var(--color-muted);
}

.text-purple {
  color: var(--color-purple);
}

.text-bold {
  font-weight: 700;
}

/* ---------- SiteHeader ---------- */

.site-header {
  position: relative;
  z-index: 10;
  height: var(--header-height);
  background: var(--color-white);
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

.site-header__brand {
  display: block;
  width: calc(100% - 100px);
  max-width: 100%;
  margin-inline: auto;
  overflow: hidden;
  font-family: var(--font-brand);
  font-size: 19.36px;
  font-weight: 500;
  line-height: 27.104px;
  letter-spacing: 0.2904px;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-header__menu-button {
  position: absolute;
  right: 20px;
  left: auto;
  top: 5px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 30px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.site-header__menu-button span {
  width: 13px;
  height: 1px;
  margin-block: 1.5px;
  background: var(--color-muted);
}

.site-nav {
  display: none;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 20;
  overflow-y: scroll;
  background: var(--color-white);
  opacity: 0;
  transform: translateX(-100%);
  transition:
    transform var(--transition-menu),
    opacity var(--transition-menu);
  visibility: hidden;
}

.mobile-menu.is-open {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}

.mobile-menu__close {
  position: absolute;
  top: 10px;
  left: 20px;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.mobile-menu__close::before,
.mobile-menu__close::after {
  position: absolute;
  top: 14px;
  left: 1px;
  width: 22px;
  height: 2px;
  background: var(--color-muted);
  content: "";
}

.mobile-menu__close::before {
  transform: rotate(45deg);
}

.mobile-menu__close::after {
  transform: rotate(-45deg);
}

.mobile-menu__list {
  margin: 50px 0 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.mobile-menu__list a {
  display: block;
  height: 34px;
  font-family: var(--font-nav);
  font-size: 16px;
  font-weight: 500;
  line-height: 34px;
}

/* ---------- HeroContact ---------- */

.hero-contact {
  padding-top: 0;
}

.hero-contact__hero {
  position: relative;
  width: 100%;
  max-width: none;
  aspect-ratio: 12 / 5;
  margin-inline: auto;
  overflow: hidden;
}

.hero-contact__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-hero-carousel__slides,
.home-hero-carousel__slide {
  position: absolute;
  inset: 0;
}

.home-hero-carousel__slide {
  z-index: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.75s ease;
  pointer-events: none;
}

.home-hero-carousel__slide.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
}

.home-hero-carousel__arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 46px;
  height: 58px;
  padding: 0 0 4px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  color: #fff;
  background: rgba(25, 43, 30, 0.38);
  font-family: Arial, sans-serif;
  font-size: 38px;
  line-height: 1;
  opacity: 0.82;
  transform: translateY(-50%);
  backdrop-filter: blur(7px);
  cursor: pointer;
  transition: opacity var(--transition-fast), background-color var(--transition-fast);
}

.home-hero-carousel__arrow:hover,
.home-hero-carousel__arrow:focus-visible {
  background: rgba(25, 43, 30, 0.68);
  opacity: 1;
}

.home-hero-carousel__arrow--previous {
  left: 22px;
}

.home-hero-carousel__arrow--next {
  right: 22px;
}

.home-hero-carousel__dots {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 9px;
}

.home-hero-carousel__dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  transition: width var(--transition-fast), border-radius var(--transition-fast), background-color var(--transition-fast);
}

.home-hero-carousel__dots button.is-active {
  width: 30px;
  border-radius: 999px;
  background: #fff;
}

.hero-contact__details {
  margin-top: 24px;
  margin-bottom: 20px;
  font-family: var(--font-heading);
  font-size: 23px;
  font-weight: 300;
  line-height: 32.2px;
}

.hero-contact__details p {
  margin: 0;
}

.hero-contact__details strong {
  color: var(--color-deep-red);
}

.hero-contact__details a {
  color: var(--color-line);
}

.hero-contact__booking {
  display: block;
  width: 212px;
  margin: 30px auto 24px;
}

.hero-contact__booking img {
  width: 212px;
  height: 81px;
}

/* ---------- HomePromotion ---------- */

.home-promotion {
  margin: 26px 0 46px;
}

.home-promotion__card {
  position: relative;
  display: grid;
  gap: 28px;
  overflow: hidden;
  padding: 34px 28px 30px;
  color: #f9f6ed;
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 255, 255, 0.13), transparent 31%),
    linear-gradient(135deg, #314c38 0%, #496744 52%, #6f764a 100%);
  border-radius: 4px;
  box-shadow: 0 18px 45px rgba(42, 64, 43, 0.16);
}

.home-promotion__content,
.home-promotion__button {
  position: relative;
  z-index: 1;
}

.home-promotion__content {
  min-width: 0;
}

.home-promotion__kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 13px;
  color: #e9d79d;
  font-family: var(--font-nav);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.home-promotion__kicker::before {
  display: none;
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

.home-promotion__title {
  max-width: 720px;
  margin: 0 0 13px;
  font-family: var(--font-heading);
  font-size: clamp(29px, 7.8vw, 42px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: 0.025em;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.home-promotion__text {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.04em;
  overflow-wrap: anywhere;
}

.home-promotion__button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: fit-content;
  min-width: 218px;
  min-height: 52px;
  padding: 13px 18px 13px 21px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.08);
  font-family: var(--font-nav);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition:
    color var(--transition-fast),
    background-color var(--transition-fast),
    transform var(--transition-fast);
}

.home-promotion__button:hover,
.home-promotion__button:focus-visible {
  color: #314c38;
  background: #f9f6ed;
  transform: translateY(-2px);
}

.home-promotion__button-arrow {
  font-family: var(--font-ui);
  font-size: 20px;
  line-height: 1;
}

.home-promotion__decoration {
  position: absolute;
  right: -22px;
  bottom: -47px;
  width: 190px;
  height: 190px;
  opacity: 0.2;
  transform: rotate(-8deg);
}

.home-promotion__decoration span {
  position: absolute;
  bottom: 0;
  width: 54px;
  height: 150px;
  border: 1px solid #fff;
  border-radius: 100% 0 100% 0;
  transform-origin: bottom center;
}

.home-promotion__decoration span:nth-child(1) {
  left: 35px;
  transform: rotate(-32deg);
}

.home-promotion__decoration span:nth-child(2) {
  left: 68px;
}

.home-promotion__decoration span:nth-child(3) {
  left: 100px;
  transform: rotate(32deg);
}

/* ---------- CampModule ---------- */

.camp-module {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  padding: 20px 0 0;
  border-top: 0;
}

.camp-module__media,
.camp-module__content {
  min-width: 0;
}

.camp-module__content {
  padding-top: 20px;
}

.camp-module__title {
  margin: 0 0 20px;
  color: var(--color-heading);
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 300;
  line-height: 32.2px;
  letter-spacing: 0;
}

.camp-module__description {
  margin: 0 0 30px;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.32px;
}

.camp-module__description br {
  display: block;
  content: "";
}

.camp-module__description strong {
  font-weight: 700;
}

/* ---------- PhotoGallery ---------- */

.photo-gallery {
  width: 100%;
  font-family: var(--font-ui);
}

.photo-gallery__viewport {
  position: relative;
  aspect-ratio: var(--gallery-ratio);
  overflow: hidden;
  background: var(--color-rule);
}

.photo-gallery__main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.18s ease;
}

.photo-gallery__main.is-changing {
  opacity: 0.25;
}

.photo-gallery__arrow {
  position: absolute;
  top: 50%;
  width: 42px;
  height: 64px;
  padding: 0;
  border: 0;
  color: var(--color-white);
  background: rgba(0, 0, 0, 0.18);
  font-size: 40px;
  line-height: 64px;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity var(--transition-fast);
  cursor: pointer;
}

.photo-gallery:hover .photo-gallery__arrow,
.photo-gallery__arrow:focus-visible {
  opacity: 1;
}

.photo-gallery__arrow--previous {
  left: 0;
}

.photo-gallery__arrow--next {
  right: 0;
}

.photo-gallery__thumbs {
  display: flex;
  gap: 5px;
  height: 75px;
  padding-top: 5px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}

.photo-gallery__thumbs::-webkit-scrollbar {
  display: none;
}

.photo-gallery__thumb {
  flex: 0 0 70px;
  width: 70px;
  height: 70px;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--color-white);
  opacity: 0.64;
  cursor: pointer;
  transition: opacity var(--transition-fast);
}

.photo-gallery__thumb:hover,
.photo-gallery__thumb:focus-visible,
.photo-gallery__thumb.is-active {
  opacity: 1;
}

.photo-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-gallery__data {
  display: none;
}


/* ---------- NoTentPage ---------- */

.no-tent-page {
  overflow-x: hidden;
}

.no-tent-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 190.344px;
  color: var(--color-white);
  background:
    center / cover no-repeat
    var(--page-hero-image);
  text-align: center;
}

.no-tent-hero__title {
  width: calc(100% - 40px);
  margin: 15px auto;
  font-family: "Playfair Display", sans-serif;
  font-size: 35.1px;
  font-weight: 700;
  line-height: 40.365px;
  letter-spacing: -1px;
}

.no-tent-dedicated__hero {
  min-height: 260px;
  height: auto;
  padding: 46px 20px;
}

.no-tent-dedicated__hero > div {
  width: 100%;
}

.no-tent-dedicated__eyebrow {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-nav);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
}

.no-tent-dedicated__subtitle {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
}

.no-tent-price-intro {
  display: grid;
  gap: 22px;
  margin-bottom: 24px;
  padding: 28px 24px;
  border: 1px solid #e2dacb;
  border-radius: 16px;
  background: #f8f3e9;
}

.no-tent-price-intro__kicker {
  margin: 0 0 7px;
  color: #9a6b24;
  font-family: var(--font-nav);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
}

.no-tent-price-intro h2 {
  margin: 0 0 10px;
  color: #2f4a35;
  font-family: var(--font-heading);
  font-size: 29px;
  line-height: 1.25;
}

.no-tent-price-intro p:last-child {
  margin: 0;
  color: #5e5a53;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
}

.no-tent-price-intro a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: fit-content;
  min-height: 46px;
  padding: 11px 18px;
  color: #fff;
  background: #2f4a35;
  font-family: var(--font-nav);
  font-size: 15px;
  font-weight: 500;
}

.no-tent-page__content {
  margin-top: 30px;
  margin-bottom: 44px;
}

.no-tent-gallery {
  padding: 20px 0;
}

.no-tent-gallery .photo-gallery__viewport {
  aspect-ratio: var(--gallery-ratio);
}

.no-tent-gallery .photo-gallery__main {
  object-fit: cover;
}

.no-tent-gallery .photo-gallery__thumbs {
  overflow: visible;
}

.no-tent-gallery .photo-gallery__thumb {
  position: relative;
  flex: 0 0 75px;
  width: 75px;
  height: 75px;
  overflow: visible;
}

.no-tent-gallery .photo-gallery__thumb img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  max-width: none;
  height: 70px;
  transform: translate(-50%, -50%);
}

.no-tent-gallery .photo-gallery__thumb.is-portrait img {
  width: 70px;
  height: auto;
}

.booking-summary {
  font-family: var(--font-heading);
  font-weight: 300;
}

.booking-summary__title,
.booking-summary__secondary,
.booking-summary__notice,
.booking-summary__line,
.booking-summary__building {
  margin: 0 0 20px;
  font-size: 28px;
  font-weight: 300;
  line-height: 32.2px;
  letter-spacing: 0;
}

.booking-summary__title,
.booking-summary__secondary,
.booking-summary__line,
.booking-summary__building {
  font-weight: 700;
}

.booking-summary__secondary {
  font-size: 24px;
}

.booking-summary__subtitle {
  color: var(--color-orange);
}

.booking-summary__line {
  font-size: 16px;
}

.booking-summary__building {
  font-size: 18px;
}

.booking-summary__line a {
  color: var(--color-line);
}

.booking-summary__button {
  display: inline-block;
  height: 30px;
  margin: 10px 0 25px;
  padding: 0 20px;
  color: var(--color-white);
  background: var(--color-black);
  font-family: var(--font-nav);
  font-size: 12px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0.3px;
  transition: opacity var(--transition-fast);
}

.booking-summary__button:hover,
.booking-summary__button:focus-visible {
  opacity: 0.7;
}

.cabin-rules__content {
  margin: 0 auto 30px;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.32px;
}

.cabin-rules__content strong {
  font-weight: 700;
}

.cabin-rules__content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-right: auto;
  margin-left: auto;
}

.cabin-rules__content .wsite-image > a {
  display: block;
}

.villa-handbook {
  --villa-forest: #2f4a35;
  --villa-cream: #f8f3e9;
  --villa-gold: #b98732;
  max-width: 1060px;
  margin: 0 auto;
  color: #3f3a34;
}

.villa-handbook h2,
.villa-handbook h3,
.villa-handbook p {
  margin-top: 0;
}

.villa-handbook__hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 32px;
  align-items: center;
  margin-bottom: 36px;
  padding: 38px;
  border-radius: 20px;
  background: var(--villa-cream);
}

.villa-handbook__eyebrow {
  margin-bottom: 8px;
  color: var(--villa-gold);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.villa-handbook__hero h2 {
  margin-bottom: 12px;
  color: var(--villa-forest);
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.15;
}

.villa-handbook__lead {
  margin-bottom: 0;
  font-size: 19px;
  line-height: 1.8;
}

.villa-handbook__pet-image {
  width: min(100%, 220px);
  aspect-ratio: 1;
  margin-inline: auto;
  object-fit: cover;
}

.villa-handbook__features,
.villa-handbook__promos,
.villa-handbook__facilities {
  display: grid;
  gap: 18px;
}

.villa-handbook__features {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 40px;
}

.villa-handbook__feature,
.villa-handbook__promo,
.villa-handbook__facility {
  padding: 24px;
  border: 1px solid #e4dac7;
  border-radius: 16px;
  background: #fff;
}

.villa-handbook__feature h3,
.villa-handbook__promo h3,
.villa-handbook__facility h3 {
  margin-bottom: 8px;
  color: var(--villa-forest);
  font-size: 21px;
}

.villa-handbook__feature p,
.villa-handbook__promo p,
.villa-handbook__facility p {
  margin-bottom: 0;
}

.villa-handbook__section {
  margin-bottom: 42px;
}

.villa-handbook__section > h2 {
  margin-bottom: 6px;
  color: var(--villa-forest);
  font-size: clamp(26px, 4vw, 34px);
}

.villa-handbook__section-note {
  margin-bottom: 18px;
  color: #786e61;
}

.villa-handbook__table-wrap {
  overflow-x: auto;
  border: 1px solid #e4dac7;
  border-radius: 14px;
}

.villa-handbook__table {
  width: 100%;
  min-width: 650px;
  border-collapse: collapse;
  background: #fff;
}

.villa-handbook__table th,
.villa-handbook__table td {
  padding: 14px 16px;
  border-bottom: 1px solid #eee5d6;
  text-align: left;
  vertical-align: top;
}

.villa-handbook__table th {
  color: #fff;
  background: var(--villa-forest);
  font-weight: 700;
}

.villa-handbook__table tr:last-child td {
  border-bottom: 0;
}

.villa-handbook__price {
  color: #9a5e16;
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
}

.villa-handbook__notes {
  margin: 14px 0 0;
  padding-left: 22px;
}

.villa-handbook__promos {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.villa-handbook__promo--accent {
  color: #fff;
  border-color: var(--villa-forest);
  background: var(--villa-forest);
}

.villa-handbook__promo--accent h3 {
  color: #fff;
}

.villa-handbook__promo-price {
  display: block;
  margin: 8px 0;
  color: #f4d498;
  font-size: 32px;
  font-weight: 700;
}

.villa-handbook__gift {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 42%);
  gap: 24px;
  align-items: center;
  overflow: hidden;
  border-radius: 18px;
  background: #f5eadc;
}

.villa-handbook__gift-copy {
  padding: 30px;
}

.villa-handbook__gift img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.villa-handbook__facilities {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.villa-handbook__reminders {
  margin: 0;
  padding: 24px 24px 24px 46px;
  border-radius: 16px;
  background: var(--villa-cream);
}

.villa-handbook__rules {
  border-top: 1px solid #ddd1bf;
  border-bottom: 1px solid #ddd1bf;
}

.villa-handbook__rules details {
  padding: 18px 0;
  border-bottom: 1px solid #e8dfd2;
}

.villa-handbook__rules details:last-child {
  border-bottom: 0;
}

.villa-handbook__rules summary {
  color: var(--villa-forest);
  font-size: 21px;
  font-weight: 700;
  cursor: pointer;
}

.villa-handbook__rules ol,
.villa-handbook__rules ul {
  margin-bottom: 0;
  padding-left: 24px;
}

.villa-handbook__cta {
  padding: 34px;
  border-radius: 18px;
  color: #fff;
  background: var(--villa-forest);
  text-align: center;
}

.villa-handbook__cta h2 {
  color: #fff;
}

.villa-handbook__cta a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.villa-handbook__cta-button {
  display: inline-block;
  margin-top: 10px;
  padding: 11px 24px;
  border-radius: 999px;
  color: var(--villa-forest) !important;
  background: #fff;
  font-weight: 700;
  text-decoration: none !important;
}

@media (max-width: 760px) {
  .villa-handbook__hero {
    grid-template-columns: 1fr;
    padding: 26px 20px;
    text-align: center;
  }

  .villa-handbook__features,
  .villa-handbook__promos,
  .villa-handbook__facilities,
  .villa-handbook__gift {
    grid-template-columns: 1fr;
  }

  .villa-handbook__gift-copy {
    padding: 24px 20px 0;
  }

  .villa-handbook__gift img {
    min-height: 220px;
  }

  .villa-handbook__cta {
    padding: 28px 20px;
  }
}


.food-gallery {
  max-width: 760px;
  margin: 0 auto 30px;
}

.food-gallery .photo-gallery__viewport {
  aspect-ratio: 4 / 5;
}

.food-gallery .photo-gallery__main {
  object-fit: contain;
}

.food-menu-image,
.food-order-copy {
  max-width: 760px;
  margin: 0 auto 30px;
}

.food-menu-image img {
  width: min(100%, 561px);
  max-width: 100%;
}

.food-order-copy h2 {
  margin: 0 0 16px;
  color: var(--color-wine);
  font-size: 28px;
  line-height: 1.45;
}

.food-order-copy h3 {
  margin: 22px 0 8px;
  color: var(--color-wine);
  font-size: 20px;
}

.food-order-copy p {
  margin: 0 0 12px;
}

.site-plan-image {
  margin: 0 auto 40px;
}

.site-plan-image img {
  width: min(100%, 356px);
  max-width: 100%;
}

.aerial-gallery-title {
  margin: 0 0 18px;
  color: var(--color-wine);
  font-size: 28px;
  text-align: center;
}

.aerial-gallery {
  max-width: 1100px;
  margin: 0 auto 30px;
}

.aerial-gallery .photo-gallery__viewport {
  aspect-ratio: 1100 / 619;
}

.aerial-gallery .photo-gallery__main {
  object-fit: contain;
}

.about-content {
  max-width: 1066px;
  margin: 0 auto 30px;
}

.about-content .wsite-content-title {
  margin: 24px 0;
  color: var(--color-wine);
  font-size: 28px;
  text-align: center;
}

.about-content .paragraph {
  margin-bottom: 24px;
}

.about-link-button {
  display: inline-block;
  margin-bottom: 10px;
  padding: 10px 18px;
  color: var(--color-white);
  background: var(--color-black);
  font-family: var(--font-nav);
  font-size: 13px;
  font-weight: 500;
  transition: opacity var(--transition-fast);
}

.about-link-button:hover,
.about-link-button:focus-visible {
  opacity: 0.7;
}

.environment-gallery {
  max-width: 900px;
  margin: 0 auto 14px;
}

.environment-gallery .photo-gallery__viewport {
  aspect-ratio: 16 / 9;
  background: #f4f1e9;
}

.environment-gallery .photo-gallery__main {
  width: 100%;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center;
}

.environment-gallery .photo-gallery__thumbs {
  justify-content: center;
  gap: 8px;
}

.environment-gallery .photo-gallery__thumb {
  flex-basis: 96px;
  width: 96px;
  border: 1px solid #e1dccf;
  border-radius: 8px;
  background: #f4f1e9;
}

.environment-gallery .photo-gallery__thumb img {
  width: 100%;
  height: 100% !important;
  padding: 3px;
  object-fit: contain;
  object-position: center;
}

.environment-caption {
  margin: 0 0 30px;
  color: var(--color-wine);
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

.contact-content {
  max-width: 760px;
  margin: 0 auto 30px;
}

.contact-intro {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 700;
}

.contact-primary-button,
.contact-secondary-button {
  display: inline-block;
  padding: 10px 18px;
  color: var(--color-white);
  background: var(--color-black);
  font-family: var(--font-nav);
  font-size: 13px;
  font-weight: 500;
  transition: opacity var(--transition-fast);
}

.contact-primary-button:hover,
.contact-primary-button:focus-visible,
.contact-secondary-button:hover,
.contact-secondary-button:focus-visible {
  opacity: 0.7;
}

.contact-details {
  margin: 28px 0;
}

.contact-details p {
  margin: 0 0 18px;
}

.contact-details a {
  color: var(--color-line);
  overflow-wrap: anywhere;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
}

.contact-line-button {
  display: inline-block;
}

.contact-line-button img {
  width: 116px;
}

.contact-qr {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  width: 150px;
  text-align: center;
}

.contact-qr img {
  width: 131px;
}

/* ---------- EquipmentRentalPage ---------- */

.equipment-rental-page {
  overflow-x: hidden;
  color: #3e413d;
  background: #f7f6f1;
}

.equipment-rental-intro {
  padding: 64px 0 52px;
  border-top: 1px solid #e9e7df;
  border-bottom: 1px solid #e2dfd3;
  background: #f1eee4;
}

.equipment-rental-intro__inner {
  max-width: 1000px;
  text-align: center;
}

.equipment-rental-intro__kicker,
.equipment-catalog__kicker {
  margin: 0 0 10px;
  color: #9a6a2c;
  font-family: var(--font-nav);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
}

.equipment-rental-intro h1 {
  margin: 0;
  color: #2f4a35;
  font-family: var(--font-heading);
  font-size: clamp(38px, 8vw, 64px);
  font-weight: 600;
  line-height: 1.15;
}

.equipment-rental-intro__subtitle {
  margin: 14px 0 0;
  color: #6d6e68;
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.7;
}

.equipment-catalog {
  padding: 54px 0 64px;
}

.equipment-catalog__inner {
  max-width: 1000px;
}

.equipment-catalog__heading {
  display: grid;
  gap: 16px;
  margin-bottom: 26px;
}

.equipment-catalog__heading h2 {
  margin: 0;
  color: #2f4a35;
  font-family: var(--font-heading);
  font-size: 32px;
  line-height: 1.25;
}

.equipment-catalog__heading > p {
  margin: 0;
  color: #73736d;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
}

.equipment-catalog__grid {
  display: grid;
  gap: 26px;
}

.equipment-sheet {
  margin: 0;
  padding: 14px;
  border: 1px solid #e1ded3;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(50, 59, 47, 0.08);
}

.equipment-sheet__image {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  background: #f4f3ef;
}

.equipment-sheet__image img {
  width: 100%;
  height: auto;
}

.equipment-sheet__image span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #fff;
  background: rgba(39, 58, 43, 0.88);
  font-family: var(--font-ui);
  font-size: 13px;
}

.equipment-sheet figcaption {
  padding: 14px 4px 2px;
  color: #474a45;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
}

.equipment-catalog__empty {
  padding: 36px 24px;
  border: 1px dashed #c9c4b5;
  border-radius: 14px;
  color: #6d6e68;
  background: #fff;
  text-align: center;
}

.equipment-contact {
  padding: 0 0 76px;
}

.equipment-contact__card {
  display: grid;
  gap: 24px;
  align-items: center;
  max-width: 1000px;
  padding: 32px 28px;
  border-radius: 16px;
  color: #fff;
  background: #2f4a35;
}

.equipment-contact__card p {
  margin: 0 0 5px;
  color: #e8d49b;
  font-family: var(--font-nav);
  font-size: 13px;
  letter-spacing: 0.1em;
}

.equipment-contact__card h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 27px;
  line-height: 1.35;
}

.equipment-contact__card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 46px;
  padding: 11px 19px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  font-family: var(--font-nav);
  font-size: 15px;
  font-weight: 500;
  transition: color var(--transition-fast), background-color var(--transition-fast);
}

.equipment-contact__card a:hover,
.equipment-contact__card a:focus-visible {
  color: #2f4a35;
  background: #fff;
}

@media (min-width: 768px) {
  .equipment-catalog__heading,
  .equipment-contact__card {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .equipment-catalog__heading {
    align-items: end;
  }

  .equipment-catalog__heading > p {
    max-width: 360px;
    text-align: right;
  }
}

/* ---------- ContactPage ---------- */

.contact-page {
  overflow-x: hidden;
  overflow-y: scroll;
  padding-bottom: 51px;
}

.contact-page__main {
  min-height: 788.188px;
}

.contact-page__container {
  width: calc(100vw - 55px);
  max-width: none;
  margin-right: 0;
  margin-left: 20px;
  padding: 30px 0;
}

.booking-contact__title {
  height: 32.188px;
  margin: 0 0 20px;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 300;
  line-height: 32.2px;
}

.booking-contact__title strong {
  color: var(--color-deep-red);
  font-size: 18px;
  font-weight: 700;
}

.contact-button-group {
  height: 65px;
  padding-top: 10px;
}

.contact-button {
  display: inline-block;
  height: 41px;
  padding: 0 30px;
  color: var(--color-white);
  background: var(--color-black);
  font-family: var(--font-nav);
  font-size: 11px;
  font-weight: 700;
  line-height: 41px;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  transition: 0.3s ease-in-out;
}

.booking-contact .contact-button {
  width: 165.203px;
}

.social-contact .contact-button {
  width: 176.688px;
}

.contact-details {
  height: 216px;
  margin-bottom: 30px;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.32px;
}

.contact-details__label {
  color: var(--color-contact-label);
}

.contact-details__line-link {
  padding-left: 0;
  color: var(--color-contact-copy);
  text-indent: 20px;
  white-space: normal;
}

.contact-details__line-link span {
  margin-right: 20px;
}

.contact-details__line-link a {
  margin-left: 0;
  color: var(--color-line);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-details__spacer {
  height: 24px;
}

.contact-details small {
  font-size: 10px;
}

.contact-details__bank {
  display: block;
  color: var(--color-purple);
  font-weight: 700;
}

.social-contact__title {
  height: 24px;
  margin: 0 0 30px;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.32px;
}

.social-contact__title strong {
  font-weight: 700;
}

.social-contact__line {
  height: 40px;
}

.social-contact__line img {
  width: 116px;
  height: 36px;
}

.social-contact__qr {
  height: 165px;
  padding: 10px 0 24px;
}

.social-contact__qr img {
  width: 131px;
  height: 131px;
}

.social-contact__rule {
  height: 41px;
  padding: 20px 0;
}

.social-contact__rule hr {
  height: 1px;
  margin: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.13);
}

.contact-page .platform-badge {
  left: 10px;
  width: 290px;
}

@media (max-width: 767px) {
  body {
    font-size: 17px;
    line-height: 1.75;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }

  .site-header__menu-button {
    top: 3px;
    width: 44px;
    height: 44px;
  }

  .site-header__menu-button span {
    width: 18px;
    height: 2px;
    margin-block: 2px;
  }

  .mobile-menu__list a {
    min-height: 46px;
    padding: 5px 20px;
    font-size: 18px;
    line-height: 36px;
  }

  .hero-contact__details {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.75;
    overflow-wrap: anywhere;
  }

  .home-promotion__kicker {
    font-size: 14px;
  }

  .home-promotion__text,
  .camp-module__description,
  .cabin-rules__content,
  .food-order-copy,
  .about-content,
  .contact-content {
    font-size: 17px;
    line-height: 1.75;
  }

  .camp-module__title {
    font-size: 30px;
    line-height: 1.3;
  }

  .home-promotion__button,
  .booking-summary__button,
  .about-link-button,
  .contact-primary-button,
  .contact-secondary-button {
    min-height: 44px;
    padding: 11px 18px;
    font-size: 15px;
    line-height: 1.45;
  }

  .no-tent-hero__title {
    font-size: clamp(32px, 9vw, 40px);
    line-height: 1.2;
  }

  .booking-summary__title,
  .booking-summary__secondary,
  .booking-summary__notice,
  .booking-summary__line,
  .booking-summary__building {
    line-height: 1.45;
  }

  .booking-summary__line,
  .booking-summary__building {
    font-size: 18px;
  }

  .cabin-rules__content p,
  .cabin-rules__content li,
  .camp-module__description p,
  .camp-module__description li {
    line-height: 1.75;
  }

  .cabin-rules__content [style*="font-size"],
  .camp-module__description [style*="font-size"] {
    font-size: inherit !important;
  }

  .cabin-rules__content font[size="1"],
  .cabin-rules__content font[size="2"],
  .cabin-rules__content font[size="3"],
  .camp-module__description font[size="1"],
  .camp-module__description font[size="2"],
  .camp-module__description font[size="3"] {
    font-size: 17px !important;
  }

  .cabin-rules__content font[size="4"],
  .camp-module__description font[size="4"] {
    font-size: 20px !important;
    line-height: 1.6;
  }

  .cabin-rules__content font[size="5"],
  .camp-module__description font[size="5"] {
    font-size: 24px !important;
    line-height: 1.45;
  }

  .villa-handbook__eyebrow {
    font-size: 14px;
  }

  .villa-handbook__lead,
  .villa-handbook__feature p,
  .villa-handbook__promo p,
  .villa-handbook__facility p,
  .villa-handbook__notes,
  .villa-handbook__reminders,
  .villa-handbook__rules,
  .villa-handbook__cta {
    font-size: 17px;
    line-height: 1.75;
  }

  .villa-handbook__table {
    min-width: 0;
    border-collapse: separate;
    background: transparent;
    font-size: 17px;
    line-height: 1.55;
  }

  .villa-handbook__table-wrap {
    overflow: visible;
    border: 0;
    border-radius: 0;
  }

  .villa-handbook__table thead {
    display: none;
  }

  .villa-handbook__table tbody,
  .villa-handbook__table tr,
  .villa-handbook__table td {
    display: block;
    width: 100%;
  }

  .villa-handbook__table tr {
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid #e4dac7;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(47, 74, 53, 0.08);
  }

  .villa-handbook__table td {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid #eee5d6;
    overflow-wrap: anywhere;
  }

  .villa-handbook__table td::before {
    color: #746d63;
    font-size: 14px;
    font-weight: 700;
  }

  .villa-handbook__table td:nth-child(1)::before {
    content: "入住方案";
  }

  .villa-handbook__table td:nth-child(2)::before {
    content: "房型配置";
  }

  .villa-handbook__table td:nth-child(3)::before {
    content: "方案價格";
  }

  .villa-handbook__table td:last-child {
    border-bottom: 0;
  }

  .villa-handbook__table .villa-handbook__price {
    color: #9a5e16;
    background: #fcf7ed;
    font-size: 20px;
    white-space: normal;
  }

  .food-order-copy h2,
  .aerial-gallery-title,
  .about-content .wsite-content-title {
    font-size: 28px;
    line-height: 1.4;
  }

  .food-order-copy h3,
  .environment-caption,
  .contact-intro {
    font-size: 21px;
    line-height: 1.5;
  }

  .contact-page__container {
    width: calc(100% - 40px);
    margin-inline: auto;
    padding: 32px 0;
  }

  .booking-contact__title {
    height: auto;
    margin-bottom: 14px;
    font-size: 28px;
    line-height: 1.35;
  }

  .booking-contact__title strong {
    font-size: 19px;
    line-height: 1.55;
  }

  .contact-button-group {
    height: auto;
    min-height: 64px;
    padding-top: 6px;
  }

  .contact-button,
  .booking-contact .contact-button,
  .social-contact .contact-button {
    width: auto;
    min-height: 44px;
    height: auto;
    padding: 12px 20px;
    font-size: 15px;
    line-height: 1.4;
  }

  .contact-details {
    height: auto;
    margin: 18px 0 34px;
    font-size: 17px;
    line-height: 1.75;
    overflow-wrap: anywhere;
  }

  .contact-details > div {
    margin-bottom: 5px;
  }

  .contact-details__line-link {
    padding-left: 0;
    text-indent: 0;
  }

  .contact-details__line-link span {
    margin-right: 0;
  }

  .contact-details__spacer {
    height: 14px;
  }

  .contact-details small {
    font-size: 17px;
    line-height: inherit;
  }

  .social-contact__title {
    height: auto;
    margin-bottom: 16px;
    font-size: 17px;
    line-height: 1.6;
  }

  .platform-badge span {
    font-size: 14px;
  }

  .camp-module--a,
  .camp-module--b {
    padding-top: 60px;
  }

  .camp-module--a .camp-module__content,
  .camp-module--b .camp-module__content {
    padding-top: 61px;
  }

  .camp-module--c,
  .camp-module--d,
  .camp-module--g,
  .camp-module--h,
  .camp-module--q,
  .camp-module--k,
  .camp-module--cabin {
    margin-top: 41px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .contact-page {
    padding-bottom: 198.406px;
  }

  .contact-page__main {
    min-height: 837.594px;
  }

  .booking-contact__title {
    height: 38.094px;
    font-size: 31px;
    line-height: 34.1px;
  }

  .contact-details {
    height: 252px;
    font-size: 18px;
    line-height: 31.5px;
    letter-spacing: 0.36px;
  }

  .contact-details__spacer {
    height: 31.5px;
  }

  .social-contact__title {
    height: 31.5px;
    font-size: 18px;
    line-height: 31.5px;
    letter-spacing: 0.36px;
  }
}

/* ---------- PlatformBadge ---------- */

.platform-badge {
  position: fixed;
  bottom: 0;
  left: 10px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 47px;
  color: var(--color-white);
  background: var(--color-weebly);
  font-family: var(--font-ui);
  font-size: 22px;
  font-weight: 700;
  transition: filter var(--transition-fast);
}

.platform-badge span {
  margin-right: 11px;
  font-size: 12px;
  letter-spacing: 0.3px;
}

.platform-badge:hover,
.platform-badge:focus-visible {
  filter: brightness(1.06);
}

@media (min-width: 992px) {
  :root {
    --header-height: 120px;
  }

  .site-header {
    padding: 20px 40px;
    transition:
      padding 0.24s,
      min-height 0.24s;
  }

  .site-header__inner {
    display: table;
    height: 80px;
  }

  .site-header__brand {
    display: table-cell;
    width: 25%;
    padding: 0;
    font-size: 15px;
    line-height: 15px;
    letter-spacing: 1.2px;
    text-align: left;
    vertical-align: middle;
  }

  .site-header__inner::after {
    display: table-cell;
    width: 25%;
    content: "";
  }

  .site-header__menu-button,
  .mobile-menu {
    display: none;
  }

  .site-nav {
    display: table-cell;
    width: 50%;
    text-align: left;
    vertical-align: middle;
  }

  .site-nav__list,
  .site-nav__dropdown {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .site-nav__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
  }

  .site-nav__list > li {
    position: relative;
  }

  .site-nav__link,
  .site-nav__more-button {
    position: relative;
    display: block;
    padding: 10px 20px;
    border: 0;
    background: transparent;
    font-family: var(--font-nav);
    font-size: 14px;
    font-weight: 500;
    line-height: 14px;
    letter-spacing: 0.7px;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    transition: opacity 0.2s;
  }

  .site-nav__more-button {
    opacity: 0.6;
    width: 95px;
  }

  .site-nav__link:hover,
  .site-nav__link:focus-visible,
  .site-nav__more-button:hover,
  .site-nav__more-button:focus-visible {
    opacity: 0.6;
  }

  .site-nav__link.is-current::after {
    position: absolute;
    right: 20px;
    bottom: 0;
    left: 20px;
    height: 1px;
    background: var(--color-black);
    opacity: 0.45;
    content: "";
  }

  .site-nav__dropdown {
    position: absolute;
    top: 29px;
    left: 0;
    z-index: 5;
    width: 200px;
    padding: 5px 0;
    background: var(--color-white);
    box-shadow: inset 0 0 0 1px var(--color-menu-edge);
    opacity: 0;
    transform: translateY(-4px);
    transition:
      opacity var(--transition-fast),
      transform var(--transition-fast),
      visibility var(--transition-fast);
    visibility: hidden;
  }

  .site-nav__more:hover .site-nav__dropdown,
  .site-nav__more:focus-within .site-nav__dropdown,
  .site-nav__more.is-open .site-nav__dropdown {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav__dropdown a {
    display: block;
    height: 35px;
    padding: 0 15px;
    font-family: var(--font-nav);
    font-size: 14px;
    font-weight: 500;
    line-height: 35px;
    transition: background-color var(--transition-fast);
  }

  .site-nav__dropdown a:hover,
  .site-nav__dropdown a:focus-visible {
    background: var(--color-rule);
  }

  .site-header--full-nav .site-header__inner {
    display: flex;
  }

  .site-header--full-nav .site-header__brand {
    flex: 0 0 180px;
    width: auto;
  }

  .site-header--full-nav .site-header__inner::after {
    display: none;
  }

  .site-header--full-nav .site-nav {
    display: block;
    flex: 1 1 auto;
    width: auto;
  }

  .site-header--full-nav .site-nav__list {
    flex-wrap: wrap;
    gap: 0;
  }

  .site-header--full-nav .site-nav__link {
    padding-inline: 8px;
  }

  .site-header--full-nav .site-nav__link.is-current::after {
    right: 8px;
    left: 8px;
  }

  .hero-contact {
    padding-top: 0;
  }

  .hero-contact__details {
    margin-top: 24px;
    font-size: 23px;
    line-height: 38px;
  }

  .home-promotion {
    margin: 42px 0 74px;
  }

  .home-promotion__card {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    min-height: 265px;
    padding: 54px 62px 50px;
  }

  .home-promotion__title {
    font-size: 46px;
  }

  .home-promotion__text {
    font-size: 18px;
  }

  .home-promotion__decoration {
    right: 12px;
    bottom: -58px;
    width: 250px;
    height: 250px;
    transform: rotate(-8deg) scale(1.25);
  }

  .page-container {
    width: 90.25%;
  }

  .camp-module {
    position: relative;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 30px;
    padding-top: 0;
    border-top: 0;
    min-height: 586px;
  }

  .camp-module__media {
    padding-top: 20px;
  }

  .camp-module__content {
    padding-top: 0;
  }

  .camp-module--a,
  .camp-module--b {
    min-height: 627px;
    padding-top: 41px;
  }

  .camp-module--c,
  .camp-module--d,
  .camp-module--g,
  .camp-module--h,
  .camp-module--q,
  .camp-module--k,
  .camp-module--cabin {
    margin-top: 41px;
  }

  .camp-module--c::before,
  .camp-module--d::before,
  .camp-module--g::before,
  .camp-module--h::before,
  .camp-module--q::before,
  .camp-module--k::before,
  .camp-module--cabin::before {
    position: absolute;
    top: -21px;
    right: 0;
    left: 0;
    height: 1px;
    background: var(--color-rule);
    content: "";
  }

  .camp-module__title {
    font-size: 31px;
    line-height: 34.1px;
  }

  .camp-module__description {
    font-size: 18px;
    line-height: 31.5px;
    letter-spacing: 0.36px;
  }

  .photo-gallery__thumb {
    flex-basis: 70px;
    width: 70px;
    height: 70px;
  }

  .photo-gallery__thumbs {
    height: 75px;
  }

  .camp-module--cabin {
    min-height: 1504px;
  }

  .camp-module--cabin .camp-module__title {
    font-size: 29px;
    white-space: nowrap;
  }


  .no-tent-hero {
    height: 600px;
  }

  .no-tent-hero__title {
    font-size: 90px;
    font-weight: 700;
    line-height: 112.5px;
  }

  .no-tent-page__content {
    margin-top: 60px;
    margin-bottom: 91px;
  }

  .no-tent-gallery .photo-gallery__viewport {
    height: 965px;
  }

  .no-tent-gallery .photo-gallery__main {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    max-width: 1066px;
    max-height: 800px;
    object-fit: contain;
    transform: translate(-50%, -50%);
  }

  .booking-summary__title,
  .booking-summary__secondary,
  .booking-summary__notice,
  .booking-summary__line,
  .booking-summary__building {
    font-size: 31px;
    line-height: 34.1px;
  }

  .booking-summary__title {
    height: 38.094px;
  }

  .booking-summary__subtitle {
    font-size: 18px;
  }

  .booking-summary__secondary {
    height: 36.094px;
    font-size: 24px;
  }

  .booking-summary__notice {
    height: 38.094px;
    font-size: 18px;
  }

  .booking-summary__line {
    height: 39.094px;
    font-size: 16px;
  }

  .booking-summary__building {
    height: 38.094px;
    font-size: 18px;
  }

  .cabin-rules__content {
    font-size: 18px;
    line-height: 31.5px;
    letter-spacing: 0.36px;
  }

  .contact-page {
    padding-bottom: 63.406px;
  }

  .contact-page__main {
    min-height: 897.594px;
  }

  .contact-page__container {
    width: 100%;
    max-width: 1366px;
    margin-right: auto;
    margin-left: auto;
    padding: 60px 40px;
  }

  .booking-contact__title {
    height: 38.094px;
    font-size: 31px;
    line-height: 34.1px;
  }

  .contact-details {
    height: 252px;
    font-size: 18px;
    line-height: 31.5px;
    letter-spacing: 0.36px;
  }

  .contact-details__line-link {
    padding-left: 31px;
    text-indent: 0;
    white-space: nowrap;
  }

  .contact-details__line-link span {
    margin-right: 0;
  }

  .contact-details__line-link a {
    margin-left: 0;
  }

  .contact-details__spacer {
    height: 31.5px;
  }

  .social-contact__title {
    height: 31.5px;
    font-size: 18px;
    line-height: 31.5px;
    letter-spacing: 0.36px;
  }

  .contact-page .platform-badge {
    width: 280px;
  }
}

@media (min-width: 1100px) {
  .site-header__brand {
    width: 25%;
  }

  .site-nav {
    width: 50%;
  }
}

@media (max-width: 430px) {
  .platform-badge {
    left: 0;
    width: min(290px, 78vw);
  }
}

/* ---------- 20260805 Page Redesign ---------- */

body {
  padding-bottom: 0;
}

.standard-page {
  overflow-x: hidden;
  background: #f3f1ea;
}

.standard-page-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 310px;
  padding: 54px 20px;
  color: #fff;
  background:
    linear-gradient(rgba(25, 39, 28, 0.42), rgba(25, 39, 28, 0.58)),
    center 48% / cover no-repeat var(--page-hero-image);
  text-align: center;
}

.standard-page-hero__content {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
}

.standard-page-hero__content > p {
  margin: 0 0 10px;
  color: #efd9a2;
  font-family: var(--font-nav);
  font-size: 13px;
  letter-spacing: 0.2em;
}

.standard-page-hero h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(40px, 10vw, 68px);
  font-weight: 600;
  line-height: 1.15;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.3);
}

.standard-page-hero__content > div {
  max-width: 660px;
  margin: 15px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
}

.standard-page-main {
  padding: 0 0 72px;
}

.standard-page-card {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin-top: 32px;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid #e4dfd2;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 52px rgba(38, 51, 38, 0.1);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.8;
}

.standard-page-card img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.standard-page-card .wsite-content-title {
  margin: 32px 0 14px;
  color: #2f4a35;
  font-family: var(--font-heading);
  font-size: 29px;
  line-height: 1.4;
}

.standard-page-card .paragraph {
  margin-bottom: 25px;
}

.standard-page-card [style*="font-size"],
.standard-page-card font[size="1"],
.standard-page-card font[size="2"],
.standard-page-card font[size="3"] {
  font-size: inherit !important;
}

/* Food */

.food-page-redesign {
  overflow-x: hidden;
  background: #fbf8f1;
}

.food-page-hero {
  padding: 70px 0 58px;
  border-top: 1px solid #ebe4d7;
  background: #f2eadc;
  text-align: center;
}

.food-page-hero p,
.food-section-heading > p,
.food-menu-copy > p:first-child {
  margin: 0 0 9px;
  color: #a35e2b;
  font-family: var(--font-nav);
  font-size: 13px;
  letter-spacing: 0.18em;
}

.food-page-hero h1 {
  margin: 0;
  color: #5c3422;
  font-family: var(--font-heading);
  font-size: clamp(42px, 10vw, 68px);
  line-height: 1.15;
}

.food-page-hero .page-container > div {
  margin-top: 12px;
  color: #765f51;
  font-family: var(--font-body);
  font-size: 18px;
}

.food-promotion {
  padding: 36px 0 16px;
}

.food-promotion__card {
  display: grid;
  gap: 24px;
  align-items: center;
  max-width: 1100px;
  padding: 30px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, #7c3e25, #a85d31);
  box-shadow: 0 16px 38px rgba(95, 46, 28, 0.17);
}

.food-promotion__badge {
  margin: 0 0 6px;
  color: #f4d69d;
  font-family: var(--font-nav);
  font-size: 13px;
  letter-spacing: 0.13em;
}

.food-promotion h2 {
  margin: 0 0 7px;
  font-family: var(--font-heading);
  font-size: 29px;
  line-height: 1.3;
}

.food-promotion__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.65;
}

.food-promotion__card > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 46px;
  padding: 11px 20px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  font-family: var(--font-nav);
  font-size: 15px;
}

.food-showcase,
.food-menu-section,
.food-description-section {
  padding: 50px 0;
}

.food-section-heading h2,
.food-menu-copy h2 {
  margin: 0;
  color: #5c3422;
  font-family: var(--font-heading);
  font-size: 32px;
  line-height: 1.3;
}

.food-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.food-photo-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
}

.food-photo-grid figure:first-child {
  grid-column: 1 / -1;
}

.food-photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.food-photo-grid figcaption {
  padding: 10px 12px;
  color: #62574f;
  font-size: 15px;
}

.food-menu-section {
  background: #efe7d9;
}

.food-menu-layout {
  display: grid;
  gap: 28px;
  max-width: 1000px;
  align-items: start;
}

.food-menu-copy > p:last-child {
  color: #6f6259;
  font-size: 17px;
  line-height: 1.7;
}

.food-menu-sheet {
  position: relative;
  display: block;
  padding: 12px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(75, 48, 34, 0.12);
}

.food-menu-sheet img {
  width: 100%;
  height: auto;
}

.food-menu-sheet span {
  position: absolute;
  right: 22px;
  bottom: 22px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(92, 52, 34, 0.9);
  font-size: 14px;
}

.food-description-card {
  max-width: 1000px;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid #eadfce;
  border-radius: 18px;
  background: #fff;
}

.food-page__description {
  margin-top: 24px;
  color: #534d48;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.8;
}

.food-page__description h2,
.food-page__description h3 {
  margin: 1.5em 0 0.55em;
  color: #8a442a;
  font-family: var(--font-heading);
  line-height: 1.35;
}

.food-page__description h2 {
  font-size: clamp(26px, 4vw, 34px);
}

.food-page__description h3 {
  font-size: 23px;
}

.food-page__description > :first-child {
  margin-top: 0;
}

.food-page__description p,
.food-page__description ul,
.food-page__description ol {
  margin: 0 0 1.15em;
}

.food-page__description ul,
.food-page__description ol {
  padding-left: 1.4em;
}

.food-page__description li + li {
  margin-top: 0.35em;
}

.food-page__description img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Contact */

.contact-redesign-page {
  overflow-x: hidden;
  background: #f2f0e8;
}

.contact-redesign-hero {
  display: flex;
  align-items: center;
  min-height: 340px;
  padding: 72px 0 62px;
  border-top: 1px solid #e4e0d4;
  color: #fff;
  background:
    linear-gradient(rgba(19, 31, 22, 0.38), rgba(19, 31, 22, 0.62)),
    center 48% / cover no-repeat var(--page-hero-image);
  text-align: center;
}

.contact-redesign-hero p {
  margin: 0 0 9px;
  color: #f1d590;
  font-family: var(--font-nav);
  font-size: 13px;
  letter-spacing: 0.2em;
}

.contact-redesign-hero h1 {
  margin: 0;
  color: #fff;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.3);
  font-family: var(--font-heading);
  font-size: clamp(42px, 10vw, 68px);
  line-height: 1.15;
}

.contact-redesign-hero .page-container > div {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-body);
  font-size: 18px;
}

.contact-redesign-main {
  padding: 48px 0 80px;
}

.contact-redesign-content {
  max-width: 1000px;
}

.contact-redesign-content .contact-content {
  max-width: none;
  margin: 0;
  padding: clamp(28px, 5vw, 52px);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(41, 67, 50, 0.1);
}

.contact-redesign-content .contact-intro {
  margin-bottom: 18px;
  color: #294332;
  font-family: var(--font-heading);
  font-size: 27px;
  line-height: 1.45;
}

.contact-redesign-content .contact-primary-button,
.contact-redesign-content .contact-secondary-button {
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  color: #fff;
  background: #294332;
  font-size: 15px;
}

.contact-redesign-content .contact-details {
  height: auto;
  margin: 30px 0;
  padding: 24px;
  border: 1px solid #e2e7df;
  border-radius: 14px;
  color: #4e554f;
  background: #f7f9f5;
  font-size: 18px;
  line-height: 1.75;
}

.contact-redesign-content .contact-actions {
  margin-bottom: 26px;
}

.contact-redesign-content .contact-qr {
  width: 180px;
  padding: 16px;
  border-radius: 14px;
  background: #f2f6ef;
}

.contact-redesign-content .contact-qr img {
  width: 148px;
}

/* Footer and fixed booking */

.site-footer {
  padding: 30px 0;
  color: rgba(255, 255, 255, 0.78);
  background: #253a2c;
  font-family: var(--font-ui);
  font-size: 13px;
}

.site-footer .page-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  align-items: center;
  justify-content: space-between;
}

.site-footer strong {
  color: #fff;
  font-size: 15px;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.floating-action {
  display: block;
  width: 145px;
  overflow: hidden;
  border: 3px solid #fff;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(22, 42, 27, 0.28);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.floating-action:hover,
.floating-action:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(22, 42, 27, 0.35);
}

.floating-action img {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .food-promotion__card,
  .food-menu-layout {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 46%);
  }

  .food-promotion__card {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .food-photo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .food-photo-grid figure:first-child {
    grid-column: span 2;
    grid-row: span 2;
  }

  .food-photo-grid figure:first-child img {
    height: calc(100% - 44px);
  }
}

@media (max-width: 767px) {
  .standard-page-hero {
    min-height: 260px;
  }

  .standard-page-card {
    width: calc(100% - 28px);
    margin-top: 20px;
    padding: 25px 20px;
    font-size: 17px;
  }

  .food-page-hero,
  .contact-redesign-hero {
    padding: 52px 0 44px;
  }

  .food-promotion__card {
    padding: 25px 22px;
  }

  .food-page__description,
  .contact-redesign-content .contact-details {
    font-size: 17px;
  }

  .floating-actions {
    right: 12px;
    bottom: 12px;
  }

  .floating-action {
    width: 112px;
  }

  .site-footer {
    padding-right: 128px;
  }
}

/* ---------- Navigation Refresh ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(47, 74, 53, 0.1);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 5px 22px rgba(37, 58, 44, 0.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-header__brand {
  color: #263c2d;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.site-header__menu-button span {
  background: #34503b;
  border-radius: 999px;
}

.mobile-menu {
  z-index: 70;
  background:
    radial-gradient(circle at 50% 7%, rgba(191, 164, 100, 0.14), transparent 28%),
    #f7f4ec;
}

.mobile-menu__close {
  top: 17px;
  right: 19px;
  left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(47, 74, 53, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
}

.mobile-menu__close::before,
.mobile-menu__close::after {
  top: 20px;
  left: 10px;
  width: 22px;
  background: #34503b;
}

.mobile-menu__list {
  width: calc(100% - 48px);
  max-width: 360px;
  margin: 88px auto 42px;
  text-align: left;
}

.mobile-menu__list li {
  border-bottom: 1px solid rgba(47, 74, 53, 0.12);
}

.mobile-menu__list li:first-child {
  border-top: 1px solid rgba(47, 74, 53, 0.12);
}

.mobile-menu__list a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 54px;
  height: auto;
  padding: 9px 38px 9px 8px;
  color: #314b38;
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.mobile-menu__list a::after {
  position: absolute;
  right: 8px;
  color: #a08145;
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 400;
  content: "→";
  transition: transform var(--transition-fast);
}

.mobile-menu__list a:hover::after,
.mobile-menu__list a:focus-visible::after {
  transform: translateX(4px);
}

.mobile-menu__list a.is-current {
  color: #9a6828;
}

@media (max-width: 991px) {
  :root {
    --header-height: 64px;
  }

  .site-header__brand {
    width: calc(100% - 112px);
    font-size: 18px;
    line-height: 1.35;
  }

  .site-header__menu-button {
    top: 10px;
    right: 6px;
    left: auto;
    width: 44px;
    height: 44px;
  }

  .site-header__menu-button span {
    width: 20px;
    height: 2px;
    margin-block: 2px;
  }
}

@media (min-width: 992px) {
  :root {
    --header-height: 84px;
  }

  .site-header {
    min-height: var(--header-height);
    padding: 0 26px;
  }

  .site-header__inner,
  .site-header--full-nav .site-header__inner {
    display: flex;
    width: 100%;
    max-width: 1320px;
    height: var(--header-height);
    margin-inline: auto;
  }

  .site-header__brand,
  .site-header--full-nav .site-header__brand {
    display: block;
    flex: 0 0 auto;
    width: auto;
    margin: 0 24px 0 0;
    padding: 0;
    font-size: 17px;
    line-height: var(--header-height);
  }

  .site-header__inner::after {
    display: none;
  }

  .site-nav,
  .site-header--full-nav .site-nav {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: flex-end;
    width: auto;
  }

  .site-nav__list,
  .site-header--full-nav .site-nav__list {
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 2px;
  }

  .site-nav__link,
  .site-header--full-nav .site-nav__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 10px 7px;
    border-radius: 999px;
    color: #3c493f;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 0.03em;
    transition: color var(--transition-fast), background-color var(--transition-fast), opacity var(--transition-fast);
  }

  .site-nav__link:hover,
  .site-nav__link:focus-visible {
    color: #294332;
    background: #eef2eb;
    opacity: 1;
  }

  .site-nav__link.is-current,
  .site-nav__link.is-current:hover,
  .site-nav__link.is-current:focus-visible {
    color: #fff;
    background: #34503b;
  }

  .site-nav__link.is-current::after,
  .site-header--full-nav .site-nav__link.is-current::after {
    display: none;
  }
}

/* ---------- Unified Page Width ---------- */

:root {
  --content-width: 1100px;
  --container: var(--content-width);
}

.standard-page-card,
.no-tent-page__content,
.equipment-rental-intro__inner,
.equipment-catalog__inner,
.equipment-contact__card,
.food-promotion__card,
.food-menu-layout,
.food-description-card,
.contact-redesign-content,
.about-content {
  max-width: var(--content-width);
}

/* Image banners for the dedicated equipment and food pages. */
.equipment-rental-intro,
.food-page-hero {
  display: flex;
  align-items: center;
  min-height: 340px;
  padding: 72px 0 62px;
  border-top: 1px solid #e4e0d4;
  text-align: center;
}

.equipment-rental-intro {
  border-bottom: 0;
  background:
    linear-gradient(rgba(18, 31, 22, 0.38), rgba(18, 31, 22, 0.64)),
    center 54% / cover no-repeat var(--page-hero-image);
}

.food-page-hero {
  background:
    linear-gradient(rgba(30, 22, 15, 0.34), rgba(30, 22, 15, 0.64)),
    center 54% / cover no-repeat var(--page-hero-image);
}

.equipment-rental-intro__kicker,
.food-page-hero p {
  color: #f1d590;
}

.equipment-rental-intro h1,
.food-page-hero h1 {
  color: #fff;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.34);
}

.equipment-rental-intro__subtitle,
.food-page-hero .page-container > div {
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

/* Keep the no-tent page banner aligned with the contact-page banner. */
.no-tent-dedicated__hero {
  min-height: 340px;
  height: auto;
  padding: 72px 20px 62px;
  border-top: 1px solid #e4e0d4;
  background:
    linear-gradient(rgba(19, 31, 22, 0.38), rgba(19, 31, 22, 0.62)),
    center 48% / cover no-repeat var(--page-hero-image);
}

.no-tent-dedicated__hero > .page-container {
  width: calc(100% - 40px);
}

.no-tent-dedicated__eyebrow {
  margin: 0 0 9px;
  color: #f1d590;
}

.no-tent-dedicated__hero .no-tent-hero__title {
  width: auto;
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(42px, 10vw, 68px);
  font-weight: 600;
  line-height: 1.15;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.3);
}

.no-tent-dedicated__subtitle {
  margin-top: 12px;
  font-size: 18px;
}

.no-tent-gallery,
.no-tent-gallery .photo-gallery,
.no-tent-gallery .photo-gallery__viewport {
  min-width: 0;
  max-width: 100%;
}

.no-tent-gallery .photo-gallery__viewport {
  width: 100%;
}

.no-tent-gallery .photo-gallery__thumbs {
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
}

/* Food page: editor-friendly, article-style image and text layout. */
.food-article-section {
  padding: 54px 0 80px;
  background: #fbf8f1;
}

.food-article {
  max-width: var(--content-width);
  padding: clamp(30px, 6vw, 64px);
  border: 1px solid #e8ddcd;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(78, 55, 37, 0.08);
}

.food-article__header {
  margin-bottom: 42px;
  padding-bottom: 28px;
  border-bottom: 1px solid #e8ddcd;
  text-align: center;
}

.food-article__header > p {
  margin: 0 0 10px;
  color: #a35e2b;
  font-family: var(--font-nav);
  font-size: 13px;
  letter-spacing: 0.2em;
}

.food-article__header h2 {
  margin: 0;
  color: #5c3422;
  font-family: var(--font-heading);
  font-size: clamp(34px, 6vw, 48px);
  line-height: 1.2;
}

.food-article__header > div {
  max-width: 680px;
  margin: 13px auto 0;
  color: #75675d;
  font-size: 17px;
  line-height: 1.75;
}

.food-article__content {
  color: #514b46;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.85;
}

.food-article__content h2,
.food-article__content h3 {
  color: #7f3e28;
  font-family: var(--font-heading);
  line-height: 1.35;
}

.food-article__content h2 {
  margin: 2em 0 0.65em;
  padding-bottom: 10px;
  border-bottom: 1px solid #eadfce;
  font-size: clamp(28px, 5vw, 36px);
}

.food-article__content h3 {
  margin: 1.5em 0 0.55em;
  font-size: 24px;
}

.food-article__content > :first-child {
  margin-top: 0;
}

.food-article__content p,
.food-article__content ul,
.food-article__content ol {
  margin: 0 0 1.25em;
}

.food-article__content ul,
.food-article__content ol {
  padding-left: 1.45em;
}

.food-article__content li + li {
  margin-top: 0.35em;
}

.food-article__content a:has(> img) {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 30px auto 10px;
}

.food-article__content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-inline: auto;
  border-radius: 0;
  box-shadow: 0 14px 34px rgba(57, 39, 27, 0.14);
}

.food-article__content small {
  display: block;
  color: #84766b;
  font-size: 15px;
  line-height: 1.65;
  text-align: center;
}

/* No-tent page: simple rich-text article editable from the CMS editor. */
.no-tent-article-section {
  padding-top: 34px;
}

.no-tent-article {
  width: 100%;
  padding: clamp(30px, 6vw, 64px);
  border: 1px solid #e4dacb;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(47, 74, 53, 0.08);
}

.no-tent-article__content {
  color: #4f4a44;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.85;
}

.no-tent-article__content h2,
.no-tent-article__content h3 {
  color: #2f4a35;
  font-family: var(--font-heading);
  line-height: 1.35;
}

.no-tent-article__content h2 {
  margin: 2em 0 0.7em;
  padding-bottom: 10px;
  border-bottom: 1px solid #ded4c3;
  font-size: clamp(28px, 5vw, 36px);
}

.no-tent-article__content h3 {
  margin: 1.4em 0 0.5em;
  color: #8a5a25;
  font-size: 23px;
}

.no-tent-article__content > :first-child {
  margin-top: 0;
}

.no-tent-article__content p,
.no-tent-article__content ul,
.no-tent-article__content ol {
  margin: 0 0 1.2em;
}

.no-tent-article__content ul,
.no-tent-article__content ol {
  padding-left: 1.45em;
}

.no-tent-article__content li + li {
  margin-top: 0.4em;
}

.no-tent-article__content a {
  color: #31583b;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.no-tent-article__content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 28px auto;
}

@media (min-width: 992px) {
  .site-nav__list > li,
  .site-header--full-nav .site-nav__list > li {
    display: flex;
    align-items: center;
  }

  .site-nav__link,
  .site-header--full-nav .site-nav__link {
    height: 40px;
    min-height: 40px;
    padding-top: 1px;
    padding-bottom: 0;
    line-height: 1;
  }
}

@media (max-width: 767px) {
  .food-article-section {
    padding: 28px 0 54px;
  }

  .food-article {
    width: calc(100% - 28px);
    padding: 28px 20px;
    border-radius: 16px;
  }

  .food-article__header {
    margin-bottom: 30px;
    padding-bottom: 22px;
  }

  .food-article__content {
    font-size: 17px;
    line-height: 1.8;
  }

  .no-tent-article-section {
    padding-top: 24px;
  }

  .no-tent-article {
    padding: 28px 20px;
    border-radius: 15px;
  }

  .no-tent-article__content {
    font-size: 17px;
    line-height: 1.8;
  }

  .equipment-rental-intro,
  .food-page-hero {
    min-height: 260px;
    padding: 52px 0 44px;
  }

  .no-tent-dedicated__hero {
    min-height: 260px;
    padding: 52px 20px 44px;
  }

  .home-hero-carousel__arrow {
    width: 38px;
    height: 48px;
    font-size: 31px;
  }

  .home-hero-carousel__arrow--previous {
    left: 10px;
  }

  .home-hero-carousel__arrow--next {
    right: 10px;
  }

  .home-hero-carousel__dots {
    bottom: 10px;
  }
}

@media (max-width: 991px) {
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .mobile-menu {
    inset: auto;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    max-height: 100dvh;
    padding-bottom: env(safe-area-inset-bottom);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .mobile-menu__list {
    padding-bottom: max(42px, env(safe-area-inset-bottom));
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero-carousel__slide {
    transition: none;
  }
}

@media (min-width: 1200px) {
  .site-header__brand,
  .site-header--full-nav .site-header__brand {
    margin-right: 34px;
    font-size: 18px;
  }

  .site-nav__link,
  .site-header--full-nav .site-nav__link {
    padding-inline: 10px;
    font-size: 15px;
  }
}
