@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:opsz,wght@8..60,400;8..60,500;8..60,600;8..60,700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --navy: #1B2A41;
  --navy-light: #2C4159;
  --paper: #FAF9F6;
  --stone: #EDEAE3;
  --slate: #5C7285;
  --brass: #A9824C;
  --brass-dark: #8B6F3E;
  --charcoal: #22262B;
  --line: #D9D4C9;
  --max: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--charcoal);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Source Serif 4', serif;
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em 0;
  color: var(--navy);
}

h1 { font-size: clamp(2.1rem, 4vw, 3.1rem); font-weight: 600; }
h2 { font-size: clamp(1.6rem, 2.6vw, 2.15rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em 0; max-width: 62ch; }

a { color: inherit; }

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

/* Header */
.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.brand-name {
  font-family: 'Source Serif 4', serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--navy);
  letter-spacing: 0.01em;
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 30px);
}

nav.main-nav a {
  text-decoration: none;
  color: var(--charcoal);
  font-size: 0.96rem;
  font-weight: 500;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}

nav.main-nav a:hover,
nav.main-nav a.active {
  border-bottom-color: var(--brass);
  color: var(--navy);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 0.96rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
  background: var(--navy);
  color: var(--paper);
}
.btn-primary:hover { background: var(--navy-light); }

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover { background: var(--navy); color: var(--paper); }

.btn-brass {
  background: var(--brass);
  color: var(--paper);
}
.btn-brass:hover { background: var(--brass-dark); }

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

/* Hero */
.hero {
  padding: 76px 0 88px;
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(48px, 7vw, 88px);
  align-items: center;
}

.hero-eyebrow-free h1 { margin-bottom: 20px; }

.hero-lede {
  font-size: 1.12rem;
  color: var(--slate);
  max-width: 46ch;
}

.hero-brand-panel {
  position: relative;
  min-height: 420px;
  padding: 48px 36px 42px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  text-align: center;
  background: var(--navy);
  border-radius: 2px;
  box-shadow: 20px 20px 0 var(--stone);
}

.hero-brand-panel::before,
.hero-brand-panel::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(250, 249, 246, 0.12);
  border-radius: 50%;
}

.hero-brand-panel::before {
  width: 260px;
  height: 260px;
  top: -126px;
  right: -116px;
}

.hero-brand-panel::after {
  width: 190px;
  height: 190px;
  bottom: -108px;
  left: -74px;
}

.hero-brand-mark {
  width: clamp(138px, 16vw, 190px);
  height: auto;
  margin-bottom: 24px;
}

.hero-brand-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-brand-copy span,
.hero-brand-copy strong {
  font-family: 'Source Serif 4', serif;
  line-height: 0.98;
}

.hero-brand-copy span {
  font-size: clamp(1.25rem, 2.1vw, 1.7rem);
  letter-spacing: 0.025em;
}

.hero-brand-copy strong {
  color: var(--paper);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 600;
}

.hero-brand-copy small {
  margin-top: 18px;
  color: #C9D2DC;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Sections */
.section {
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
}

.section:last-of-type { border-bottom: none; }

.section-stone { background: var(--stone); }
.section-navy { background: var(--navy); color: var(--paper); }
.section-navy h2, .section-navy h3 { color: var(--paper); }
.section-navy p { color: #C9D2DC; }

.section-head {
  max-width: 640px;
  margin-bottom: 44px;
}

/* Grid layouts */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }

/* Stat blocks */
.stat { border-left: 2px solid var(--brass); padding-left: 18px; }
.stat-num {
  font-family: 'Source Serif 4', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--navy);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.section-navy .stat-num { color: var(--paper); }
.section-navy .stat { border-left-color: var(--brass); }
.stat p { margin: 0; font-size: 0.95rem; color: var(--slate); }
.section-navy .stat p { color: #C9D2DC; }

/* Steps */
.steps { counter-reset: step; }
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step-num {
  counter-increment: step;
  font-family: 'Source Serif 4', serif;
  font-size: 1.5rem;
  color: var(--brass);
  font-weight: 600;
}
.step-num::before { content: counter(step, decimal-leading-zero); }

.booking-search {
  position: relative;
  padding: 30px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
  box-shadow: 16px 16px 0 var(--stone);
}

.booking-search::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--brass);
}

.booking-search-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 26px;
}

.booking-search-head > div > span {
  display: block;
  margin-bottom: 5px;
  color: var(--slate);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-search-head h3 { margin: 0; }

.booking-status {
  padding: 6px 9px;
  color: var(--brass-dark);
  background: var(--stone);
  border-radius: 2px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.booking-fields {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 12px;
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.booking-field label {
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
}

.booking-field input,
.booking-field select {
  min-width: 0;
  padding: 11px 12px;
  color: var(--slate);
  background: #f8f6f1;
  border: 1px solid var(--line);
  border-radius: 3px;
  font: inherit;
  font-size: 0.88rem;
  opacity: 1;
}

.booking-fields .btn {
  grid-column: 1 / -1;
  margin-top: 4px;
}

.booking-fields .btn:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.booking-search-note {
  margin: 16px 0 0;
  color: var(--slate);
  font-size: 0.84rem;
}

.booking-page-hero {
  padding: clamp(54px, 8vw, 92px) 0 clamp(64px, 9vw, 108px);
  overflow: hidden;
  background: var(--stone);
  border-bottom: 1px solid var(--line);
}

.booking-page-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.booking-page-heading h1 { max-width: 680px; }
.booking-page-heading .lede { margin-bottom: 0; }

.booking-search-large {
  padding: clamp(28px, 4vw, 46px);
  box-shadow: 20px 20px 0 rgba(169, 130, 76, 0.18);
}

.booking-search-large .booking-search-head {
  margin-bottom: 32px;
}

.booking-search-large .booking-search-head h3 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.booking-search-large .booking-fields {
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.booking-search-large .booking-field input,
.booking-search-large .booking-field select {
  padding: 14px;
  background: var(--paper);
}

.booking-search-large .btn {
  padding-top: 15px;
  padding-bottom: 15px;
}

.booking-details-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
  gap: clamp(48px, 8vw, 96px);
  align-items: start;
}

.booking-detail-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}

.booking-detail-list > div {
  padding: 22px 24px 22px 0;
  border-bottom: 1px solid var(--line);
}

.booking-detail-list > div:nth-child(even) {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.booking-detail-list strong,
.booking-detail-list span {
  display: block;
}

.booking-detail-list strong {
  margin-bottom: 7px;
  color: var(--navy);
  font-family: 'Source Serif 4', serif;
  font-size: 1.08rem;
}

.booking-detail-list span {
  color: var(--slate);
  font-size: 0.93rem;
}

.booking-note-card {
  padding: 34px;
  background: var(--navy);
  color: #C9D2DC;
  border-radius: 3px;
  box-shadow: 12px 12px 0 rgba(169, 130, 76, 0.22);
}

.booking-note-card h2 { color: var(--paper); }
.booking-note-card .btn { margin-top: 10px; color: var(--paper); border-color: var(--paper); }
.booking-note-card .btn:hover { background: var(--paper); color: var(--navy); }

.guest-inclusions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}

.guest-inclusion {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding: 28px 32px 28px 0;
  border-bottom: 1px solid var(--line);
}

.guest-inclusion:nth-child(even) {
  padding-left: 32px;
  border-left: 1px solid var(--line);
}

.guest-inclusion > span {
  color: var(--brass);
  font-family: 'Source Serif 4', serif;
  font-size: 1.15rem;
  font-weight: 600;
}

.guest-inclusion h3 { margin-bottom: 8px; }
.guest-inclusion p { margin: 0; color: var(--slate); font-size: 0.95rem; }
.guest-expectations { align-items: start; }
.guest-expectations p:last-child { margin-bottom: 0; }

/* Cards */
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 30px;
  border-radius: 2px;
}
.card h3 { margin-bottom: 10px; }
.card p { margin-bottom: 0; font-size: 0.96rem; color: var(--slate); }

/* Direct booking promotion */
.booking-promo {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
}

.five-star-emblem {
  width: 138px;
  aspect-ratio: 1;
  border: 1px solid rgba(250, 249, 246, 0.38);
  outline: 1px solid rgba(169, 130, 76, 0.7);
  outline-offset: -9px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  text-align: center;
  flex-shrink: 0;
}

.emblem-stars {
  color: #D9BD91;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 8px;
}

.five-star-emblem strong {
  font-family: 'Source Serif 4', serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
}

.five-star-emblem > span:last-child {
  margin-top: 5px;
  color: #C9D2DC;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.booking-promo-label {
  display: block;
  margin-bottom: 8px;
  color: #D9BD91;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.booking-promo h2 { margin-bottom: 10px; }
.booking-promo p { margin: 0; }
.booking-promo .btn { white-space: nowrap; }

/* Table (comparison) */
table.compare {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
table.compare th, table.compare td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}
table.compare th { color: var(--slate); font-weight: 600; }
table.compare td:first-child, table.compare th:first-child { padding-left: 0; font-weight: 500; }

/* FAQ */
.faq-item {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item h3 { font-size: 1.05rem; margin-bottom: 8px; }
.faq-item p { color: var(--slate); font-size: 0.96rem; margin-bottom: 0; }

/* Form */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.88rem; font-weight: 600; color: var(--navy); }
.form-field input, .form-field select, .form-field textarea {
  font-family: 'Inter', sans-serif;
  font-size: 0.96rem;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--paper);
  color: var(--charcoal);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: 2px solid var(--brass);
  outline-offset: 1px;
}
.honeypot { position: absolute; left: -9999px; }
.contact-form .btn:disabled { cursor: wait; opacity: 0.65; }
.form-note { display: none; margin-top: 16px; font-size: 0.9rem; }
.form-note.success, .form-note.error { display: block; }
.form-note.success { color: #35624a; }
.form-note.error { color: #9b3d35; }

.coming-soon-label {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--brass-dark);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.coming-soon-label.light { color: #d9bd91; }

/* Footer */
footer.site-footer {
  background: var(--navy);
  color: #C9D2DC;
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-grid h4 {
  color: var(--paper);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 14px;
}
.footer-grid a {
  display: block;
  text-decoration: none;
  color: #C9D2DC;
  font-size: 0.92rem;
  margin-bottom: 10px;
}
.footer-grid a:hover { color: var(--paper); }
.footer-brand p { color: #A9B4C0; font-size: 0.92rem; max-width: 34ch; }
.footer-bottom {
  border-top: 1px solid #33455C;
  padding-top: 22px;
  font-size: 0.84rem;
  color: #8FA0B0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* Page header (non-home pages) */
.page-header {
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--line);
  background: var(--stone);
}
.page-header p.lede {
  font-size: 1.08rem;
  color: var(--slate);
  max-width: 56ch;
}

@media (max-width: 860px) {
  nav.main-nav { display: none; }
  .nav-toggle { display: block; }
  nav.main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 12px 32px 24px;
    gap: 4px;
  }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-eyebrow-free { order: 1; }
  .hero-brand-panel {
    order: 2;
    width: min(100%, 480px);
    min-height: 360px;
    margin: 12px auto 18px;
    box-shadow: 14px 14px 0 var(--stone);
  }
  .grid-2, .grid-3, .grid-4, .form-grid { grid-template-columns: 1fr; }
  .booking-search { box-shadow: 12px 12px 0 var(--stone); }
  .booking-search-large { box-shadow: 12px 12px 0 rgba(169, 130, 76, 0.18); }
  .booking-search-large .booking-fields { grid-template-columns: 1fr 1fr; }
  .booking-details-grid { grid-template-columns: 1fr; }
  .booking-note-card { max-width: 560px; }
  .booking-promo {
    grid-template-columns: auto 1fr;
    gap: 28px;
  }
  .booking-promo .btn {
    grid-column: 2;
    justify-self: start;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .hero { padding: 54px 0 66px; }
  .hero-brand-panel { min-height: 320px; padding: 38px 24px 34px; }
  .hero-brand-mark { width: 132px; margin-bottom: 20px; }
  .booking-promo { grid-template-columns: 1fr; text-align: center; }
  .five-star-emblem { width: 124px; margin: 0 auto; }
  .booking-promo p { margin-left: auto; margin-right: auto; }
  .booking-promo .btn { grid-column: 1; justify-self: center; }
  .booking-search { padding: 24px 20px; box-shadow: 8px 8px 0 var(--stone); }
  .booking-search-large { box-shadow: 8px 8px 0 rgba(169, 130, 76, 0.18); }
  .booking-search-head { align-items: flex-start; }
  .booking-fields { grid-template-columns: 1fr; }
  .booking-search-large .booking-fields { grid-template-columns: 1fr; }
  .booking-detail-list, .guest-inclusions { grid-template-columns: 1fr; }
  .booking-detail-list > div:nth-child(even),
  .guest-inclusion:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }
  .guest-inclusion { padding-right: 0; }
}
