/* ========================
   Design Tokens
   ======================== */
:root {
  --bg:       #F9F5EF;
  --bg-alt:   #F0EAE0;
  --ink:      #28221C;
  --ink-soft: #5C5248;
  --terra:    #B85C32;
  --terra-lt: #D4784E;
  --rule:     #D9CFC3;
  --white:    #FFFDFB;
}

/* ========================
   Accessibility
   ======================== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  padding: 0.75rem 1.5rem;
  background: var(--terra);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  z-index: 1000;
  text-decoration: none;
}
.skip-link:focus {
  top: 0;
}
:focus-visible {
  outline: 2px solid var(--terra);
  outline-offset: 2px;
}

/* ========================
   Base / Reset
   ======================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--ink);
  font-family: 'DM Sans', sans-serif; font-size: 16px;
  line-height: 1.65; -webkit-font-smoothing: antialiased;
}

/* ========================
   Navigation
   ======================== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 2.5rem;
  background: rgba(249,245,239,0.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule);
}
.btn-ghost {
  font-family: 'DM Sans', sans-serif; font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.65rem 1.25rem; border: 1.5px solid var(--ink);
  background: transparent; color: var(--ink); border-radius: 2px;
  cursor: pointer; text-decoration: none;
  transition: background 0.18s, color 0.18s;
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); }

/* ========================
   Section Rule Pattern
   ======================== */
.section-rule {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 2.5rem;
}
.section-rule span {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--terra); white-space: nowrap;
}
.section-rule hr { flex: 1; border: none; border-top: 1px solid var(--rule); }

/* ========================
   Footer
   ======================== */
footer {
  background: #1E1914; padding: 2rem 2.5rem;
  text-align: center; font-size: 0.8rem; color: #5C5248; letter-spacing: 0.04em;
}

/* ========================
   Subpage Shared — Layout
   (Saturday + Sunday only)
   ======================== */
section { padding: 4rem 2.5rem; max-width: 900px; margin: 0 auto; }

.hero-meta { display: flex; gap: 2rem; flex-wrap: wrap; }
.meta-item { font-size: 0.85rem; color: var(--ink-soft); }
.meta-item strong { color: var(--ink); font-weight: 500; }

/* ========================
   Subpage Shared — Fit Section
   ======================== */
.fit-cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 1.5rem;
}
.fit-col h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.1rem;
  font-weight: 500; margin-bottom: 1rem; color: var(--ink);
}
.fit-col.not h3 { color: var(--ink-soft); }
.fit-col ul { list-style: none; }
.fit-col ul li {
  font-size: 0.9rem; color: var(--ink-soft); padding: 0.3rem 0;
  display: flex; gap: 0.6rem;
}
.fit-col ul li::before { content: '\2713'; color: var(--terra); font-weight: 600; }
.fit-col.not ul li::before { content: '\2717'; color: var(--rule); }

/* ========================
   Subpage Shared — Alt Section
   ======================== */
.about-alt { background: var(--bg-alt); padding: 4rem 2.5rem; }
.about-alt-inner { max-width: 900px; margin: 0 auto; }

/* ========================
   Subpage Shared — Room Grid
   ======================== */
.room-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: repeat(3, 200px);
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.room-grid .room-featured { grid-row: 1 / 4; overflow: hidden; border-radius: 4px; }
.room-grid > div:not(.room-featured) { overflow: hidden; border-radius: 4px; }
.room-grid picture { display: contents; }
.room-grid img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* ========================
   Subpage Shared — Apply Form
   ======================== */
.apply-section { background: var(--ink); padding: 5rem 2.5rem; }
.apply-inner { max-width: 900px; margin: 0 auto; }
.apply-section h2 { color: var(--bg); }
.apply-section .section-rule span { color: var(--terra-lt); }
.apply-section .section-rule hr { border-color: #3d3630; }
.apply-section p { color: #A09589; }
form { margin-top: 2.5rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }
label {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: #A09589;
}
input, select, textarea {
  background: #332C26; border: 1.5px solid #3D3630; border-radius: 2px;
  color: var(--bg); font-family: 'DM Sans', sans-serif; font-size: 1rem;
  padding: 0.75rem 1rem; outline: none; transition: border-color 0.15s; width: 100%;
}
input:focus, select:focus, textarea:focus { border-color: var(--terra-lt); }
select option { background: #332C26; }
textarea { resize: vertical; min-height: 90px; }
.form-section-label {
  grid-column: 1 / -1;
  font-family: 'Cormorant Garamond', serif; font-size: 1.1rem;
  font-weight: 500; color: #C8BAB0; margin-top: 1rem;
  padding-top: 1.5rem; border-top: 1px solid #3D3630;
}
.checkbox-group { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 0.25rem; }
.checkbox-item { display: flex; align-items: flex-start; gap: 0.65rem; cursor: pointer; }
.checkbox-item input[type="checkbox"],
.checkbox-item input[type="radio"] {
  width: 16px; height: 16px; flex-shrink: 0;
  margin-top: 0.2rem; accent-color: var(--terra-lt);
}
.checkbox-item span { font-size: 0.9rem; color: #A09589; line-height: 1.5; }
.checkbox-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem 1.5rem;
}
.form-submit {
  grid-column: 1 / -1; margin-top: 1.5rem;
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.btn-submit {
  font-family: 'DM Sans', sans-serif; font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.85rem 2rem; background: var(--terra); border: none;
  color: var(--white); border-radius: 2px; cursor: pointer;
  transition: background 0.18s;
}
.btn-submit:hover { background: var(--terra-lt); }
.form-note { font-size: 0.8rem; color: #5C5248; }

/* ========================
   Shared — FAQ Section
   ======================== */
.faq-section { background: var(--bg-alt); padding: 4rem 2.5rem; }
.faq-inner { max-width: 900px; margin: 0 auto; }
.faq-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 500;
  color: var(--ink); margin-bottom: 2.5rem;
}
.faq-inner details {
  border-bottom: 1px solid var(--rule);
  padding: 0;
}
.faq-inner details summary {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 600;
  color: var(--ink); cursor: pointer;
  padding: 1rem 0; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-inner details summary::-webkit-details-marker { display: none; }
.faq-inner details summary::marker { display: none; }
.faq-inner details summary::after {
  content: '+';
  font-family: 'DM Sans', sans-serif;
  font-size: 1.25rem; font-weight: 300;
  color: var(--terra);
  transition: transform 0.2s ease;
  flex-shrink: 0; margin-left: 1rem;
}
.faq-inner details[open] summary::after {
  content: '\2212';
}
.faq-inner details p {
  padding: 0 0 1rem 0; margin: 0;
  color: var(--ink-soft); font-size: 0.97rem;
  line-height: 1.65; max-width: 60ch;
}
