:root {
  --color-bg: #ffffff;
  --color-surface: #f7f7f8;
  --color-surface-2: #ededef;
  --color-accent: #1a56db;
  --color-accent-hover: #1342b2;
  --color-accent-2: #c9a84c;
  --color-text: #111827;
  --color-text-muted: #6b7280;
  --color-border: rgba(0,0,0,0.09);
  --color-nav-bg: rgba(255,255,255,0.92);
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --transition: 0.25s ease;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow: 0 4px 24px rgba(0,0,0,0.45);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.6);
  --radius: 0.5rem;
  --radius-lg: 1rem;
  --container-max: 1280px;
  --container-px: clamp(1.25rem, 5vw, 3rem);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

/* =====================
   SKIP LINK
===================== */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-accent);
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0 0 var(--radius) 0;
  z-index: 9999;
  transition: left var(--transition);
}

.skip-link:focus {
  left: 1rem;
  z-index: 9999;
}

/* =====================
   FOCUS VISIBLE
===================== */
:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
}

/* =====================
   LAYOUT
===================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
}

.section {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background-color: var(--color-bg);
}

.section--alt {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background-color: var(--color-surface);
}

.section__header {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.25rem);
  letter-spacing: 0.03em;
  color: var(--color-text);
  line-height: 1.1;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.section__subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* =====================
   NAVIGATION
===================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: var(--color-nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition), box-shadow var(--transition);
}

.nav--scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
}

.nav__brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 1rem var(--container-px);
}

.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo img {
  height: 48px;
  width: auto;
  transition: opacity var(--transition);
}

.nav__logo:hover img {
  opacity: 0.85;
}

.nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius);
  transition: background var(--transition);
  z-index: 1100;
}

.nav__toggle:hover {
  background: var(--color-surface-2);
}

.nav__toggle-line {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}

.nav--open .nav__toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav--open .nav__toggle-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav--open .nav__toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.5rem;
}

.nav--open .nav__menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem var(--container-px) 1.5rem;
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  gap: 0;
}

.nav__item {
  list-style: none;
}

.nav--open .nav__item {
  border-bottom: 1px solid var(--color-border);
}

.nav--open .nav__item:last-child {
  border-bottom: none;
}

.nav__link {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
  padding: 0.5rem 0;
  transition: color var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent-2);
  transition: width var(--transition);
}

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

.nav__link:hover::after {
  width: 100%;
}

.nav__link--active {
  color: var(--color-accent-2);
}

.nav__link--active::after {
  width: 100%;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-2);
  color: #111827;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.nav__cta:hover {
  background: #b8952e;
  color: #111827;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.4);
}

.nav--open .nav__cta {
  margin-top: 0.75rem;
  width: 100%;
  padding: 0.75rem 1.25rem;
}

@media (min-width: 768px) {
  .nav__menu {
    display: flex;
    flex-direction: row;
    position: static;
    background: none;
    padding: 0;
    align-items: center;
    gap: 0.25rem;
  }

  .nav__item {
    border-bottom: none;
  }

  .nav__link {
    padding: 0.5rem 0.75rem;
  }

  .nav__link::after {
    bottom: -2px;
  }

  .nav__toggle {
    display: none;
  }

  .nav--open .nav__menu {
    flex-direction: row;
    position: static;
    background: none;
    padding: 0;
    box-shadow: none;
    border-bottom: none;
  }
}

/* =====================
   HERO
===================== */
.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #111827 0%, #1f2d4e 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(17, 24, 39, 0.5) 0%,
    rgba(17, 24, 39, 0.3) 40%,
    rgba(17, 24, 39, 0.75) 100%
  );
  z-index: 1;
}

.hero > * {
  position: relative;
  z-index: 2;
}

.hero__content {
  width: 100%;
  max-width: var(--container-max);
  padding: 7rem var(--container-px) 4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--color-accent-2);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.375rem 1rem;
  border-radius: 999px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 10vw, 7rem);
  letter-spacing: 0.02em;
  line-height: 1.0;
  color: #ffffff;
  text-transform: uppercase;
  max-width: 14ch;
}

.hero__title span {
  color: var(--color-accent-2);
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  max-width: 52ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  padding-top: 0.5rem;
}

/* =====================
   BUTTONS
===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}

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

.btn--primary {
  background: var(--color-accent-2);
  color: #111827;
  border-color: var(--color-accent-2);
}

.btn--primary:hover {
  background: #b8952e;
  border-color: #b8952e;
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.45);
  color: #111827;
}

.btn--ghost {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

/* =====================
   SERVICES
===================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(201, 168, 76, 0.3);
}

.service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: var(--radius);
  color: var(--color-accent-2);
  font-size: 1.375rem;
  flex-shrink: 0;
  transition: background var(--transition), box-shadow var(--transition);
}

.service-card:hover .service-card__icon {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.25), rgba(201, 168, 76, 0.1));
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.2);
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  letter-spacing: 0.04em;
  color: var(--color-text);
  text-transform: uppercase;
  line-height: 1.2;
}

.service-card__text {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  flex: 1;
}

/* =====================
   CLIENTS
===================== */
.clients-section {
  padding: clamp(2rem, 5vw, 4rem) 0;
  background: var(--color-surface-2);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.clients-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: 0 var(--container-px);
}

.client-item {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.55;
  filter: grayscale(100%);
  transition: opacity var(--transition), filter var(--transition), transform var(--transition);
  padding: 0.5rem;
}

.client-item:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}

.client-item img {
  height: 36px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

/* =====================
   POSTS
===================== */
.posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.post-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-left-color var(--transition), box-shadow var(--transition), transform var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.post-card:hover {
  border-left-color: var(--color-accent-2);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.post-card__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform var(--transition);
}

.post-card:hover .post-card__img {
  transform: scale(1.03);
}

.post-card__body {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
}

.post-card__date {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.post-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  letter-spacing: 0.03em;
  color: var(--color-text);
  text-transform: uppercase;
  line-height: 1.25;
  transition: color var(--transition);
}

.post-card:hover .post-card__title {
  color: var(--color-accent-2);
}

.post-card__excerpt {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-accent-2);
  margin-top: 0.5rem;
  transition: gap var(--transition), color var(--transition);
}

.post-card__link:hover {
  gap: 0.625rem;
  color: #b8952e;
}

/* =====================
   SINGLE POST
===================== */
.post-header {
  background: linear-gradient(135deg, #111827 0%, #1f2d4e 100%);
  padding: clamp(6rem, 12vw, 10rem) var(--container-px) clamp(3rem, 6vw, 5rem);
  text-align: center;
}

.post-header__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--color-accent-2);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.375rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.post-header__title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  letter-spacing: 0.03em;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.05;
  max-width: 20ch;
  margin: 0 auto 1.25rem;
}

.post-header__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
}

.post-header__meta span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.prose {
  max-width: 72ch;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 5rem) var(--container-px);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.8;
  color: var(--color-text);
}

.prose h1,
.prose h2,
.prose h3,
.prose h4,
.prose h5,
.prose h6 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text);
  line-height: 1.2;
  margin-top: 2em;
  margin-bottom: 0.75em;
}

.prose h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
.prose h3 { font-size: clamp(1.25rem, 2.5vw, 1.625rem); }
.prose h4 { font-size: 1.25rem; }

.prose p {
  margin-bottom: 1.5em;
}

.prose a {
  color: var(--color-accent-2);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.prose a:hover {
  color: #b8952e;
}

.prose ul,
.prose ol {
  margin-bottom: 1.5em;
  padding-left: 1.75rem;
}

.prose li {
  margin-bottom: 0.5em;
  list-style: disc;
}

.prose ol li {
  list-style: decimal;
}

.prose blockquote {
  border-left: 4px solid var(--color-accent-2);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--color-surface);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--color-text-muted);
  font-style: italic;
}

.prose blockquote p {
  margin-bottom: 0;
}

.prose code {
  background: var(--color-surface-2);
  padding: 0.2em 0.45em;
  border-radius: 4px;
  font-size: 0.875em;
  font-family: 'Courier New', monospace;
}

.prose pre {
  background: #1e2939;
  color: #e2e8f0;
  padding: 1.5rem;
  border-radius: var(--radius);
  overflow-x: auto;
  margin-bottom: 1.5em;
}

.prose pre code {
  background: none;
  padding: 0;
  font-size: 0.875em;
  color: inherit;
}

.prose img {
  border-radius: var(--radius);
  margin: 2em 0;
  box-shadow: var(--shadow-sm);
}

.prose hr {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 2.5em 0;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5em;
  font-size: 0.9375rem;
}

.prose th,
.prose td {
  text-align: left;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
}

.prose th {
  background: var(--color-surface);
  font-weight: 600;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-accent-2);
  padding: 0.5rem 0;
  transition: gap var(--transition), color var(--transition);
  margin-bottom: 2rem;
}

.back-link:hover {
  gap: 0.75rem;
  color: #b8952e;
}

/* =====================
   LIST / PAGE HEADER
===================== */
.page-header {
  background: linear-gradient(135deg, #111827 0%, #1f2d4e 100%);
  padding: clamp(6rem, 12vw, 9rem) var(--container-px) clamp(3rem, 6vw, 5rem);
  text-align: center;
}

.page-header__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 7vw, 5rem);
  letter-spacing: 0.04em;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.page-header__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  max-width: 56ch;
  margin: 0 auto;
}

/* =====================
   FOOTER
===================== */
.site-footer {
  background: #0a0e17;
  color: rgba(255, 255, 255, 0.75);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-top: clamp(3rem, 7vw, 5rem);
  padding-bottom: clamp(3rem, 7vw, 5rem);
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
  }
}

/* ── Footer inner styles ─────────────────────────────────────────────────── */
.footer-brand__name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.6rem;
}
.footer-brand__tagline {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  max-width: 36ch;
}
.footer-nav__title {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: #c9a84c;
  margin-bottom: 1rem;
}
.footer-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-nav__link {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color 0.2s;
  text-decoration: none;
}
.footer-nav__link:hover {
  color: #c9a84c;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.25rem 0;
}
.footer-bottom__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

/* ══ Site-specific overrides — no !important, higher specificity ══ */

/* Nav: black fixed bar */
body .nav {
  background: rgba(0, 0, 0, 0.95);
}
body .nav.nav--scrolled {
  background: rgba(0, 0, 0, 0.98);
}
body .nav__link {
  color: #ffffff;
}
body .nav__link:hover {
  color: #d4af37;
}
body .nav__toggle-line {
  background-color: #ffffff;
}
body .nav__toggle {
  background: transparent;
}
body .nav__toggle:hover {
  background: rgba(255, 255, 255, 0.08);
}
body .nav--open .nav__toggle {
  background: transparent;
}

/* Desktop: inline nav links */
@media (min-width: 769px) {
  body .nav__menu {
    display: flex;
    flex-direction: row;
    position: static;
    background: none;
    padding: 0;
    gap: 2rem;
  }
  body .nav__toggle {
    display: none;
  }
}

/* Mobile: hide nav ELEMENT (not just menu) so toggle sits flush right */
@media (max-width: 768px) {
  body .nav__toggle {
    display: flex;
    margin-left: auto;
    order: 2;
  }
  body .nav__brand > nav {
    order: 3;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.98);
    z-index: 1200;
  }
  body .nav--open .nav__brand > nav {
    display: block;
  }
  /* nav__menu is inside the positioned nav container — keep it static */
  body .nav--open .nav__brand > nav .nav__menu {
    display: flex;
    flex-direction: column;
    position: static;
    background: none;
    box-shadow: none;
    border-bottom: none;
    padding: 0.5rem 1.25rem 1.5rem;
    gap: 0;
  }
  body .nav--open .nav__link {
    color: #ffffff;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  body .nav--open .nav__item:last-child .nav__link {
    border-bottom: none;
  }
}

/* Features strip: dark cards with gold text */
body .clients-section {
  background: #0a0f1e;
  padding: 4rem 0;
}
body .clients-section .section__title {
  color: #ffffff;
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 2rem;
}
body .clients-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: unset;
  padding: 0 var(--container-padding);
}
body .client-item {
  padding: 1.5rem 1rem;
  background: #1a1f35;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #d4af37;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.4;
}

/* Hero: correct class names */
body .hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
body .hero__subtitle {
  font-size: 1.15rem;
  max-width: 540px;
  line-height: 1.65;
  opacity: 0.9;
  color: #ffffff;
}
body .btn--ghost {
  border: 2px solid rgba(255, 255, 255, 0.75);
  color: #ffffff;
  background: transparent;
}
body .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Facility section: side-by-side on desktop */
@media (min-width: 769px) {
  body .facility-section .facility-section__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
  body .facility-section__photo img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 12px;
  }
}

/* Mobile responsive fixes */
@media (max-width: 768px) {
  body .clients-strip {
    grid-template-columns: 1fr 1fr;
  }
  body .hero__actions {
    flex-direction: column;
  }
  body .hero__actions .btn {
    width: 100%;
    text-align: center;
  }
}

/* ── Internal page hero banner ─────────────────────────────────────────────── */
body .page-hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}
body .page-hero--gradient {
  background: linear-gradient(135deg, #0a0f1e 0%, #1a1f35 60%, #0d1224 100%);
}
body .page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.72) 100%
  );
}
body .page-hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: 4rem;
  padding-top: 8rem;
}
body .page-hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 0.75rem;
}
body .page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 1.1rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}
body .page-hero__subtitle {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: rgba(255,255,255,0.88);
  max-width: 680px;
  line-height: 1.65;
}

/* ── Prose / single page body ──────────────────────────────────────────────── */
body .page-body {
  background: #0a0f1e;
  padding: 0 0 5rem;
}
body .page-body .prose {
  padding-top: 2.5rem;
  padding-bottom: 0;
  color: rgba(255,255,255,0.88);
  max-width: 860px;
}
body .page-body .prose h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 1.1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(212,175,55,0.3);
}
body .page-body .prose h3 {
  font-size: clamp(1.15rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: #d4af37;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
body .page-body .prose p {
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}
body .page-body .prose ul,
body .page-body .prose ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
body .page-body .prose li {
  line-height: 1.75;
  margin-bottom: 0.5rem;
  color: rgba(255,255,255,0.82);
}
body .page-body .prose strong {
  color: #ffffff;
  font-weight: 700;
}
body .page-body .prose a {
  color: #d4af37;
  text-decoration: underline;
  text-decoration-color: rgba(212,175,55,0.4);
}
body .page-body .prose a:hover {
  color: #f0cc6a;
}
body .page-body__back {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
body .back-link {
  color: #d4af37;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}
body .back-link:hover {
  color: #f0cc6a;
}

/* ── Scroll state nav ──────────────────────────────────────────────────────── */
body .nav--scrolled {
  background: rgba(10,12,18,0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

/* ── Enhanced CTA buttons ──────────────────────────────────────────────────── */
body .btn--primary {
  background: #c9a84c;
  color: #0a0e1a;
  font-weight: 700;
  border: 2px solid #c9a84c;
  padding: 0.9rem 2.25rem;
  font-size: 1rem;
  border-radius: 4px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
body .btn--primary:hover {
  background: #f0cc6a;
  border-color: #f0cc6a;
  color: #0a0e1a;
}
body .btn--ghost {
  background: transparent;
  color: #ffffff;
  font-weight: 700;
  border: 2px solid rgba(255,255,255,0.65);
  padding: 0.9rem 2.25rem;
  font-size: 1rem;
  border-radius: 4px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
body .btn--ghost:hover {
  border-color: #ffffff;
  background: rgba(255,255,255,0.08);
}

/* ── Stronger page hero overlay ────────────────────────────────────────────── */
body .page-hero__overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.62) 100%);
}

/* ── Larger page hero title ────────────────────────────────────────────────── */
body .page-hero__title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
}
body .page-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 600px;
  opacity: 0.9;
  line-height: 1.6;
  margin-top: 0.75rem;
}

/* ── Mobile hero height reduction ─────────────────────────────────────────── */
@media (max-width: 768px) {
  body .page-hero {
    min-height: 42vh;
    background-position: center 20%;
  }
}



/* ══════════════════════════════════════════════════════════════════════════════
   SITE QUALITY OVERRIDES v2
   Targeted fixes for all known issues — single comprehensive section
   ════════════════════════════════════════════════════════════════════════════ */

/* ── Hero section ────────────────────────────────────────────────────────── */
body .hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}
body .hero__content {
  position: relative;
  z-index: 2;
  padding-top: 5rem;
  padding-bottom: 3rem;
}
body .hero__eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c9a84c;
  border: 1px solid rgba(201,168,76,0.55);
  padding: 0.3em 1.1em;
  border-radius: 999px;
  margin-bottom: 1.4rem;
}
body .hero__title {
  font-size: clamp(3.2rem, 7.5vw, 6.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: #ffffff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}
body .hero__subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  max-width: 52ch;
  line-height: 1.65;
  color: rgba(255,255,255,0.88);
  margin-top: 1.25rem;
}
body .hero__actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
  align-items: center;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
body .btn--primary {
  background: #c9a84c;
  color: #0a0e1a;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: 2px solid #c9a84c;
  border-radius: 4px;
  transition: background 0.2s, border-color 0.2s;
}
body .btn--primary:hover {
  background: #d4b860;
  border-color: #d4b860;
}
body .btn--ghost {
  background: transparent;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 4px;
  transition: border-color 0.2s, background 0.2s;
}
body .btn--ghost:hover {
  border-color: #ffffff;
  background: rgba(255,255,255,0.07);
}

/* ── Internal page hero ──────────────────────────────────────────────────── */
body .page-hero {
  min-height: 68vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3.5rem;
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
}
body .page-hero__overlay {
  background: linear-gradient(to top, rgba(5,10,24,0.85) 35%, rgba(5,10,24,0.28) 100%);
}
body .page-hero__content {
  position: relative;
  z-index: 2;
}
body .page-hero__eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 1rem;
}
body .page-hero__title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
body .page-hero__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  max-width: 54ch;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  margin-top: 1rem;
}

/* ── Page body & prose ───────────────────────────────────────────────────── */
body .page-body {
  background: #0a0f1e;
  padding: 4rem 0 5.5rem;
}
body .page-body .prose {
  max-width: 800px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.88);
  padding-top: 0;
  padding-bottom: 0;
}
body .page-body .prose h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #c9a84c;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding-bottom: 0.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
body .page-body .prose h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 700;
  color: #ffffff;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
body .page-body .prose p {
  margin-bottom: 1.4rem;
  color: rgba(255,255,255,0.87);
}
body .page-body .prose ul {
  margin-bottom: 1.4rem;
}
body .page-body .prose ul li {
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.45rem;
}

/* ── Navigation ─────────────────────────────────────────────────────────── */
body .nav--scrolled {
  background: rgba(5,10,24,0.97);
  backdrop-filter: blur(10px);
}
body .nav__link {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
body .site-footer {
  border-top: 1px solid rgba(201,168,76,0.28);
  padding-top: 3rem;
}
body .footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.15);
  padding-top: 1.25rem;
  margin-top: 2rem;
}
body .footer-bottom__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.04em;
  text-align: center;
}

/* ── Mobile overrides ────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  body .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
  body .btn--primary,
  body .btn--ghost {
    width: 100%;
    text-align: center;
    padding: 1rem 1.5rem;
  }
  body .page-hero {
    min-height: 52vh;
    background-position: center 40%;
    padding-bottom: 2.5rem;
  }
  body .page-hero__title {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
  }
}


/* ── rowboats refine pass 1 (score was 78) ── */
/* pass 1 */
body .hero__title{font-size:clamp(2.8rem,6vw,5.5rem);line-height:1.05;letter-spacing:-0.02em}body .hero__subtitle{font-size:clamp(1rem,1.8vw,1.25rem);max-width:56ch;line-height:1.6;opacity:0.9}body .btn--primary{background:#c9a84c;color:#000;font-weight:700;letter-spacing:0.08em;padding:0.85em 2em;border-radius:4px}body .btn--ghost{border:2px solid rgba(255,255,255,0.7);color:#fff;font-weight:600;letter-spacing:0.08em;padding:0.8em 1.9em;border-radius:4px}body .hero__eyebrow{font-size:0.72rem;letter-spacing:0.18em;color:#c9a84c;border:1px solid rgba(201,168,76,0.45);padding:0.3em 0.9em;border-radius:20px;display:inline-block;margin-bottom:1.2rem}body .page-hero__title{font-size:clamp(3rem,7vw,6rem);letter-spacing:-0.01em;line-height:1}body .page-hero__subtitle{font-size:1.1rem;max-width:52ch;opacity:0.85;line-height:1.65}body .nav__link{letter-spacing:0.1em;font-size:0.82rem;font-weight:600}body .hero__actions{display:flex;gap:1rem;flex-wrap:wrap;align-items:center;margin-top:2rem}

/* ══════════════════════════════════════════════════════════════════════════════
   NEW SECTIONS: Stats, Testimonials, CTA Banner, Contact Form
   ════════════════════════════════════════════════════════════════════════════ */

/* ── Stats section ───────────────────────────────────────────────────────── */
.stats-section {
  background: #060b1c;
  padding: 3rem 0;
  border-top: 1px solid rgba(201,168,76,0.18);
  border-bottom: 1px solid rgba(201,168,76,0.18);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item__number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: #c9a84c;
  line-height: 1;
  margin: 0;
}
.stat-item__label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 0.5rem;
}
@media (max-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
}

/* ── Testimonials section ─────────────────────────────────────────────────── */
.testimonials-section {
  background: #080e20;
  padding: 5rem 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 0.5rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.testimonial-card__stars {
  color: #c9a84c;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.testimonial-card__quote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  font-style: italic;
  flex: 1;
  margin-bottom: 1.5rem;
}
.testimonial-card__author {
  font-weight: 700;
  color: #ffffff;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}
.testimonial-card__role {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
}
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; max-width: 540px; margin-left: auto; margin-right: auto; }
}

/* ── CTA Banner ──────────────────────────────────────────────────────────── */
.cta-banner {
  position: relative;
  background-color: #0d1527;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 5rem 0;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5,10,24,0.72);
  z-index: 0;
}
.cta-banner__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-banner__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.cta-banner__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.7);
  max-width: 52ch;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

/* ── Contact page layout ──────────────────────────────────────────────────── */
.contact-section {
  background: #0a0f1e;
  padding: 5rem 0 6rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 1rem;
}
.contact-info__intro {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
  max-width: 36ch;
}
.contact-details {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.contact-details__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
}
.contact-details__icon {
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-details__link {
  color: #c9a84c;
  text-decoration: none;
}
.contact-details__link:hover {
  text-decoration: underline;
}
.contact-hours {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
}
.contact-hours__title {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 0.75rem;
}
.contact-hours p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.25rem;
  line-height: 1.5;
}
.contact-form__group {
  margin-bottom: 1.4rem;
}
.contact-form__label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.45rem;
  font-weight: 600;
}
.contact-form__input {
  display: block;
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: 4px;
  padding: 0.85rem 1rem;
  color: #ffffff;
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.contact-form__input:focus {
  border-color: #c9a84c;
  outline: none;
  background: rgba(255,255,255,0.07);
}
.contact-form__input::placeholder {
  color: rgba(255,255,255,0.25);
}
.contact-form__select {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a84c' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}
.contact-form__select option {
  background: #0f1828;
  color: #ffffff;
}
.contact-form__textarea {
  min-height: 130px;
  resize: vertical;
}
.contact-form__submit {
  width: 100%;
  font-size: 0.9rem;
  padding: 1.1rem;
  cursor: pointer;
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-info__intro { max-width: 100%; }
}


/* ── rowboats refine pass 1 (score was 72) ── */
/* pass 1 */
body .hero__title{font-size:clamp(2.8rem,6vw,5.5rem);line-height:1.05;letter-spacing:-0.02em}
body .hero__subtitle{font-size:clamp(1rem,1.8vw,1.25rem);max-width:55ch;opacity:0.9}
body .btn--primary{background:#c9a84c;color:#000;font-weight:700;letter-spacing:0.08em;padding:0.85em 2em;border:2px solid #c9a84c}
body .btn--ghost{border:2px solid rgba(255,255,255,0.7);color:#fff;padding:0.85em 2em;letter-spacing:0.08em}
body .page-hero__title{font-size:clamp(3rem,7vw,6rem);letter-spacing:-0.02em;line-height:1}
body .page-hero__overlay{background:linear-gradient(to right,rgba(0,0,0,0.72) 45%,rgba(0,0,0,0.25) 100%)}
body .hero__eyebrow{letter-spacing:0.18em;font-size:0.72rem;color:#c9a84c;text-transform:uppercase;border:1px solid rgba(201,168,76,0.4);padding:0.3em 0.9em;display:inline-block;border-radius:2px}
body .nav__link{letter-spacing:0.1em;font-size:0.8rem}


/* ── rowboats refine pass 2 (score was 72) ── */
/* pass 2 */
body .hero__eyebrow{display:inline-block;border:1px solid #c9a84c;color:#c9a84c;padding:4px 12px;font-size:.7rem;letter-spacing:.15em;text-transform:uppercase;margin-bottom:1rem}
body .page-hero__eyebrow{display:inline-block;border:1px solid #c9a84c;color:#c9a84c;padding:4px 12px;font-size:.7rem;letter-spacing:.15em;text-transform:uppercase;margin-bottom:1rem}
body .page-hero__subtitle{font-size:1.1rem;max-width:560px;line-height:1.6;opacity:.9}
body .hero__subtitle{font-size:1.15rem;max-width:580px;line-height:1.65;opacity:.92}
body .nav__link{font-size:.72rem;letter-spacing:.12em;text-transform:uppercase;font-weight:600}
body .nav--scrolled{background:rgba(5,10,20,.95);backdrop-filter:blur(8px)}
body .page-hero{min-height:55vh;display:flex;align-items:flex-end}
body .page-hero__content{padding-bottom:3rem}
body .page-hero__title{font-size:clamp(2.8rem,6vw,5rem);line-height:1;letter-spacing:-.01em}


/* ── rowboats refine pass 3 (score was 74) ── */
/* pass 3 */
body .hero__title{font-size:clamp(2.8rem,6vw,5.5rem);line-height:1.05;letter-spacing:-0.02em}
body .hero__subtitle{font-size:clamp(1rem,1.8vw,1.25rem);max-width:52ch;line-height:1.6;opacity:0.9}
body .hero__actions{display:flex;flex-wrap:wrap;gap:1rem;margin-top:2rem}
body .btn--primary{background:#c9a84c;color:#000;font-weight:700;letter-spacing:0.1em;padding:0.85rem 2rem;border:2px solid #c9a84c;text-transform:uppercase;font-size:0.8rem}
body .btn--ghost{background:transparent;color:#fff;border:2px solid #fff;font-weight:700;letter-spacing:0.1em;padding:0.85rem 2rem;text-transform:uppercase;font-size:0.8rem}
body .page-hero__title{font-size:clamp(2.5rem,5vw,4.5rem);line-height:1.05;letter-spacing:-0.02em}
body .page-hero__subtitle{font-size:1.1rem;max-width:55ch;line-height:1.65;opacity:0.85}
body .page-hero__overlay{background:linear-gradient(to right,rgba(0,0,0,0.72) 45%,rgba(0,0,0,0.25) 100%)}
body .prose h2{color:#c9a84c;font-size:clamp(1.4rem,2.5vw,2rem);letter-spacing:0.04em;margin-bottom:0.5rem}
body .prose h3{color:#fff;font-size:1.1rem;letter-spacing:0.06em;text-transform:uppercase;margin-top:2rem}


/* ── rowboats refine pass 4 (score was 74) ── */
/* pass 4 */
body .hero__eyebrow{border:1px solid #c9a84c;color:#c9a84c;padding:4px 12px;font-size:.7rem;letter-spacing:.15em;display:inline-block;margin-bottom:1.25rem}
body .page-hero{min-height:420px;display:flex;align-items:flex-end}
body .page-hero__content{padding-bottom:2.5rem}
body .page-hero__eyebrow{border:1px solid #c9a84c;color:#c9a84c;padding:3px 10px;font-size:.68rem;letter-spacing:.12em;display:inline-block;margin-bottom:1rem}
body .page-hero__title{font-size:clamp(2.2rem,5vw,3.8rem);line-height:1.05;margin-top:.5rem}
body .page-hero__subtitle{max-width:52ch;opacity:.88;line-height:1.6;margin-top:.75rem}
body .page-hero__overlay{background:linear-gradient(to top,rgba(5,10,24,.82) 38%,rgba(5,10,24,.38) 100%)}
body .prose h2{color:#c9a84c;font-size:1.05rem;letter-spacing:.1em;text-transform:uppercase;margin-bottom:.5rem}
body .nav--scrolled{background:rgba(5,10,24,.96);backdrop-filter:blur(6px)}
body .btn--ghost{border-width:1.5px}


/* ── rowboats refine pass 5 (score was 74) ── */
/* pass 5 */
body .hero__eyebrow{letter-spacing:.2em;font-size:.7rem;padding:.35em .75em;border:1px solid #c9a84c;color:#c9a84c;text-transform:uppercase;display:inline-block}
body .hero__subtitle{font-size:1.15rem;line-height:1.7;max-width:560px;opacity:.92}
body .btn--ghost{border:2px solid rgba(255,255,255,.75);color:#fff;padding:.75em 1.6em;letter-spacing:.08em;font-size:.8rem}
body .btn--primary{background:#c9a84c;color:#000;padding:.75em 1.6em;letter-spacing:.08em;font-size:.8rem;font-weight:700}
body .page-hero__eyebrow{letter-spacing:.2em;font-size:.65rem;padding:.3em .7em;border:1px solid #c9a84c;color:#c9a84c;text-transform:uppercase;display:inline-block;margin-bottom:1rem}
body .prose h3{letter-spacing:.06em;font-size:1rem;text-transform:uppercase;color:#fff;margin-top:2rem;margin-bottom:.5rem}
body .page-hero{min-height:42vh}
body .page-hero__subtitle{font-size:1.05rem;line-height:1.65;max-width:520px;opacity:.88}


/* ── rowboats refine pass 6 (score was 74) ── */
/* pass 6 */
body .page-hero{min-height:420px;display:flex;align-items:flex-end}
body .page-hero__content{padding-bottom:2.5rem;padding-left:2rem}
body .page-hero__title{font-size:clamp(2.2rem,5vw,3.5rem);line-height:1.1;margin-bottom:0.5rem}
body .page-hero__subtitle{max-width:560px;opacity:0.88;font-size:1.05rem;line-height:1.6}
body .page-hero__overlay{background:linear-gradient(to top,rgba(5,10,20,0.82) 40%,rgba(5,10,20,0.35) 100%)}
body .prose{max-width:72ch;color:rgba(255,255,255,0.87)}
body .prose h2{font-size:clamp(1.4rem,3vw,2rem);color:#c9a84c;margin-top:2.5rem;margin-bottom:0.75rem}
body .page-body{padding-top:3.5rem;padding-bottom:4rem}
body .nav--scrolled{background:rgba(5,10,20,0.97);box-shadow:0 2px 16px rgba(0,0,0,0.5)}
body .nav__link{font-size:0.78rem;letter-spacing:0.12em}


/* ── rowboats refine pass 7 (score was 72) ── */
/* pass 7 */
body .hero__title{font-size:clamp(2.8rem,6vw,5.5rem);line-height:1.05;letter-spacing:-0.01em}
body .hero__subtitle{font-size:clamp(1rem,1.8vw,1.25rem);max-width:52ch;opacity:1;color:#e8e8e8}
body .btn--ghost{border:2px solid #ffffff;color:#ffffff;background:transparent}
body .btn--ghost:hover{background:#ffffff;color:#0a0e1a}
body .btn--primary{background:#c9a84c;color:#0a0e1a;font-weight:700;border:2px solid #c9a84c}
body .page-hero{min-height:52vh;display:flex;align-items:flex-end;padding-bottom:3rem}
body .page-hero__title{font-size:clamp(2.2rem,5vw,4rem);line-height:1.08;letter-spacing:-0.01em}
body .page-hero__subtitle{font-size:1.1rem;color:#e0e0e0;max-width:55ch}
body .prose h2{font-size:clamp(1.4rem,2.5vw,1.9rem);color:#c9a84c;letter-spacing:0.04em;text-transform:uppercase}
body .prose h3{font-size:1.1rem;color:#ffffff;letter-spacing:0.06em;text-transform:uppercase;margin-top:1.8rem}
body .prose p{color:#d4d4d4;line-height:1.75}
body .nav__link{font-size:0.8rem;letter-spacing:0.12em;color:#ffffff}
body .nav--scrolled{background:rgba(10,14,26,0.97);backdrop-filter:blur(8px)}


/* ── rowboats refine pass 8 (score was 72) ── */
/* pass 8 */
body .hero__title{font-size:clamp(2.8rem,6vw,5rem);line-height:1.05;letter-spacing:-0.02em}
body .page-hero{min-height:420px;display:flex;align-items:flex-end}
body .page-hero__content{padding-bottom:3rem}
body .page-hero__title{font-size:clamp(2.2rem,5vw,3.8rem);font-weight:900;line-height:1.05}
body .page-hero__eyebrow{display:inline-block;border:1px solid #c9a84c;color:#c9a84c;font-size:0.7rem;letter-spacing:0.15em;padding:0.25rem 0.6rem;margin-bottom:1rem}
body .btn--primary{background:#c9a84c;color:#000;font-weight:700;letter-spacing:0.1em;border:2px solid #c9a84c}
body .btn--ghost{border:2px solid rgba(255,255,255,0.7);color:#fff;font-weight:600;letter-spacing:0.1em}
body .nav__link{letter-spacing:0.12em;font-size:0.78rem;font-weight:600}
body .prose h2{color:#c9a84c;font-size:clamp(1rem,2vw,1.15rem);letter-spacing:0.08em}
body .facility-section__text{padding:2.5rem}


/* ── rowboats refine pass 9 (score was 72) ── */
/* pass 9 */
body .hero__title{font-size:clamp(2.8rem,6vw,5rem);line-height:1.05;letter-spacing:-0.02em}
body .hero__subtitle{font-size:clamp(1rem,2vw,1.25rem);max-width:55ch;opacity:0.92}
body .page-hero{min-height:42vh;display:flex;align-items:flex-end}
body .page-hero__title{font-size:clamp(2.2rem,5vw,3.8rem);line-height:1.08;letter-spacing:-0.01em}
body .page-hero__subtitle{font-size:1.05rem;max-width:50ch;opacity:0.88}
body .page-body .prose h2{color:#c9a84c;font-size:1.35rem;letter-spacing:0.04em;text-transform:uppercase}
body .page-body .prose h3{color:#e8e8e8;font-size:1.05rem;letter-spacing:0.06em;text-transform:uppercase;border-left:3px solid #c9a84c;padding-left:0.75rem}
body .facility-section__inner{gap:3rem;align-items:center}
body .nav__link{font-size:0.8rem;letter-spacing:0.1em;opacity:0.85}
body .nav__link:hover{opacity:1;color:#c9a84c}
body .footer-brand__name{color:#c9a84c;font-size:1.1rem}
body .footer-nav__title{color:#c9a84c;font-size:0.75rem;letter-spacing:0.1em}


/* ── rowboats refine pass 10 (score was 74) ── */
/* pass 10 */
body .hero__title{font-size:clamp(2.8rem,6vw,5rem);line-height:1.05;letter-spacing:-0.02em}body .hero__subtitle{font-size:clamp(1rem,2vw,1.25rem);max-width:55ch;opacity:0.92}body .btn--primary{background:#c9a84c;color:#0a0a0f;font-weight:700;letter-spacing:0.08em;padding:0.85rem 2rem;border:2px solid #c9a84c}body .btn--ghost{border:2px solid rgba(255,255,255,0.7);color:#fff;padding:0.85rem 2rem;letter-spacing:0.08em}body .btn--ghost:hover{border-color:#c9a84c;color:#c9a84c}body .nav--scrolled{background:rgba(8,8,18,0.97);backdrop-filter:blur(12px)}body .page-hero__title{font-size:clamp(2.2rem,5vw,4rem);font-weight:900;letter-spacing:-0.01em}body .page-hero__subtitle{font-size:1.1rem;opacity:0.88;max-width:52ch}body .prose{font-size:1.05rem;line-height:1.8;color:rgba(255,255,255,0.87)}body .site-footer{border-top:1px solid rgba(201,168,76,0.25);padding-top:3rem}body .footer-brand__name{color:#c9a84c;font-weight:700}body .footer-nav__title{color:#c9a84c;letter-spacing:0.1em;font-size:0.75rem}


/* ── rowboats refine pass 11 (score was 74) ── */
/* pass 11 */
body .page-hero{min-height:420px}body .page-hero__overlay{background:linear-gradient(to right,rgba(5,10,20,.82) 55%,rgba(5,10,20,.38) 100%)}body .page-hero__title{font-size:clamp(2.4rem,5vw,3.8rem);letter-spacing:-.01em;line-height:1.05}body .page-hero__eyebrow{border:1px solid #c9a84c;color:#c9a84c;font-size:.7rem;letter-spacing:.18em;padding:4px 10px;display:inline-block;margin-bottom:1rem}body .page-hero__subtitle{font-size:1.05rem;opacity:.88;max-width:56ch;line-height:1.65}body .prose h2,body .prose h3{color:#c9a84c;letter-spacing:.04em}body .prose h2{font-size:clamp(1.1rem,2vw,1.3rem)}body .prose strong{color:#fff}body .nav__link{font-size:.78rem;letter-spacing:.12em}body .nav--scrolled{background:rgba(5,10,20,.97);border-bottom:1px solid rgba(201,168,76,.18)}body .hero__eyebrow{border-color:#c9a84c;color:#c9a84c}body .facility-section__text .prose{opacity:.92}


/* ── rowboats refine pass 12 (score was 72) ── */
/* pass 12 */
body .hero__title{font-size:clamp(2.8rem,6vw,5rem);line-height:1.05;letter-spacing:-0.02em}
body .hero__subtitle{font-size:clamp(1rem,2vw,1.25rem);max-width:60ch;opacity:0.9}
body .btn--primary{background:#c9a84c;color:#000;font-weight:700;letter-spacing:0.08em;padding:0.85rem 2rem;border:2px solid #c9a84c}
body .btn--ghost{border:2px solid rgba(255,255,255,0.7);color:#fff;padding:0.85rem 2rem;letter-spacing:0.08em}
body .btn--ghost:hover{border-color:#c9a84c;color:#c9a84c}
body .page-hero__title{font-size:clamp(2.4rem,5vw,4rem);letter-spacing:-0.01em}
body .page-hero__subtitle{max-width:55ch;opacity:0.85;line-height:1.6}
body .page-hero{min-height:45vh}
body .page-body{padding-top:3.5rem;padding-bottom:4rem}
body .prose{max-width:72ch;line-height:1.75}
body .nav__menu{gap:2.5rem}
body .nav--scrolled{background:rgba(5,8,20,0.97);backdrop-filter:blur(8px)}
body .hero__eyebrow{letter-spacing:0.15em;font-size:0.75rem;border-color:#c9a84c;color:#c9a84c}


/* ── rowboats refine pass 13 (score was 72) ── */
/* pass 13 */
body .hero__title{font-size:clamp(2.8rem,6vw,5rem);line-height:1.05;letter-spacing:-0.02em}body .hero__subtitle{font-size:clamp(1rem,1.8vw,1.25rem);line-height:1.75;max-width:58ch;opacity:0.9}body .page-hero{min-height:42vh;display:flex;align-items:flex-end}body .page-hero__title{font-size:clamp(2.2rem,5vw,4rem);line-height:1.08;letter-spacing:-0.01em}body .page-hero__subtitle{font-size:1.05rem;line-height:1.8;max-width:55ch;opacity:0.88}body .prose{font-size:1.05rem;line-height:1.85;max-width:68ch}body .nav__link{font-size:0.8rem;letter-spacing:0.12em;font-weight:600;opacity:0.92}body .nav--scrolled{background:rgba(5,8,20,0.97);backdrop-filter:blur(12px)}body .btn--primary{font-size:0.78rem;letter-spacing:0.14em;padding:0.95rem 2rem;font-weight:700}body .btn--ghost{font-size:0.78rem;letter-spacing:0.14em;padding:0.93rem 1.95rem;font-weight:600;border-width:1.5px}body .footer-brand__name{font-size:1.1rem;letter-spacing:0.08em;color:#c9a84c}body .footer-nav__title{font-size:0.72rem;letter-spacing:0.16em;color:#c9a84c;font-weight:700}


/* ── rowboats refine pass 14 (score was 72) ── */
/* pass 14 */
body .hero__title{font-size:clamp(3rem,6vw,5.5rem);line-height:1.0;letter-spacing:-0.02em}
body .hero__actions{display:flex;flex-direction:row;gap:1rem;align-items:center}
body .btn--ghost{border:2px solid rgba(255,255,255,0.7);color:#fff;padding:0.85rem 2rem}
body .btn--primary{background-color:#c9a84c;color:#000;padding:0.85rem 2rem;font-weight:700}
body .page-hero__title{font-size:clamp(2.8rem,5vw,4.5rem);letter-spacing:-0.01em}
body .page-hero__eyebrow{border:1px solid #c9a84c;color:#c9a84c;display:inline-block;padding:0.25rem 0.75rem;font-size:0.7rem;letter-spacing:0.15em;margin-bottom:1.25rem}
body .page-hero__content{padding:3.5rem 0}
body .nav__link{letter-spacing:0.12em;font-size:0.8rem;opacity:0.9}
body .prose h2,body .prose h3{color:#c9a84c;letter-spacing:0.08em}
body .page-body{padding-top:3rem;padding-bottom:4rem}
@media(max-width:768px){body .hero__actions{flex-direction:column;width:100%}body .btn--ghost,body .btn--primary{width:100%;text-align:center}}


/* ── rowboats refine pass 15 (score was 76) ── */
/* pass 15 */
body .hero__title{font-size:clamp(2.8rem,6vw,5rem);line-height:1.05;letter-spacing:-0.02em}
body .hero__subtitle{font-size:clamp(1rem,1.8vw,1.25rem);max-width:600px;line-height:1.6;opacity:0.9}
body .page-hero{min-height:400px;display:flex;align-items:flex-end}
body .page-hero__content{padding-bottom:2.5rem}
body .page-hero__title{font-size:clamp(2.2rem,5vw,4rem);line-height:1.05}
body .page-hero__overlay{background:linear-gradient(to top,rgba(5,10,24,0.85) 40%,rgba(5,10,24,0.35) 100%)}
body .prose{font-size:1.0625rem;line-height:1.75;color:rgba(255,255,255,0.82)}
body .btn--primary{background:#c9a84c;color:#0a0a0a;font-weight:700;letter-spacing:0.08em;padding:0.85rem 2rem;border:2px solid #c9a84c}
body .btn--ghost{border:2px solid rgba(255,255,255,0.7);color:#fff;padding:0.85rem 2rem;letter-spacing:0.08em}
body .nav--scrolled{background:rgba(5,10,24,0.97);backdrop-filter:blur(8px)}
body .footer-brand__name{color:#c9a84c;font-size:1.25rem}
body .footer-nav__title{color:#c9a84c;letter-spacing:0.1em;font-size:0.75rem}


/* ── rowboats refine pass 16 (score was 76) ── */
/* pass 16 */
body .hero__title{font-size:clamp(2.8rem,6vw,5.5rem);line-height:1.05;letter-spacing:-0.02em}body .hero__subtitle{font-size:clamp(1rem,1.5vw,1.2rem);max-width:52ch;opacity:0.9}body .btn--primary{background:#c9a84c;color:#0a0a0f;font-weight:700;letter-spacing:0.08em;padding:0.9rem 2.2rem;border:2px solid #c9a84c}body .btn--ghost{border:2px solid rgba(255,255,255,0.7);color:#fff;padding:0.9rem 2.2rem;letter-spacing:0.08em}body .btn--ghost:hover{border-color:#c9a84c;color:#c9a84c}body .page-hero__title{font-size:clamp(2.4rem,5vw,4.5rem);letter-spacing:-0.01em}body .page-hero__overlay{background:linear-gradient(to bottom,rgba(8,10,18,0.72) 0%,rgba(8,10,18,0.55) 60%,rgba(8,10,18,0.78) 100%)}body .prose h2,body .prose h3{color:#c9a84c;letter-spacing:0.06em}body .site-footer{border-top:1px solid rgba(201,168,76,0.25)}body .hero__eyebrow{border:1px solid #c9a84c;color:#c9a84c;font-size:0.72rem;letter-spacing:0.15em;padding:0.3rem 0.8rem;display:inline-block;margin-bottom:1.2rem}body .page-hero__eyebrow{border:1px solid #c9a84c;color:#c9a84c;font-size:0.72rem;letter-spacing:0.15em;padding:0.3rem 0.8rem;display:inline-block}


/* ── rowboats refine pass 17 (score was 82) ── */
/* pass 17 */
body .hero__eyebrow{border:1px solid #c9a84c;color:#c9a84c;display:inline-block;font-size:.7rem;letter-spacing:.15em;padding:.35rem .75rem;text-transform:uppercase}
body .page-hero{min-height:42vh;display:flex;align-items:flex-end}
body .page-hero__overlay{background:linear-gradient(to right,rgba(5,10,20,.82) 45%,rgba(5,10,20,.35) 100%)}
body .page-hero__title{font-size:clamp(2.4rem,6vw,4rem);line-height:1.05;margin-bottom:.5rem}
body .prose{max-width:72ch;line-height:1.75}
body .nav--scrolled{background:rgba(5,10,20,.97);box-shadow:0 2px 18px rgba(0,0,0,.55)}
body .nav__link{letter-spacing:.1em;font-size:.78rem}
body .site-footer{border-top:1px solid rgba(201,168,76,.25)}
body .footer-brand__name{color:#c9a84c}
body .footer-bottom{border-top:1px solid rgba(255,255,255,.08);padding-top:1.25rem;font-size:.78rem;color:rgba(255,255,255,.45)}


/* ── rowboats refine pass 18 (score was 82) ── */
/* pass 18 */
body .hero__eyebrow{border:1px solid #c9a84c;color:#c9a84c;letter-spacing:.15em;font-size:.7rem;padding:.35em .75em;display:inline-block}
body .btn--ghost{border:1px solid rgba(255,255,255,.6);color:#fff;letter-spacing:.12em}
body .btn--ghost:hover{border-color:#c9a84c;color:#c9a84c}
body .page-hero__eyebrow{border:1px solid #c9a84c;color:#c9a84c;letter-spacing:.15em;font-size:.7rem;padding:.35em .75em;display:inline-block}
body .page-hero__title{font-size:clamp(2.2rem,5vw,3.8rem);line-height:1.05;letter-spacing:-.01em}
body .page-hero__subtitle{max-width:52ch;line-height:1.6;opacity:.9}
body .prose h2{color:#c9a84c;letter-spacing:.1em;font-size:.8rem;text-transform:uppercase}
body .prose h3{color:#fff;font-size:1rem;letter-spacing:.08em;text-transform:uppercase}
body .back-link{color:#c9a84c;letter-spacing:.08em;font-size:.75rem;text-transform:uppercase;text-decoration:none;border-bottom:1px solid transparent}
body .back-link:hover{border-bottom-color:#c9a84c}


/* ── rowboats refine pass 19 (score was 91) ── */
/* pass 19 */
body .hero__title{font-size:clamp(2.8rem,6vw,5rem);line-height:1.05;letter-spacing:-0.02em}
body .page-hero__title{font-size:clamp(2.2rem,5vw,4rem);line-height:1.08}
body .page-hero__overlay{background:linear-gradient(to right,rgba(0,0,0,0.72) 45%,rgba(0,0,0,0.25) 100%)}
body .prose h2,body .prose h3{color:#c9a84c;text-transform:uppercase;letter-spacing:0.04em}
body .btn--ghost{border:2px solid rgba(201,168,76,0.85);color:#fff}
body .hero__subtitle{max-width:52ch;line-height:1.6;font-size:1.05rem}


/* ── rowboats refine pass 1 (score was 78) ── */
/* pass 1 */
body .hero__title{font-size:clamp(2.8rem,6vw,5rem);line-height:1.05;letter-spacing:-0.02em}
body .hero__eyebrow{display:inline-block;border:1px solid #c9a84c;color:#c9a84c;font-size:0.7rem;letter-spacing:0.15em;padding:0.25rem 0.6rem;margin-bottom:1rem}
body .hero__subtitle{max-width:520px;font-size:1.05rem;line-height:1.6;opacity:0.88}
body .btn--primary{background:#c9a84c;color:#0a0a0a;font-weight:700;letter-spacing:0.08em;padding:0.85rem 1.8rem;border:2px solid #c9a84c}
body .btn--ghost{background:transparent;color:#fff;border:2px solid rgba(255,255,255,0.6);font-weight:700;letter-spacing:0.08em;padding:0.85rem 1.8rem}
body .btn--ghost:hover{border-color:#c9a84c;color:#c9a84c}
body .page-hero__title{font-size:clamp(2.4rem,5vw,4rem);line-height:1.05;letter-spacing:-0.01em}
body .page-hero__eyebrow{display:inline-block;border:1px solid #c9a84c;color:#c9a84c;font-size:0.7rem;letter-spacing:0.15em;padding:0.25rem 0.6rem;margin-bottom:0.75rem}
body .page-hero__overlay{background:linear-gradient(to right,rgba(5,10,20,0.82) 45%,rgba(5,10,20,0.3) 100%)}
body .nav__link{letter-spacing:0.1em;font-size:0.8rem;font-weight:600}


/* ── rowboats refine pass 10 (score was 76) ── */
/* pass 10 */
body .hero__eyebrow{border:1px solid #c9a84c;color:#c9a84c;padding:4px 12px;font-size:.7rem;letter-spacing:.15em;display:inline-block;margin-bottom:1rem}
body .btn--ghost{border:1px solid rgba(255,255,255,.7);color:#fff;padding:.75rem 1.75rem;letter-spacing:.1em;font-size:.8rem}
body .btn--primary{background:#c9a84c;color:#000;padding:.75rem 1.75rem;letter-spacing:.1em;font-size:.8rem;border:none}
body .page-hero__eyebrow{border:1px solid #c9a84c;color:#c9a84c;padding:4px 12px;font-size:.7rem;letter-spacing:.15em;display:inline-block;margin-bottom:1rem}
body .prose h2,body .prose h3{color:#c9a84c;letter-spacing:.08em}
body .page-hero__title{font-size:clamp(2.5rem,5vw,4rem);line-height:1.05;font-weight:800}
body .page-hero__subtitle{max-width:52ch;line-height:1.6;opacity:.9}
body .hero__title{font-size:clamp(3rem,6vw,5.5rem);line-height:1.0;font-weight:900}
body .nav--scrolled{background:rgba(5,10,20,.97);border-bottom:1px solid rgba(201,168,76,.25)}


/* ── rowboats refine pass 11 (score was 81) ── */
/* pass 11 */
body .hero__title{font-size:clamp(2.8rem,6vw,5rem);line-height:1.05;letter-spacing:-0.02em}
body .hero__subtitle{font-size:clamp(1rem,1.8vw,1.2rem);max-width:55ch;opacity:0.92}
body .hero__actions{gap:1rem;display:flex;flex-wrap:wrap;align-items:center}
body .btn--ghost{border:2px solid rgba(255,255,255,0.85);color:#fff;padding:0.75rem 1.75rem}
body .btn--primary{background:#c9a84c;color:#000;font-weight:700;padding:0.75rem 1.75rem}
body .page-hero{min-height:42vh;display:flex;align-items:flex-end}
body .page-hero__title{font-size:clamp(2.2rem,5vw,3.8rem);font-weight:900;line-height:1.08}
body .page-hero__subtitle{font-size:1.05rem;opacity:0.88;max-width:52ch}
body .page-body{padding-top:3.5rem;padding-bottom:4rem}
body .prose h2{color:#c9a84c;font-size:1.05rem;letter-spacing:0.08em;text-transform:uppercase;font-weight:700}
body .nav__menu{gap:2.25rem}
body .nav__link{font-size:0.82rem;letter-spacing:0.1em;text-transform:uppercase;font-weight:600}


/* ── rowboats refine pass 12 (score was 78) ── */
/* pass 12 */
body .hero__title{font-size:clamp(2.8rem,6vw,5rem);line-height:1.05;letter-spacing:-0.01em}
body .hero__subtitle{max-width:52ch;font-size:1.1rem;line-height:1.65;opacity:0.9}
body .btn--primary{background:#c9a84c;color:#0a0a0a;font-weight:700;letter-spacing:0.08em;padding:0.85rem 2rem;border:2px solid #c9a84c}
body .btn--ghost{border:2px solid rgba(255,255,255,0.7);color:#fff;font-weight:600;letter-spacing:0.08em;padding:0.85rem 2rem}
body .page-hero{min-height:42vh;display:flex;align-items:flex-end}
body .page-hero__title{font-size:clamp(2.4rem,5vw,4rem);line-height:1.08;letter-spacing:-0.01em}
body .page-hero__overlay{background:linear-gradient(to top,rgba(5,10,20,0.82) 40%,rgba(5,10,20,0.35) 100%)}
body .prose{max-width:68ch;line-height:1.75}
body .nav--scrolled{background:rgba(8,12,24,0.97);backdrop-filter:blur(10px)}


/* ── rowboats refine pass 13 (score was 82) ── */
/* pass 13 */
body .page-hero{min-height:420px}
body .page-hero__title{font-size:clamp(2.2rem,5vw,3.5rem);letter-spacing:-.01em}
body .page-hero__subtitle{max-width:560px;opacity:.92}
body .page-hero__overlay{background:linear-gradient(135deg,rgba(0,0,0,.72) 0%,rgba(0,0,12,.45) 100%)}
body .prose h2{color:#c9a84c;letter-spacing:.04em;font-size:1.05rem}
body .prose h3{color:#fff;font-size:1rem;letter-spacing:.06em}
body .facility-section__text{padding:2.5rem 2rem}
body .site-footer{border-top:1px solid rgba(201,168,76,.18)}
body .footer-brand__name{color:#c9a84c}
body .footer-nav__title{color:#c9a84c;letter-spacing:.08em;font-size:.78rem}
body .footer-nav__link{opacity:.78;transition:opacity .2s}
body .footer-bottom{border-top:1px solid rgba(255,255,255,.08);padding-top:1.25rem}
body .btn--ghost{border-color:rgba(255,255,255,.75);color:#fff}
body .clients-strip{padding:2rem 0}
body .back-link{color:#c9a84c;opacity:.85}


/* ── rowboats refine pass 14 (score was 82) ── */
/* pass 14 */
body .hero__title{font-size:clamp(2.8rem,6vw,5rem);line-height:1.05;letter-spacing:-0.01em}
body .hero__subtitle{font-size:clamp(1rem,2vw,1.2rem);max-width:560px;line-height:1.6;opacity:0.9}
body .btn--primary{padding:0.9rem 2rem;font-size:0.85rem;letter-spacing:0.12em}
body .btn--ghost{padding:0.9rem 2rem;font-size:0.85rem;letter-spacing:0.12em;border-width:1.5px}
body .page-hero__title{font-size:clamp(2.4rem,5vw,4rem);line-height:1.08}
body .page-hero__subtitle{font-size:clamp(0.95rem,1.8vw,1.15rem);max-width:520px;opacity:0.88}
body .prose{font-size:1.0625rem;line-height:1.75;color:rgba(255,255,255,0.82)}
body .facility-section__inner{gap:3.5rem}
body .site-footer{padding-top:3.5rem;padding-bottom:2rem}
body .footer-bottom{border-top:1px solid rgba(201,168,76,0.2);padding-top:1.25rem;margin-top:2rem}
body .nav--scrolled{background:rgba(10,14,26,0.97);backdrop-filter:blur(8px)}


/* ── rowboats refine pass 15 (score was 81) ── */
/* pass 15 */
body .hero__title{font-size:clamp(2.8rem,6vw,5rem);line-height:1.05;letter-spacing:-0.02em}
body .page-hero{min-height:420px;display:flex;align-items:flex-end}
body .page-hero__content{padding-bottom:2.5rem}
body .page-hero__title{font-size:clamp(2.2rem,5vw,4rem);line-height:1.08}
body .page-hero__overlay{background:linear-gradient(to right,rgba(5,10,20,0.78) 45%,rgba(5,10,20,0.28) 100%)}
body .nav{padding:0 2rem}
body .nav__logo{max-height:56px;width:auto}
body .btn--ghost{border:2px solid rgba(255,255,255,0.75);color:#fff;background:transparent}
body .btn--ghost:hover{border-color:#c9a84c;color:#c9a84c}
body .prose h2{color:#c9a84c;font-size:clamp(0.7rem,1vw,0.85rem);letter-spacing:0.12em;text-transform:uppercase}
body .prose h3{color:#fff;font-size:1.15rem;font-weight:700}
body .page-body{padding:3.5rem 1.5rem}

/* ── locked quality overrides — do not remove ── */
/* gold ghost button border — critical for luxury look */
body .btn--ghost{border:2px solid rgba(201,168,76,0.85);color:#fff}
body .btn--ghost:hover{border-color:#c9a84c;color:#c9a84c;background:rgba(201,168,76,0.08)}
/* page hero height — visual impact */
body .page-hero{min-height:55vh;display:flex;align-items:flex-end}
/* prose headings — gold uppercase hierarchy */
body .prose h2,body .prose h3{color:#c9a84c;text-transform:uppercase;letter-spacing:0.04em}
/* footer gold accents */
body .footer-brand__name{color:#c9a84c;font-weight:700}
body .footer-bottom{border-top:1px solid rgba(201,168,76,0.2);padding-top:1.25rem;margin-top:1.5rem}
body .site-footer{border-top:1px solid rgba(201,168,76,0.25)}
/* back link gold */
body .back-link{color:#c9a84c;text-decoration:none;letter-spacing:0.08em;font-size:0.78rem;text-transform:uppercase}
body .back-link:hover{border-bottom:1px solid #c9a84c}


/* ── rowboats refine pass 1 (score was 78) ── */
/* pass 1 */
body .hero__title{font-size:clamp(2.8rem,6vw,5.5rem);line-height:1.05;letter-spacing:-0.02em}
body .hero__subtitle{font-size:clamp(1rem,2vw,1.25rem);max-width:54ch;line-height:1.6;opacity:0.9}
body .btn--primary{background:#c9a84c;color:#0a0e1a;font-weight:700;letter-spacing:0.08em;padding:0.85rem 2rem;border:2px solid #c9a84c}
body .btn--ghost{border:2px solid rgba(255,255,255,0.7);color:#fff;padding:0.85rem 2rem;letter-spacing:0.08em}
body .page-hero__title{font-size:clamp(2.4rem,5vw,4.5rem);line-height:1.05;letter-spacing:-0.01em}
body .page-hero__overlay{background:linear-gradient(to right,rgba(5,8,20,0.82) 45%,rgba(5,8,20,0.3) 100%)}
body .nav__link{letter-spacing:0.1em;font-size:0.8rem;font-weight:600}
body .hero__eyebrow{border:1px solid #c9a84c;color:#c9a84c;padding:0.25rem 0.75rem;font-size:0.7rem;letter-spacing:0.15em;display:inline-block;margin-bottom:1.25rem}
body .page-hero__eyebrow{border:1px solid #c9a84c;color:#c9a84c;padding:0.25rem 0.75rem;font-size:0.7rem;letter-spacing:0.15em;display:inline-block;margin-bottom:1.25rem}


/* ── rowboats refine pass 16 (score was 79) ── */
/* pass 16 */
body .hero__title{font-size:clamp(3rem,6vw,5.5rem);line-height:1.05;letter-spacing:-0.02em}body .hero__subtitle{font-size:clamp(1rem,1.8vw,1.25rem);max-width:56ch;line-height:1.6;opacity:0.92}body .btn--primary{padding:0.85rem 2rem;font-size:0.85rem;letter-spacing:0.12em;font-weight:700}body .btn--ghost{padding:0.85rem 2rem;font-size:0.85rem;letter-spacing:0.12em;font-weight:700;border-width:2px}body .page-hero__title{font-size:clamp(2.5rem,5vw,4.5rem);line-height:1.05;letter-spacing:-0.02em}body .page-hero__subtitle{font-size:1.1rem;line-height:1.65;max-width:52ch;opacity:0.9}body .page-hero__overlay{background:linear-gradient(105deg,rgba(5,10,25,0.82) 45%,rgba(5,10,25,0.35) 100%)}body .facility-section__text{padding-right:3rem}body .prose{font-size:1.0625rem;line-height:1.75;color:rgba(255,255,255,0.88)}body .footer-brand__name{font-size:1.1rem;letter-spacing:0.08em;color:#c9a84c}body .footer-nav__title{font-size:0.7rem;letter-spacing:0.15em;color:#c9a84c;font-weight:700}body .footer-bottom__copy{font-size:0.8rem;opacity:0.55}


/* ── rowboats refine pass 18 (score was 81) ── */
/* pass 18 */
body .hero__eyebrow{border:1px solid #c9a84c;color:#c9a84c;display:inline-block;padding:4px 12px;font-size:0.7rem;letter-spacing:0.12em;margin-bottom:1rem}body .hero__subtitle{max-width:560px;line-height:1.65;font-size:1.05rem;color:rgba(255,255,255,0.88)}body .page-hero__eyebrow{border:1px solid #c9a84c;color:#c9a84c;display:inline-block;padding:4px 12px;font-size:0.7rem;letter-spacing:0.12em;margin-bottom:1rem}body .page-hero__overlay{background:linear-gradient(to right,rgba(5,10,24,0.82) 45%,rgba(5,10,24,0.38) 100%)}body .page-hero__subtitle{color:rgba(255,255,255,0.85);max-width:540px;line-height:1.6}body .btn--ghost{border:1px solid rgba(255,255,255,0.75);color:#fff;background:transparent}body .btn--ghost:hover{border-color:#c9a84c;color:#c9a84c}body .nav--scrolled .nav__link{color:rgba(255,255,255,0.9)}body .prose h3{color:#c9a84c;font-size:0.72rem;letter-spacing:0.14em;text-transform:uppercase;margin-bottom:0.5rem}body .facility-section__text{padding:3rem 2.5rem}


/* ── rowboats refine pass 19 (score was 81) ── */
/* pass 19 */
body .hero__actions{display:flex;flex-wrap:wrap;gap:12px;align-items:center}
body .btn--ghost{border:2px solid #fff;color:#fff;background:transparent;padding:14px 28px;letter-spacing:.08em;font-size:.85rem}
body .btn--primary{background:#c9a84c;color:#000;padding:14px 28px;letter-spacing:.08em;font-size:.85rem}
body .page-hero__eyebrow{border:1px solid #c9a84c;color:#c9a84c;display:inline-block;padding:4px 12px;font-size:.7rem;letter-spacing:.12em;margin-bottom:16px}
body .page-hero__subtitle{max-width:560px;line-height:1.65;opacity:.9;font-size:1.05rem}
body .prose h3{font-size:.75rem;letter-spacing:.12em;text-transform:uppercase;color:#c9a84c;font-weight:700;margin-bottom:8px}
body .nav__menu{gap:32px}
body .nav__link{font-size:.8rem;letter-spacing:.1em;color:#fff;opacity:.85;transition:opacity .2s}
body .nav--scrolled{background:rgba(5,10,20,.96);backdrop-filter:blur(8px)}


/* ── rowboats refine pass 20 (score was 83) ── */
/* pass 20 */
body .hero__title{font-size:clamp(2.8rem,6vw,5rem);line-height:1.05;letter-spacing:-0.02em}body .hero__subtitle{max-width:55ch;opacity:0.92;line-height:1.6}body .page-hero{min-height:420px;display:flex;align-items:flex-end}body .page-hero__content{padding-bottom:3rem}body .page-hero__title{font-size:clamp(2.4rem,5vw,4rem);line-height:1.08}body .page-hero__subtitle{max-width:60ch;opacity:0.88;margin-top:0.75rem}body .page-hero__overlay{background:linear-gradient(to right,rgba(5,10,24,0.82) 45%,rgba(5,10,24,0.35) 100%)}body .prose{max-width:72ch;line-height:1.75}body .site-footer{border-top:1px solid rgba(201,168,76,0.25)}body .footer-brand__name{color:#c9a84c;font-size:1.1rem;letter-spacing:0.04em}body .footer-nav__title{color:#c9a84c;font-size:0.7rem;letter-spacing:0.12em;text-transform:uppercase}body .footer-nav__link{opacity:0.75;transition:opacity 0.2s}body .nav--scrolled .nav__link{opacity:1;color:#fff}body .btn--ghost{border-color:rgba(255,255,255,0.7);color:#fff}

/* ══ DEFINITIVE LAYOUT FIXES ══════════════════════════════════════════════ */

/* Section headings — force white on dark backgrounds */
body .testimonials-section .section__title,
body .stats-section .section__title,
body .facility-section .section__title,
body .cta-banner .section__title {
  color: #ffffff;
}
body .testimonials-section .section__title {
  color: #ffffff;
  opacity: 1;
}

/* Page hero — content pinned to bottom with column flex */
body .page-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  padding-bottom: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
body .page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,10,24,0.92) 30%, rgba(5,10,24,0.15) 100%);
  pointer-events: none;
}
body .page-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 0;
  padding-bottom: 4rem;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
}

/* Footer — reduce oversized vertical padding */
body .footer-grid {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
body .site-footer {
  padding-bottom: 0;
}
body .footer-bottom {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  margin-top: 0;
  border-top: 1px solid rgba(201,168,76,0.2);
}

/* ══ PROSE CONTENT FORMATTING ══════════════════════════════════════════════ */

/* 1. Gold-bar h3 section headers */
body .page-body .prose h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: #ffffff;
  letter-spacing: -0.01em;
  font-weight: 800;
  margin-top: 3rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(201,168,76,0.25);
}
body .page-body .prose h3 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding: 0.6em 0 0.6em 1.1rem;
  border-left: 3px solid #c9a84c;
  background: linear-gradient(to right, rgba(201,168,76,0.08), transparent 70%);
  border-radius: 0 4px 4px 0;
}

/* 2. Gold em-dash bullets */
body .page-body .prose ul {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0 1.5rem;
}
body .page-body .prose ul li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.65em;
  color: rgba(255,255,255,0.88);
  line-height: 1.65;
}
body .page-body .prose ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  top: 0;
  color: #c9a84c;
  font-weight: 700;
  line-height: inherit;
}
body .page-body .prose ol {
  padding-left: 1.5rem;
}
body .page-body .prose ol li {
  margin-bottom: 0.65em;
  color: rgba(255,255,255,0.88);
  line-height: 1.65;
}

/* 3. Gold CTA strip after hr */
body .page-body .prose hr {
  border: none;
  border-top: 1px solid rgba(201,168,76,0.2);
  margin: 3rem 0 0;
}
body .page-body .prose hr + p {
  background: rgba(5,10,24,0.6);
  border: 1px solid rgba(201,168,76,0.3);
  border-top: 3px solid #c9a84c;
  border-radius: 6px;
  padding: 2rem 2.5rem;
  text-align: center;
  margin-top: 0;
}
body .page-body .prose hr + p a {
  display: inline-block;
  background: #c9a84c;
  color: #0a0a0f;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  margin: 0.35rem 0.4rem;
  transition: background 0.2s, transform 0.2s;
}
body .page-body .prose hr + p a:hover {
  background: #b8952e;
  transform: translateY(-2px);
}
/* Hide the " | " separator text between the links */
body .page-body .prose hr + p {
  font-size: 0;
}
body .page-body .prose hr + p a {
  font-size: 0.8rem;
}

/* ══ LUXURY VISUAL UPGRADE v2 ═══════════════════════════════════════════════
   Research-informed improvements: dark facility section, Ken Burns hero,
   gradient testimonial cards, better stat labels, gold client borders,
   wider prose, amenities feature grid
   ═══════════════════════════════════════════════════════════════════════════ */

/* 1. FACILITY SECTION — fix white background, make it dark luxury */
body .facility-section {
  background: #060b1c;
  color: #ffffff;
}
body .facility-section .section__eyebrow {
  color: #c9a84c;
}
body .facility-section__text p,
body .facility-section__text li {
  color: rgba(255, 255, 255, 0.88);
}
body .facility-section__photo {
  position: relative;
}
body .facility-section__photo img {
  border-radius: 6px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(201, 168, 76, 0.18);
}

/* 2. KEN BURNS — slow pan on homepage hero (keeps background-size: cover intact) */
@keyframes kenburns-hero {
  0%   { background-position: 55% 45%; }
  50%  { background-position: 48% 55%; }
  100% { background-position: 55% 45%; }
}
body .hero {
  animation: kenburns-hero 25s ease-in-out infinite;
}

/* 3. TESTIMONIAL CARDS — gradient border for luxury materiality */
body .testimonial-card {
  border: 1px solid transparent;
  background:
    linear-gradient(145deg, #0d1630, #060b1c) padding-box,
    linear-gradient(145deg, rgba(201,168,76,0.6), rgba(201,168,76,0.12)) border-box;
  border-radius: 8px;
  padding: 2rem 2rem 1.75rem;
}
body .testimonial-card__stars {
  color: #c9a84c;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

/* 4. STAT LABELS — improve readability */
body .stat-item__label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.12em;
  margin-top: 0.4rem;
}

/* 5. CLIENTS SECTION — gold pinstripe borders for premium feel */
body .clients-section {
  border-top: 1px solid rgba(201, 168, 76, 0.45);
  border-bottom: 1px solid rgba(201, 168, 76, 0.45);
  background: rgba(8, 14, 32, 0.95);
}

/* 6. PROSE — widen content area and soften h2 caps */
body .page-body .prose {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
body .page-body .prose h2 {
  text-transform: none;
  letter-spacing: 0.5px;
}

/* 7. AMENITIES FEATURE GRID ─────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}
@media (max-width: 640px) {
  .features-grid { grid-template-columns: 1fr; }
}
.feature-card {
  background: linear-gradient(145deg, #0d1630, #080e20);
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: 8px;
  padding: 2rem 1.75rem;
  transition: border-color 0.25s, transform 0.25s;
}
.feature-card:hover {
  border-color: rgba(201, 168, 76, 0.55);
  transform: translateY(-3px);
}
.feature-card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-card__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #c9a84c;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.feature-card__desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

/* ── Reilly Media credit ────────────────────────────────────── */
.footer-bottom__built-by { text-align: center; font-size: 0.7rem; color: rgba(255,255,255,.18); margin: 0; padding: 0.4rem 0 0.9rem; }
.footer-bottom__built-by a { color: rgba(255,255,255,.28); text-decoration: none; transition: color 0.2s; }
.footer-bottom__built-by a:hover { color: var(--color-accent); }
.footer-rm-link { display: inline-flex; align-items: center; gap: 0.45rem; }
.footer-rm-mark { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; background: #fff; color: #0c0e14; border-radius: 4px; font-family: var(--font-body); font-size: 10px; font-weight: 800; letter-spacing: 0.02em; flex-shrink: 0; }

/* ── CSP helpers — responsive picture backgrounds (replaces inline style=) ────── */
.hero__bg-picture,
.page-hero__bg-picture,
.cta-banner__bg-picture { position: absolute; inset: 0; width: 100%; height: 100%; display: block; z-index: 0; pointer-events: none; }
.hero__bg-img,
.page-hero__bg-img,
.cta-banner__bg-img    { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }
.hero > *,
.cta-banner__inner     { position: relative; z-index: 2; }
.section--features     { background: #060b1c; padding: 4rem 0 2rem; }

/* 404 page block content */
.error-404           { text-align: center; padding: 6rem 0; }
.error-404__inner    { max-width: 600px; margin: 0 auto; }
.error-404__code     { font-size: clamp(4rem, 12vw, 8rem); margin-bottom: 1rem; opacity: 0.15; line-height: 1; }
.error-404__title    { font-size: 1.5rem; margin-bottom: 1rem; }
.error-404__message  { color: var(--color-text-muted); margin-bottom: 2rem; }
