: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;
  --dark-band: #0c0908;
  --radius: 10px;
  --radius-btn: 0px;
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
  --font-heading: 'Lucida Bright', Georgia, serif;
  --font-body: 'Lucida Sans Unicode', 'Lucida Grande', sans-serif;
  --max-w: 1040px;
  --section-pad: 68px;
  --header-h: 58px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.58;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

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

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

h1 {
  font-size: clamp(32px, 4.8vw, 50px);
}

h2 {
  font-size: clamp(22px, 3.2vw, 32px);
}

h3 {
  font-size: 1.15rem;
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

ul,
ol {
  margin: 0 0 1em;
  padding-left: 1.25em;
}

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

.kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.15rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  border: 1px solid var(--accent);
  border-radius: var(--radius-btn);
  background: var(--accent);
  color: var(--on-accent);
  text-decoration: none;
  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);
}

.text-link {
  font-weight: 700;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.text-link:hover {
  color: var(--text);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(20, 16, 16, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding: 0.35rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.3px;
  flex-shrink: 0;
}

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

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.15rem 0.85rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-toggle-bars {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
}

.independence {
  margin: 1.25rem 0 0;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.independence--home {
  margin: 1.75rem auto 0;
  max-width: var(--max-w);
  width: min(100% - 2rem, var(--max-w));
}

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

.page-intro {
  color: var(--text-muted);
  max-width: 40rem;
  margin-top: 1rem;
}

.page-hero .independence {
  margin-top: 1.25rem;
}

.hero {
  padding: 3.25rem 0 2rem;
  text-align: center;
}

.hero__intro {
  max-width: 42rem;
  margin: 0 auto 2.25rem;
  color: var(--text-muted);
}

.hero__frames {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.85rem;
}

.hero__frame {
  flex: 1 1 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
}

.hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.hero__frame:hover img {
  transform: scale(1.02);
}

.hero__frame--short {
  height: 180px;
}

.hero__frame--tall {
  height: 280px;
}

.hero__frame--mid {
  height: 220px;
}

.hero__frame figcaption {
  padding: 0.45rem 0.6rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--surface-alt);
  text-align: center;
}

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

.section--alt {
  background: var(--surface-alt);
}

.section--dark {
  background: var(--dark-band);
}

.section__head {
  margin-bottom: 1.75rem;
}

.section__head p {
  color: var(--text-muted);
  max-width: 40rem;
}

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

.category-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease;
}

.category-card:hover {
  transform: translateY(-2px);
}

.category-card__media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.category-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.category-card:hover .category-card__media img {
  transform: scale(1.02);
}

.category-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1rem 1rem 1.15rem;
  flex: 1;
}

.category-card__body h3 {
  margin: 0;
  font-size: 1.2rem;
}

.category-card__body p {
  color: var(--text-muted);
  font-size: 0.92rem;
  flex: 1;
}

.testimonials {
  display: flex;
  flex-direction: column;
}

.testimonial {
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--border);
}

.testimonial:first-child {
  padding-top: 0;
}

.testimonial:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.testimonial blockquote {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.45;
  color: var(--text);
}

.testimonial cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.approach {
  display: grid;
  grid-template-columns: minmax(180px, 0.9fr) 1.6fr;
  gap: 2rem;
  align-items: start;
}

.approach__copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  color: var(--text-muted);
}

.closing-cta {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto;
}

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

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

.amenity {
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.amenity h3 {
  margin-bottom: 0.5rem;
  color: var(--accent);
  font-size: 1rem;
}

.amenity p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.flagship-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.flagship-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease;
}

.flagship-card:hover {
  transform: translateY(-2px);
}

.flagship-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5 / 4;
}

.flagship-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.flagship-card:hover .flagship-card__media img {
  transform: scale(1.02);
}

.flagship-card__title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0.85rem 1rem;
  font-size: 1.05rem;
  background: rgba(12, 9, 8, 0.72);
  color: var(--text);
}

.flagship-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1rem;
  gap: 0.65rem;
}

.flagship-card__meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.flagship-card__body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  flex: 1;
}

.flagship-card__body .btn {
  align-self: flex-start;
  margin-top: auto;
}

.water-band {
  padding: 0 0 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.water-band:last-of-type {
  margin-bottom: 0;
  border-bottom: 0;
  padding-bottom: 0;
}

.water-band__media {
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 1.35rem;
  max-height: 420px;
}

.water-band__media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.water-band:hover .water-band__media img {
  transform: scale(1.02);
}

.water-band__content {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto;
}

.water-band__content .kicker {
  color: var(--text-muted);
}

.water-band__content p {
  color: var(--text-muted);
  margin-bottom: 1.15rem;
}

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

.stay-row {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 1.15rem;
  align-items: center;
  padding: 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease;
}

.stay-row:hover {
  transform: translateY(-2px);
}

.stay-row__thumb {
  width: 96px;
  height: 96px;
  overflow: hidden;
  border-radius: calc(var(--radius) - 2px);
  flex-shrink: 0;
}

.stay-row__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.stay-row:hover .stay-row__thumb img {
  transform: scale(1.02);
}

.stay-row__copy {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}

.stay-row__copy h2 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.stay-row__meta {
  font-size: 0.78rem;
  color: var(--accent-2);
  margin-bottom: 0.4rem;
}

.stay-row__copy p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.catalog-close {
  margin-top: 2.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  text-align: center;
}

.editorial-lead {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  line-height: 1.45;
  color: var(--text);
  margin-bottom: 2.5rem;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 2.5rem;
}

.editorial-grid section h2 {
  margin-bottom: 0.85rem;
}

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

.about-column {
  max-width: 70ch;
  margin: 0 auto;
}

.about-block {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.about-block:first-of-type {
  padding-top: 0.5rem;
}

.about-block:last-of-type {
  border-bottom: 0;
}

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

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

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

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

.form-field {
  margin-bottom: 1rem;
}

.form-field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
}

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

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

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

.form-agree {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 1.15rem 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.form-agree input {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.form-agree label a {
  color: var(--accent);
}

.form-error {
  display: none;
  margin-top: 0.4rem;
  font-size: 0.82rem;
  color: #e8a090;
}

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

.form-actions {
  margin-top: 0.5rem;
}

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

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

.contact-confirm h2 {
  margin-bottom: 0.75rem;
}

.contact-confirm p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.contact-confirm .ref {
  font-family: var(--font-heading);
  color: var(--accent);
  font-size: 1.1rem;
}

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

.legal-body h2,
.legal-body h3 {
  color: var(--text);
  margin-top: 1.75rem;
}

.legal-body a {
  color: var(--accent);
}

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

.sitemap-group h2 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.sitemap-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap-group li {
  margin-bottom: 0.55rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--border);
}

.sitemap-group a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
}

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

.site-footer {
  margin-top: 2rem;
  background: var(--surface);
  border-top: 2px solid var(--accent);
  padding: 2rem 0 1.5rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 280px;
}

.footer-brand .brand {
  margin-bottom: 0.85rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  flex: 1;
  justify-content: flex-end;
}

.footer-group h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.65rem;
  display: inline-block;
  padding-bottom: 0.3rem;
  border-bottom: 2px solid var(--accent);
}

.footer-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.85rem;
}

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

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

.footer-rule {
  height: 1px;
  background: var(--border);
  margin: 1.5rem 0 1.25rem;
  border: 0;
}

.footer-mail {
  display: block;
  margin-bottom: 1.25rem;
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  color: var(--accent);
  text-decoration: none;
}

.footer-mail:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-notice {
  color: var(--text-muted);
  font-size: 0.75rem;
  line-height: 1.45;
  margin: 0;
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-meta p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.75rem;
}

.footer-meta button {
  background: none;
  border: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  cursor: pointer;
}

.footer-meta button:hover {
  color: var(--text);
}

.consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: var(--dark-band);
  color: var(--text);
  border-top: 1px solid var(--border);
  padding: 1rem 0;
}

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

.consent__inner {
  width: min(100% - 2rem, var(--max-w));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.consent__copy {
  flex: 1;
  min-width: 0;
}

.consent__copy h2 {
  font-size: 1rem;
  margin: 0 0 0.4rem;
}

.consent__copy p {
  margin: 0 0 0.35rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.consent__copy a {
  color: var(--accent);
}

.consent__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  flex-shrink: 0;
}

.consent__actions .btn {
  white-space: nowrap;
}

.consent__link {
  background: none;
  border: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  cursor: pointer;
}

.consent__link:hover {
  color: var(--accent);
}

.consent__cats {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 0.75rem 0 0;
}

.consent__cat {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.consent__cat input:disabled {
  opacity: 0.7;
}

.consent__back {
  margin-bottom: 0.5rem;
}

@media (max-width: 1024px) {
  .amenities {
    grid-template-columns: repeat(2, 1fr);
  }

  .approach {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

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

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

  .nav-links a {
    padding: 0.7rem 0.25rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-links a[aria-current="page"] {
    border-bottom-color: var(--accent);
  }

  .category-grid,
  .flagship-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 768px) {
  .hero__frames {
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.35rem;
  }

  .hero__frame {
    flex: 0 0 72%;
    scroll-snap-align: start;
  }

  .hero__frame--short,
  .hero__frame--tall,
  .hero__frame--mid {
    height: 220px;
  }

  .stay-row {
    grid-template-columns: 88px 1fr;
  }

  .stay-row .btn {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .stay-row__copy {
    text-align: left;
    align-items: flex-start;
  }

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

  .consent__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .water-band__media img {
    height: 280px;
  }
}

@media (max-width: 560px) {
  .category-grid,
  .flagship-grid,
  .amenities {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.25rem;
  }

  .section {
    padding: 3.25rem 0;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 1.25rem, var(--max-w));
  }

  .hero__frame {
    flex-basis: 85%;
  }

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

  .stay-row__thumb {
    width: 100%;
    height: 180px;
  }

  .contact-panel {
    padding: 1.15rem;
  }

  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}
