:root {
  --dark: #131D1E;
  --olive: #353E2D;
  --gold: #988650;
  --bars: #7a7a63;
  --btn: #7a6a2b;
  --btn-border: #cbb872;
  --text: #333;
  --link: #ae8029;

  /* --box: #f6f0ea; */
  --box: #f6f2ea;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
  color: var(--text);
  background: #fff;
}

.container {
  max-width: 640px;
  margin: 0 auto;
}

/* Header */
header {
  background: var(--dark);
  color: #f2ede0;
  text-align: center;
  padding: 32px 16px 24px;
}

hr {
  margin: 30px 0;
}

.logo {
  width: 220px;
  height: auto;
  margin-bottom: 6px;
}

.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  margin-bottom: 6px;
  font-weight: bold;
}

.eyebrow span { letter-spacing: 3px; margin-right: -6px; }

.eyebrow::before,
.eyebrow::after {
  content: "";
  height: 1px;
  width: 40px;
  background: var(--bars);
}

h1.brand {
  font-size: 40px;
  letter-spacing: 4px;
  margin: 0 0 10px;
  font-weight: 700;
}

h1.brand a { color: inherit; text-decoration: none; }

.location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gold);
  font-size: 16px;
  font-weight: bold;
}

.location span { letter-spacing: 1px; margin-right: -3px; }

.location::before,
.location::after {
  content: "";
  height: 1px;
  width: 30px;
  background: var(--bars);
}

/* Nav strip */
.features {
  background: var(--dark);
  display: flex;
  justify-content: center;
  padding: 16px;
  padding-top: 0px;
}

.features .feature { text-align: center; color: var(--gold); width: 125px; }
.features img { width: 32px; height: 32px; display: block; margin: 0 auto 1px; }
.features span { font-size: 11px; letter-spacing: 1px; }

/* Page navigation */
.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 12px 16px;
  background: #fff;
  border-bottom: 1px solid #e5e0d3;
}

.site-nav a {
  color: var(--dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .5px;
}

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

/* Buttons */
.buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  padding: 24px 16px 8px;
}

.btn {
  background: var(--btn);
  /* border: 1px solid var(--btn-border); */
  color: #fff !important;
  padding: 14px 28px;
  text-decoration: none;
  font-size: 16px;
  flex: 1;
  max-width: 300px;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  font: inherit;
}

.page-body a.btn {
  color: #fff;
}


/* Button block: a row of buttons */
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 16px 0; }
.button-row .btn { flex: 1 1 0; max-width: none; }

/* Content */
.page-body { padding: 8px 24px 40px; }
.page-body h2, .page-body h3 { color: var(--gold); font-weight: 600; line-height: 1.3; }
.page-body h2 { font-size: 22px; }
.page-body h3 { font-size: 20px; margin-top: 32px; }
.page-body h4 { margin: 0 0 6px; font-size: 17px; }
.page-body p { line-height: 1.6; font-size: 15px; }
.page-body p.intro { font-weight: 700; }
.page-body a { color: var(--link); }
.page-body ul { padding-left: 20px; line-height: 1.8; }

.site-footer {
  background: var(--dark);
  color: #cbb872;
  text-align: center;
  padding: 20px 16px;
  font-size: 13px;
  margin-top: 40px;
}

.site-footer a { color: #cbb872; }

/* Home page */
.block-image { display: block; max-width: 100%; height: auto; margin: 12px 0; }

.box h1 {
  margin: 0;
  padding: 10px 0;
}

.box {
  /* border: 1px solid var(--btn-border); */
  background-color: var(--box);
  padding: 14px 34px;
  margin: 35px 0;
  /* text-align: center; */
}

/* Page blocks */
.blk-menu h3 { margin-top: 0; }
.menu-item { margin-bottom: 12px; }
.menu-line { display: flex; justify-content: space-between; gap: 12px; border-bottom: 1px dotted #ccc; }
.menu-name { font-weight: 600; }
.menu-price { font-weight: 600; color: var(--olive); }
.menu-desc { margin: 2px 0 0; font-size: 14px; color: #666; }

.blk-gallery { display: flex; flex-wrap: wrap; gap: 12px; }
.blk-gallery figure { flex: 1 1 200px; margin: 0; }
.blk-gallery img { display: block; width: 100%; height: auto; }
.blk-gallery figcaption { margin-top: 4px; font-size: 13px; color: #666; }


/* Forms */
.stacked-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  /* max-width: 460px; */
  /* min-height: 300px; */
  height: auto;
  width: 100%;
  margin-top: 16px;
}

.stacked-form label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
}

.stacked-form label.checkbox {
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.stacked-form input,
.stacked-form select,
.stacked-form textarea {
  font: inherit;
  padding: 8px;
  border: 1px solid #bbb;
  background: #fff;
  font-weight: normal;
  resize: vertical;
}

.field-row { display: flex; gap: 14px; flex-wrap: wrap; }
.field-row label { flex: 1 1 160px; }

/* Room picker */
.room-picker {
  border: 1px solid #ccc;
  padding: 12px 14px;
  margin: 0;
  width: 100%;
  min-width: 0;
}

.room-picker legend { font-weight: 600; padding: 0 6px; }

.stacked-form .room-option {
  flex-direction: row;
  align-items: center;
  gap: 12px;
  font-weight: 400;
  border: 1px solid #ddd;
  padding: 10px 12px;
  margin-top: 8px;
  cursor: pointer;
}

.stacked-form .room-option input { margin: 0; }

.room-option-name { font-weight: 600; }
.room-option-price { margin-left: auto; color: var(--olive); font-weight: 600; }

.room-option.unavailable { opacity: 0.45; cursor: not-allowed; background: #f5f5f5; }
.room-option.unavailable .room-option-name { text-decoration: line-through; }

.room-picker-note { color: #a33; font-size: 14px; margin: 10px 0 0; }

.hint, .muted { color: #666; font-size: 13px; }
.muted { margin: 4px 0; }

.flash {
  background: #e7f1dd;
  border: 1px solid #9ab87f;
  padding: 10px 14px;
  margin: 16px 24px 0;
  margin-bottom: 24px;
}

.form-errors {
  background: #fbe9e7;
  border: 1px solid #d99;
  padding: 10px 14px;
  margin: 16px 24px 0;
}

.form-errors ul { margin: 6px 0 0; padding-left: 20px; }

.confirmation-card { border: 2px solid var(--gold); padding: 16px 20px; margin: 16px 0; }
.confirmation-card p { margin: 6px 0; }

/* Booking calendar */

.booking-calendar {
  border: 1px solid #ccc;
  padding: 16px;
  margin: 8px 0 24px;
  background: #fff;
  max-width: 320px;
}

.cal-nav { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.cal-title { font-weight: 700; font-size: 16px; }

.cal-prev, .cal-next {
  font: inherit;
  background: #fff;
  border: 1px solid #bbb;
  padding: 6px 14px;
  cursor: pointer;
  line-height: 1;
}

.cal-prev:disabled, .cal-next:disabled { opacity: 0.35; cursor: default; }

table.cal-month { border-collapse: collapse; table-layout: fixed; width: 100%; }
table.cal-month th, table.cal-month td { width: 14.2857%; }

table.cal-month th { font-size: 11px; font-weight: 600; color: #666; padding: 4px 0; text-align: center; }
table.cal-month td { padding: 1px; text-align: center; }

button.cal-day {
  font: inherit;
  width: 100%;
  min-width: 34px;
  aspect-ratio: 1 / 1;
  border: 1px solid transparent;
  background: #f3f1ea;
  cursor: pointer;
  color: #222;
}

button.cal-day:hover:not(:disabled) { border-color: var(--btn); }
button.cal-day:focus-visible { outline: 2px solid var(--btn); outline-offset: 1px; }
button.cal-day.is-today { font-weight: 700; text-decoration: underline; }

button.cal-day.is-booked {
  background: repeating-linear-gradient(-45deg, #e6e2d6, #e6e2d6 3px, #d7d2c2 3px, #d7d2c2 6px);
  color: #8a8574;
  cursor: default;
}

button.cal-day.is-out { background: transparent; color: #cfcabc; }

button.cal-day.is-in-range { background: #ab996e; }

button.cal-day.is-start, button.cal-day.is-end {
  background: var(--btn);
  color: #fff;
  border-color: var(--btn-border);
}

.cal-summary { margin: 10px 0 0; font-weight: 600; font-size: 14px; }

@media (max-width: 640px) {
  .booking-calendar { max-width: 100%; }

  .box {
    padding: 2px 17px;
  }

  .button-row .btn {
    display: block;
    width: 100%;
    flex: revert;
  }
}
