/* ---------- Design tokens ---------- */
:root {
  --ink: #1A1210;
  --cream: #F8F1E2;
  --red: #C81E1E;
  --red-deep: #7A1210;
  --amber: #E0A83C;
  --amber-deep: #B87F27;
  --gold-light: #F3D28A;
  --rust: #A6432B;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-width: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.5;
}

h1, h2, h3 {
  font-family: var(--font-display);
  margin: 0;
  line-height: 1.1;
  font-weight: 600;
}

p { margin: 0; }

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

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--ink);
  border-bottom: 1px solid rgba(224, 168, 60, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.02em;
}

.brand-logo {
  height: 40px;
  width: auto;
  display: block;
}

.brand-tagline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--cream);
  white-space: nowrap;
}

.main-nav {
  display: flex;
  gap: 32px;
}

.main-nav a {
  color: var(--cream);
  font-size: 0.95rem;
}

.main-nav a:hover { color: var(--amber); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--cream);
  display: block;
}

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(ellipse at top right, rgba(200, 30, 30, 0.22), transparent 55%),
    var(--ink);
  color: var(--cream);
  padding: 96px 0 112px;
  border-bottom: 1px solid rgba(224, 168, 60, 0.25);
}

.hero-kicker {
  color: var(--amber);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  max-width: 14ch;
}

.hero-sub {
  margin-top: 24px;
  max-width: 46ch;
  font-size: 1.15rem;
  color: #D9CFC0;
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 2px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-amber {
  background: linear-gradient(135deg, var(--gold-light), var(--amber));
  color: var(--ink);
}
.btn-amber:hover { background: var(--amber-deep); }

.btn-teal { background: transparent; color: var(--cream); border: 1px solid rgba(224, 168, 60, 0.4); }
.btn-teal:hover { border-color: var(--amber); color: var(--amber); }

/* ---------- Sections (shared) ---------- */
.section {
  padding: 88px 0;
}

.section-head {
  max-width: 60ch;
  margin-bottom: 48px;
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.eyebrow-amber { color: var(--amber-deep); }
.eyebrow-teal { color: var(--gold-light); }
.eyebrow-cream { color: var(--amber-deep); }

.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 20px;
}

.section-lede {
  font-size: 1.1rem;
  color: #4A3B30;
}

/* ---------- Fast food section ---------- */
.section-food { background: var(--cream); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

.menu-card {
  background: #fff;
  border-left: 3px solid var(--amber);
  padding: 18px;
}

.menu-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.menu-note {
  font-size: 0.9rem;
  color: #8A7A68;
  margin-bottom: 16px;
  font-style: italic;
}

.menu-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--rust);
}

.menu-footnote {
  margin-top: 32px;
  font-size: 0.95rem;
  color: #8A7A68;
}

/* ---------- Hotel section ---------- */
.section-hotel {
  background: var(--red-deep);
  color: var(--cream);
}

.section-hotel .section-lede { color: #E7C9BE; }

.hotel-logo {
  height: 84px;
  width: auto;
  margin-bottom: 12px;
}

.hotel-tagline {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.room-card {
  background: rgba(0, 0, 0, 0.18);
  border-left: 3px solid var(--amber);
  padding: 18px;
}

.room-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--cream);
}

.room-note {
  font-size: 0.9rem;
  color: #D9B8AE;
  margin-bottom: 16px;
  font-style: italic;
}

.room-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--amber);
}

/* ---------- Location ---------- */
.section-location {
  background: var(--ink);
  color: var(--cream);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  align-items: start;
}

.section-location .section-lede { color: #D9CFC0; }

.location-card,
.hours-card {
  background: #33251C;
  padding: 28px;
  border-radius: 2px;
}

.location-card h3,
.hours-card h3 {
  font-size: 1.1rem;
  color: var(--amber);
  margin-bottom: 16px;
}

.location-card p,
.hours-card p {
  margin-bottom: 8px;
  color: #D9CFC0;
}

/* ---------- Contact ---------- */
.section-contact {
  background: var(--cream);
  text-align: center;
}

.contact-inner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

.contact-inner .section-lede {
  margin-top: 16px;
  margin-bottom: 32px;
}

.contact-group {
  margin-bottom: 32px;
}

.contact-group:last-child { margin-bottom: 0; }

.contact-group h3 {
  font-size: 1rem;
  color: var(--red-deep);
  margin-bottom: 16px;
}

.contact-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-link {
  padding: 14px 28px;
  border: 1px solid var(--red);
  border-radius: 2px;
  color: var(--red);
}

.contact-link:hover {
  background: var(--red);
  color: var(--cream);
}

/* ---------- Menu / room loading & cards ---------- */
.menu-loading {
  color: #8A7A68;
  font-style: italic;
}

.menu-card-photo {
  width: 100%;
  height: 110px;
  object-fit: cover;
  margin-bottom: 12px;
  border-radius: 2px;
}

.see-more-wrap {
  text-align: center;
  margin-top: 28px;
}

.menu-card .add-to-cart,
.room-card .request-room {
  margin-top: 16px;
}

/* ---------- Room gallery ---------- */
.room-gallery { margin-bottom: 16px; }

.room-photo-main {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}

.room-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.room-thumb {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 2px;
  cursor: pointer;
  opacity: 0.6;
  border: 2px solid transparent;
}

.room-thumb.active,
.room-thumb:hover {
  opacity: 1;
  border-color: var(--amber);
}

/* ---------- Cart drawer ---------- */
.cart-overlay,
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 40;
}

.cart-overlay.open,
.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(400px, 100%);
  background: var(--cream);
  z-index: 50;
  padding: 24px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
}

.cart-drawer.open { transform: translateX(0); }

.cart-drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.cart-close {
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
}

.cart-items { flex: 1; }

.cart-empty { color: #8A7A68; font-style: italic; }

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(36, 24, 18, 0.1);
}

.cart-item-price { font-size: 0.85rem; color: #8A7A68; }

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-item-qty button {
  width: 28px;
  height: 28px;
  border: 1px solid var(--ink);
  background: none;
  border-radius: 2px;
  cursor: pointer;
  font-size: 1rem;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1.1rem;
  padding: 16px 0;
  border-top: 1px solid rgba(36, 24, 18, 0.15);
  margin-top: 8px;
}

.cart-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 30;
  background: var(--red);
  color: var(--cream);
  border: none;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.cart-fab-alt {
  right: auto;
  left: 24px;
  background: var(--amber-deep);
}

.cart-fab span {
  background: rgba(255, 255, 255, 0.25);
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 6px;
}

/* ---------- Forms (cart checkout / booking) ---------- */
.stack-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stack-form input,
.stack-form select,
.stack-form textarea {
  padding: 12px 14px;
  border: 1px solid rgba(36, 24, 18, 0.25);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: #fff;
  color: var(--ink);
}

.form-row {
  display: flex;
  gap: 12px;
}

.form-row label,
.stack-form > label {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.85rem;
  color: #4A3B30;
}

.form-status {
  font-size: 0.9rem;
  color: var(--amber-deep);
  min-height: 1.2em;
}

/* ---------- Booking modal ---------- */
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%);
  width: min(440px, 92vw);
  max-height: 88vh;
  overflow-y: auto;
  background: var(--cream);
  z-index: 50;
  padding: 24px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%);
}

.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

/* ---------- Track page ---------- */
.track-card {
  background: #fff;
  border-left: 3px solid var(--amber);
  border-radius: 2px;
  padding: 24px;
  margin-top: 32px;
  max-width: 420px;
}

.track-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.track-card p {
  margin-bottom: 6px;
  color: #4A3B30;
}

.track-status-pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--amber);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ---------- Policy pages ---------- */
.policy-content {
  max-width: 68ch;
}

.policy-content h3 {
  font-size: 1.15rem;
  margin-top: 32px;
  margin-bottom: 12px;
}

.policy-content p {
  margin-bottom: 12px;
  color: #4A3B30;
}

.policy-content ul {
  margin: 0 0 12px;
  padding-left: 20px;
  color: #4A3B30;
}

.policy-content li { margin-bottom: 6px; }

.policy-footnote {
  margin-top: 32px;
  font-size: 0.85rem;
  font-style: italic;
  color: #8A7A68;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #8A7A68;
  padding: 24px 0;
}

.footer-inner { font-size: 0.85rem; }

.footer-inner a {
  color: var(--amber);
  text-decoration: underline;
  margin-left: 8px;
}

/* ---------- Responsive ---------- */
@media (max-width: 720px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .brand-tagline { display: none; }

  .site-header.nav-open .main-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--ink);
    padding: 16px 24px 24px;
    gap: 16px;
  }
}
