/* ============================================================
   Clean & Cozy Executive Stays — Site Stylesheet
   Palette: Navy #1C2B45 | Gold #B99555 | White #FFFFFF
           Warm off-white #F8F7F4 | Ink #2A3342 | Slate #5A6472
   Fonts: Fraunces (headings), Inter (body)
   ============================================================ */

:root {
  --navy: #1C2B45;
  --navy-dark: #131F33;
  --gold: #B99555;
  --gold-soft: #D8C49A;
  --white: #FFFFFF;
  --offwhite: #F8F7F4;
  --ink: #2A3342;
  --slate: #5A6472;
  --border: #E6E3DC;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(28, 43, 69, 0.08);
  --maxw: 1120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.1rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); margin-bottom: 0.75rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; color: var(--ink); }
.muted { color: var(--slate); }

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--gold); }

img { max-width: 100%; display: block; }

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

section { padding: 72px 0; }
section.tight { padding: 48px 0; }
.section-alt { background: var(--offwhite); }

.eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.center { text-align: center; }
.lead { font-size: 1.15rem; color: var(--slate); max-width: 720px; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.nav-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
}
.logo span { display: block; font-family: 'Inter', sans-serif; font-size: 0.62rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }

.nav-toggle { display: none; }
.nav-toggle-label { display: none; cursor: pointer; font-size: 1.6rem; color: var(--navy); user-select: none; }

nav.main-nav ul { display: flex; align-items: center; gap: 26px; list-style: none; }
nav.main-nav a { font-size: 0.92rem; font-weight: 500; color: var(--ink); }
nav.main-nav a:hover, nav.main-nav a[aria-current="page"] { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: all 0.2s ease;
  border: 1.5px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-dark); color: var(--white); }
.btn-outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: #A5824A; color: var(--white); }
.btn-sm { padding: 9px 18px; font-size: 0.87rem; }
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, var(--offwhite) 0%, var(--white) 100%);
  padding: 88px 0 72px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero .tagline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--gold);
  margin: 1rem 0 1.25rem;
}

.hero-inner { max-width: 780px; }

/* Page hero (interior pages) */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 64px 0 56px;
}
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255, 255, 255, 0.85); max-width: 700px; margin-top: 0.75rem; }
.page-hero .eyebrow { color: var(--gold-soft); }

/* ---------- Photo placeholders ---------- */
.photo-placeholder {
  background: repeating-linear-gradient(45deg, #EDEAE3, #EDEAE3 12px, #F3F1EB 12px, #F3F1EB 24px);
  border: 1.5px dashed #C9C4B8;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #8A8676;
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  padding: 16px;
  min-height: 220px;
}
.photo-placeholder.tall { min-height: 380px; }
.photo-placeholder.short { min-height: 160px; }
.photo-placeholder::before { content: "📷"; font-size: 1.6rem; opacity: 0.55; }

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.photo-grid .photo-placeholder:first-child { grid-column: 1 / -1; min-height: 400px; }

/* ---------- Cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; margin-top: 40px; }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.card .photo-placeholder { border-radius: 0; border-left: none; border-right: none; border-top: none; }
.card-body { padding: 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card-body h3 { margin-bottom: 0; }
.card-meta { font-size: 0.85rem; font-weight: 600; color: var(--gold); letter-spacing: 0.04em; text-transform: uppercase; }
.card-body .btn-group { margin-top: auto; padding-top: 12px; }

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.feature-card h3 { display: flex; align-items: center; gap: 10px; }

/* ---------- Amenities / checklists ---------- */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 10px 24px;
  list-style: none;
  margin: 20px 0;
}
.amenity-grid li { padding-left: 26px; position: relative; font-size: 0.97rem; }
.amenity-grid li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

.checklist { list-style: none; margin: 16px 0 20px; }
.checklist li { padding-left: 28px; position: relative; margin-bottom: 10px; }
.checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* ---------- Steps (booking process) ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin-top: 40px; counter-reset: step; }
.step { position: relative; padding: 28px 22px 22px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); counter-increment: step; }
.step::before {
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-soft);
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.step h3 { font-size: 1.05rem; }
.step p { font-size: 0.92rem; color: var(--slate); margin: 0; }

/* ---------- Info rows / property pages ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.three-col { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }

.spec-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 36px;
  padding: 18px 26px;
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin: 28px 0;
  font-weight: 600;
  font-size: 0.95rem;
}

/* ---------- Photo gallery + lightbox carousel ---------- */
.photo-grid img { cursor: zoom-in; transition: opacity 0.15s ease; }
.photo-grid img:hover { opacity: 0.92; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(19, 31, 51, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 84vh;
  border-radius: 8px;
  box-shadow: 0 10px 50px rgba(0,0,0,0.5);
  user-select: none;
}
.lb-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.14);
  border: none;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.lb-btn:hover { background: rgba(255,255,255,0.28); }
.lb-prev { left: 3vw; }
.lb-next { right: 3vw; }
.lb-close {
  position: absolute;
  top: 22px;
  right: 26px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
}
.lb-close:hover { opacity: 1; }
.lb-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}
@media (max-width: 560px) {
  .lb-btn { width: 46px; height: 46px; font-size: 1.4rem; }
  .lb-prev { left: 8px; } .lb-next { right: 8px; }
}
.spec-bar span { color: var(--navy); }
.spec-bar strong { color: var(--gold); margin-right: 6px; }

.pricing-table { width: 100%; border-collapse: collapse; margin: 16px 0 8px; }
.pricing-table th, .pricing-table td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--border); }
.pricing-table th { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--slate); }
.pricing-table td { font-size: 0.98rem; }
.placeholder-tag {
  display: inline-block;
  background: #FBF6EC;
  border: 1px dashed var(--gold-soft);
  color: #8A6F3C;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 2px 10px;
  border-radius: 4px;
}

.notice {
  background: var(--offwhite);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.notice p:last-child { margin-bottom: 0; }

/* ---------- Reviews ---------- */
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.review-source {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  background: var(--navy);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.review-stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 8px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 32px auto 0; }
.faq-list details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  background: var(--white);
}
.faq-list summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  color: var(--navy);
  list-style: none;
  position: relative;
  padding-right: 48px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 22px; top: 15px; font-size: 1.4rem; color: var(--gold); transition: transform 0.2s; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list .faq-answer { padding: 0 22px 20px; color: var(--slate); }
.faq-list .faq-answer p:last-child { margin-bottom: 0; }

/* ---------- Forms ---------- */
.form-wrap { max-width: 760px; margin: 0 auto; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 7px; color: var(--navy); }
.form-field .req { color: var(--gold); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.97rem;
  color: var(--ink);
  background: var(--white);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(185, 149, 85, 0.15);
}
.form-field .hint { font-size: 0.82rem; color: var(--slate); margin-top: 5px; }
.checkbox-field { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 20px; }
.checkbox-field input { width: 18px; height: 18px; margin-top: 3px; flex-shrink: 0; }
.checkbox-field label { font-size: 0.92rem; }
fieldset { border: none; margin-bottom: 8px; }
legend { font-family: 'Fraunces', Georgia, serif; font-size: 1.15rem; font-weight: 600; color: var(--navy); margin-bottom: 16px; padding-top: 10px; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--navy); color: var(--white); text-align: center; padding: 72px 24px; }
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255, 255, 255, 0.82); max-width: 640px; margin: 0 auto 28px; }
.cta-band .btn-outline { border-color: rgba(255,255,255,0.6); color: var(--white); }
.cta-band .btn-outline:hover { background: var(--white); color: var(--navy); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-dark); color: rgba(255, 255, 255, 0.75); padding: 56px 0 32px; font-size: 0.92rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.site-footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 14px; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: rgba(255, 255, 255, 0.75); }
.site-footer a:hover { color: var(--gold-soft); }
.footer-logo { font-family: 'Fraunces', Georgia, serif; font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.12); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.82rem; color: rgba(255, 255, 255, 0.5); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid, .two-col { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .photo-grid { grid-template-columns: 1fr 1fr; }

  .nav-toggle-label { display: block; }
  nav.main-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-toggle:checked ~ nav.main-nav { max-height: 480px; box-shadow: var(--shadow); }
  nav.main-nav ul { flex-direction: column; align-items: flex-start; gap: 0; padding: 12px 24px 20px; }
  nav.main-nav li { width: 100%; }
  nav.main-nav a { display: block; padding: 12px 0; font-size: 1rem; }
}

@media (max-width: 560px) {
  section { padding: 52px 0; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-wrap { padding: 28px 20px; }
  .photo-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .spec-bar { gap: 10px 22px; padding: 16px 18px; }
}

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 10px 18px;
  z-index: 200;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
