:root {
  --ink: #20342d;
  --muted: #65746c;
  --line: #d7c9b8;
  --paper: #f7efe3;
  --soft: #ede2d1;
  --accent: #2f756d;
  --gold: #ad643a;
  --green: #2f5f45;
  --pool: #4caea0;
  --shadow: 0 18px 50px rgba(32, 52, 45, .15);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", "Segoe UI", Arial, sans-serif;
  font-weight: 300;
  letter-spacing: .08em;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; object-fit: cover; }
button, input, select, textarea { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 72px);
  background: rgba(247, 239, 227, .94);
  border-bottom: 1px solid rgba(216, 210, 202, .75);
  backdrop-filter: blur(14px);
}
.brand {
  grid-column: 2;
  justify-self: center;
  font-family: "Exo 2", "DM Sans", sans-serif;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
  font-size: 24px;
}
.site-nav, .footer div:last-child {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: .08em;
}
.site-nav-left {
  grid-column: 1;
  justify-content: flex-start;
}
.site-nav-right {
  grid-column: 3;
  justify-content: flex-end;
}
.mobile-site-nav {
  display: none;
}
.nav-cta {
  color: var(--accent);
  font-weight: 400;
}

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  display: flex;
  align-items: center;
  padding: 72px clamp(18px, 5vw, 72px) 126px;
  background:
    linear-gradient(90deg, rgba(20,42,35,.72), rgba(20,42,35,.14) 58%, rgba(173,100,58,.12)),
    url("/static/assets/navera-hero.jpg") center/cover no-repeat;
  color: #fff9ef;
}
.hero-content {
  position: absolute;
  left: clamp(24px, 6vw, 92px);
  bottom: 138px;
  width: min(560px, calc(100% - 48px));
}
.hero h1, .page-hero h1, .detail-hero h1 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(46px, 7vw, 84px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-shadow: 0 3px 18px rgba(13, 27, 22, .32);
}
.hero p {
  max-width: 620px;
  font-size: 18px;
  color: #fff4e4;
  text-shadow: 0 2px 12px rgba(13, 27, 22, .35);
}
.hero-content .eyebrow {
  font-family: "Nova Round", "DM Sans", sans-serif;
  font-weight: 400;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  letter-spacing: .15em;
}

.booking-strip {
  position: absolute;
  left: clamp(18px, 5vw, 72px);
  right: clamp(18px, 5vw, 72px);
  bottom: 28px;
  display: grid;
  grid-template-columns: 1.5fr 1.1fr 1.1fr .62fr .62fr auto;
  align-items: stretch;
  min-height: 92px;
  background: rgba(255, 252, 245, .97);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.strip-field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  padding: 14px 20px;
  border-right: 1px solid var(--line);
}
.strip-field span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 300;
  text-transform: uppercase;
}
.strip-field input,
.strip-field select {
  width: 100%;
  min-width: 0;
  min-height: 34px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #314139;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: .08em;
  outline: none;
  box-shadow: none;
  appearance: none;
}
.strip-field input[type="date"] {
  color-scheme: light;
  text-transform: uppercase;
}
.strip-field input[type="date"]::-webkit-calendar-picker-indicator {
  width: 18px;
  height: 18px;
  margin-left: 8px;
  opacity: .45;
  cursor: pointer;
  filter: sepia(.25) saturate(.75) hue-rotate(85deg);
}
.strip-field input[type="date"]::-webkit-datetime-edit {
  padding: 0;
}
.strip-field input[type="date"]::-webkit-datetime-edit-fields-wrapper {
  padding: 0;
}
.strip-field:has([data-datepicker]) {
  position: relative;
}
.strip-field:has([data-datepicker])::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 22px;
  width: 17px;
  height: 17px;
  pointer-events: none;
  opacity: .75;
  background:
    linear-gradient(var(--accent), var(--accent)) 3px 5px / 11px 1px no-repeat,
    linear-gradient(var(--accent), var(--accent)) 5px 2px / 1px 4px no-repeat,
    linear-gradient(var(--accent), var(--accent)) 11px 2px / 1px 4px no-repeat;
  border: 1.5px solid var(--accent);
  border-radius: 3px;
}
.strip-field [data-datepicker] {
  padding-right: 28px;
  cursor: pointer;
}
.date-popover {
  position: absolute;
  z-index: 80;
  width: 292px;
  padding: 14px;
  border: 1px solid rgba(215, 201, 184, .95);
  border-radius: 8px;
  background: rgba(255, 252, 245, .98);
  box-shadow: 0 18px 45px rgba(32, 52, 45, .18);
  color: var(--ink);
}
.date-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.date-head strong {
  font-family: "DM Sans", "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.date-head button,
.date-grid button {
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}
.date-head button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 22px;
}
.date-head button:hover,
.date-grid button:hover {
  background: var(--soft);
}
.date-week,
.date-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}
.date-week {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}
.date-grid button,
.date-grid span {
  display: grid;
  place-items: center;
  height: 34px;
  border-radius: 50%;
  font-size: 13px;
  letter-spacing: 0;
}
.date-grid button.is-selected {
  background: var(--accent);
  color: #fffaf2;
}
.location-field select { font-size: 14px; font-weight: 500; text-transform: uppercase; }
.compact select { font-size: 32px; }
.outline-button {
  align-self: center;
  justify-self: center;
  height: 34px;
  padding: 0 22px;
  border: 1px solid var(--gold);
  background: #fffaf2;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .08em;
  cursor: pointer;
}
.plus-button {
  border: 0;
  border-left: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 24px;
  cursor: pointer;
}
.extra-booking {
  display: none;
  grid-column: 1 / -1;
  gap: 12px;
  padding: 14px 20px;
  border-top: 1px solid var(--line);
}
.extra-booking.is-open { display: grid; grid-template-columns: 1fr 2fr; }
.extra-booking input {
  min-height: 42px;
  border: 1px solid var(--line);
  padding: 10px 12px;
}

.section {
  padding: 96px clamp(18px, 5vw, 72px);
}
.section:first-of-type { padding-top: 96px; }
.muted { background: var(--soft); }
.two-col, .detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .92fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.reverse { grid-template-columns: minmax(320px, .92fr) minmax(0, 1fr); }
h2 {
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: .15em;
  text-transform: uppercase;
}
h3 {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.feature-image,
.css-art {
  width: 100%;
  height: min(520px, 65vw);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.welcome-image {
  object-fit: cover;
  object-position: center;
}
.css-art {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #e5d4bd, #fffaf2 48%, #78a795);
}
.css-art::before,
.css-art::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(30, 38, 41, .18);
}
.css-art::before {
  inset: 13%;
}
.css-art::after {
  left: 22%;
  right: 22%;
  bottom: 20%;
  height: 28%;
  background: rgba(255, 255, 255, .45);
}
.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--accent);
  font-weight: 400;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px;
}
.card-grid, .offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
#featuredRooms {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
#featuredRooms .room-card-image {
  height: 184px;
}
#featuredRooms .room-card div {
  padding: 14px;
}
#featuredRooms h3 {
  font-size: 20px;
}
.room-card, .offer-card, .form-card, .admin-panel, .stat-card {
  background: #fff;
  border: 1px solid rgba(216, 210, 202, .85);
  border-radius: 8px;
}
.room-card { overflow: hidden; }
.room-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.room-visual {
  display: grid;
  place-items: center;
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #2f5f45, #4caea0 52%, #d2a16c);
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 64px;
}
.room-card div { padding: 18px; }
.card-footer, .meta-row, .admin-head, .actions, .check-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.card-footer a, .actions a, .actions button, .inline-form button, .gallery-admin button {
  color: var(--accent);
  border: 0;
  background: transparent;
  font-weight: 400;
  cursor: pointer;
}
@media (min-width: 761px) {
  #featuredRooms .room-card {
    display: flex;
    flex-direction: column;
  }
  #featuredRooms .room-card > div {
    display: flex;
    flex: 1;
    flex-direction: column;
  }
  #featuredRooms .card-footer {
    margin-top: auto;
  }
}
.offer-card { padding: 24px; }
.offer-card span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent);
  font-weight: 300;
  letter-spacing: .08em;
}
.amenity-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.dining-wellness-section {
  max-width: 1120px;
  margin: 0 auto;
}
.dining-wellness-section > div {
  max-width: 900px;
}
.amenity-list-full {
  gap: 14px;
}
.amenity-list span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
}
.amenity-symbol {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--soft);
  color: var(--accent);
  font-family: "DM Sans", sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.page-hero {
  padding: 110px clamp(18px, 5vw, 72px);
  background: linear-gradient(135deg, #20342d, #2f756d 58%, #d2a16c);
  color: #fff;
}
.page-hero.small { min-height: 340px; display: grid; align-content: center; }
.page-hero p { max-width: 700px; font-size: 18px; }
.room-list { display: grid; gap: 24px; }
.room-row {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 28px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.room-row-visual {
  display: grid;
  place-items: center;
  width: 100%;
  height: 245px;
  border-radius: 6px;
  background: linear-gradient(135deg, #2f5f45, #4caea0 52%, #d2a16c);
  color: #fff;
  font-size: 72px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  letter-spacing: .15em;
}
.solid-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  border-radius: 4px;
  font-weight: 400;
  cursor: pointer;
}
.detail-hero {
  padding: 82px clamp(18px, 5vw, 72px);
  background: var(--soft);
}
.detail-visual {
  display: grid;
  place-items: center;
  width: 100%;
  height: 560px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, #2f5f45, #4caea0 52%, #d2a16c);
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-size: clamp(34px, 5vw, 72px);
  text-align: center;
  padding: 24px;
}
.detail-room-image {
  width: 100%;
  height: 560px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.form-shell { display: flex; justify-content: center; }
.form-card {
  width: min(980px, 100%);
  padding: 28px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 300;
}
input, select, textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 10px 12px;
  background: #fff;
  color: var(--ink);
}
textarea { min-height: 126px; resize: vertical; }
.form-card .solid-button { margin-top: 18px; }

.flash-wrap {
  position: fixed;
  top: 76px;
  right: 18px;
  z-index: 40;
  display: grid;
  gap: 8px;
}
.flash {
  padding: 12px 16px;
  border-radius: 6px;
  background: #fff;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--green);
}
.flash.error { border-left-color: var(--accent); }
.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 36px clamp(18px, 5vw, 72px);
  background: #20342d;
  color: #fff;
}
.footer p { margin: 6px 0 0; color: #d6ded4; }

.login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: linear-gradient(135deg, #20342d, #2f756d 55%, #d2a16c);
}
.login-card {
  width: min(420px, 100%);
  padding: 32px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.admin-body {
  display: grid;
  grid-template-columns: 250px 1fr;
  min-height: 100vh;
  background: #f6f4f0;
}
.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 24px;
  background: #20342d;
  color: #fff;
}
.admin-sidebar nav {
  display: grid;
  gap: 8px;
  margin-top: 28px;
}
.admin-sidebar nav a {
  padding: 10px 12px;
  border-radius: 6px;
  color: #d8dedf;
}
.admin-sidebar nav a:hover { background: rgba(255,255,255,.08); }
.admin-main {
  padding: 32px;
  overflow-x: hidden;
}
.admin-flash { position: static; margin-bottom: 18px; }
.admin-head { margin-bottom: 24px; }
.admin-head h1 { margin: 0; font-size: 36px; }
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}
.stat-card { padding: 22px; }
.stat-card span { color: var(--muted); font-weight: 300; }
.stat-card strong { display: block; margin-top: 8px; font-size: 38px; }
.admin-panel {
  padding: 22px;
  margin-bottom: 22px;
}
.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.table-wrap { overflow-x: auto; }
table {
  width: 100%;
  border-collapse: collapse;
}
th, td {
  padding: 13px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
th {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}
small { color: var(--muted); }
.status {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e8e0d3;
  color: #584a32;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
}
.status.approved { background: #dfeee5; color: #276143; }
.status.rejected, .status.cancelled { background: #f1d7d7; color: #91313a; }
.inline-form {
  display: flex;
  gap: 8px;
}
.gallery-admin {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.gallery-admin article {
  display: grid;
  gap: 10px;
}
.gallery-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 150px;
  border-radius: 6px;
  background: linear-gradient(135deg, #2f5f45, #4caea0 52%, #d2a16c);
  color: #fff;
  font-size: 42px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  letter-spacing: .15em;
}

@media (max-width: 1100px) {
  .booking-strip {
    position: static;
    margin-top: 40px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .outline-button, .plus-button { min-height: 58px; width: 100%; }
  .extra-booking.is-open { grid-template-columns: 1fr; }
  .card-grid, .offer-grid, .stat-grid, #featuredRooms { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero { padding-bottom: 64px; }
}

@media (max-width: 760px) {
  .site-header {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    padding: 12px 16px;
  }
  .brand {
    grid-column: 1;
    grid-row: 1;
    max-width: 100%;
    font-size: 21px;
    line-height: 1.1;
    text-align: center;
    white-space: nowrap;
  }
  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 0;
    font-size: 11px;
    letter-spacing: .06em;
    line-height: 1.2;
    text-align: center;
    flex-wrap: nowrap;
  }
  .site-nav-left {
    display: none;
  }
  .site-nav-right {
    display: none;
  }
  .mobile-site-nav {
    display: flex;
    grid-column: 1;
    grid-row: 2;
    padding-top: 2px;
  }
  .footer { align-items: flex-start; flex-direction: column; }
  .hero {
    min-height: calc(100svh - 82px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
    padding: 40px 16px 18px;
  }
  .hero-content {
    position: static;
    width: 100%;
    margin-top: auto;
    margin-bottom: 4px;
  }
  .hero-content .eyebrow {
    font-size: 8px;
  }
  .booking-strip {
    width: 100%;
    margin-top: 0;
    grid-template-columns: 1.4fr .7fr .7fr;
    min-height: 0;
  }
  .location-field {
    grid-column: 1;
    grid-row: 1;
  }
  .booking-strip label:nth-of-type(2) {
    grid-column: 1 / 2;
    grid-row: 2;
  }
  .booking-strip label:nth-of-type(3) {
    grid-column: 2 / 4;
    grid-row: 2;
  }
  .booking-strip .compact:nth-of-type(4) {
    grid-column: 2;
    grid-row: 1;
  }
  .booking-strip .compact:nth-of-type(5) {
    grid-column: 3;
    grid-row: 1;
  }
  .booking-strip .outline-button {
    grid-column: 1 / 4;
    grid-row: 3;
  }
  .strip-field {
    min-height: 20px;
    padding: 3px 8px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .strip-field span {
    font-size: 7px;
  }
  .strip-field input,
  .strip-field select {
    min-height: 13px;
    font-size: 8px;
    letter-spacing: .02em;
  }
  .location-field select {
    font-size: 8px;
  }
  .compact select {
    font-size: 12px;
  }
  .strip-field:has([data-datepicker])::after {
    right: 8px;
    bottom: 7px;
    width: 8px;
    height: 8px;
  }
  .strip-field [data-datepicker] {
    padding-right: 12px;
  }
  .outline-button {
    width: 100%;
    height: 18px;
    min-height: 18px;
    font-size: 8px;
    background: #fffaf2;
  }
  .two-col, .reverse, .detail-hero, .room-row, .form-grid, .admin-grid, .gallery-admin {
    grid-template-columns: 1fr;
  }
  .card-grid, .offer-grid, .stat-grid, #featuredRooms { grid-template-columns: 1fr; }
  .section:first-of-type, .section { padding: 64px 18px; }
  .detail-visual, .detail-room-image, .feature-image { height: 320px; }
  .admin-body { grid-template-columns: 1fr; }
  .admin-sidebar { position: static; height: auto; }
  .admin-main { padding: 18px; }
}

@media (max-width: 390px) {
  .site-nav {
    font-size: 10px;
    letter-spacing: .05em;
  }
  .brand {
    font-size: 19px;
  }
  .strip-field {
    padding-inline: 10px;
  }
}

.rooms-minimal-page {
  background: #f3eee7;
  color: #1a1a1a;
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
}
.rooms-minimal-page .site-header {
  background: rgba(243, 238, 231, .95);
  border-bottom-color: rgba(26, 26, 26, .10);
}
.rooms-intro {
  max-width: 980px;
  margin: 0 auto;
  padding: 120px 28px 76px;
  text-align: center;
}
.rooms-intro h1,
.minimal-room-copy h2 {
  margin: 0;
  color: #1a1a1a;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.rooms-intro h1 {
  font-size: clamp(42px, 7vw, 82px);
  line-height: 1;
}
.rooms-intro p:last-child {
  max-width: 580px;
  margin: 22px auto 0;
  color: rgba(26, 26, 26, .68);
  letter-spacing: .08em;
}
.minimal-rooms {
  display: grid;
  gap: 96px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px 120px;
}
.minimal-room-card {
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: stretch;
  gap: 0;
  background: #ffffff;
  min-height: 620px;
}
.minimal-room-card.is-reverse {
  grid-template-columns: 50% 50%;
}
.minimal-room-card.is-reverse img {
  order: 2;
}
.minimal-room-card img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center;
}
.minimal-room-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 70px);
}
.minimal-room-card:first-child .minimal-room-copy {
  transform: translateX(-8px);
}
.minimal-room-copy h2 {
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 1.05;
}
.minimal-room-copy h1 {
  margin: 0;
  color: #1a1a1a;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(38px, 5vw, 70px);
  font-weight: 300;
  letter-spacing: .15em;
  line-height: 1.05;
  text-transform: uppercase;
}
.minimal-room-copy > p:not(.eyebrow):not(.room-meta):not(.room-price) {
  margin: 28px 0 0;
  color: rgba(26, 26, 26, .66);
  line-height: 1.8;
}
.room-meta {
  margin: 18px 0 0;
  color: rgba(26, 26, 26, .58);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.room-price {
  margin: 38px 0 0;
  color: #1a1a1a;
  font-size: 17px;
  letter-spacing: .08em;
}
.room-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.minimal-book-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 28px;
  background: #1a1a1a;
  color: #ffffff;
  border: 1px solid #1a1a1a;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.minimal-text-link {
  color: #1a1a1a;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(26, 26, 26, .35);
}
.booking-minimal-page {
  background: #f3eee7;
  color: #1a1a1a;
}
.booking-minimal-shell {
  display: grid;
  grid-template-columns: minmax(260px, .74fr) minmax(0, 1.26fr);
  gap: clamp(36px, 6vw, 90px);
  max-width: 1180px;
  margin: 0 auto;
  padding: 110px 28px 120px;
}
.booking-display-title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(14px, 3.3vw, 43px);
  font-weight: 300;
  letter-spacing: .15em;
  line-height: 1;
  text-transform: uppercase;
}
.booking-minimal-intro p:last-child {
  margin-top: 24px;
  color: rgba(26, 26, 26, .64);
  line-height: 1.8;
}
.booking-minimal-form {
  display: grid;
  gap: 34px;
  border: 1px solid rgba(26, 26, 26, .12);
  background: #fff;
  padding: clamp(26px, 4vw, 54px);
}
.booking-form-section {
  display: grid;
  gap: 18px;
}
.form-section-label {
  margin: 0;
  color: rgba(26, 26, 26, .54);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.booking-minimal-form input,
.booking-minimal-form select {
  border: 0;
  border-bottom: 1px solid rgba(26, 26, 26, .18);
  border-radius: 0;
  background: transparent;
  padding-inline: 0;
}
.booking-submit-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 4px;
}
.form-message {
  margin: 0;
  color: rgba(26, 26, 26, .68);
  font-size: 13px;
}
.minimal-room-detail {
  max-width: 1180px;
  margin: 0 auto;
  padding: 96px 28px 120px;
}

@media (max-width: 860px) {
  .minimal-room-card,
  .minimal-room-card.is-reverse {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .minimal-room-card.is-reverse img {
    order: 0;
  }
  .minimal-room-card img {
    height: 420px;
    min-height: 420px;
  }
  .minimal-rooms {
    gap: 54px;
    padding-inline: 18px;
  }
  .booking-minimal-shell {
    grid-template-columns: 1fr;
    padding: 84px 18px 80px;
  }
  .rooms-intro {
    padding: 84px 18px 48px;
  }
}
