:root {
  --ink: #17231f;
  --muted: #5c6964;
  --paper: #fafaf6;
  --white: #ffffff;
  --line: #d6ded9;
  --green: #173c34;
  --green-mid: #365f54;
  --mint: #e6efeb;
  --blue: #2f6472;
  --sky: #e1edf0;
  --coral: #c66345;
  --coral-soft: #f3e4de;
  --gold: #b9924d;
  --night: #202b31;
  --shadow: 0 16px 40px rgba(23, 35, 31, 0.12);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Aptos, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body,
button,
input,
select,
textarea {
  font-family: inherit;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font-size: 1rem;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #f3b86e;
  outline-offset: 3px;
}

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

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

.container,
.header-main,
.hero-inner {
  width: min(100% - 48px, 1200px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(23, 35, 31, 0.12);
}

.header-main {
  display: flex;
  align-items: center;
  min-height: 74px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 11px;
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  object-fit: cover;
}

.brand span {
  display: grid;
  line-height: 1.12;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.74rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 22px;
}

.desktop-nav a {
  padding-block: 25px 22px;
  color: #3f4c47;
  border-bottom: 3px solid transparent;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--green);
  border-bottom-color: var(--coral);
}

.header-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 17px;
  color: var(--white);
  background: var(--green);
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: var(--white);
  background: var(--green);
}

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

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

.hero-shade {
  background: rgba(10, 24, 20, 0.64);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 520px;
  padding-block: 52px 34px;
}

.hero-location,
.hero-direct {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-location {
  color: #f1d89a;
}

.hero h1 {
  max-width: 780px;
  margin: 8px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.9rem;
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 710px;
  margin: 0 0 14px;
  font-size: 1.22rem;
  line-height: 1.5;
}

.hero-direct {
  width: fit-content;
  margin-bottom: 22px;
  padding: 7px 10px;
  color: var(--green);
  background: rgba(243, 216, 159, 0.96);
  border-radius: 3px;
}

.hero-primary-actions,
.section-actions,
.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-primary-actions {
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

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

.button-primary:hover {
  background: #0e2c26;
  border-color: #0e2c26;
}

.button-light {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.button-light:hover {
  color: var(--green);
  background: var(--mint);
  border-color: var(--mint);
}

.button-outline {
  color: var(--green);
  background: transparent;
  border-color: currentColor;
}

.button-outline:hover {
  color: var(--white);
  background: var(--green);
}

.button-coral {
  color: var(--white);
  background: var(--coral);
  border-color: var(--coral);
}

.button-coral:hover {
  background: #a74c35;
  border-color: #a74c35;
}

.button:disabled,
.button.is-disabled {
  color: #808985;
  background: #e3e6e4;
  border-color: #d7dcda;
  cursor: not-allowed;
  opacity: 0.8;
}

.hero-journey {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, 980px);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 5px;
  overflow: hidden;
}

.hero-journey a {
  display: grid;
  align-content: center;
  min-height: 70px;
  padding: 10px 14px;
  background: rgba(23, 35, 31, 0.76);
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  text-decoration: none;
}

.hero-journey a:last-child {
  border-right: 0;
}

.hero-journey a:hover {
  background: rgba(198, 99, 69, 0.9);
}

.hero-journey strong,
.hero-journey span {
  display: block;
}

.hero-journey strong {
  font-size: 0.95rem;
}

.hero-journey span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.75rem;
  line-height: 1.3;
}

.page-section {
  padding-block: 88px;
}

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

.section-heading-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  align-items: end;
  gap: 60px;
}

.section-heading h2,
.checkin-content h2,
.guide-copy h2,
.disclaimer-layout h2,
.contact-layout h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.15rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading > p,
.disclaimer-intro,
.contact-layout p,
.guide-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.section-label {
  margin: 0 0 8px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-section {
  background: var(--paper);
}

.booking-form {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.booking-access-notice {
  display: grid;
  gap: 5px;
  margin: -28px -28px 28px;
  padding: 21px 28px 22px;
  background: var(--coral-soft);
  border-bottom: 1px solid #dfae9f;
}

.booking-access-notice > span {
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-access-notice > strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.booking-access-notice > p {
  max-width: 880px;
  margin: 0;
  color: #5c514c;
  font-size: 0.9rem;
}

.booking-policy-links,
.policy-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  margin-top: 5px;
}

.booking-policy-links a,
.policy-inline-links a {
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 900;
  text-underline-offset: 3px;
}

.apartment-fieldset {
  min-width: 0;
  margin: 0;
  padding: 0 0 30px;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.apartment-fieldset legend {
  margin-bottom: 14px;
  padding: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
}

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

.apartment-option {
  position: relative;
  display: grid;
  min-width: 0;
  overflow: hidden;
  background: #f5f7f5;
  border: 2px solid transparent;
  border-radius: 5px;
  cursor: pointer;
}

.apartment-option:hover {
  border-color: #93aaa2;
}

.apartment-option:has(input:checked),
.apartment-option.is-selected {
  background: var(--mint);
  border-color: var(--green);
}

.apartment-option.is-unavailable {
  opacity: 0.55;
  cursor: not-allowed;
}

.apartment-option > input {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: var(--green);
}

.apartment-option > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.option-copy {
  display: grid;
  padding: 14px;
}

.option-topline {
  color: var(--coral);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.option-copy > strong {
  margin-top: 2px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  line-height: 1.2;
}

.option-copy > small {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.4;
}

.apartment-status {
  margin-top: 12px;
  padding-top: 9px;
  color: var(--green-mid);
  border-top: 1px solid rgba(23, 60, 52, 0.18);
  font-size: 0.78rem;
  font-weight: 800;
}

.apartment-option.is-unavailable .apartment-status {
  color: #8f3e2b;
}

.booking-details {
  padding-top: 30px;
}

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

.booking-fields label {
  display: grid;
  gap: 6px;
  min-width: 0;
  color: #35423d;
  font-size: 0.84rem;
  font-weight: 800;
}

.booking-fields label > span {
  color: var(--muted);
  font-weight: 500;
}

.booking-fields input,
.booking-fields select,
.booking-fields textarea {
  width: 100%;
  min-width: 0;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #b9c5c0;
  border-radius: 4px;
}

.booking-fields input,
.booking-fields select {
  min-height: 48px;
  padding: 0 12px;
}

.booking-fields textarea {
  min-height: 92px;
  padding: 11px 12px;
  resize: vertical;
}

.booking-fields input:focus,
.booking-fields select:focus,
.booking-fields textarea:focus {
  border-color: var(--green);
}

.wide-field {
  grid-column: span 4;
}

.availability-status {
  margin-top: 16px;
  padding: 12px 14px;
  color: var(--green);
  background: var(--mint);
  border-left: 4px solid var(--green);
  font-size: 0.9rem;
  font-weight: 700;
}

.availability-status[data-type="warning"] {
  color: #773622;
  background: var(--coral-soft);
  border-left-color: var(--coral);
}

.booking-confirmations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.check-row {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 11px;
  align-items: start;
  min-height: 100%;
  padding: 16px;
  background: #f5f7f5;
  border: 1px solid var(--line);
  border-radius: 5px;
  cursor: pointer;
}

.stair-check {
  background: #fff8f4;
  border-color: #dfae9f;
}

.check-row input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--green);
}

.check-row span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.check-row strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
}

.check-row a {
  color: var(--green);
  font-weight: 800;
}

.booking-gate-message,
.form-footnote,
.photo-source,
.fare-note {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.payment-summary-inline {
  margin: 16px 0 0;
  padding: 14px 16px;
  color: #45534e;
  background: var(--coral-soft);
  border-left: 4px solid var(--coral);
  font-size: 0.88rem;
}

.payment-summary-inline strong {
  color: var(--ink);
}

.payment-summary-inline a {
  margin-left: 4px;
  color: var(--green);
  font-weight: 900;
  text-underline-offset: 3px;
}

.payment-summary-inline .policy-inline-links a {
  margin-left: 0;
}

.booking-actions {
  margin-top: 12px;
}

.stay-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.stay-gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 5px;
}

.stay-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.stay-gallery figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 11px 13px;
  color: var(--white);
  background: rgba(23, 35, 31, 0.86);
  font-size: 0.82rem;
  font-weight: 800;
}

.photo-source {
  text-align: right;
}

.checkin-section {
  background: var(--sky);
}

.checkin-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 64px;
}

.checkin-photo {
  overflow: hidden;
  background: var(--green);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.checkin-photo img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.checkin-photo p {
  margin: 0;
  padding: 18px 20px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
}

.checkin-photo strong {
  color: var(--white);
}

.checkin-content h2 {
  margin-bottom: 24px;
}

.time-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 20px;
  border-block: 1px solid rgba(47, 100, 114, 0.28);
}

.time-row span {
  display: grid;
  padding: 14px 0;
}

.time-row span + span {
  padding-left: 20px;
  border-left: 1px solid rgba(47, 100, 114, 0.28);
}

.time-row small {
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.time-row strong {
  font-size: 1.05rem;
}

.arrival-steps {
  display: grid;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.arrival-steps li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 13px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(47, 100, 114, 0.2);
}

.arrival-steps li > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 900;
}

.arrival-steps strong {
  display: block;
  margin-bottom: 2px;
}

.arrival-steps p {
  margin: 0;
  color: #4f6266;
  font-size: 0.9rem;
}

.transport-section {
  color: var(--white);
  background: var(--green);
}

.transport-heading .section-label {
  color: #f2c47f;
}

.transport-heading > p {
  color: rgba(255, 255, 255, 0.75);
}

.fare-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 64px;
}

.fare-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 4px 24px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.fare-list article:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.fare-list article > span {
  font-weight: 800;
}

.fare-list article > strong {
  grid-row: span 2;
  color: #f3d89f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  line-height: 1;
}

.fare-list small {
  color: rgba(255, 255, 255, 0.66);
}

.taxi-contact {
  padding-left: 40px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.taxi-contact > p:first-child {
  margin: 0;
  color: #f2c47f;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.taxi-contact h3 {
  margin: 4px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.45rem;
  line-height: 1.1;
}

.taxi-number {
  display: inline-block;
  margin: 6px 0 16px;
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 900;
  text-decoration: none;
}

.taxi-contact > p:not(:first-child) {
  color: rgba(255, 255, 255, 0.76);
}

.fare-note {
  max-width: 820px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.65);
}

.guide-section {
  background: var(--coral-soft);
}

.guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 72px;
}

.guide-copy h2 {
  margin-bottom: 18px;
}

.guide-copy > p {
  margin-bottom: 20px;
}

.guide-chapters {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 24px;
  border-block: 1px solid rgba(198, 99, 69, 0.25);
}

.guide-chapters span {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(198, 99, 69, 0.18);
  font-size: 0.88rem;
  font-weight: 800;
}

.guide-chapters span:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.guide-chapters span:nth-child(even) {
  border-left: 1px solid rgba(198, 99, 69, 0.18);
}

.guide-photo {
  position: relative;
  display: block;
  min-height: 450px;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.guide-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guide-photo > span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  padding: 20px 22px;
  color: var(--white);
  background: rgba(32, 43, 49, 0.9);
}

.guide-photo strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.guide-photo small {
  color: rgba(255, 255, 255, 0.76);
}

.disclaimer-section {
  background: var(--white);
}

.disclaimer-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  align-items: start;
  gap: 76px;
}

.disclaimer-layout h2 {
  margin-bottom: 18px;
}

.disclaimer-intro {
  margin-bottom: 18px;
}

.text-link {
  color: var(--green);
  font-weight: 900;
  text-underline-offset: 4px;
}

.policy-links {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.policy-links .button {
  margin-bottom: 2px;
}

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

.disclaimer-list article {
  padding: 17px 0;
  border-top: 1px solid var(--line);
}

.disclaimer-list strong {
  display: block;
  margin-bottom: 4px;
}

.disclaimer-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.disclaimer-list a {
  color: var(--green);
  font-weight: 900;
}

.contact-section {
  background: var(--mint);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
}

.contact-layout h2 {
  margin-bottom: 8px;
}

.contact-layout p {
  max-width: 650px;
}

.site-footer {
  padding-block: 38px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--night);
}

.footer-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 26px 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 54px;
  height: 54px;
  border-radius: 4px;
}

.footer-brand div {
  display: grid;
}

.footer-brand strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.footer-brand span,
.footer-layout > p {
  font-size: 0.8rem;
}

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

.footer-links a {
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
}

.footer-layout > p {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.mobile-nav .current-link {
  color: var(--white);
  background: var(--coral);
}

.policy-page {
  background: var(--white);
}

.policy-hero {
  padding-block: 84px;
  color: var(--white);
  background: var(--green);
}

.policy-hero .section-label {
  color: #f2c47f;
}

.policy-hero h1 {
  max-width: 900px;
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.4rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.policy-hero p {
  max-width: 760px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
}

.policy-hero small {
  display: block;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.62);
}

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

.policy-toc .container {
  display: flex;
  gap: 28px;
  overflow-x: auto;
}

.policy-toc a {
  flex: 0 0 auto;
  padding-block: 18px 15px;
  color: var(--green);
  border-bottom: 3px solid transparent;
  font-size: 0.84rem;
  font-weight: 900;
  text-decoration: none;
}

.policy-toc a:hover {
  border-bottom-color: var(--coral);
}

.policy-section h2,
.policy-contact h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.policy-heading-grid,
.policy-two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.8fr);
  align-items: start;
  gap: 70px;
}

.policy-heading-grid > p,
.platform-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.policy-rule-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 44px;
}

.policy-rule-grid article {
  padding-top: 18px;
  border-top: 3px solid var(--green);
}

.policy-rule-grid article:nth-child(2) {
  border-top-color: var(--coral);
}

.policy-rule-grid article:nth-child(3) {
  border-top-color: var(--blue);
}

.policy-rule-grid span {
  color: var(--coral);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.policy-rule-grid h3,
.cancellation-timeline h3,
.policy-change-note h3 {
  margin: 5px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.38rem;
  line-height: 1.2;
}

.policy-rule-grid p,
.cancellation-timeline p,
.policy-change-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.policy-note {
  margin: 38px 0 0;
  padding: 16px 18px;
  color: #45534e;
  background: var(--mint);
  border-left: 4px solid var(--green);
}

.policy-note strong {
  color: var(--ink);
}

.policy-cancellation {
  background: var(--coral-soft);
}

.cancellation-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 44px;
}

.cancellation-timeline article {
  min-height: 230px;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(198, 99, 69, 0.22);
  border-radius: 5px;
}

.timeline-window {
  display: block;
  color: var(--coral);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.05rem;
  font-weight: 700;
  line-height: 1.1;
}

.policy-refunds {
  background: var(--sky);
}

.policy-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.policy-steps li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(47, 100, 114, 0.22);
}

.policy-steps li:first-child {
  padding-top: 0;
}

.policy-steps li > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 900;
}

.policy-steps strong {
  display: block;
  margin-bottom: 3px;
}

.policy-steps p {
  margin: 0;
  color: #4f6266;
  font-size: 0.9rem;
}

.policy-change-note {
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(47, 100, 114, 0.28);
}

.policy-change-note p {
  max-width: 780px;
}

.policy-platforms {
  background: var(--white);
}

.platform-copy {
  display: grid;
  gap: 15px;
}

.platform-copy .text-link {
  width: fit-content;
}

.policy-contact {
  background: var(--mint);
}

@media (max-width: 1040px) {
  .desktop-nav {
    gap: 14px;
  }

  .desktop-nav a {
    font-size: 0.82rem;
  }

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

  .wide-field {
    grid-column: span 2;
  }

  .checkin-layout,
  .guide-layout {
    gap: 40px;
  }
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 118px;
  }

  .container,
  .header-main,
  .hero-inner {
    width: min(100% - 32px, 720px);
  }

  .header-main {
    min-height: 66px;
    gap: 12px;
  }

  .brand {
    min-width: 0;
    margin-right: auto;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

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

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

  .desktop-nav {
    display: none;
  }

  .header-contact {
    min-height: 38px;
    padding-inline: 12px;
    font-size: 0.78rem;
  }

  .mobile-nav {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    min-height: 46px;
    border-top: 1px solid rgba(23, 35, 31, 0.1);
  }

  .mobile-nav a {
    display: grid;
    place-items: center;
    min-width: 0;
    padding: 7px 3px;
    color: #42504b;
    border-right: 1px solid rgba(23, 35, 31, 0.1);
    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
  }

  .mobile-nav a:last-child {
    border-right: 0;
  }

  .mobile-nav .guest-book-link {
    color: var(--white);
    background: var(--coral);
  }

  .hero,
  .hero-inner {
    min-height: 620px;
  }

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

  .hero-inner {
    padding-block: 52px 34px;
  }

  .hero h1 {
    font-size: 3.7rem;
  }

  .hero-subtitle {
    max-width: 620px;
    font-size: 1.05rem;
  }

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

  .hero-journey a {
    min-height: 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  }

  .hero-journey a:nth-child(2) {
    border-right: 0;
  }

  .hero-journey a:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .section-heading-split,
  .checkin-layout,
  .fare-layout,
  .guide-layout,
  .disclaimer-layout,
  .contact-layout,
  .policy-heading-grid,
  .policy-two-column {
    grid-template-columns: 1fr;
  }

  .section-heading-split {
    gap: 18px;
  }

  .apartment-options {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 2px 2px 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .apartment-option {
    flex: 0 0 min(82%, 360px);
    scroll-snap-align: start;
  }

  .checkin-content {
    order: 1;
  }

  .checkin-photo {
    order: 2;
  }

  .checkin-photo img {
    height: 420px;
  }

  .fare-layout,
  .guide-layout,
  .disclaimer-layout {
    gap: 42px;
  }

  .taxi-contact {
    padding: 34px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-left: 0;
  }

  .guide-photo {
    min-height: 380px;
  }

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

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

  .policy-hero {
    padding-block: 68px;
  }

  .policy-hero h1 {
    font-size: 3.5rem;
  }

  .policy-heading-grid,
  .policy-two-column {
    gap: 30px;
  }

  .policy-rule-grid,
  .cancellation-timeline {
    grid-template-columns: 1fr;
  }

  .cancellation-timeline article {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .container,
  .header-main,
  .hero-inner {
    width: min(100% - 28px, 560px);
  }

  .brand span {
    max-width: 150px;
  }

  .hero,
  .hero-inner {
    min-height: 622px;
  }

  .hero-inner {
    padding-block: 34px 22px;
  }

  .hero-location {
    font-size: 0.78rem;
  }

  .hero h1 {
    margin-top: 6px;
    font-size: 3rem;
  }

  .hero-subtitle {
    margin-bottom: 10px;
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .hero-direct {
    margin-bottom: 14px;
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .hero-primary-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 16px;
  }

  .hero-primary-actions .button {
    min-height: 42px;
    padding-inline: 10px;
    font-size: 0.82rem;
  }

  .hero-journey a {
    min-height: 58px;
    padding: 8px 10px;
  }

  .hero-journey strong {
    font-size: 0.82rem;
  }

  .hero-journey span {
    font-size: 0.68rem;
  }

  .page-section {
    padding-block: 62px;
  }

  .section-heading h2,
  .checkin-content h2,
  .guide-copy h2,
  .disclaimer-layout h2,
  .contact-layout h2,
  .policy-section h2,
  .policy-contact h2 {
    font-size: 2.3rem;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .booking-form {
    padding: 16px;
    box-shadow: 0 10px 28px rgba(23, 35, 31, 0.1);
  }

  .booking-access-notice {
    margin: -16px -16px 22px;
    padding: 18px 16px;
  }

  .apartment-fieldset {
    padding-bottom: 22px;
  }

  .apartment-option {
    flex-basis: 86%;
  }

  .booking-details {
    padding-top: 22px;
  }

  .booking-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .wide-field {
    grid-column: span 2;
  }

  .booking-confirmations {
    grid-template-columns: 1fr;
  }

  .booking-actions,
  .section-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .stay-gallery {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    scroll-snap-type: x mandatory;
  }

  .stay-gallery figure {
    flex: 0 0 80%;
    scroll-snap-align: start;
  }

  .photo-source {
    text-align: left;
  }

  .checkin-layout {
    gap: 34px;
  }

  .checkin-photo img {
    height: 330px;
  }

  .time-row strong {
    font-size: 0.92rem;
  }

  .arrival-steps li {
    grid-template-columns: 34px 1fr;
  }

  .fare-list article {
    gap: 4px 12px;
  }

  .fare-list article > strong {
    font-size: 1.78rem;
  }

  .taxi-contact h3 {
    font-size: 2rem;
  }

  .guide-photo {
    min-height: 310px;
  }

  .disclaimer-list {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    gap: 24px;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
  }

  .policy-hero {
    padding-block: 54px;
  }

  .policy-hero h1 {
    font-size: 2.65rem;
  }

  .policy-hero p {
    font-size: 1rem;
  }

  .policy-toc .container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    width: 100%;
  }

  .policy-toc a {
    display: grid;
    place-items: center;
    min-height: 44px;
    padding: 8px 6px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    font-size: 0.78rem;
    text-align: center;
  }

  .policy-toc a:nth-child(even) {
    border-right: 0;
  }

  .policy-rule-grid,
  .cancellation-timeline {
    margin-top: 32px;
  }

  .cancellation-timeline article {
    padding: 20px;
  }

  .timeline-window {
    font-size: 1.75rem;
  }
}

@media (max-width: 370px) {
  .brand small {
    display: none;
  }

  .header-contact {
    padding-inline: 9px;
  }

  .mobile-nav a {
    font-size: 0.69rem;
  }

  .hero h1 {
    font-size: 2.7rem;
  }

  .booking-fields {
    grid-template-columns: 1fr;
  }

  .wide-field {
    grid-column: span 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
