:root {
  --ink: #18251d;
  --forest: #244232;
  --forest-dark: #152b20;
  --moss: #6e7e61;
  --cream: #f6f1e8;
  --paper: #fffdf8;
  --sand: #ded3c0;
  --clay: #b86f42;
  --white: #ffffff;
  --line: rgba(24, 37, 29, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-geist), Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  align-items: center;
  background: rgba(255, 253, 248, 0.95);
  border-bottom: 1px solid var(--line);
  display: flex;
  height: 82px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(24px, 5vw, 72px);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 20;
}

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

.brand-mark {
  align-items: center;
  border: 1px solid var(--forest);
  border-radius: 50%;
  display: inline-flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  height: 44px;
  justify-content: center;
  width: 44px;
}

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

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.brand small {
  color: #69736c;
  font-size: 10px;
  letter-spacing: 0.18em;
  margin-top: 3px;
  text-transform: uppercase;
}

.site-header nav {
  align-items: center;
  display: flex;
  gap: clamp(20px, 3vw, 40px);
}

.site-header nav > a {
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.nav-cta {
  background: var(--forest);
  color: var(--white);
  padding: 13px 20px;
}

.hero {
  height: min(900px, 94vh);
  min-height: 720px;
  overflow: hidden;
  position: relative;
}

.hero > img {
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(10, 25, 17, 0.82) 0%, rgba(15, 31, 20, 0.45) 45%, rgba(15, 31, 20, 0.08) 78%);
  inset: 0;
  position: absolute;
}

.hero-content {
  color: var(--white);
  left: clamp(24px, 7vw, 108px);
  max-width: 690px;
  position: absolute;
  top: 52%;
  transform: translateY(-42%);
}

.eyebrow {
  color: var(--clay);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.21em;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #dfd1bb;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(64px, 8.5vw, 124px);
  line-height: 0.82;
  margin-bottom: 30px;
}

.hero-copy {
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.6;
  max-width: 590px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 36px;
}

.button {
  align-items: center;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  font-size: 13px;
  font-weight: 750;
  justify-content: center;
  letter-spacing: 0.035em;
  min-height: 52px;
  padding: 0 26px;
  transition: transform 160ms ease, background 160ms ease;
}

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

.button-light {
  background: var(--cream);
  color: var(--forest-dark);
}

.button-dark {
  background: var(--forest-dark);
  color: var(--white);
  width: 100%;
}

.button-outline {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.text-link {
  border-bottom: 1px solid currentColor;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 12px;
  padding-bottom: 5px;
}

.light-link {
  color: var(--white);
}

.rating-card {
  align-items: center;
  background: rgba(255, 253, 248, 0.94);
  bottom: 32px;
  display: grid;
  gap: 2px 16px;
  grid-template-columns: auto 1fr;
  padding: 20px 24px;
  position: absolute;
  right: clamp(24px, 5vw, 72px);
}

.rating-card .stars {
  color: var(--clay);
  font-size: 13px;
  grid-column: 1 / -1;
  letter-spacing: 0.14em;
}

.rating-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
}

.rating-card span:last-child {
  color: #59635c;
  font-size: 12px;
  max-width: 105px;
}

.quick-facts {
  align-items: stretch;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 0.65fr) repeat(2, 1.45fr);
  padding: 0 clamp(24px, 5vw, 72px);
}

.quick-facts > div {
  align-items: center;
  border-right: 1px solid var(--line);
  display: flex;
  justify-content: center;
  min-height: 110px;
  padding: 18px 24px;
}

.quick-facts > div:last-child {
  border-right: 0;
}

.quick-facts > div:not(.fact-feature) {
  flex-direction: column;
}

.quick-facts > div:not(.fact-feature) strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 400;
  line-height: 1;
}

.quick-facts > div:not(.fact-feature) span {
  color: #6e766f;
  font-size: 11px;
  margin-top: 6px;
  text-transform: uppercase;
}

.fact-feature {
  gap: 14px;
  justify-content: flex-start !important;
}

.fact-feature .fact-icon {
  align-items: center;
  border: 1px solid #9ca895;
  border-radius: 50%;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.fact-feature > span:last-child {
  color: #6b746d;
  font-size: 12px;
  line-height: 1.45;
}

.fact-feature strong {
  color: var(--ink);
  font-size: 14px;
}

.section-shell {
  margin: 0 auto;
  max-width: 1440px;
  padding-left: clamp(24px, 7vw, 108px);
  padding-right: clamp(24px, 7vw, 108px);
}

.intro {
  display: grid;
  gap: clamp(50px, 8vw, 130px);
  grid-template-columns: 0.9fr 1.1fr;
  padding-bottom: 120px;
  padding-top: 130px;
}

h2 {
  font-size: clamp(48px, 6vw, 86px);
  line-height: 0.98;
  margin-bottom: 28px;
}

.lead {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.42;
}

.ideal-grid {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 44px;
}

.ideal-grid span {
  border-bottom: 1px solid var(--line);
  color: #566059;
  font-size: 13px;
  padding: 15px 4px;
}

.ideal-grid span:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.ideal-grid span:nth-child(even) {
  padding-left: 24px;
}

.photo-gallery {
  display: grid;
  gap: 8px;
  grid-auto-rows: 260px;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 8px;
}

.photo-gallery figure {
  margin: 0;
  overflow: hidden;
}

.photo-gallery img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

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

.photo-gallery .gallery-main {
  grid-column: span 2;
  grid-row: span 2;
}

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

.comforts {
  padding-bottom: 130px;
  padding-top: 130px;
}

.section-heading {
  max-width: 820px;
}

.section-heading.centered {
  margin: 0 auto 62px;
  text-align: center;
}

.section-heading > p:last-child {
  color: #687269;
  font-size: 16px;
}

.amenity-grid {
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.amenity-grid article {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  min-height: 250px;
  padding: 32px;
}

.amenity-grid article > span {
  color: var(--clay);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
}

.amenity-grid h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 400;
  margin: 55px 0 14px;
}

.amenity-grid p {
  color: #687169;
  font-size: 14px;
  line-height: 1.65;
}

.location {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 760px;
}

.location-image {
  position: relative;
}

.location-image > img {
  height: 100%;
  object-fit: cover;
}

.path-badge {
  align-items: center;
  background: var(--paper);
  bottom: 28px;
  display: flex;
  gap: 17px;
  left: 28px;
  padding: 20px 24px;
  position: absolute;
}

.path-badge strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
}

.path-badge span {
  color: #667068;
  font-size: 11px;
  max-width: 90px;
  text-transform: uppercase;
}

.location-copy {
  align-self: center;
  padding: clamp(60px, 8vw, 120px);
}

.location-copy ul {
  border-top: 1px solid var(--line);
  list-style: none;
  margin: 40px 0 34px;
  padding: 0;
}

.location-copy li {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 20px;
  grid-template-columns: 125px 1fr;
  padding: 20px 0;
}

.location-copy li strong {
  font-size: 13px;
}

.location-copy li span {
  color: #667068;
  font-size: 13px;
  line-height: 1.5;
}

.reviews {
  padding-bottom: 130px;
  padding-top: 130px;
}

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

.review-grid blockquote {
  background: var(--cream);
  margin: 0;
  min-height: 330px;
  padding: 36px;
}

.quote-mark {
  color: var(--clay);
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 70px;
  height: 65px;
}

.review-grid blockquote > p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  line-height: 1.45;
}

.review-grid footer {
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  padding-top: 18px;
}

.review-grid footer strong,
.review-grid footer span {
  font-size: 12px;
}

.review-grid footer span {
  color: #6f786f;
}

.review-note {
  color: #7a827b;
  font-size: 11px;
  margin: 18px 0 0;
  text-align: center;
}

.host {
  align-items: center;
  display: grid;
  gap: clamp(55px, 8vw, 120px);
  grid-template-columns: 0.95fr 1.05fr;
  padding-bottom: 130px;
}

.host-image {
  box-shadow: -22px 22px 0 var(--cream);
}

.host-image img {
  aspect-ratio: 4 / 4.7;
  object-fit: cover;
}

.host-stats {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 44px;
  padding-top: 28px;
}

.host-stats span {
  color: #6a736c;
  font-size: 11px;
  text-transform: uppercase;
}

.host-stats strong {
  color: var(--ink);
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 400;
  margin-bottom: 6px;
  text-transform: none;
}

.booking {
  background: var(--forest);
  color: var(--white);
  display: grid;
  gap: clamp(45px, 9vw, 140px);
  grid-template-columns: 1fr 0.9fr;
  max-width: none;
  padding-bottom: 100px;
  padding-top: 100px;
}

.booking-copy {
  align-self: center;
  justify-self: end;
  max-width: 620px;
}

.booking-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.7;
  max-width: 540px;
}

.booking-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 35px;
}

.booking-assurance span {
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 11px;
  letter-spacing: 0.08em;
  padding-left: 14px;
  text-transform: uppercase;
}

.booking-card {
  background: var(--paper);
  color: var(--ink);
  max-width: 500px;
  padding: clamp(28px, 4vw, 48px);
}

.booking-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
  margin: 0 0 28px;
}

.booking-card label {
  display: block;
  margin-bottom: 18px;
}

.booking-card label > span {
  display: block;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.date-row {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}

.booking-card input,
.booking-card select {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  height: 52px;
  padding: 0 13px;
  width: 100%;
}

.secure-note {
  color: #777f78;
  font-size: 11px;
  line-height: 1.5;
  margin: 14px 0 0;
  text-align: center;
}

.calendar-trigger {
  align-items: stretch;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  margin-bottom: 8px;
  padding: 0;
  text-align: left;
  width: 100%;
}

.calendar-trigger > span:not(.calendar-trigger-icon) {
  min-width: 0;
  padding: 13px 14px;
}

.calendar-trigger > span + span:not(.calendar-trigger-icon) {
  border-left: 1px solid var(--line);
}

.calendar-trigger small,
.calendar-selected-dates small {
  display: block;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.calendar-trigger strong {
  display: block;
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.calendar-trigger-icon {
  align-items: center;
  border-left: 1px solid var(--line);
  color: var(--forest);
  display: flex;
  font-size: 20px;
  justify-content: center;
  padding: 0 16px;
}

.availability-note {
  align-items: center;
  color: #777f78;
  display: flex;
  font-size: 10px;
  gap: 7px;
  line-height: 1.4;
  margin: 0 0 18px;
}

.availability-note > span {
  border: 1px solid #8c958d;
  display: inline-block;
  height: 9px;
  position: relative;
  width: 9px;
}

.availability-note > span::after {
  background: #8c958d;
  content: "";
  height: 1px;
  left: -2px;
  position: absolute;
  top: 3px;
  transform: rotate(-45deg);
  width: 11px;
}

body.calendar-open {
  overflow: hidden;
}

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

.calendar-modal {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 24px;
  position: fixed;
  z-index: 300;
}

.calendar-backdrop {
  background: rgba(12, 25, 17, 0.7);
  inset: 0;
  position: absolute;
}

.calendar-dialog {
  background: var(--paper);
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(12, 25, 17, 0.32);
  color: var(--ink);
  max-height: calc(100vh - 48px);
  max-width: 940px;
  overflow: auto;
  padding: 30px 32px 24px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.calendar-header {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr auto;
}

.calendar-summary .calendar-kicker {
  color: var(--clay);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.12em;
  margin: 0 0 7px;
  text-transform: uppercase;
}

.calendar-summary h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  margin: 0 0 5px;
}

.calendar-summary > p:last-child {
  color: #717a73;
  font-size: 12px;
  margin: 0;
}

.calendar-selected-dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-width: 330px;
}

.calendar-selected-dates button {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  min-height: 58px;
  padding: 10px 13px;
  text-align: left;
}

.calendar-selected-dates button + button {
  border-left: 0;
}

.calendar-selected-dates strong {
  font-size: 13px;
}

.calendar-navigation {
  align-items: center;
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  margin: 28px 0 12px;
}

.calendar-navigation p {
  color: #737c74;
  font-size: 11px;
  margin: 0;
  text-align: center;
}

.calendar-navigation button {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  font-size: 28px;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.calendar-navigation button:hover {
  background: var(--cream);
}

.calendar-navigation button:disabled {
  color: #c5cac6;
  cursor: default;
}

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

.calendar-month h4 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
  margin: 0 0 16px;
  text-align: center;
}

.calendar-weekdays,
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.calendar-weekdays {
  color: #7b837d;
  font-size: 10px;
  margin-bottom: 7px;
  text-align: center;
}

.calendar-days {
  row-gap: 3px;
}

.calendar-day,
.calendar-day-empty {
  align-items: center;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.calendar-day {
  background: transparent;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  cursor: pointer;
  font-size: 12px;
  position: relative;
}

.calendar-day:hover:not(:disabled) {
  box-shadow: inset 0 0 0 1px var(--forest);
}

.calendar-day.is-unavailable,
.calendar-day.is-past {
  color: #a9b0aa;
  cursor: not-allowed;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.calendar-day.is-in-range {
  background: var(--cream);
  border-radius: 0;
}

.calendar-day.is-selected {
  background: var(--forest-dark);
  border-radius: 50%;
  box-shadow: none;
  color: var(--white);
  font-weight: 750;
  text-decoration: none;
}

.calendar-day.is-today:not(.is-selected)::after {
  background: var(--clay);
  border-radius: 50%;
  bottom: 5px;
  content: "";
  height: 3px;
  position: absolute;
  width: 3px;
}

.calendar-message {
  color: #9b4e37;
  font-size: 11px;
  min-height: 17px;
  margin: 10px 0 0;
  text-align: center;
}

.calendar-footer {
  align-items: end;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-top: 8px;
  padding-top: 18px;
}

.calendar-legend {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.calendar-legend > span {
  align-items: center;
  color: #616b63;
  display: inline-flex;
  font-size: 10px;
  gap: 7px;
}

.calendar-legend i {
  border: 1px solid var(--line);
  display: inline-block;
  height: 11px;
  position: relative;
  width: 11px;
}

.calendar-legend .legend-unavailable::after {
  background: #8b948d;
  content: "";
  height: 1px;
  left: -2px;
  position: absolute;
  top: 4px;
  transform: rotate(-45deg);
  width: 13px;
}

.calendar-legend small {
  color: #8a928b;
  flex-basis: 100%;
  font-size: 9px;
}

.calendar-actions {
  display: flex;
  gap: 10px;
}

.calendar-actions button {
  border: 0;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  min-height: 42px;
  padding: 0 17px;
}

.calendar-clear {
  background: transparent;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.calendar-done {
  background: var(--forest-dark);
  color: var(--white);
}

.faq {
  padding-bottom: 130px;
  padding-top: 130px;
}

.faq-grid {
  border-top: 1px solid var(--line);
  margin: 0 auto;
  max-width: 900px;
}

.faq-grid details {
  border-bottom: 1px solid var(--line);
  padding: 22px 4px;
}

.faq-grid summary {
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  list-style-position: outside;
  padding-left: 10px;
}

.faq-grid details p {
  color: #657067;
  font-size: 14px;
  line-height: 1.65;
  margin: 18px 0 0;
  max-width: 700px;
  padding-left: 28px;
}

.footer {
  align-items: center;
  background: var(--forest-dark);
  color: var(--white);
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 70px clamp(24px, 7vw, 108px);
}

.footer .brand-mark {
  border-color: rgba(255, 255, 255, 0.75);
}

.footer .brand small {
  color: rgba(255, 255, 255, 0.65);
}

.footer > p {
  color: rgba(255, 255, 255, 0.68);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  margin: 0;
  text-align: center;
}

.footer > .button {
  justify-self: end;
}

.mockup-disclosure {
  background: var(--forest-dark);
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  letter-spacing: 0.1em;
  margin: 0;
  padding: 0 24px 24px;
  text-align: center;
  text-transform: uppercase;
}

.mobile-book {
  display: none;
}

@media (max-width: 960px) {
  .site-header nav > a:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: 690px;
  }

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

  .quick-facts .fact-feature {
    border-top: 1px solid var(--line);
    grid-column: span 2;
  }

  .intro,
  .host,
  .booking {
    grid-template-columns: 1fr;
  }

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

  .photo-gallery .gallery-main {
    grid-column: 1 / 3;
    grid-row: span 1;
  }

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

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

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

  .location-image {
    min-height: 620px;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .review-grid blockquote {
    min-height: 0;
  }

  .booking-copy {
    justify-self: start;
  }

  .booking-card {
    max-width: none;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 76px;
  }

  .site-header {
    height: 70px;
    padding: 0 18px;
  }

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

  .brand strong {
    font-size: 17px;
  }

  .brand small {
    font-size: 8px;
  }

  .site-header .nav-cta {
    display: none;
  }

  .hero {
    height: 820px;
  }

  .hero > img {
    object-position: 56% center;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(10, 25, 17, 0.88) 0%, rgba(15, 31, 20, 0.5) 58%, rgba(15, 31, 20, 0.18) 100%);
  }

  .hero-content {
    bottom: 125px;
    left: 22px;
    max-width: calc(100% - 44px);
    top: auto;
    transform: none;
  }

  h1 {
    font-size: 59px;
    line-height: 0.88;
  }

  .hero-copy {
    font-size: 15px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .rating-card {
    bottom: 20px;
    left: 22px;
    padding: 14px 18px;
    right: auto;
  }

  .quick-facts {
    grid-template-columns: repeat(4, 1fr);
    padding: 0;
  }

  .quick-facts > div {
    min-height: 80px;
    padding: 12px 6px;
  }

  .quick-facts > div:not(.fact-feature) strong {
    font-size: 25px;
  }

  .quick-facts .fact-feature {
    display: none;
  }

  .intro,
  .comforts,
  .reviews,
  .faq {
    padding-bottom: 84px;
    padding-top: 84px;
  }

  .intro {
    gap: 28px;
  }

  h2 {
    font-size: 49px;
  }

  .lead {
    font-size: 22px;
  }

  .ideal-grid {
    grid-template-columns: 1fr;
  }

  .ideal-grid span:nth-child(odd) {
    border-right: 0;
  }

  .ideal-grid span:nth-child(even) {
    padding-left: 4px;
  }

  .photo-gallery {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 0 20px 10px;
    scroll-snap-type: x mandatory;
  }

  .photo-gallery figure {
    flex: 0 0 86%;
    height: 360px;
    scroll-snap-align: center;
  }

  .amenity-grid {
    grid-template-columns: 1fr;
  }

  .amenity-grid article {
    min-height: 220px;
  }

  .location-image {
    min-height: 500px;
  }

  .location-copy {
    padding: 76px 24px;
  }

  .location-copy li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .host {
    padding-bottom: 90px;
  }

  .host-stats {
    gap: 12px;
  }

  .host-stats strong {
    font-size: 21px;
  }

  .booking {
    gap: 35px;
    padding: 78px 20px;
  }

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

  .calendar-trigger {
    grid-template-columns: 1fr 1fr;
  }

  .calendar-trigger-icon {
    display: none;
  }

  .calendar-modal {
    align-items: flex-end;
    padding: 8px;
  }

  .calendar-dialog {
    border-radius: 18px 18px 8px 8px;
    max-height: calc(100vh - 16px);
    padding: 24px 18px 18px;
  }

  .calendar-header {
    gap: 18px;
    grid-template-columns: 1fr;
  }

  .calendar-selected-dates {
    min-width: 0;
    width: 100%;
  }

  .calendar-navigation {
    margin-top: 18px;
  }

  .calendar-months {
    gap: 30px;
    grid-template-columns: 1fr;
  }

  .calendar-month + .calendar-month {
    border-top: 1px solid var(--line);
    padding-top: 26px;
  }

  .calendar-day,
  .calendar-day-empty {
    max-height: 44px;
  }

  .calendar-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .calendar-actions {
    justify-content: flex-end;
  }

  .footer {
    grid-template-columns: 1fr;
    padding-bottom: 70px;
    text-align: center;
  }

  .footer-brand,
  .footer > .button {
    justify-self: center;
  }

  .mobile-book {
    align-items: center;
    background: var(--paper);
    border-top: 1px solid var(--line);
    bottom: 0;
    display: flex;
    height: 76px;
    justify-content: space-between;
    left: 0;
    padding: 10px 16px;
    position: fixed;
    right: 0;
    z-index: 50;
  }

  .mobile-book > span:first-child strong,
  .mobile-book > span:first-child small {
    display: block;
  }

  .mobile-book > span:first-child strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    font-weight: 400;
  }

  .mobile-book > span:first-child small {
    color: #6d766e;
    font-size: 10px;
    margin-top: 3px;
  }

  .mobile-book > span:last-child {
    background: var(--forest);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    padding: 14px 18px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
