:root {
  --ink: #182126;
  --muted-ink: #5f6562;
  --paper: #fffaf1;
  --surface: #fffdf8;
  --mist: #eef5f1;
  --lake: #195a9f;
  --olive: #5c624b;
  --terracotta: #bf5f3d;
  --terracotta-dark: #8f3f29;
  --gold: #d99a24;
  --line: rgba(24, 33, 38, 0.14);
  --shadow: 0 22px 70px rgba(24, 33, 38, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Karla", sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

img,
svg {
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  border-radius: var(--radius);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  min-height: 76px;
  display: grid;
  grid-template-columns: minmax(360px, auto) minmax(420px, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 46px);
  background: rgba(255, 250, 241, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(16px);
}

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

.brand img {
  width: 72px;
  height: 54px;
  object-fit: contain;
}

.brand span {
  font-family: "Playfair Display", serif;
  font-size: clamp(17px, 1.45vw, 23px);
  line-height: 1.05;
  white-space: nowrap;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  font-weight: 600;
}

.main-nav a,
.language-switcher button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(24, 33, 38, 0.78);
  transition: color 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.language-switcher button:hover,
.language-switcher button:focus-visible {
  color: var(--terracotta-dark);
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
}

.language-switcher button {
  position: relative;
  border: 0;
  background: transparent;
  padding: 0 5px;
}

.language-switcher button + button::before {
  content: "/";
  margin-right: 9px;
  color: rgba(24, 33, 38, 0.35);
}

.language-switcher .active {
  color: var(--terracotta-dark);
  text-decoration: none;
}

.language-switcher .active::after {
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  bottom: 7px;
  height: 1px;
  background: currentColor;
}

.language-switcher button + button.active::after {
  left: 21px;
}

.booking-button,
.booking-submit {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 4px;
  background: var(--terracotta);
  color: white;
  padding: 0 28px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.booking-button:hover,
.booking-button:focus-visible,
.booking-submit:hover,
.booking-submit:focus-visible {
  transform: translateY(-1px);
  background: var(--terracotta-dark);
}

.hero {
  position: relative;
  min-height: min(72dvh, 650px);
  display: flex;
  align-items: end;
  overflow: hidden;
  background: #d4e6ec;
}

.hero-media {
  position: absolute;
  inset: 0;
  transform: scale(1.02);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(8, 44, 55, 0.68), rgba(8, 44, 55, 0.2) 52%, rgba(255, 250, 241, 0.02));
}

.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--hero-image, url("assets/header_ph1.jpg")) center var(--hero-y, 50%) / cover;
  opacity: 0;
  transition: opacity 1200ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 128px 0 clamp(46px, 7vh, 78px);
  color: white;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.28);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--terracotta);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffe3c1;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: 0;
  margin: 0;
}

h1 {
  max-width: 860px;
  font-size: clamp(54px, 8vw, 116px);
  line-height: 0.93;
}

.hero-copy {
  max-width: 630px;
  margin: 26px 0 0;
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.35;
}

.booking-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 28px clamp(20px, 4vw, 56px);
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(24, 33, 38, 0.08);
}

.booking-strip p {
  margin: 0;
  font-size: clamp(20px, 2vw, 28px);
  color: var(--ink);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr)) minmax(170px, auto);
  gap: 16px;
  align-items: end;
}

.booking-form label {
  display: grid;
  gap: 5px;
  min-width: 0;
  color: var(--muted-ink);
  font-size: 13px;
  font-weight: 700;
}

.booking-form input,
.booking-form select {
  min-height: 56px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: white;
  color: var(--ink);
  padding: 12px 14px;
}

.booking-form .date-field {
  cursor: pointer;
}

.date-picker {
  position: absolute;
  z-index: 80;
  width: min(320px, calc(100vw - 32px));
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 24px 60px rgba(24, 33, 38, 0.18);
}

.date-picker[hidden] {
  display: none;
}

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

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

.calendar-title {
  color: var(--ink);
  font-weight: 800;
  text-transform: capitalize;
}

.calendar-nav {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  font-size: 20px;
}

.calendar-head span {
  padding: 6px 0;
  color: var(--muted-ink);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.calendar-day {
  aspect-ratio: 1;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-weight: 700;
}

.calendar-day:hover,
.calendar-day:focus-visible,
.calendar-day.selected {
  background: var(--terracotta);
  color: white;
}

.calendar-day.outside {
  color: rgba(89, 97, 92, 0.38);
}

.calendar-day.disabled,
.calendar-day:disabled {
  cursor: not-allowed;
  color: rgba(89, 97, 92, 0.24);
  background: transparent;
}

.calendar-day.past,
.calendar-day.past:disabled {
  cursor: not-allowed;
  color: rgba(89, 97, 92, 0.24);
  background: transparent;
}

.calendar-day.neutral-disabled,
.calendar-day.neutral-disabled:disabled {
  cursor: not-allowed;
  color: var(--ink);
  background: transparent;
}

.calendar-day.unavailable,
.calendar-day.unavailable:disabled {
  color: #9b2f24;
  background: rgba(187, 74, 55, 0.13);
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}

.calendar-day.unavailable:hover,
.calendar-day.unavailable:focus-visible {
  color: #9b2f24;
  background: rgba(187, 74, 55, 0.18);
}

.calendar-day.neutral-disabled.unavailable,
.calendar-day.neutral-disabled.unavailable:disabled,
.calendar-day.neutral-disabled.unavailable:hover,
.calendar-day.neutral-disabled.unavailable:focus-visible {
  color: var(--ink);
  background: transparent;
  text-decoration: none;
}

.calendar-status {
  margin: 0;
  color: var(--muted-ink);
  font-size: 12px;
  line-height: 1.35;
}

.calendar-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 10px;
}

.calendar-reset {
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  color: var(--terracotta-dark);
  padding: 0;
  font-size: 12px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.calendar-reset:hover,
.calendar-reset:focus-visible {
  color: var(--ink);
}

.highlights {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  background: var(--surface);
  border: 0;
  box-shadow: none;
  overflow-x: hidden;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
}

.highlight-item {
  min-width: 0;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 9px;
  padding: 22px 4px;
  border-right: 1px solid var(--line);
}

.highlight-item:last-child {
  border-right: 0;
}

.icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--olive);
}

.icon svg {
  width: 33px;
  height: 33px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.icon .wifi-mark {
  stroke-width: 1.9;
}

.icon .people-mark {
  stroke-width: 1.65;
}

.icon .wifi-dot {
  fill: currentColor;
  stroke: none;
}

.highlight-item h2 {
  font-family: "Karla", sans-serif;
  font-size: clamp(11px, 1vw, 14px);
  font-weight: 700;
  line-height: 1.2;
}

.highlight-item p {
  margin: 4px 0 0;
  color: var(--muted-ink);
  font-size: clamp(10px, 0.82vw, 12px);
  line-height: 1.25;
}

.section-band {
  padding: clamp(64px, 7vw, 104px) clamp(20px, 5vw, 56px);
}

.section-band > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.muted {
  background: var(--mist);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(36px, 6vw, 92px);
  align-items: start;
}

.intro-grid h2,
.section-heading h2,
.location h2,
.reviews h2,
.host h2,
.contact h2 {
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.02;
}

.intro-grid p,
.location-copy p,
.host-copy > p,
.contact p {
  margin: 0;
  color: var(--muted-ink);
  font-size: 20px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 34px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.85fr;
  grid-auto-rows: 220px;
  gap: 10px;
}

.gallery-tile {
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 260ms ease;
}

.gallery-tile:hover img,
.gallery-tile:focus-visible img {
  transform: scale(1.035);
}

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

.gallery-more {
  margin: 22px auto 0;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 700;
}

.gallery-more::after {
  content: "→";
  color: var(--olive);
  font-size: 22px;
}

.expand-panel {
  display: grid;
  grid-template-columns: minmax(0, 790px);
  justify-content: start;
  margin-top: 20px;
  padding: 26px 0 0;
  border-top: 1px solid var(--line);
}

.panel-preview {
  max-width: 790px;
}

.panel-preview h3 {
  font-size: clamp(24px, 3vw, 38px);
}

.text-toggle,
.section-toggle,
.circle-button {
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  border-radius: var(--radius);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.text-toggle,
.section-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-weight: 700;
}

.expand-panel .text-toggle {
  display: flex;
  width: fit-content;
  justify-self: center;
  margin: 16px 0 0;
}

.text-toggle svg,
.section-toggle svg,
.circle-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 220ms ease;
}

.text-toggle:hover,
.section-toggle:hover,
.circle-button:hover,
.text-toggle:focus-visible,
.section-toggle:focus-visible,
.circle-button:focus-visible {
  transform: translateY(-1px);
  border-color: var(--terracotta);
  background: #fff6e7;
}

.expand-panel[data-expanded="true"] .text-toggle svg,
.amenities-list[data-expanded="true"] + .section-toggle svg {
  transform: rotate(180deg);
}

.collapsible-text {
  max-width: 790px;
  max-height: calc(1.58em * 5);
  overflow: hidden;
  margin: 18px 0 0;
  color: var(--muted-ink);
  line-height: 1.58;
  transition:
    max-height 260ms ease,
    margin-top 260ms ease;
}

.expand-panel[data-expanded="true"] .collapsible-text {
  max-height: 900px;
  margin-top: 18px;
}

.amenities-list {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 22px;
  align-items: start;
}

.amenities-list article {
  min-height: 104px;
  display: grid;
  justify-items: center;
  align-items: center;
  gap: 12px;
  padding: 8px;
  background: transparent;
  border: 0;
  border-radius: 0;
  text-align: center;
}

.amenities-list p {
  margin: 0;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.25;
}

.amenity-icon {
  width: 38px;
  height: 38px;
  display: block;
  background-color: var(--ink);
  -webkit-mask: var(--icon) center / contain no-repeat;
  mask: var(--icon) center / contain no-repeat;
}

.amenity-icon.bed { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 11V6a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v5'/%3E%3Cpath d='M12 11V7a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v4'/%3E%3Cpath d='M3 20v-7a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v7'/%3E%3Cpath d='M3 16h18'/%3E%3C/g%3E%3C/svg%3E"); }
.amenity-icon.bath { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12h16v2a6 6 0 0 1-6 6H10a6 6 0 0 1-6-6v-2Z'/%3E%3Cpath d='M7 12V6a3 3 0 0 1 6 0'/%3E%3Cpath d='M14 6h3'/%3E%3Cpath d='M7 20l-1 2m11-2 1 2'/%3E%3C/g%3E%3C/svg%3E"); }
.amenity-icon.kitchen { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 3v18'/%3E%3Cpath d='M9 3v18'/%3E%3Cpath d='M5 8h4'/%3E%3Cpath d='M15 3v7a3 3 0 0 0 3 3v8'/%3E%3Cpath d='M18 3v10'/%3E%3C/g%3E%3C/svg%3E"); }
.amenity-icon.washer { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='6' y='3' width='12' height='18' rx='2'/%3E%3Ccircle cx='12' cy='14' r='4'/%3E%3Cpath d='M9 7h.01M12 7h3'/%3E%3C/g%3E%3C/svg%3E"); }
.amenity-icon.tv { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='5' width='16' height='11' rx='2'/%3E%3Cpath d='M8 21h8M12 16v5'/%3E%3C/g%3E%3C/svg%3E"); }
.amenity-icon.wifi { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 8a13 13 0 0 1 16 0'/%3E%3Cpath d='M7 12a8 8 0 0 1 10 0'/%3E%3Cpath d='M10 16a3 3 0 0 1 4 0'/%3E%3Cpath d='M12 20h.01'/%3E%3C/g%3E%3C/svg%3E"); }
.amenity-icon.coffee { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 9h10v5a4 4 0 0 1-4 4H9a4 4 0 0 1-4-4V9Z'/%3E%3Cpath d='M15 10h2a3 3 0 0 1 0 6h-2'/%3E%3Cpath d='M7 3v3m4-3v3'/%3E%3Cpath d='M4 21h14'/%3E%3C/g%3E%3C/svg%3E"); }
.amenity-icon.parking { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 20V4h6a4 4 0 0 1 0 8H7'/%3E%3C/g%3E%3C/svg%3E"); }
.amenity-icon.pool { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 15h16M4 19h16M8 15V8a3 3 0 0 1 6 0v7M14 8h3'/%3E%3C/g%3E%3C/svg%3E"); }
.amenity-icon.garden { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21V10'/%3E%3Cpath d='M12 10C8 9 6 6 6 3c4 0 6 3 6 7Z'/%3E%3Cpath d='M12 12c4-1 6-4 6-7-4 0-6 3-6 7Z'/%3E%3C/g%3E%3C/svg%3E"); }
.amenity-icon.linen { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 4h12v16H6z'/%3E%3Cpath d='M8 7h8M8 11h8M8 15h6'/%3E%3C/g%3E%3C/svg%3E"); }
.amenity-icon.view { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 13c2 0 2 1.2 4 1.2s2-1.2 4-1.2 2 1.2 4 1.2 2-1.2 4-1.2 2 1.2 4 1.2'/%3E%3Cpath d='M3 17c2 0 2 1.2 4 1.2s2-1.2 4-1.2 2 1.2 4 1.2 2-1.2 4-1.2 2 1.2 4 1.2'/%3E%3Cpath d='M7 9c2.4-3 7.6-3 10 0'/%3E%3C/g%3E%3C/svg%3E"); }
.amenity-icon.outdoor { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 20V9m10 11V9M5 20h14'/%3E%3Cpath d='M6 9h12l-2-5H8L6 9Z'/%3E%3Cpath d='M9 13h6'/%3E%3C/g%3E%3C/svg%3E"); }
.amenity-icon.climate { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='5' width='16' height='8' rx='2'/%3E%3Cpath d='M7 9h10M8 17c1.3-1.2 2.7-1.2 4 0s2.7 1.2 4 0M8 21c1.3-1.2 2.7-1.2 4 0s2.7 1.2 4 0'/%3E%3C/g%3E%3C/svg%3E"); }
.amenity-icon.sofa { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 12V8a3 3 0 0 1 3-3h6a3 3 0 0 1 3 3v4'/%3E%3Cpath d='M4 13h16v5H4z'/%3E%3Cpath d='M4 18v2m16-2v2'/%3E%3C/g%3E%3C/svg%3E"); }
.amenity-icon.wardrobe { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='6' y='3' width='12' height='18' rx='1'/%3E%3Cpath d='M12 3v18M10 12h.01M14 12h.01'/%3E%3C/g%3E%3C/svg%3E"); }
.amenity-icon.floor { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16v16H4zM4 12h16M12 4v16'/%3E%3C/g%3E%3C/svg%3E"); }
.amenity-icon.iron { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 16h16l-2-7H9a5 5 0 0 0-5 5v2Z'/%3E%3Cpath d='M9 9V6h6v3M4 19h16'/%3E%3C/g%3E%3C/svg%3E"); }
.amenity-icon.building { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 21V4h9v17M14 9h5v12'/%3E%3Cpath d='M8 8h2M8 12h2M8 16h2M17 13h.01M17 17h.01'/%3E%3C/g%3E%3C/svg%3E"); }

.amenities-list:not([data-expanded="true"]) .extra {
  display: none;
}

.section-toggle {
  display: flex;
  width: fit-content;
  margin: 22px auto 0;
}

.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
}

.map-shell {
  min-width: 0;
}

.map-card {
  position: relative;
  height: 520px;
  min-height: 520px;
  overflow: hidden;
  border-radius: 14px;
  background: #f4efe3;
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(24, 33, 38, 0.1);
}

.leaflet-map {
  position: relative;
  width: 100%;
  height: 520px;
  min-height: 520px;
  overflow: hidden;
  filter: saturate(0.72) contrast(0.92) brightness(1.04);
  z-index: 1;
}

.leaflet-container {
  overflow: hidden;
  outline: 0;
  cursor: grab;
}

.leaflet-container:active {
  cursor: grabbing;
}

.leaflet-map-pane,
.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container {
  position: absolute;
  left: 0;
  top: 0;
}

.leaflet-tile,
.leaflet-container img {
  max-width: none !important;
  max-height: none !important;
}

.leaflet-tile {
  width: 256px;
  height: 256px;
  user-select: none;
  -webkit-user-drag: none;
}

.leaflet-tile-pane {
  z-index: 200;
}

.leaflet-overlay-pane {
  z-index: 400;
}

.leaflet-shadow-pane {
  z-index: 500;
}

.leaflet-marker-pane {
  z-index: 600;
}

.real-map .leaflet-control-container {
  display: none;
}

.real-map .leaflet-marker-icon,
.real-map .leaflet-marker-shadow {
  filter: saturate(1.05) brightness(0.96);
}

.map-pin {
  position: relative;
  width: 32px !important;
  height: 44px !important;
  background: transparent;
}

.map-pin span {
  position: absolute;
  left: 5px;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 50% 50% 50% 0;
  background: #6fa33f;
  box-shadow: 0 6px 16px rgba(24, 33, 38, 0.24);
  transform: rotate(-45deg);
}

.map-pin span::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fffdf8;
}

.map-address-pill,
.map-expand,
.map-zoom,
.osm-credit {
  position: absolute;
  z-index: 2;
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.94);
  color: var(--ink);
  box-shadow: 0 14px 30px rgba(24, 33, 38, 0.16);
}

.map-address-pill {
  left: 18px;
  bottom: 18px;
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 14px 18px;
  font-size: 16px;
}

.map-address-pill strong::after {
  content: "•";
  margin-left: 8px;
  color: var(--muted-ink);
}

.map-expand {
  top: 18px;
  right: 18px;
  min-height: 50px;
  border: 0;
  padding: 0 22px;
  color: var(--lake);
  font-weight: 800;
  text-transform: uppercase;
}

.map-expand::before {
  content: "↗";
  margin-right: 10px;
  font-size: 22px;
}

.map-zoom {
  right: 18px;
  bottom: 18px;
  display: grid;
  overflow: hidden;
  padding: 0;
}

.map-zoom button {
  width: 52px;
  height: 50px;
  border: 0;
  background: rgba(255, 253, 248, 0.96);
  color: var(--muted-ink);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.map-zoom button + button {
  border-top: 1px solid var(--line);
}

.osm-credit {
  left: 14px;
  bottom: 2px;
  padding: 3px 6px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: none;
}

.location-grid.map-expanded {
  grid-template-columns: 1fr;
}

.location-grid.map-expanded .map-shell {
  grid-column: 1 / -1;
}

.location-grid.map-expanded .map-card,
.location-grid.map-expanded .leaflet-map {
  height: min(72vh, 720px);
  min-height: min(72vh, 720px);
}

.location-grid.map-expanded .location-copy {
  max-width: 780px;
}

.location-copy ul {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.location-copy li {
  margin-top: 14px;
  padding-left: 24px;
  position: relative;
  font-weight: 700;
}

.location-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
}

.reviews-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.reviews {
  padding-bottom: clamp(38px, 4.5vw, 62px);
}

.circle-button {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
}

.review-window {
  overflow: hidden;
}

.review-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 32px) / 3);
  align-items: stretch;
  gap: 16px;
  transition: transform 320ms ease;
}

.review-card {
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius);
  box-shadow: 0 12px 44px rgba(24, 33, 38, 0.08);
}

.review-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px 16px;
}

.review-meta cite {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  font-style: normal;
  font-weight: 800;
  font-size: 16px;
  line-height: 1.2;
}

.review-date {
  display: block;
  grid-column: 1;
  margin-top: 3px;
  color: var(--muted-ink);
  font-size: 13px;
  line-height: 1.2;
}

.flag {
  display: inline-block;
  width: 18px;
  height: 12px;
  border-radius: 1px;
  box-shadow: 0 0 0 1px rgba(24, 33, 38, 0.14);
  background-size: cover;
  background-position: center;
  font-size: 15px;
  line-height: 1;
}

.fi-gb { background-image: linear-gradient(180deg, transparent 0 100%), url("https://flagcdn.com/gb.svg"); }
.fi-de { background-image: url("https://flagcdn.com/de.svg"); }
.fi-ie { background-image: url("https://flagcdn.com/ie.svg"); }
.fi-ca { background-image: url("https://flagcdn.com/ca.svg"); }
.fi-at { background-image: url("https://flagcdn.com/at.svg"); }

.review-score {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}

.review-score span {
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
}

.review-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: inherit;
  font-size: 19px;
  line-height: 1.14;
  letter-spacing: 0;
}

.stars {
  margin: 0;
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 0.12em;
}

.review-card blockquote {
  margin: 0;
  color: var(--ink);
  font-family: inherit;
  font-size: 14px;
  line-height: 1.38;
}

.host-quotes blockquote {
  margin: 22px 0;
  color: var(--ink);
  font-family: "Playfair Display", serif;
  font-size: 24px;
  line-height: 1.35;
}

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

.host-layout {
  display: grid;
  grid-template-columns: minmax(140px, 190px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: center;
  max-width: 1120px;
}

.host {
  padding-top: clamp(38px, 4.5vw, 62px);
}

.host-layout > img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 14px 42px rgba(24, 33, 38, 0.12);
}

.host-layout > img.host-logo {
  object-fit: contain;
  padding: 18px;
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid rgba(92, 98, 75, 0.16);
}

.host-copy p {
  max-width: 900px;
}

.host-copy > p:not(.section-kicker) {
  margin-top: 18px;
}

.host h2 {
  max-width: 820px;
  font-size: clamp(34px, 4.2vw, 58px);
}

.host-quotes {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.host-quotes blockquote {
  margin: 0;
  padding-left: 16px;
  border-left: 3px solid var(--terracotta);
  font-size: 18px;
}

.contact {
  background:
    linear-gradient(rgba(24, 33, 38, 0.58), rgba(24, 33, 38, 0.58)),
    url("https://unsplash.com/photos/Rkf0vgAddug/download?force=true&w=2200") center/cover;
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(30px, 6vw, 80px);
  align-items: start;
  padding: clamp(30px, 5vw, 58px);
  color: white;
  background: rgba(255, 253, 248, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
}

.contact .section-kicker,
.contact p {
  color: #ffe0c2;
}

.contact form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px 18px;
}

.contact label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.contact label:nth-child(1),
.contact label:nth-child(2) {
  grid-column: span 2;
}

.contact label:nth-child(3) {
  grid-column: span 3;
}

.contact label:nth-child(4) {
  grid-column: span 1;
}

.contact label:nth-child(5) {
  grid-column: 1 / -1;
}

.contact input,
.contact textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: rgba(255, 253, 248, 0.93);
  color: var(--ink);
}

.contact textarea {
  resize: vertical;
}

.whatsapp-button {
  grid-column: 1 / -1;
  justify-self: stretch;
  width: 100%;
  margin-top: 2px;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: var(--radius);
  background: #1f8f55;
  color: white;
  font-weight: 800;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.whatsapp-button svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.whatsapp-button:hover,
.whatsapp-button:focus-visible {
  transform: translateY(-1px);
  background: #187646;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
  padding: 18px clamp(20px, 5vw, 56px);
  background: #5c624b;
  color: rgba(255, 253, 248, 0.92);
  font-weight: 700;
}

.footer-brand,
.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.footer-link-text {
  display: grid;
  gap: 2px;
  line-height: 1.15;
}

.footer-link-text small {
  color: rgba(255, 253, 248, 0.74);
  font-size: 12px;
  font-weight: 600;
}

.footer-brand img {
  width: 86px;
  height: 64px;
  object-fit: contain;
  padding: 7px 10px;
  border: 1px solid rgba(255, 253, 248, 0.7);
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 12px 26px rgba(24, 33, 38, 0.18);
}

.footer-brand div {
  display: grid;
  gap: 3px;
}

.footer-brand strong,
.footer-brand span,
.site-footer a,
.footer-link span {
  color: inherit;
}

.footer-brand span {
  font-weight: 500;
  opacity: 0.82;
}

.footer-link svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  flex: 0 0 auto;
}

.site-footer a,
.footer-legal-button {
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible,
.footer-legal-button:hover,
.footer-legal-button:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-legal-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.footer-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 253, 248, 0.38);
  flex: 0 0 auto;
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(24, 33, 38, 0.58);
  backdrop-filter: blur(8px);
}

.legal-modal[hidden] {
  display: none;
}

.legal-dialog {
  position: relative;
  width: min(640px, 100%);
  padding: clamp(26px, 4vw, 42px);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 24px 80px rgba(24, 33, 38, 0.26);
}

.legal-dialog h2 {
  margin: 0 42px 18px 0;
  font-size: clamp(28px, 4vw, 42px);
}

.legal-dialog p {
  margin: 0;
  color: var(--muted-ink);
  font-size: 17px;
  line-height: 1.65;
}

.legal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(92, 98, 75, 0.18);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

:focus-visible {
  outline: 3px solid rgba(25, 90, 159, 0.65);
  outline-offset: 3px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(13, 18, 20, 0.82);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 86vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 30px;
  line-height: 1;
}

.lightbox-close {
  top: 22px;
  right: 22px;
}

.lightbox-nav {
  top: 50%;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  font-size: 42px;
}

.lightbox-prev {
  left: 22px;
}

.lightbox-next {
  right: 22px;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .amenities-list {
    grid-template-columns: repeat(4, 1fr);
  }

  .booking-strip,
  .booking-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .site-header {
    min-height: 68px;
    padding: 8px 16px;
    gap: 12px;
  }

  .brand img {
    width: 58px;
    height: 46px;
  }

  .brand span {
    white-space: normal;
    font-size: 17px;
    max-width: 190px;
  }

  .language-switcher {
    font-size: 14px;
  }

  .hero {
    min-height: 86dvh;
  }

  .hero-content {
    width: min(100% - 32px, 680px);
    padding-bottom: 46px;
  }

  h1 {
    font-size: clamp(48px, 16vw, 76px);
  }

  .highlights {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0;
    box-shadow: none;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .highlight-item {
    grid-template-columns: 40px minmax(0, 1fr);
    justify-items: start;
    align-items: center;
    text-align: left;
    gap: 10px;
    padding: 16px 14px;
    border-top: 0;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .highlight-item:nth-child(even) {
    border-right: 0;
  }

  .highlight-item:last-child {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 0;
  }

  .highlight-item h2 {
    font-size: 15px;
    line-height: 1.18;
  }

  .highlight-item p {
    margin-top: 3px;
    font-size: 13px;
    line-height: 1.28;
  }

  .icon {
    width: 36px;
    height: 36px;
  }

  .icon svg {
    width: 32px;
    height: 32px;
  }

  .intro-grid,
  .location-grid,
  .host-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .host-layout {
    max-width: 340px;
  }

  .host-layout > img {
    max-width: 280px;
    margin: 0 auto;
  }

  .host h2 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .section-heading,
  .panel-preview,
  .reviews-head {
    align-items: start;
    flex-direction: column;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 170px;
  }

  .gallery-large {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .amenities-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 10px;
  }

  .map-card {
    height: 320px;
    min-height: 320px;
  }

  .leaflet-map {
    height: 320px;
    min-height: 320px;
  }

  .review-track {
    grid-auto-columns: 100%;
  }

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

  .contact label:nth-child(1),
  .contact label:nth-child(2),
  .contact label:nth-child(3),
  .contact label:nth-child(4),
  .contact label:nth-child(5),
  .whatsapp-button {
    grid-column: 1 / -1;
  }

  .whatsapp-button {
    justify-self: stretch;
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .footer-divider {
    display: none;
  }
}

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