:root {
  --pine-950: #071613;
  --pine-900: #0f241f;
  --pine-800: #19352e;
  --pine-700: #275145;
  --forest-700: #0d563f;
  --wood-800: #4a2412;
  --wood-600: #78401f;
  --lake-700: #28566f;
  --lake-600: #356d86;
  --clay-600: #b75f35;
  --clay-500: #d07845;
  --moss-500: #7a8f5f;
  --stone-50: #fbfaf7;
  --stone-100: #f3efe7;
  --stone-200: #e6dfd3;
  --stone-300: #d1c8bb;
  --ink: #13201d;
  --muted: #60706a;
  --line: rgba(19, 32, 29, 0.14);
  --white: #fff;
  --shadow-soft: 0 18px 60px rgba(7, 22, 19, 0.13);
  --shadow-card: 0 12px 34px rgba(7, 22, 19, 0.1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --container: 1160px;
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--stone-50);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.drawer-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(208, 120, 69, 0.8);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--white);
  color: var(--pine-900);
  padding: 10px 14px;
  box-shadow: var(--shadow-card);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(251, 250, 247, 0.94);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(100% - 32px, var(--container));
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  min-width: 0;
}

.brand-logo {
  width: 58px;
  height: 40px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  object-fit: cover;
  object-position: center;
  background: var(--stone-50);
  box-shadow: 0 8px 22px rgba(7, 22, 19, 0.12);
}

.site-header.is-scrolled .brand-logo,
.site-header.is-open .brand-logo,
.mobile-drawer .brand-logo,
.site-footer .brand-logo {
  border-color: var(--line);
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-weight: 800;
  line-height: 1;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: 0.9rem;
}

.brand small {
  margin-top: 3px;
  color: currentColor;
  font-size: 0.73rem;
  opacity: 0.78;
}

.brand span {
  min-width: 0;
}

.desktop-nav,
.header-cta {
  display: none;
}

.menu-button {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  display: inline-grid;
  place-content: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.12);
  color: currentColor;
}

.site-header.is-scrolled .menu-button,
.site-header.is-open .menu-button {
  border-color: var(--line);
  background: var(--white);
}

.menu-button span {
  width: 18px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: currentColor;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(7, 22, 19, 0.46);
  opacity: 0;
  transition: opacity 180ms ease;
}

.drawer-backdrop.is-visible {
  opacity: 1;
}

.mobile-drawer {
  position: fixed;
  inset: 0 auto 0 0;
  width: min(88vw, 360px);
  z-index: 130;
  background: var(--stone-50);
  color: var(--ink);
  box-shadow: 24px 0 70px rgba(7, 22, 19, 0.22);
  transform: translateX(-104%);
  transition: transform 220ms ease;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.drawer-close {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--pine-900);
  font-size: 1.35rem;
  line-height: 1;
}

.drawer-nav {
  display: grid;
  gap: 4px;
}

.drawer-nav a {
  border-radius: var(--radius-sm);
  padding: 14px 12px;
  color: var(--pine-900);
  font-weight: 750;
}

.drawer-nav a:hover,
.drawer-nav a:focus-visible {
  background: var(--stone-100);
}

.drawer-cta {
  margin-top: auto;
  width: 100%;
}

.hero {
  position: relative;
  min-height: 82svh;
  display: flex;
  align-items: flex-end;
  overflow: clip;
  color: var(--white);
  background: var(--pine-950);
}

.page-hero {
  position: relative;
  padding: 128px 0 64px;
  overflow: hidden;
  background: var(--pine-950);
  color: var(--white);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 22, 19, 0.92), rgba(7, 22, 19, 0.72) 48%, rgba(7, 22, 19, 0.28)),
    var(--page-hero-image, linear-gradient(135deg, var(--pine-950), var(--pine-700)));
  background-size: cover;
  background-position: center;
}

.page-hero .section-inner {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 860px;
}

.page-hero p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.04rem, 2.4vw, 1.25rem);
}

.page-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: min(100%, 430px);
  margin-top: 24px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 720;
}

.breadcrumbs a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 62% center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 22, 19, 0.9) 0%, rgba(7, 22, 19, 0.64) 42%, rgba(7, 22, 19, 0.22) 74%),
    linear-gradient(0deg, rgba(7, 22, 19, 0.78) 0%, rgba(7, 22, 19, 0.08) 48%, rgba(7, 22, 19, 0.28) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  padding: calc(var(--header-height) + 44px) 0 40px;
}

.eyebrow,
.section-kicker,
.card-label,
.result-label,
.sample-badge {
  margin: 0 0 12px;
  color: var(--clay-500);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f5b17e;
}

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

h1,
h2,
h3 {
  line-height: 1.04;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 7vw, 6.4rem);
  font-weight: 850;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 5vw, 4.2rem);
  font-weight: 820;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 800;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.04rem, 2.4vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: min(100%, 420px);
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 850;
  line-height: 1;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

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

.button:active {
  transform: translateY(0);
}

.button-primary {
  background: var(--clay-500);
  color: var(--pine-950);
  box-shadow: 0 12px 30px rgba(183, 95, 53, 0.28);
}

.button-primary:hover {
  background: #e08a55;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hero-proof {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(178px, 1fr);
  gap: 10px;
  margin: 28px 0 0;
  max-width: 100%;
  overflow-x: auto;
  padding-bottom: 4px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.hero-proof div {
  scroll-snap-align: start;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.09);
  padding: 14px;
  backdrop-filter: blur(14px);
}

.hero-proof dt {
  margin-bottom: 3px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-proof dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

.section,
.intro-band,
.booking-section {
  padding: 64px 0;
}

.section-inner {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.intro-band {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.intro-grid {
  display: grid;
  gap: 20px;
}

.intro-grid h2 {
  margin-bottom: 0;
}

.intro-grid p:last-child {
  color: var(--muted);
  font-size: 1.04rem;
}

.brand-section {
  background: var(--stone-50);
  border-bottom: 1px solid var(--line);
}

.brand-grid,
.service-grid,
.feature-grid,
.detail-grid,
.calendar-layout,
.article-layout {
  display: grid;
  gap: 28px;
}

.logo-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
  padding: 14px;
}

.logo-card img {
  width: 100%;
  border-radius: var(--radius-md);
}

.brand-note-grid,
.service-list,
.feature-list,
.spec-grid,
.guide-list,
.booking-option-grid {
  display: grid;
  gap: 10px;
}

.brand-note-grid article,
.service-list article,
.feature-list article,
.spec-grid article,
.guide-list article,
.booking-option,
.source-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 16px;
}

.brand-note-grid strong,
.brand-note-grid span,
.service-list strong,
.service-list span,
.feature-list strong,
.feature-list span,
.spec-grid strong,
.spec-grid span,
.guide-list strong,
.guide-list span {
  display: block;
}

.brand-note-grid span,
.service-list span,
.feature-list span,
.spec-grid span,
.guide-list span,
.booking-option p,
.source-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading p:not(.section-kicker):not(.sample-note) {
  color: var(--muted);
  font-size: 1.03rem;
}

.split-heading {
  display: grid;
  max-width: none;
  gap: 18px;
}

.split-heading > p {
  max-width: 520px;
  align-self: end;
}

.gallery-controls {
  display: flex;
  gap: 10px;
  align-self: end;
}

.icon-button {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--white);
  color: var(--pine-900);
  font-size: 1.5rem;
  line-height: 1;
  transition: background 160ms ease, transform 160ms ease;
}

.icon-button:hover {
  background: var(--stone-100);
  transform: translateY(-1px);
}

.photo-rail,
.card-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 86%);
  gap: 16px;
  margin-inline: -16px;
  padding: 0 16px 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  color: var(--forest-700);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.use-case-grid,
.rental-grid,
.article-card-grid,
.local-card-grid {
  display: grid;
  gap: 14px;
}

.use-case-card,
.rental-card,
.article-card,
.local-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 20px;
  box-shadow: var(--shadow-card);
}

.use-case-card span,
.article-card span,
.local-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--clay-600);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.use-case-card p,
.rental-card p,
.article-card p,
.local-card p {
  color: var(--muted);
}

.use-case-card:hover,
.rental-card:hover,
.article-card:hover,
.local-card:hover {
  transform: translateY(-1px);
}

.rental-card {
  overflow: hidden;
  padding: 0;
}

.rental-card img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}

.rental-card-body {
  padding: 20px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
}

.pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--stone-100);
  color: var(--pine-900);
  padding: 7px 10px;
  font-size: 0.82rem;
  font-weight: 800;
}

.photo-card,
.fleet-card,
.review-card {
  scroll-snap-align: start;
}

.photo-card {
  position: relative;
  min-height: 430px;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--pine-900);
  box-shadow: var(--shadow-card);
}

.photo-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.photo-card figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-md);
  background: rgba(7, 22, 19, 0.7);
  color: var(--white);
  padding: 16px;
  backdrop-filter: blur(18px);
}

.photo-card strong,
.photo-card span {
  display: block;
}

.photo-card strong {
  margin-bottom: 4px;
  font-size: 1.08rem;
}

.photo-card span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.93rem;
}

.section-warm {
  background: var(--stone-100);
}

.fleet-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.fleet-card img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
}

.fleet-card-body {
  padding: 20px;
}

.fleet-card p {
  color: var(--muted);
}

.fleet-card h3 {
  font-size: 1.32rem;
}

.check-list {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-weight: 650;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clay-500);
}

.planning-grid,
.faq-grid,
.booking-grid {
  display: grid;
  gap: 28px;
}

.planner-panel,
.booking-form {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.planner-panel {
  padding: 18px;
}

.planner-row {
  display: grid;
  gap: 8px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.planner-row label {
  color: var(--pine-900);
  font-weight: 780;
}

.stepper,
.planner-row select {
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--stone-50);
}

.booking-secondary {
  margin-top: 10px !important;
  background: var(--stone-50);
  border-color: var(--line);
  color: var(--pine-900);
}

.stepper {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  overflow: hidden;
}

.stepper button {
  height: 50px;
  border: 0;
  background: transparent;
  color: var(--pine-900);
  font-size: 1.2rem;
  font-weight: 850;
}

.stepper button:hover {
  background: var(--stone-100);
}

.stepper input {
  width: 100%;
  height: 50px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 850;
  text-align: center;
  -moz-appearance: textfield;
}

.stepper input::-webkit-outer-spin-button,
.stepper input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.planner-row select {
  width: 100%;
  padding: 0 18px;
  color: var(--ink);
}

.planner-result {
  margin-top: 18px;
  border-radius: var(--radius-md);
  background: var(--pine-900);
  color: var(--white);
  padding: 20px;
}

.planner-result h3 {
  font-size: 1.45rem;
}

.planner-result p {
  color: rgba(255, 255, 255, 0.75);
}

.planner-result .button {
  width: 100%;
}

.section-dark {
  background: var(--pine-950);
  color: var(--white);
}

.section-dark .section-heading p:not(.section-kicker),
.section-dark .amenity-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.amenity-grid {
  display: grid;
  gap: 12px;
}

.amenity-grid article {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
  padding: 20px;
}

.amenity-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #f5b17e;
  font-size: 0.76rem;
  font-weight: 900;
}

.setup-promise {
  display: grid;
  background: var(--white);
}

.photo-stack {
  display: grid;
  gap: 12px;
}

.photo-stack img {
  width: 100%;
  border-radius: var(--radius-md);
  aspect-ratio: 1.45;
  object-fit: cover;
  box-shadow: var(--shadow-card);
}

.photo-stack img:first-child {
  aspect-ratio: 1.25;
}

.promise-image img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  max-height: 520px;
  object-fit: cover;
}

.promise-copy {
  width: min(100% - 32px, 560px);
  margin: 0 auto;
  padding: 56px 0 64px;
}

.promise-copy p {
  color: var(--muted);
}

.promise-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.promise-list div {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px;
  background: var(--stone-50);
}

.promise-list strong,
.promise-list span {
  display: block;
}

.promise-list strong {
  margin-bottom: 4px;
}

.promise-list span {
  color: var(--muted);
  font-size: 0.95rem;
}

.steps {
  display: grid;
  gap: 14px;
  counter-reset: steps;
}

.steps article {
  border-left: 3px solid var(--clay-500);
  background: var(--white);
  padding: 18px 18px 18px 20px;
  box-shadow: inset 0 -1px 0 var(--line);
}

.steps span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--lake-700);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.steps p {
  margin-bottom: 0;
  color: var(--muted);
}

.sample-note {
  border: 1px solid rgba(183, 95, 53, 0.28);
  border-radius: var(--radius-sm);
  background: rgba(208, 120, 69, 0.08);
  padding: 14px;
  color: #714027;
  font-size: 0.94rem;
}

.review-grid {
  display: grid;
  gap: 14px;
}

.review-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 20px;
}

.review-card blockquote {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 1.06rem;
  line-height: 1.55;
}

.review-card cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
}

summary {
  min-height: 58px;
  padding: 16px 46px 16px 18px;
  color: var(--pine-900);
  cursor: pointer;
  font-weight: 820;
  list-style: none;
  position: relative;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  color: var(--clay-600);
  font-size: 1.3rem;
  font-weight: 800;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  border-top: 1px solid var(--line);
  padding: 16px 18px 18px;
  color: var(--muted);
}

.booking-section {
  background: var(--pine-900);
  color: var(--white);
}

.booking-section h2 {
  color: var(--white);
}

.booking-section p {
  color: rgba(255, 255, 255, 0.74);
}

.booking-callout {
  display: grid;
  gap: 4px;
  margin-top: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.07);
  padding: 16px;
}

.booking-callout span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
}

.booking-form {
  padding: 18px;
  color: var(--ink);
}

.form-grid {
  display: grid;
  gap: 14px;
}

.booking-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--pine-900);
  font-weight: 780;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--stone-50);
  color: var(--ink);
  padding: 13px 14px;
}

.booking-form input,
.booking-form select {
  min-height: 50px;
}

.booking-form textarea {
  resize: vertical;
}

.booking-form .button {
  width: 100%;
  margin-top: 2px;
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted) !important;
  font-size: 0.92rem;
}

.inquiry-output {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--stone-100);
  padding: 16px;
}

.inquiry-output h3 {
  margin-bottom: 4px;
}

.inquiry-output p {
  color: var(--muted) !important;
  margin-bottom: 10px;
}

.inquiry-output pre {
  max-height: 260px;
  margin: 0;
  overflow: auto;
  white-space: pre-wrap;
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.88rem;
  line-height: 1.5;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--pine-950);
  color: var(--white);
  padding: 28px 0;
}

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-grid nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 760;
}

.calendar-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.calendar-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.calendar-toolbar h3 {
  margin: 0;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.calendar-grid span,
.calendar-grid button {
  min-height: 42px;
  border-radius: var(--radius-sm);
}

.calendar-grid span {
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.calendar-grid button {
  border: 1px solid var(--line);
  background: var(--stone-50);
  color: var(--ink);
  font-weight: 780;
}

.calendar-grid button:hover,
.calendar-grid button.is-selected {
  border-color: var(--clay-500);
  background: rgba(208, 120, 69, 0.14);
}

.calendar-grid button.is-range {
  background: rgba(13, 86, 63, 0.1);
  border-color: rgba(13, 86, 63, 0.22);
}

.calendar-grid button.is-muted {
  color: var(--stone-300);
  background: var(--white);
}

.calendar-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.calendar-result {
  margin-top: 16px;
  border-radius: var(--radius-md);
  background: var(--pine-900);
  color: var(--white);
  padding: 16px;
}

.calendar-result p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

.footer-grid {
  display: grid;
  gap: 18px;
}

.footer-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #f5b17e;
  font-weight: 850;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    width: auto;
  }

  .page-actions {
    flex-direction: row;
    width: auto;
  }

  .hero-proof {
    grid-auto-flow: initial;
    grid-auto-columns: initial;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 830px;
    overflow: visible;
    padding-bottom: 0;
  }

  .photo-rail,
  .card-rail {
    grid-auto-columns: minmax(360px, 62%);
  }

  .amenity-grid,
  .review-grid,
  .steps,
  .use-case-grid,
  .rental-grid,
  .article-card-grid,
  .local-card-grid,
  .booking-option-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 860px) {
  .section,
  .intro-band,
  .booking-section {
    padding: 96px 0;
  }

  .desktop-nav,
  .header-cta {
    display: flex;
  }

  .desktop-nav {
    align-items: center;
    gap: 6px;
    margin-left: auto;
  }

  .desktop-nav a {
    border-radius: 999px;
    padding: 10px 12px;
    color: currentColor;
    font-size: 0.9rem;
    font-weight: 760;
    opacity: 0.84;
  }

  .desktop-nav a:hover {
    background: rgba(255, 255, 255, 0.14);
    opacity: 1;
  }

  .site-header.is-scrolled .desktop-nav a:hover,
  .site-header.is-open .desktop-nav a:hover {
    background: var(--stone-100);
  }

  .header-cta {
    min-height: 42px;
    align-items: center;
    border-radius: 999px;
    background: var(--white);
    color: var(--pine-950);
    padding: 10px 15px;
    font-size: 0.9rem;
    font-weight: 850;
  }

  .site-header.is-scrolled .header-cta,
  .site-header.is-open .header-cta {
    background: var(--pine-900);
    color: var(--white);
  }

  .menu-button {
    display: none;
  }

  .hero {
    min-height: 90svh;
  }

  .page-hero {
    padding: 156px 0 88px;
  }

  .hero-image {
    object-position: center center;
  }

  .hero-content {
    padding-bottom: 58px;
  }

  .intro-grid,
  .split-heading,
  .planning-grid,
  .faq-grid,
  .booking-grid,
  .brand-grid,
  .service-grid,
  .feature-grid,
  .detail-grid,
  .calendar-layout,
  .article-layout {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    align-items: start;
  }

  .brand-grid {
    grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  }

  .intro-grid p:last-child {
    margin: 0;
    padding-top: 8px;
    font-size: 1.12rem;
  }

  .gallery-controls {
    justify-self: end;
  }

  .photo-rail,
  .card-rail {
    margin-inline: 0;
    padding-inline: 0;
    grid-auto-columns: minmax(420px, 48%);
  }

  .photo-card,
  .photo-card img {
    min-height: 520px;
  }

  .fleet-grid {
    grid-auto-flow: initial;
    grid-auto-columns: initial;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
  }

  .fleet-card img {
    aspect-ratio: 1.18;
  }

  .sticky-copy {
    position: sticky;
    top: 108px;
  }

  .planner-panel,
  .booking-form {
    padding: 24px;
  }

  .planner-row {
    grid-template-columns: 0.9fr 1.2fr;
    align-items: center;
    gap: 18px;
  }

  .setup-promise {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  }

  .promise-image img {
    min-height: 680px;
    max-height: none;
  }

  .promise-copy {
    align-self: center;
    padding: 80px 0;
  }

  .steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .steps article {
    min-height: 260px;
    border-left: 0;
    border-top: 3px solid var(--clay-500);
    box-shadow: 0 1px 0 var(--line);
  }

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

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

  .rental-grid,
  .article-card-grid,
  .local-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }
}

@media (min-width: 1180px) {
  .nav-shell,
  .section-inner,
  .hero-content {
    width: min(100% - 64px, var(--container));
  }

  .hero-content {
    padding-bottom: 72px;
  }

  .brand-logo {
    width: 64px;
    height: 42px;
  }

  .photo-rail {
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    grid-auto-flow: initial;
    overflow: visible;
  }

  .photo-card {
    min-height: 500px;
  }

  .photo-card:first-child,
  .photo-card:first-child img {
    min-height: 620px;
  }
}

@media (max-width: 380px) {
  .nav-shell,
  .section-inner,
  .hero-content,
  .promise-copy {
    width: min(100% - 24px, var(--container));
  }

  h1 {
    font-size: 2.62rem;
  }

  h2 {
    font-size: 1.82rem;
  }

  .photo-rail,
  .card-rail {
    grid-auto-columns: minmax(260px, 88%);
    margin-inline: -12px;
    padding-inline: 12px;
  }
}

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