:root {
  --bg: #f8f7f3;
  --surface: #ffffff;
  --ink: #22201c;
  --muted: #6f685f;
  --line: #ddd6cc;
  --accent: #6f7d4a;
  --accent-dark: #4d5a32;
  --stone: #c9bba8;
  --shadow: 0 18px 50px rgba(45, 38, 30, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(248, 247, 243, 0.92);
  border-bottom: 1px solid rgba(221, 214, 204, 0.78);
  backdrop-filter: blur(14px);
}

.brand {
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--ink);
}

.header-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  min-width: 0;
}

.language-switcher {
  position: relative;
  flex: 0 0 auto;
}

.language-button,
.language-menu button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  font: inherit;
  cursor: pointer;
}

.language-button {
  min-height: 34px;
  padding: 6px 10px;
  font-size: 0.88rem;
  font-weight: 700;
}

.language-button:hover,
.language-menu button:hover {
  border-color: var(--accent);
}

.language-flag {
  font-size: 1.05rem;
  line-height: 1;
}

.language-code {
  min-width: 22px;
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 20;
  display: grid;
  gap: 6px;
  min-width: 170px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.language-menu[hidden] {
  display: none;
}

.language-menu button {
  width: 100%;
  justify-content: flex-start;
  padding: 8px 10px;
  border-radius: 7px;
  font-size: 0.92rem;
  text-align: left;
}

.language-menu button[aria-selected="true"] {
  border-color: var(--accent);
  background: #f1f4e9;
}

.hero {
  position: relative;
  min-height: calc(100svh - 70px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(18, 18, 15, 0.74), rgba(18, 18, 15, 0.28) 46%, rgba(18, 18, 15, 0.08)),
    linear-gradient(0deg, rgba(18, 18, 15, 0.28), rgba(18, 18, 15, 0));
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  width: min(760px, 100%);
  padding: 0 clamp(20px, 5vw, 72px) clamp(52px, 9vw, 110px);
  color: #fff;
}

.eyebrow {
  display: none;
  margin: 0 0 10px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0e9da;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.45rem, 7vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.hero-content p {
  max-width: 610px;
  margin-bottom: 26px;
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--accent);
}

.button.primary:hover {
  background: var(--accent-dark);
}

.button.secondary {
  color: var(--accent-dark);
  background: transparent;
  border: 1px solid rgba(77, 90, 50, 0.38);
}

.button.secondary:hover {
  color: #fff;
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.button.secondary.light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.62);
}

.button.secondary.light:hover {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

.section {
  padding: clamp(56px, 8vw, 100px) clamp(20px, 5vw, 72px);
}

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

.section-heading p {
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.feature {
  min-height: 220px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(45, 38, 30, 0.06);
}

.feature-value {
  display: block;
  margin-bottom: 28px;
  color: var(--accent-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 700;
}

.feature p,
.text-columns p {
  color: var(--muted);
}

.good-to-know {
  background: #fbfaf7;
}

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

.info-card {
  min-height: 170px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(45, 38, 30, 0.06);
}

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

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  background: #ece7de;
}

.text-columns {
  display: grid;
  gap: 18px;
  font-size: 1.06rem;
}

.amenities-section {
  background: #fbfaf7;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.amenity-panel {
  min-height: 300px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(45, 38, 30, 0.06);
}

.gallery-section {
  background: #fbfaf7;
}

.local-section {
  background: var(--surface);
}

.local-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.local-panel {
  min-height: 270px;
  padding: 24px;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.local-panel.notice {
  background: #ece7de;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.local-panel p {
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 14px;
}

.gallery-item {
  position: relative;
  min-height: 240px;
  margin: 0;
  overflow: hidden;
  background: var(--stone);
  border-radius: 8px;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 494px;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-item:hover img {
  transform: scale(1.025);
}

.gallery-item figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  max-width: calc(100% - 24px);
  padding: 7px 10px;
  color: #fff;
  background: rgba(24, 22, 18, 0.72);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 700;
}

.availability {
  background: var(--surface);
}

.availability-calendar {
  padding: clamp(18px, 3vw, 28px);
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.calendar-toolbar h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  text-align: center;
}

.calendar-nav {
  width: 42px;
  height: 42px;
  color: var(--accent-dark);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.calendar-nav:hover {
  color: #fff;
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.calendar-nav:disabled {
  color: #c5beb5;
  background: #f1eee8;
  border-color: var(--line);
  cursor: not-allowed;
  opacity: 0.7;
}

.calendar-nav:disabled:hover {
  color: #c5beb5;
  background: #f1eee8;
  border-color: var(--line);
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.calendar-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.legend-dot.available {
  background: #dfe8d2;
}

.legend-dot.unavailable {
  background: #c96f5b;
}

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

.calendar-weekday,
.calendar-day {
  min-height: 46px;
  display: grid;
  place-items: center;
  border-radius: 6px;
}

.calendar-weekday {
  min-height: 30px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.calendar-day {
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  font-weight: 700;
}

.calendar-day.outside {
  color: #aca49a;
  background: #f1eee8;
}

.calendar-day.available {
  background: #edf4e6;
  border-color: #d4e2c5;
}

.calendar-day.outside.available {
  color: #aca49a;
  background: #f1eee8;
  border-color: var(--line);
}

.calendar-day.unavailable {
  color: #fff;
  background: #b95f4e;
  border-color: #b95f4e;
}

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

.calendar-status:empty {
  display: none;
}

.rates-section {
  background: #ece7de;
}

.rates-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.rate-card {
  min-height: 230px;
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(45, 38, 30, 0.06);
}

.rate-card.featured {
  border-color: rgba(77, 90, 50, 0.42);
  box-shadow: var(--shadow);
}

.rate-card h3 {
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.rate-values {
  display: grid;
  gap: 14px;
}

.rate-values p {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.rate-values p:last-child {
  border-bottom: 0;
}

.rate-values strong {
  color: var(--accent-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.rate-values span {
  text-align: right;
}

.rate-note {
  margin: 18px 0 0;
  padding: 16px 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
}

.platform-card {
  display: grid;
  place-items: center;
  width: min(210px, 100%);
  min-height: 82px;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(45, 38, 30, 0.06);
}

.platform-card:hover {
  border-color: rgba(77, 90, 50, 0.45);
  transform: translateY(-1px);
}

.platform-card img {
  width: 100%;
  max-height: 52px;
  object-fit: contain;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 72px);
}

.platform-links {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.platform-links h3 {
  max-width: 430px;
  margin-bottom: 8px;
}

.platform-links p {
  max-width: 520px;
}

.platform-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 700;
}

.label-text {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}

.required-star {
  color: #b83b2f;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(111, 125, 74, 0.2);
  border-color: var(--accent);
}

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

.form-security[hidden],
.captcha-field[hidden] {
  display: none;
}

.form-security {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: #f3f5ef;
  border: 1px solid rgba(111, 125, 74, 0.22);
  border-radius: 8px;
}

.form-security-mark {
  position: relative;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  margin-top: 1px;
  background: #6f7d4a;
  border-radius: 50%;
}

.form-security-mark::before {
  position: absolute;
  top: 8px;
  left: 9px;
  width: 10px;
  height: 6px;
  border: solid #fff;
  border-width: 0 0 2px 2px;
  content: "";
  transform: rotate(-45deg);
}

.form-security p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.form-security-title {
  display: block;
  color: var(--ink);
  font-size: 0.96rem;
}

.form-security-text,
.recaptcha-legal {
  display: block;
}

.recaptcha-legal {
  margin-top: 3px;
  font-size: 0.82rem;
}

.recaptcha-legal a {
  color: var(--accent);
  font-weight: 700;
}

.grecaptcha-badge {
  visibility: hidden;
}

.captcha-field {
  display: grid;
  gap: 10px;
  padding: 14px 16px;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.captcha-label {
  margin: 0;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 700;
}

.recaptcha-box {
  min-height: 22px;
  color: var(--muted);
  font-size: 0.92rem;
}

.captcha-field:not([hidden]) .recaptcha-box:empty {
  min-height: 78px;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 2px;
}

.form-actions .button {
  flex: 0 0 auto;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.arrival-site-header {
  justify-content: space-between;
}

.arrival-page {
  background: var(--bg);
}

.arrival-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  min-height: calc(100svh - 70px);
  padding: clamp(40px, 7vw, 86px) clamp(20px, 5vw, 72px);
  background: #ece7de;
}

.arrival-hero-content {
  max-width: 640px;
}

.arrival-hero-content p {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.arrival-hero-image {
  margin: 0;
  overflow: hidden;
  background: var(--stone);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.arrival-hero-image img,
.arrival-step img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.arrival-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  background: #fbfaf7;
}

.arrival-summary article {
  min-height: 250px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(45, 38, 30, 0.06);
}

.arrival-summary h2 {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.arrival-summary p {
  color: var(--muted);
}

.arrival-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 18px;
  padding: 5px 10px;
  color: #fff;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.arrival-pill.red {
  background: #b95f4e;
}

.arrival-pill.blue {
  background: #4272a6;
}

.arrival-pill.key {
  color: var(--ink);
  background: #e8d69b;
}

.arrival-code-live {
  margin: 18px 0 0;
  padding: 14px 16px;
  color: var(--ink);
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
}

.arrival-code-live strong {
  color: var(--accent-dark);
  font-size: 1.28rem;
}

.arrival-steps {
  background: var(--surface);
}

.arrival-step-list {
  display: grid;
  gap: 22px;
}

.arrival-step {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(45, 38, 30, 0.06);
}

.arrival-step figcaption {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: clamp(18px, 3vw, 28px);
  color: var(--ink);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  font-weight: 700;
}

.arrival-step-number {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--accent-dark);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
}

.privacy-page {
  background: var(--bg);
}

.privacy-section {
  max-width: 960px;
  margin: 0 auto;
}

.privacy-content {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.privacy-content h2 {
  margin: 14px 0 0;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.privacy-content h2:first-child {
  margin-top: 0;
}

.privacy-content p {
  margin: 0;
  color: var(--muted);
}

.response-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.response-box {
  width: min(620px, 100%);
  padding: clamp(28px, 5vw, 46px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.response-box h1 {
  color: var(--ink);
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.response-box p {
  color: var(--muted);
}

@media (max-width: 920px) {
  .feature-grid,
  .split,
  .info-grid,
  .amenities-grid,
  .local-grid,
  .arrival-hero,
  .arrival-summary,
  .arrival-step,
  .rates-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .arrival-hero {
    min-height: auto;
  }

  .arrival-step {
    min-height: auto;
  }

  .arrival-step img {
    min-height: 340px;
  }

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

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

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

@media (max-width: 640px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
  }

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

  .header-actions {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .language-menu {
    right: auto;
    left: 0;
  }

  .hero {
    min-height: 82svh;
  }

  .feature-grid,
  .info-grid,
  .amenities-grid,
  .local-grid,
  .arrival-summary,
  .gallery-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .form-actions .button {
    width: 100%;
  }

  .gallery-item,
  .gallery-item.large {
    grid-column: auto;
    grid-row: auto;
    min-height: 260px;
  }

  .calendar-day {
    min-height: 38px;
    font-size: 0.92rem;
  }

  .arrival-step img {
    min-height: 260px;
  }

  .arrival-step figcaption {
    align-items: flex-start;
  }
}
