/* ===== Design tokens ===== */
:root {
  --cream: #FBF7F2;
  --cream-deep: #F3ECE3;
  --blush: #F0D9CE;
  --blush-deep: #E7BFAE;
  --sage: #B9C4AC;
  --sage-deep: #97A588;
  --gold: #C98A6B;
  --gold-deep: #B06F50;
  --ink: #3A342E;
  --ink-soft: #6B6259;
  --white: #FFFFFF;

  --font-display: 'Fraunces', serif;
  --font-body: 'Quicksand', sans-serif;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 10px 30px rgba(176, 111, 80, 0.12);
  --shadow-hover: 0 16px 40px rgba(176, 111, 80, 0.18);
  --container-width: 1140px;
}

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

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 0 0 8px 0;
  z-index: 999;
}
.skip-link:focus { left: 0; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
}

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

ul { list-style: none; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { background: var(--gold-deep); box-shadow: var(--shadow-hover); }

.btn-outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold-deep);
}
.btn-outline:hover { background: var(--blush); }

.btn-block { width: 100%; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 242, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(176, 111, 80, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}
.logo-mark { font-size: 1.6rem; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-sub { font-family: var(--font-body); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-deep); }

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
  transition: background 0.2s ease, color 0.2s ease;
}
.main-nav a:hover { background: var(--blush); color: var(--ink); }

.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
}
.nav-cta:hover { background: var(--gold-deep) !important; }

.nav-staff-link {
  font-size: 0.78rem !important;
  font-weight: 600;
  color: var(--ink-soft) !important;
  opacity: 0.65;
  margin-left: 4px;
  padding-left: 16px !important;
  border-left: 1px solid rgba(58, 52, 46, 0.15);
}
.nav-staff-link:hover { opacity: 1; background: none !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: none;
  background: transparent;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 0 auto;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 80px;
  text-align: center;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.55;
  z-index: 0;
}
.hero-blob-1 {
  width: 420px; height: 420px;
  background: var(--blush);
  top: -140px; left: -120px;
}
.hero-blob-2 {
  width: 360px; height: 360px;
  background: var(--sage);
  bottom: -160px; right: -100px;
  opacity: 0.35;
}

.hero-inner { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }

.eyebrow, .section-eyebrow {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold-deep);
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 20px;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 auto 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 600;
}

/* ===== Section shared ===== */
section { padding: 88px 0; }

.section-title {
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  margin-bottom: 16px;
}

.section-lead {
  color: var(--ink-soft);
  max-width: 620px;
  font-size: 1.02rem;
  margin-bottom: 40px;
}

.how-it-works, .pricing-section, .testimonials-section { text-align: center; }
.how-it-works .section-lead, .pricing-section .section-lead { margin-left: auto; margin-right: auto; }

/* ===== How it works ===== */
.how-it-works { background: var(--cream-deep); }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.step-number {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--gold-deep);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.step-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.step-card p { color: var(--ink-soft); font-size: 0.96rem; }

/* ===== Gallery ===== */
.room-boards {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 16px;
}

.room-board {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 32px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.room-board:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.room-board-header { margin-bottom: 20px; }
.room-board-header h3 { font-size: 1.35rem; margin-bottom: 6px; }
.room-board-header p { color: var(--ink-soft); font-size: 0.96rem; }

.room-board-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.room-board-images figure {
  margin: 0;
  background: var(--cream-deep);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.room-board-images figure:only-child { grid-column: 1 / -1; }

.room-board-images img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.room-board-images img:hover {
  transform: scale(1.04);
  filter: brightness(0.92);
}

.room-board-images figcaption {
  padding: 10px 12px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.gallery-footnote {
  margin-top: 40px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 1rem;
}
.gallery-footnote a { color: var(--gold-deep); font-weight: 700; }

/* ===== Pricing ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
  text-align: left;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-soft);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.price-card-featured {
  background: linear-gradient(160deg, var(--white) 0%, var(--blush) 140%);
  border: 2px solid var(--gold);
}

.price-badge {
  position: absolute;
  top: -14px; left: 32px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
}

.price-badge-alt {
  background: var(--sage-deep);
}

.price-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.price-tag { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 12px; color: var(--gold-deep); }
.price-desc { color: var(--ink-soft); margin-bottom: 20px; }

.price-list { margin-bottom: 20px; }

.price-card > .btn { margin-top: auto; }

.price-fine-print {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--cream-deep);
}
.price-list li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 0.95rem;
}
.price-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-deep);
  font-weight: 700;
}

/* ===== Booking ===== */
.book-section { background: var(--cream-deep); text-align: center; }
.book-section .section-lead { margin-left: auto; margin-right: auto; }

.meeting-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 36px;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.meeting-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
}

/* ===== Testimonials ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-soft);
  text-align: left;
}
.testimonial-card p {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 16px;
  color: var(--ink);
}
.testimonial-card cite {
  font-style: normal;
  font-weight: 700;
  color: var(--gold-deep);
  font-size: 0.9rem;
}

/* ===== Contact ===== */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-details { margin-top: 24px; }
.contact-details li { margin-bottom: 10px; color: var(--ink-soft); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form label,
.wizard-form label,
.wizard-field label,
.meeting-form label {
  font-weight: 700;
  font-size: 0.88rem;
  margin-top: 14px;
  margin-bottom: 4px;
  display: block;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.wizard-form input,
.wizard-field input,
.wizard-field select,
.meeting-form input,
.meeting-form select,
.meeting-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--cream-deep);
  background: var(--cream);
  color: var(--ink);
  resize: vertical;
  width: 100%;
  box-sizing: border-box;
}
.contact-form select,
.wizard-field select,
.meeting-form select { appearance: auto; cursor: pointer; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.wizard-form input:focus,
.wizard-field input:focus,
.wizard-field select:focus,
.meeting-form input:focus,
.meeting-form select:focus,
.meeting-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.contact-form button,
.wizard-form button,
.meeting-form button { margin-top: 22px; }

.wizard-field { margin-top: 14px; }

.form-note {
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--ink-soft);
}
.form-note a { color: var(--gold-deep); font-weight: 700; }

.form-success {
  margin-top: 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--sage-deep);
}

.form-error {
  margin-top: 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #B0442E;
}

.field-hint {
  margin-top: 6px;
  font-size: 0.8rem;
  color: var(--gold-deep);
  font-weight: 600;
}

/* ===== Onboarding Wizard ===== */
.wizard-reopen {
  display: inline-block;
  margin-top: 20px;
  background: none;
  border: none;
  color: var(--gold-deep);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.wizard-reopen:hover { color: var(--gold); }

.wizard-overlay {
  position: fixed;
  inset: 0;
  background: rgba(58, 52, 46, 0.55);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1000;
}
.wizard-overlay[hidden] { display: none; }

.wizard-modal {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  max-width: 640px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  padding: 44px 40px;
}

.wizard-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--ink-soft);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}
.wizard-close:hover { color: var(--ink); }

.wizard-screen h2 {
  font-size: 1.6rem;
  margin-bottom: 18px;
}

.wizard-back {
  background: none;
  border: none;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  padding: 0;
  margin-bottom: 16px;
}
.wizard-back:hover { color: var(--gold-deep); }

.wizard-space-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.wizard-space-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px 16px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--cream-deep);
  background: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.wizard-space-btn:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.wizard-space-icon { font-size: 2rem; }

.wizard-board-container .room-board {
  padding: 0;
  box-shadow: none;
  margin-top: 20px;
}
.wizard-board-container .room-board + .room-board { margin-top: 32px; }
.wizard-board-container .room-board-images { grid-template-columns: repeat(3, 1fr); }

.wizard-form-error {
  margin-top: 14px;
  color: #B0442E;
  font-size: 0.88rem;
  font-weight: 600;
}

/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 17, 14, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  z-index: 1100;
}
.lightbox[hidden] { display: none; }

.lightbox-figure {
  margin: 0;
  max-width: min(900px, 84vw);
  max-height: 84vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-figure img {
  max-width: 100%;
  max-height: 74vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hover);
}

.lightbox-figure figcaption {
  margin-top: 16px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox-close:hover { background: rgba(255,255,255,0.28); }

.lightbox-nav {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.28); }

/* ===== Footer ===== */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.site-footer .logo-sub { color: var(--blush); }
.site-footer p { font-size: 0.88rem; color: rgba(255,255,255,0.6); }

.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.85); }
.footer-links a:hover { color: var(--blush); }

.footer-partner {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.82rem !important;
}
.footer-partner a { color: var(--blush); font-weight: 700; }
.footer-partner a:hover { color: var(--white); }

.footer-admin-link {
  display: inline-block;
  margin-top: 12px;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
}
.footer-admin-link:hover { color: rgba(255,255,255,0.75); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .steps, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .room-board-images,
  .wizard-board-container .room-board-images { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .wizard-space-options { grid-template-columns: 1fr; }
  .wizard-modal { padding: 32px 24px; }
  .meeting-form-grid { grid-template-columns: 1fr; }
  .meeting-form { padding: 28px 24px; }
}

@media (max-width: 720px) {
  .main-nav {
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(176, 111, 80, 0.1);
    transform: translateY(-140%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 90;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; }
  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 24px;
    gap: 6px;
  }
  .main-nav a { display: block; text-align: center; }
  .nav-toggle { display: flex; }
  .nav-staff-link {
    border-left: none;
    margin-left: 0;
    padding-left: 16px !important;
    margin-top: 4px;
    padding-top: 12px !important;
    border-top: 1px solid rgba(58, 52, 46, 0.12);
  }

  .steps, .testimonial-grid { grid-template-columns: 1fr; }
  .room-board { padding: 24px; }
  .hero { padding: 64px 0 56px; }
  section { padding: 64px 0; }

  .lightbox { gap: 8px; padding: 16px; }
  .lightbox-nav { width: 38px; height: 38px; font-size: 1.1rem; }
  .lightbox-close { top: 10px; right: 10px; width: 34px; height: 34px; }
}
