:root {
  --bg: #141010;
  --surface: #1e1817;
  --surface-alt: #28201e;
  --text: #f4efe9;
  --text-muted: #b6a79c;
  --border: rgba(244, 239, 233, 0.14);
  --accent: #cfa456;
  --accent-2: #8c6a4f;
  --secondary: #2d2422;
  --on-accent: #181312;
  --deep: #0c0908;
  --radius: 4px;
  --btn-radius: 0px;
  --font-heading: Garamond, 'EB Garamond', Georgia, serif;
  --font-body: 'Gill Sans', 'Gill Sans MT', Calibri, sans-serif;
  --max-w: 1080px;
  --section-pad: 76px;
  --header-h: 0px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.62;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

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

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--text);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.6px;
  line-height: 1.2;
  color: var(--text);
}

h1 {
  font-size: clamp(36px, 5.5vw, 58px);
  line-height: 1.15;
}

h2 {
  font-size: clamp(24px, 3.6vw, 36px);
}

h3 {
  font-size: clamp(20px, 2.4vw, 26px);
}

p + p {
  margin-top: 1em;
}

.kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 0.75rem;
}

.container {
  width: min(100% - 40px, var(--max-w));
  margin-inline: auto;
}

.section {
  padding: var(--section-pad) 0;
}

.section--alt {
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface-alt) 100%);
}

.section--surface {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.25rem;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--accent);
  border-radius: var(--btn-radius);
  background: var(--accent);
  color: var(--on-accent);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn:hover {
  background: transparent;
  color: var(--accent);
}

.btn--ghost {
  background: transparent;
  color: var(--accent);
}

.btn--ghost:hover {
  background: var(--accent);
  color: var(--on-accent);
}

.btn--block {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--deep);
  border-bottom: 1px solid var(--border);
}

.site-header__brand-row {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.85rem 1.25rem 0.65rem;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
}

.brand-lockup img {
  width: 36px;
  height: 52px;
  object-fit: contain;
}

.brand-lockup__name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.4px;
}

.site-header__nav-row {
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid var(--border);
  padding: 0.35rem 1rem;
  position: relative;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  width: 44px;
  height: 40px;
  cursor: pointer;
  border-radius: var(--btn-radius);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.15rem 1.5rem;
  list-style: none;
}

.nav-list a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-variant: small-caps;
  text-decoration: none;
  color: var(--text-muted);
  padding: 0.45rem 0;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--accent);
}

.independence {
  margin: 1.5rem auto 0;
  width: min(100% - 40px, var(--max-w));
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.55;
}

.page-hero {
  padding: 3rem 0 0.5rem;
}

.page-hero .container {
  padding-bottom: 0.5rem;
}

.hero {
  position: relative;
  min-height: 520px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  background: var(--bg);
}

.hero__media {
  grid-column: 2 / -1;
  grid-row: 1;
  min-height: 520px;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 520px;
}

.hero__panel {
  grid-column: 1 / 2;
  grid-row: 1;
  position: relative;
  z-index: 2;
  background: var(--surface);
  margin: 3.5rem 0 3.5rem 0;
  margin-right: -18%;
  padding: 2.5rem 2rem 2.5rem 0;
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-left: none;
}

.hero__panel-inner {
  width: min(100%, 420px);
  margin-left: max(20px, calc((100vw - var(--max-w)) / 2));
  padding-left: 20px;
}

.hero__panel p {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.category-rows {
  border-top: 1px solid var(--border);
}

.category-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}

.category-row h2 {
  font-size: clamp(22px, 2.8vw, 30px);
}

.category-row p {
  color: var(--text-muted);
  margin: 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--border);
}

.split__copy h2 {
  margin-bottom: 1rem;
}

.split__copy p {
  color: var(--text-muted);
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.photo-strip figure {
  margin: 0;
}

.photo-strip img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.photo-strip figcaption {
  margin-top: 0.55rem;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.quote-card {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 1.5rem 1.35rem;
}

.quote-card blockquote {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  line-height: 1.45;
  color: var(--text);
}

.quote-card cite {
  display: block;
  margin-top: 1.1rem;
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.catalog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}

.venue-card {
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  flex-direction: column;
}

.venue-card--urban img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.venue-card--urban .venue-card__body {
  padding: 1.25rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.85rem;
}

.venue-card--urban .venue-card__body .btn {
  margin-top: auto;
  align-self: flex-start;
}

.venue-card--water {
  padding: 1rem;
}

.venue-card--water img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.venue-card--water .venue-card__body {
  padding: 1.1rem 0.15rem 0.15rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.85rem;
}

.venue-card--water .venue-card__rule {
  height: 0;
  border: none;
  border-top: 1px solid var(--border);
  margin: 0.25rem 0;
}

.venue-card--water .btn {
  align-self: flex-start;
}

.stay-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.stay-row {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 0;
  border: 1px solid var(--border);
  background: var(--surface);
}

.stay-row--flip {
  grid-template-columns: 1fr 40%;
}

.stay-row--flip .stay-row__media {
  order: 2;
}

.stay-row--flip .stay-row__body {
  order: 1;
}

.stay-row__media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.stay-row__body {
  padding: 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stay-row__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.25;
}

.stay-row__meta span {
  display: block;
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.85em;
}

.stay-row__body p {
  color: var(--text-muted);
  flex: 1;
}

.stay-row__body .btn {
  margin-top: auto;
}

.section-close {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
}

.editorial-band {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

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

.editorial-band:nth-child(even) .editorial-band__inner {
  margin-left: auto;
  margin-right: 0;
}

.editorial-band__inner {
  max-width: 720px;
}

.editorial-band h2 {
  margin-bottom: 1rem;
}

.editorial-band p {
  color: var(--text-muted);
}

.contact-wrap {
  max-width: 640px;
  margin: 0 auto;
}

.contact-wrap > p {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.contact-panel {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 2rem 1.75rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--btn-radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.agree-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.agree-row input {
  margin-top: 0.3rem;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.agree-row label {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.field-error {
  display: none;
  color: #e8a090;
  font-size: 13px;
  margin-top: 0.4rem;
}

.field-error.is-visible {
  display: block;
}

.form-status {
  margin-top: 1rem;
  color: #e8a090;
  font-size: 14px;
}

.contact-email-line {
  margin-top: 1.75rem;
  color: var(--text-muted);
  text-align: center;
}

.confirm-panel {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 2rem 1.75rem;
  text-align: center;
}

.confirm-panel h2 {
  margin-bottom: 1rem;
}

.confirm-panel p {
  color: var(--text-muted);
}

.confirm-panel .btn {
  margin-top: 1.5rem;
}

.legal-body {
  padding-bottom: var(--section-pad);
}

.legal-body h1 {
  margin-bottom: 0.5rem;
}

.legal-body > p:first-of-type {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.legal-body h2 {
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
  font-size: clamp(20px, 2.5vw, 28px);
}

.legal-body h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-body p,
.legal-body li {
  color: var(--text-muted);
}

.legal-body ul {
  margin: 0.75rem 0 0 1.25rem;
}

.legal-body li + li {
  margin-top: 0.4rem;
}

.sitemap-intro {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.sitemap-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0;
  align-items: center;
  line-height: 2;
}

.sitemap-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 1.05rem;
}

.sitemap-links a:hover {
  color: var(--accent);
}

.sitemap-links .sep {
  color: var(--text-muted);
  margin: 0 0.65rem;
  user-select: none;
}

.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.site-footer__main {
  width: min(100% - 40px, var(--max-w));
  margin-inline: auto;
  padding: 3.5rem 0 2.5rem;
  display: grid;
  grid-template-columns: minmax(180px, 240px) 1fr;
  gap: 3rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.footer-group h3 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-variant: small-caps;
  color: var(--text-muted);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.75rem;
}

.footer-group ul {
  list-style: none;
}

.footer-group li + li {
  margin-top: 0.4rem;
}

.footer-group a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
}

.footer-group a:hover {
  color: var(--accent);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-brand .brand-lockup__name {
  font-size: 1.5rem;
}

.footer-brand__blurb {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 42ch;
}

.footer-independence {
  font-size: 13px;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 0.85rem 1rem;
  background: var(--surface);
}

.footer-email {
  font-size: 14px;
}

.site-footer__bar {
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
}

.site-footer__bar-inner {
  width: min(100% - 40px, var(--max-w));
  margin-inline: auto;
  padding: 1.1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: flex-start;
}

.site-footer__bar p,
.site-footer__bar button {
  font-size: 13px;
  color: var(--text-muted);
}

.cookie-settings-btn {
  background: none;
  border: none;
  padding: 0;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-settings-btn:hover {
  color: var(--accent);
}

.consent-banner {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 1000;
  max-width: 400px;
  width: calc(100% - 2.5rem);
  background: var(--surface);
  border: 1px solid var(--border);
  border-bottom: 3px solid var(--accent);
  padding: 1.15rem 1.15rem 1rem;
}

.consent-banner[hidden],
.consent-dialog[hidden] {
  display: none !important;
}

.consent-banner p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.consent-banner__actions {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.4rem;
}

.consent-banner__actions .btn {
  padding: 0.55rem 0.35rem;
  font-size: 11px;
  letter-spacing: 0.03em;
  text-align: center;
  line-height: 1.3;
}

.consent-banner__manage {
  display: block;
  margin-top: 0.75rem;
  font-size: 13px;
  color: var(--text-muted);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-body);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consent-banner__policy {
  display: inline-block;
  margin-top: 0.55rem;
  font-size: 12px;
  color: var(--text-muted);
}

.consent-dialog-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: rgba(12, 9, 8, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.consent-dialog-backdrop[hidden] {
  display: none !important;
}

.consent-dialog {
  width: min(100%, 420px);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.5rem 1.35rem;
}

.consent-dialog h2 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.consent-cat {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.85rem 0;
  border-top: 1px solid var(--border);
}

.consent-cat:last-of-type {
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.15rem;
}

.consent-cat input {
  margin-top: 0.2rem;
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.consent-cat label {
  font-size: 14px;
  color: var(--text);
}

.consent-cat label small {
  display: block;
  margin-top: 0.25rem;
  color: var(--text-muted);
  font-size: 13px;
}

.consent-dialog__save {
  width: 100%;
}

@media (max-width: 1024px) {
  .hero__panel {
    margin-right: -12%;
    padding-right: 1.5rem;
  }

  .category-row {
    gap: 1rem;
  }

  .split {
    gap: 2rem;
  }

  .photo-strip img {
    height: 180px;
  }
}

@media (max-width: 900px) {
  .site-header__nav-row {
    justify-content: flex-end;
    padding: 0.5rem 1rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--deep);
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 0;
    gap: 0;
  }

  .nav-list.is-open {
    display: flex;
  }

  .nav-list li {
    border-top: 1px solid var(--border);
  }

  .nav-list a {
    display: block;
    padding: 0.85rem 1.25rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero__media {
    grid-column: 1;
    grid-row: 1;
    min-height: 280px;
  }

  .hero__media img {
    min-height: 280px;
  }

  .hero__panel {
    grid-column: 1;
    grid-row: 2;
    margin: 0;
    border: none;
    border-top: 1px solid var(--border);
    padding: 2rem 0;
  }

  .hero__panel-inner {
    width: min(100% - 40px, var(--max-w));
    margin-inline: auto;
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 56px;
  }

  .category-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .category-row .btn {
    justify-self: start;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .photo-strip {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0.85rem;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
  }

  .photo-strip figure {
    flex: 0 0 72%;
    scroll-snap-align: start;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .stay-row,
  .stay-row--flip {
    grid-template-columns: 1fr;
  }

  .stay-row--flip .stay-row__media,
  .stay-row--flip .stay-row__body {
    order: unset;
  }

  .stay-row__media img {
    aspect-ratio: 1 / 1;
    min-height: 0;
    height: auto;
  }

  .site-footer__main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .editorial-band:nth-child(even) .editorial-band__inner {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .consent-banner {
    left: 0;
    right: 0;
    bottom: 0;
    max-width: none;
    width: 100%;
    border-left: none;
    border-right: none;
    border-bottom-width: 3px;
  }
}

@media (max-width: 560px) {
  .quotes {
    grid-template-columns: 1fr;
  }

  .consent-banner__actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }

  .container,
  .independence {
    width: min(100% - 28px, var(--max-w));
  }

  .site-footer__main,
  .site-footer__bar-inner {
    width: min(100% - 28px, var(--max-w));
  }

  .venue-card--urban img,
  .venue-card--water img {
    height: 220px;
  }

  .contact-panel {
    padding: 1.35rem 1.1rem;
  }
}
