:root {
  --white: #ffffff;
  --sand: #f5f1e8;
  --sand-deep: #e7dcc8;
  --navy: #1e3a5f;
  --navy-soft: #294a73;
  --sea: #4d9bb1;
  --sea-soft: #d9edf1;
  --gold: #c7a46b;
  --ink: #17304a;
  --muted: #66778a;
  --line: rgba(30, 58, 95, 0.14);
  --shadow: 0 24px 70px rgba(18, 45, 77, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(13, 31, 53, 0.72), rgba(13, 31, 53, 0));
}

.site-header.scrolled {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.95rem;
  line-height: 1.1;
}

.brand small {
  font-size: 0.75rem;
  opacity: 0.78;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  font-size: 0.9rem;
  font-weight: 600;
}

.nav-links a {
  opacity: 0.9;
}

.nav-links a:hover {
  opacity: 1;
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  padding: 140px clamp(18px, 6vw, 80px) 38px;
  overflow: hidden;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(14, 33, 56, 0.72), rgba(14, 33, 56, 0.28) 52%, rgba(14, 33, 56, 0.08)),
    linear-gradient(0deg, rgba(14, 33, 56, 0.58), rgba(14, 33, 56, 0.04) 45%),
    url("assets/photos/fh-aussen-front.jpg") center / cover;
  transform: scale(1.03);
  animation: coastDrift 18s ease-in-out infinite alternate;
}

.hero-content {
  max-width: 860px;
  padding-bottom: 120px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--sea);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f2dba7;
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  line-height: 1.05;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
}

h1 {
  max-width: 820px;
  font-size: 6.2rem;
}

h2 {
  font-size: 4.25rem;
  color: var(--navy);
}

h3 {
  font-size: 1.04rem;
  color: var(--navy);
}

.hero-subtitle {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions,
.price-notes,
.contact-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

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

.button svg,
.highlight-list svg,
.amenity-grid svg,
.price-notes svg,
.contact-panel svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.primary {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.hero .primary {
  background: linear-gradient(135deg, #fff7e6, #d7b775);
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--navy);
}

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

.map-button {
  margin-top: 12px;
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}

.quick-facts {
  position: absolute;
  right: clamp(18px, 6vw, 80px);
  bottom: 34px;
  left: clamp(18px, 6vw, 80px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 820px;
  margin-left: auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.quick-facts div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.quick-facts strong,
.quick-facts span {
  display: block;
}

.quick-facts strong {
  font-family: "Playfair Display", serif;
  font-size: 1.55rem;
  line-height: 1;
  color: #fff3d2;
}

.quick-facts span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(76px, 11vw, 142px) 0;
}

.overview {
  padding-top: 70px;
  padding-bottom: 70px;
}

.split,
.section-heading,
.location-inner,
.booking-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 7vw, 86px);
  align-items: start;
}

.section-heading.compact {
  margin-bottom: 28px;
}

.text-block p,
.section-heading p,
.location-copy p,
.booking-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.03rem;
}

.highlight-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.highlight-list span,
.price-notes span,
.contact-panel a,
.contact-panel span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 10px 13px;
  border-radius: var(--radius);
  background: var(--sand);
  color: var(--navy);
  font-weight: 700;
}

.tabs {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfaf7;
  box-shadow: 0 18px 52px rgba(18, 45, 77, 0.08);
}

.tab-list {
  display: grid;
  gap: 8px;
}

.tab-button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--navy);
  background: transparent;
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.tab-button:hover,
.tab-button.active {
  background: var(--white);
  border-color: var(--line);
  transform: translateX(3px);
}

.tab-button.active {
  box-shadow: 0 12px 34px rgba(18, 45, 77, 0.1);
}

.tab-button svg {
  width: 19px;
  height: 19px;
  color: var(--sea);
}

.tab-panels {
  min-height: 260px;
}

.tab-panel {
  height: 100%;
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(30, 58, 95, 0.96), rgba(41, 74, 115, 0.82)),
    url("assets/photos/fh-wintergarten-weit.jpg") center / cover;
  animation: panelIn 260ms ease both;
}

.tab-panel h3 {
  max-width: 640px;
  color: var(--white);
  font-size: 1.65rem;
}

.tab-panel p {
  max-width: 720px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.84);
}

.tab-panel a {
  display: inline-flex;
  margin-top: 22px;
  color: var(--white);
  font-weight: 900;
  border-bottom: 2px solid var(--sea-soft);
}

.gallery-section,
.booking {
  background: var(--sand);
}

.inner {
  width: min(1180px, calc(100% - 36px));
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 14px;
  margin-top: 42px;
}

.gallery-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.filter-button {
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.74);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.filter-button:hover,
.filter-button.active {
  transform: translateY(-2px);
  border-color: rgba(77, 155, 177, 0.42);
  background: var(--white);
}

.gallery-item {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sand-deep);
  cursor: zoom-in;
  box-shadow: 0 18px 42px rgba(18, 45, 77, 0.08);
  transition: opacity 260ms ease, transform 260ms ease, box-shadow 260ms ease;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
  image-rendering: auto;
  transition: transform 900ms ease, filter 300ms ease;
}

.gallery-item:hover img {
  transform: scale(1.065);
  filter: saturate(1.14) contrast(1.07);
}

.gallery-item:hover {
  box-shadow: 0 26px 60px rgba(18, 45, 77, 0.16);
}

.gallery-item.hidden {
  display: none;
}

.gallery-item:nth-child(2) {
  transform: translateY(16px);
}

.gallery-item:nth-child(4) {
  transform: translateY(-10px);
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 52%, rgba(12, 30, 52, 0.42));
  pointer-events: none;
  opacity: 0;
  transition: opacity 280ms ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item figcaption {
  position: absolute;
  z-index: 1;
  left: 14px;
  bottom: 14px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 800;
}

.tilt-card {
  transform-style: preserve-3d;
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.amenity-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.amenity-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(77, 155, 177, 0.38);
  box-shadow: 0 18px 44px rgba(18, 45, 77, 0.1);
}

.amenity-grid svg {
  width: 28px;
  height: 28px;
  margin-bottom: 26px;
  color: var(--sea);
}

.amenity-grid p {
  margin: 10px 0 0;
  color: var(--muted);
}

.included-band {
  background: linear-gradient(180deg, var(--sand), var(--white));
}

.included-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  padding-top: 80px;
  padding-bottom: 80px;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.included-grid span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.included-grid svg {
  width: 19px;
  height: 19px;
  color: var(--sea);
}

.location {
  background:
    linear-gradient(90deg, rgba(30, 58, 95, 0.92), rgba(30, 58, 95, 0.72)),
    url("assets/photos/fh-aussen-hof-weit.jpg") center / cover;
  color: var(--white);
}

.location h2,
.location-copy p {
  color: var(--white);
}

.location-copy p {
  opacity: 0.84;
}

.map-card {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 360px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.19)),
    radial-gradient(circle at 76% 18%, rgba(77, 155, 177, 0.34), transparent 34%);
  box-shadow: var(--shadow);
}

.map-card span {
  color: var(--sea-soft);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.map-card strong {
  margin-top: 16px;
  font-family: "Playfair Display", serif;
  font-size: 3.2rem;
  line-height: 1.1;
}

.map-card p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.price-table {
  margin-top: 42px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.price-row {
  display: grid;
  grid-template-columns: 1fr 1.45fr 1fr;
  gap: 16px;
  align-items: center;
  padding: 20px 24px;
  border-top: 1px solid var(--line);
}

.price-row:first-child {
  border-top: 0;
}

.price-row.header {
  color: var(--muted);
  background: var(--sand);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.price-row.featured {
  background: linear-gradient(90deg, var(--sea-soft), var(--white));
}

.price-row strong {
  color: var(--navy);
  font-size: 1.35rem;
}

.price-notes {
  margin-top: 18px;
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 15px;
  color: var(--ink);
  background: #fbfaf7;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(77, 155, 177, 0.22);
  border-color: var(--sea);
}

input:user-invalid,
select:user-invalid,
textarea:user-invalid {
  border-color: rgba(181, 67, 67, 0.72);
}

select {
  min-height: 54px;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--navy) 50%), linear-gradient(135deg, var(--navy) 50%, transparent 50%);
  background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  cursor: pointer;
}

input[type="date"] {
  min-height: 54px;
  color-scheme: light;
  cursor: pointer;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.72;
}

textarea {
  resize: vertical;
}

.checkbox-label {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.45;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--navy);
}

.full {
  width: 100%;
}

.form-note {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.contact-panel {
  margin-top: 28px;
}

.legal {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.legal-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 46px 0;
}

.legal article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfaf7;
}

.legal h2 {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.25;
}

.legal p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.legal a {
  color: var(--navy);
  font-weight: 800;
}

.lightbox {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(10, 24, 42, 0.86);
  backdrop-filter: blur(18px);
  animation: lightboxIn 220ms ease both;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  width: min(1100px, 92vw);
  max-height: 78svh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.lightbox p {
  margin: 14px 0 0;
  color: var(--white);
  font-weight: 850;
  text-align: center;
}

.lightbox-close {
  position: fixed;
  top: 22px;
  right: 22px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.lightbox-close svg {
  width: 22px;
  height: 22px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px 36px;
  padding: 40px clamp(18px, 6vw, 80px);
  color: rgba(255, 255, 255, 0.78);
  background: #142941;
}

.site-footer strong {
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
}

.site-footer p {
  margin: 6px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 22px;
  color: var(--white);
  font-weight: 700;
}

.credits {
  grid-column: 1 / -1;
  font-size: 0.78rem;
  opacity: 0.72;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes coastDrift {
  from {
    transform: scale(1.03) translateX(-8px);
  }

  to {
    transform: scale(1.07) translateX(10px);
  }
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lightboxIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-media,
  .tab-panel {
    animation: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    position: fixed;
    align-items: center;
    color: var(--navy);
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
  }

  .menu-toggle {
    display: grid;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 18px;
    left: 18px;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--navy);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: var(--radius);
  }

  .nav-links a:hover {
    background: var(--sand);
  }

  .nav-cta {
    justify-content: center;
    margin-top: 4px;
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
  }

  .hero {
    min-height: auto;
    padding-top: 140px;
    padding-bottom: 28px;
  }

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

  .quick-facts,
  .split,
  .section-heading,
  .location-inner,
  .booking-inner,
  .amenity-grid,
  .tabs,
  .included-inner {
    grid-template-columns: 1fr;
  }

  .tab-list {
    grid-template-columns: repeat(5, minmax(150px, 1fr));
    overflow-x: auto;
    padding-bottom: 4px;
  }

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

  h1 {
    font-size: 4.9rem;
  }

  h2 {
    font-size: 3.35rem;
  }

  .map-card strong {
    font-size: 2.6rem;
  }

  .quick-facts {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    max-width: none;
    width: 100%;
    margin: 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }

  .gallery-item:nth-child(2),
  .gallery-item:nth-child(4) {
    transform: none;
  }

  .lightbox {
    padding: 18px;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand small {
    font-size: 0.7rem;
  }

  .hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero-subtitle {
    font-size: 1.12rem;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .button,
  input,
  textarea,
  .filter-button,
  .tab-button {
    font-size: 1rem;
  }

  .quick-facts {
    grid-template-columns: 1fr;
  }

  .quick-facts div {
    padding: 15px;
  }

  .highlight-list,
  .gallery-grid,
  .included-grid {
    grid-template-columns: 1fr;
  }

  .section {
    width: min(100% - 28px, 1180px);
    padding: 58px 0;
  }

  .overview {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .tabs {
    padding: 12px;
  }

  .tab-list {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .tab-panel {
    padding: 22px;
  }

  .tab-panel h3 {
    font-size: 1.32rem;
  }

  .gallery-grid {
    grid-auto-rows: 245px;
  }

  .gallery-item.large,
  .gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .amenity-grid article,
  .booking-form,
  .legal article {
    padding: 20px;
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .legal-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .lightbox img {
    width: 100%;
    max-height: 72svh;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.92rem;
  }

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

  .brand small {
    display: none;
  }

  .gallery-grid {
    grid-auto-rows: 215px;
  }
}
