:root {
  --sand: #F2ECDD; --sand-dark: #5C4E2E;
  --olive: #E3E8D3; --olive-dark: #3E4A22;
  --stone: #E7E2D6; --stone-dark: #4A4436;
  --terracotta: #B5651D; --terracotta-dark: #6B3410; --terracotta-light: #F2DDCB;
  --teal: #CFEDEA;
  --text: #2B2620; --text-secondary: #6B6355; --text-muted: #9A9080;
  --border: #E4DCC8; --surface: #FFFFFF; --bg: #FAF6EC;
}

* { box-sizing: border-box; }
body {
  font-family: system-ui, -apple-system, sans-serif;
  background: var(--bg); color: var(--text); margin: 0;
}
.wrap { max-width: 900px; margin: 0 auto; padding: 16px 20px 60px; }
.hero { position: relative; min-height: 320px; background: linear-gradient(180deg, rgba(43,38,32,0.15), rgba(43,38,32,0.55)), var(--teal); display: flex; flex-direction: column; }
.hero-nav { display: flex; justify-content: center; align-items: center; padding: 16px 20px; max-width: 1000px; margin: 0 auto; width: 100%; }
.hero-logo { font-family: Georgia, serif; font-size: 19px; font-weight: 600; color: #fff; }
.hero-body { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 20px 20px 40px; color: #fff; }
.hero-eyebrow { font-size: 12.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--terracotta-light); margin-bottom: 8px; }
.hero-title { font-family: Georgia, serif; font-size: 32px; font-weight: 600; margin-bottom: 10px; max-width: 480px; }
.hero-sub { font-size: 14px; color: rgba(255,255,255,0.9); max-width: 420px; margin-bottom: 20px; }

.btn { height: 38px; padding: 0 16px; border-radius: 8px; font-size: 14px; cursor: pointer; border: 1px solid var(--border); background: transparent; color: var(--text); display: inline-flex; align-items: center; justify-content: center; gap: 6px; text-decoration: none; }
.btn-solid { background: var(--terracotta); color: #fff; border-color: var(--terracotta); }
.btn-hero { background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.4); color: #fff; }

.chips { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; margin: 20px 0; }
.chip { font-size: 11.5px; padding: 4px 12px; border-radius: 999px; cursor: pointer; border: 1px solid var(--border); color: var(--text-secondary); }
.chip.active { background: var(--terracotta); color: #fff; border-color: var(--terracotta); }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; cursor: pointer; text-decoration: none; color: inherit; display: block; }
.roofline { height: 6px; background: repeating-linear-gradient(110deg, var(--terracotta) 0 5px, var(--terracotta-dark) 5px 10px); }
.card-photo { height: 110px; background: var(--sand); display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--sand-dark); }
.card-body { padding: 14px; }
.badge { font-size: 11.5px; padding: 3px 9px; border-radius: 999px; display: inline-block; }
.badge-olive { background: var(--olive); color: var(--olive-dark); }
.badge-terracotta { background: var(--terracotta-light); color: var(--terracotta-dark); }

.field { display: block; margin-bottom: 12px; }
.field label { display: block; font-size: 12.5px; color: var(--text-secondary); margin-bottom: 4px; }
input, select, textarea { width: 100%; height: 40px; border-radius: 6px; border: 1px solid var(--border); padding: 0 10px; font-size: 16px; background: #fff; color: var(--text); font-family: inherit; }
textarea { height: 70px; padding: 10px; resize: vertical; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.surface-box { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 14px; }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.calendar-day { aspect-ratio: 1; min-height: 34px; display: flex; align-items: center; justify-content: center; font-size: 12px; border-radius: 6px; }
.calendar-avail { background: var(--olive); color: var(--olive-dark); }
.calendar-reserved { background: var(--stone); color: var(--stone-dark); cursor: pointer; }
.calendar-today { border: 1.5px solid var(--terracotta); font-weight: 600; }

.tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.tab { font-size: 13px; padding: 8px 14px; border-radius: 999px; cursor: pointer; border: 1px solid var(--border); color: var(--text-secondary); }
.tab.active { background: var(--terracotta); color: #fff; border-color: var(--terracotta); }

a { color: inherit; }
.muted { color: var(--text-muted); font-size: 12px; }
.center { text-align: center; }
.mt { margin-top: 16px; }
.hidden { display: none !important; }

.btn { min-height: 40px; }

/* Mobile */
@media (max-width: 560px) {
  .wrap { padding: 14px 14px 50px; }
  .hero { min-height: 260px; }
  .hero-title { font-size: 24px; }
  .hero-sub { font-size: 13px; }
  .two-col { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr; }
  .calendar-day { font-size: 11px; min-height: 30px; }
  .tabs { gap: 6px; }
  .tab { font-size: 12px; padding: 7px 12px; }
  table { font-size: 11px; }
}
