:root {
  --accent: #0e7a6b;
  --accent-ink: #ffffff;
  --paper: #f7f2ea;
  --paper-soft: #fbf8f2;
  --paper-deep: #ede4d7;
  --ink: #25211d;
  --muted: #6e675d;
  --line: rgba(37, 33, 29, 0.14);
  --shadow: 0 22px 70px rgba(37, 33, 29, 0.16);
  --radius: 8px;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link:focus {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--paper-soft);
  border-radius: var(--radius);
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent), white 18%);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(247, 242, 234, 0.84);
  border-bottom: 1px solid rgba(37, 33, 29, 0.08);
  backdrop-filter: blur(18px);
}

.nav-shell,
.section-inner {
  width: min(100% - 2rem, 1160px);
  margin: 0 auto;
}

.nav-shell {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 700;
  text-decoration: none;
}

.brand-mark img,
.brand-initial {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
}

.brand-initial {
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  gap: 4px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
}

.nav-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  background: currentColor;
}

.nav-links {
  position: fixed;
  top: 72px;
  right: 1rem;
  left: 1rem;
  display: none;
  padding: 1rem;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.nav-links.is-open {
  display: grid;
  gap: 0.25rem;
}

.nav-links a,
.lang-pill {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0.55rem 0.7rem;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.92rem;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--ink);
  background: rgba(14, 122, 107, 0.08);
}

.nav-cta {
  color: var(--accent) !important;
  font-weight: 700;
}

.cockpit-demo-link {
  position: relative;
  gap: 0.48rem;
  color: var(--ink) !important;
  border: 1px solid rgba(37, 33, 29, 0.22);
  background:
    linear-gradient(135deg, rgba(37, 33, 29, 0.04), rgba(14, 122, 107, 0.08)),
    var(--paper-soft);
  font-weight: 800;
}

.cockpit-demo-link:hover {
  background:
    linear-gradient(135deg, rgba(37, 33, 29, 0.08), rgba(14, 122, 107, 0.12)),
    var(--paper-soft) !important;
}

.cockpit-demo-kicker,
.button-cockpit-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 0 0.42rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper-soft);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.lang-pill {
  color: var(--muted);
  border: 1px solid var(--line);
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #2d352e;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 20%, rgba(255, 255, 255, 0.22), transparent 28%),
    linear-gradient(135deg, #36483b, #9d715d 62%, #d7b98d);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.18) 58%, rgba(0, 0, 0, 0.04)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.5), transparent 45%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  width: min(100% - 2rem, 1160px);
  margin: 0 auto;
  padding: 8.5rem 0 5.5rem;
  color: #fffaf0;
}

.hero-kicker,
.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-kicker {
  color: #f2e4c8;
  font-size: 0.95rem;
  letter-spacing: 0.09em;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.45);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.04;
}

h1 {
  max-width: 820px;
  font-size: 3.3rem;
}

h2 {
  font-size: 2.15rem;
}

h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
}

.hero-subhead {
  max-width: 680px;
  margin: 1.25rem 0 0;
  color: rgba(255, 250, 240, 0.92);
  font-size: 1.4rem;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.05rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 12px 30px rgba(14, 122, 107, 0.24);
}

.button-ghost {
  color: #fffaf0;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.button-cockpit {
  gap: 0.56rem;
  color: #fffaf0;
  background: rgba(37, 33, 29, 0.72);
  border-color: rgba(255, 255, 255, 0.48);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
}

.button-cockpit .button-cockpit-kicker {
  background: rgba(255, 250, 240, 0.94);
  color: var(--ink);
}

.section {
  padding: 5.75rem 0;
}

.about {
  background: var(--paper-soft);
}

.about-grid,
.location-grid,
.booking-grid,
.commission-inner,
.footer-grid {
  display: grid;
  gap: 2rem;
}

.about-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.about-copy p + p {
  margin-top: 1rem;
}

.capacity-note {
  display: inline-flex;
  padding: 0.5rem 0.7rem;
  background: rgba(14, 122, 107, 0.09);
  color: var(--accent) !important;
  border-radius: 6px;
  font-weight: 800;
}

.section-heading {
  max-width: 660px;
  margin-bottom: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.gallery-item {
  min-height: 220px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: var(--paper-deep);
  box-shadow: 0 12px 36px rgba(37, 33, 29, 0.12);
  cursor: zoom-in;
}

.gallery-item img,
.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.media-frame.is-missing {
  background:
    linear-gradient(135deg, rgba(14, 122, 107, 0.18), rgba(157, 113, 93, 0.22)),
    var(--paper-deep);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.feature-card {
  min-height: 132px;
  display: grid;
  align-content: start;
  gap: 0.95rem;
  padding: 1.05rem;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.feature-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--accent);
  background: rgba(14, 122, 107, 0.1);
  border-radius: 50%;
}

.feature-icon svg {
  width: 23px;
  height: 23px;
}

.reviews-section {
  background: #fff;
}

.reviews-inner {
  display: grid;
  grid-template-columns: minmax(0, .9fr) auto;
  gap: 28px;
  align-items: start;
}

.reviews-note {
  margin: 10px 0 0;
  color: var(--muted);
}

.rating-badge {
  min-width: 170px;
  padding: 14px 18px;
  border: 1px solid color-mix(in srgb, var(--accent), transparent 72%);
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent), white 92%);
}

.rating-badge strong {
  display: block;
  color: var(--accent);
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1;
}

.rating-badge span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: .9rem;
}

.review-quotes {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.review-quotes figure {
  margin: 0;
  padding: 18px 0 0;
  border-top: 2px solid color-mix(in srgb, var(--accent), transparent 72%);
}

.review-quotes blockquote {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.35;
}

.review-cards figure {
  padding: 20px;
  border: 1px solid color-mix(in srgb, var(--accent), transparent 78%);
  border-top: 3px solid var(--accent);
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent), white 96%);
}

.review-card-score {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-family: var(--serif);
  font-size: 1.65rem;
  line-height: 1;
}

.review-score-label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}

.review-source-label {
  color: var(--muted);
  font-weight: 800;
}

.review-cards figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.location {
  background: #e7dece;
}

.location-modern {
  align-items: center;
}

.location-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.location-text {
  margin: 1rem 0 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(1.3rem, 3vw, 2rem);
  line-height: 1.35;
}

.coordinates-box {
  margin-top: 1.15rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.coordinates-label {
  display: block;
  margin-bottom: 0.12rem;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.coordinates-value {
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
}

.location-map {
  min-width: 0;
}

.map-wrapper {
  width: 100%;
  height: 350px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  filter: grayscale(0.9) contrast(1.08) brightness(0.98);
  transition: filter 180ms ease;
}

.map-wrapper:hover {
  filter: grayscale(0.2) contrast(1) brightness(1);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.text-link {
  display: inline-flex;
  margin-top: 1.3rem;
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid color-mix(in srgb, var(--accent), transparent 70%);
}

.booking {
  background: var(--paper-soft);
}

.booking-grid > div > p {
  max-width: 480px;
  color: var(--muted);
}

.booking-shell {
  min-height: 360px;
  display: grid;
  align-items: stretch;
  padding: 0.8rem;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.booking-shell iframe,
.booking-fragment {
  width: 100%;
  min-height: 344px;
  border: 0;
  border-radius: 6px;
  background: #fff;
}

/* The real cockpit widget (live sites, iframe mode) carries a two-month
   calendar + guest form — give it room instead of an inner scrollbar. */
.booking-shell iframe {
  min-height: 1040px;
}

.booking-fallback {
  min-height: 344px;
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(14, 122, 107, 0.08), rgba(156, 92, 57, 0.11)),
    var(--paper-soft);
}

/* The `display: grid` above outranks the plain `[hidden]` default
   (display:none), so booking.js hiding the fallback (fallback.hidden = true)
   had no visual effect — the "temporarily unavailable" note stayed painted
   over a widget that had actually loaded. Restore the hide with a rule that
   outranks the class. */
.booking-fallback[hidden] {
  display: none;
}

.booking-mock {
  display: grid;
  gap: 1rem;
}

.booking-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.booking-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
}

.booking-fields label,
.guest-control {
  min-height: 76px;
  display: grid;
  gap: 0.15rem;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(37, 33, 29, 0.12);
  border-radius: 6px;
}

.booking-fields span,
.booking-note {
  color: var(--muted);
  font-size: 0.86rem;
}

.booking-fields input {
  width: 100%;
  min-height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1.03rem;
  font-weight: 800;
}

.guest-stepper {
  min-height: 34px;
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  align-items: center;
  gap: 0.45rem;
}

.guest-stepper button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper-soft);
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 800;
}

.booking-fields strong,
.guest-stepper strong {
  font-size: 1.18rem;
}

.booking-summary {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0.8rem;
  background: rgba(14, 122, 107, 0.09);
  border-radius: 6px;
  color: var(--accent);
  font-size: 0.92rem;
}

.booking-result {
  margin: 0;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(14, 122, 107, 0.22);
  border-radius: 6px;
  color: var(--ink);
  font-weight: 700;
}

.booking-mail-link {
  justify-self: center;
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid color-mix(in srgb, var(--accent), transparent 72%);
}

.booking-button {
  width: 100%;
}

.booking-note {
  margin: 0;
  text-align: center;
}

.commission-band {
  padding: 4rem 0;
  background: #2f342f;
  color: #fff8ec;
}

.commission-band .eyebrow {
  color: #dfc99f;
}

.commission-band p {
  max-width: 640px;
  color: rgba(255, 248, 236, 0.82);
}

.offer-card {
  width: min(100%, 360px);
  display: grid;
  gap: 0.75rem;
  padding: 1.15rem;
  border: 1px solid rgba(255, 248, 236, 0.22);
  border-radius: 8px;
  background: rgba(255, 248, 236, 0.08);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.offer-card__row {
  display: grid;
  gap: 0.2rem;
  padding: 0.85rem;
  border-radius: 7px;
  background: rgba(255, 248, 236, 0.08);
}

.offer-card__row strong {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  line-height: 1;
}

.offer-card__row span {
  color: rgba(255, 248, 236, 0.78);
  font-size: 0.95rem;
  font-weight: 700;
}

.offer-card__row--highlight {
  border: 1px solid rgba(255, 248, 236, 0.22);
}

.offer-card__button {
  width: 100%;
  text-align: center;
}

.offer-modal {
  position: fixed;
  z-index: 220;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(23, 21, 18, 0.68);
}

.offer-modal[hidden] {
  display: none;
}

.offer-modal__panel {
  position: relative;
  width: min(100%, 480px);
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.offer-modal__panel h2 {
  margin: 0;
  font-size: clamp(1.65rem, 5vw, 2.2rem);
}

.offer-modal__close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 2.15rem;
  height: 2.15rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.offer-form {
  display: grid;
  gap: 0.8rem;
}

.offer-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.offer-form input,
.offer-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 0.72rem 0.8rem;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.offer-form textarea {
  resize: vertical;
}

.offer-hp {
  position: absolute;
  left: -9999px;
}

.offer-status {
  margin: 0;
  padding: 0.75rem 0.85rem;
  border-radius: 7px;
  font-weight: 800;
}

.offer-status.is-ok {
  background: rgba(14, 122, 107, 0.12);
  color: var(--accent);
}

.offer-status.is-error {
  background: rgba(154, 54, 54, 0.12);
  color: #8b2f2f;
}

.site-footer {
  padding: 2.6rem 0;
  background: #201d1a;
  color: #f7f2ea;
}

.site-footer p {
  margin: 0.35rem 0 0;
  color: rgba(247, 242, 234, 0.7);
}

address {
  display: grid;
  gap: 0.35rem;
  font-style: normal;
}

address a {
  color: rgba(247, 242, 234, 0.86);
  text-decoration: none;
}

.credit {
  font-size: 0.9rem;
}

.lightbox {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(18, 16, 14, 0.86);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(100%, 1120px);
  max-height: 84vh;
  border-radius: var(--radius);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
}

.lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
}

.section-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.section-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.expired-body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1rem;
  background:
    linear-gradient(135deg, rgba(14, 122, 107, 0.12), rgba(151, 88, 55, 0.16)),
    var(--paper);
}

.expired-page {
  width: min(100%, 620px);
  padding: 2rem;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.expired-page h1 {
  font-size: 2.5rem;
}

@media (min-width: 620px) {
  h1 {
    font-size: 4.8rem;
  }

  h2 {
    font-size: 3rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-item {
    aspect-ratio: 4 / 3;
  }

  .gallery-item-large {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
  }

  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .booking-fields {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 920px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.1rem;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .nav-links a,
  .lang-pill {
    min-height: 38px;
    white-space: nowrap;
  }

  .nav-cta {
    margin-left: 0.25rem;
    border: 1px solid color-mix(in srgb, var(--accent), transparent 70%);
  }

  .cockpit-demo-link {
    margin-left: 0.7rem;
  }

  .cockpit-demo-link::before {
    content: "";
    position: absolute;
    left: -0.45rem;
    top: 7px;
    bottom: 7px;
    width: 1px;
    background: var(--line);
  }

  .hero {
    min-height: 760px;
  }

  .about-grid,
  .location-grid,
  .commission-inner {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
  }

  /* The live booking widget is a two-month (Airbnb-style) calendar that
     collapses to a single month below 640px. In a side-by-side grid column it
     only got ~600px and always collapsed, so let it span the full section
     width (intro stacked above) where both months fit. */
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 1fr;
    align-items: start;
  }

  .commission-inner {
    grid-template-columns: 1fr auto;
  }

  .commission-inner .button {
    min-width: 210px;
  }
}

@media (max-width: 760px) {
  .booking-shell iframe {
    min-height: 1540px;
  }
}

@media (max-width: 760px) {
  .reviews-inner,
  .review-quotes {
    grid-template-columns: 1fr;
  }

  .rating-badge {
    width: 100%;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.7rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .hero {
    min-height: 640px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

  .section-reveal {
    opacity: 1;
    transform: none;
  }
}
