
:root {
  --color-black: #0a0a0a;
  --color-grey-950: #101010;
  --color-grey-900: #151515;
  --color-grey-800: #1e1e1e;
  --color-grey-700: #2a2a2a;
  --color-grey-600: #3d3d3d;
  --color-grey-500: #6b6b6b;
  --color-grey-400: #a0a0a0;
  --color-dark: #0a0a0a;
  --color-navy: #050505;
  --color-green: #242424;
  --color-green-cta: #1a1a1a;
  --color-green-panel: #161616;
  --color-green-icon: #c7a16a;
  --color-gold: #c7a16a;
  --color-gold-map: #d4af6a;
  --color-white: #ffffff;
  --color-muted: #111111;
  --color-card: #181818;
  --color-cream-bar: #141414;
  --color-surface: #1a1a1a;
  --color-surface-raised: #222222;
  --color-text: #e6e6e6;
  --color-text-soft: #b8b8b8;
  --color-text-muted: #8f8f8f;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Montserrat", system-ui, sans-serif;
  --header-h: 76px;
  --sticky-bar-h: 56px;
  --radius: 6px;
  --radius-sharp: 2px;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  --page-pad-x: clamp(14px, 4vw, 28px);
  --layout-max: 1240px;
  --layout-max-wide: 1320px;
  --layout-max-xl: 1400px;
  --layout-max-2xl: 1520px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-text);
  background: var(--color-black);
  padding-bottom: calc(var(--sticky-bar-h) + env(safe-area-inset-bottom, 0px));
}

main {
  width: 100%;
  min-width: 0;
}

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

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

button,
input,
select {
  font: inherit;
}

/* Inline SVG: brand gold site-wide (location + dark-on-dark UIs override below) */
svg {
  color: var(--color-gold);
}

.site-header__cta svg,
.mobile-drawer .site-header__cta svg {
  color: var(--color-white);
}

.location-split svg {
  color: rgba(255, 255, 255, 0.95);
}

.location-split .btn--map svg {
  color: var(--color-white);
}

.sticky-mobile-bar svg {
  color: var(--color-white);
}

.btn--gold svg,
.btn--outline svg {
  color: var(--color-white);
}

/* —— Header —— */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(12px, 3.5vw, 22px);
  transition: box-shadow 0.25s, background 0.25s, backdrop-filter 0.25s;
}

.site-header.is-scrolled {
  background: rgba(10, 12, 16, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.page-simple .site-header {
  background: var(--color-dark);
}

.page-simple .site-header.is-scrolled {
  background: rgba(26, 26, 26, 0.98);
}

.site-header__brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.site-header__logo {
  display: block;
  height: clamp(30px, 4.8vw, 44px);
  width: auto;
  max-width: min(200px, 52vw);
  object-fit: contain;
  object-position: left center;
}

@media (min-width: 480px) {
  .site-header__logo {
    max-width: min(220px, 40vw);
  }
}

.site-nav {
  display: none;
  align-items: center;
  gap: 22px;
  flex: 1;
  justify-content: center;
}

@media (min-width: 1100px) {
  .site-nav {
    display: flex;
  }
}

.site-nav a {
  color: var(--color-white);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.95;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
  transition: color 0.2s, opacity 0.2s;
}

.site-nav a:hover {
  color: var(--color-gold);
  opacity: 1;
}

.site-header__cta {
  display: none;
  align-items: center;
  gap: 8px;
  background: var(--color-green-cta);
  color: var(--color-white);
  padding: 10px 16px;
  border-radius: var(--radius-sharp);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
}

.site-header__cta:hover {
  background: var(--color-grey-800);
}

@media (min-width: 769px) {
  .site-header__cta {
    display: inline-flex;
  }
}

.site-header__cta svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-right: -8px;
}

@media (min-width: 1100px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--color-white);
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.2s;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-drawer {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 26, 26, 0.97);
  padding: 20px var(--page-pad-x) 28px;
  display: none;
  flex-direction: column;
  gap: 8px;
  z-index: 999;
  overflow-y: auto;
}

.mobile-drawer.is-open {
  display: flex;
}

.mobile-drawer a {
  color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-drawer a:hover {
  color: var(--color-gold);
}

.mobile-drawer .site-header__cta {
  display: inline-flex;
  margin-top: 16px;
  justify-content: center;
}

/* —— Hero + bottom trust strip —— */
.hero {
  margin-top: 0;
  min-height: min(100vh, 980px);
  display: flex;
  flex-direction: column;
  padding: 0;
  background-color: #0a0a0a;
  background-image: linear-gradient(
      110deg,
      rgba(0, 0, 0, 0.92) 0%,
      rgba(14, 14, 14, 0.82) 38%,
      rgba(28, 28, 28, 0.55) 58%,
      rgba(199, 161, 106, 0.12) 100%
    ),
    url("../images/b1.jpg");
  background-size: cover;
  background-position: center;
}

@supports (min-height: 100svh) {
  .hero {
    min-height: min(100svh, 980px);
  }
}

.hero__main {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  padding: calc(var(--header-h) + 32px) var(--page-pad-x) 36px;
  max-width: var(--layout-max-wide);
  margin: 0 auto;
  width: 100%;
}
.mb-2{
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .hero__main {
    grid-template-columns: 1.12fr minmax(300px, 400px);
    gap: 48px;
    padding: calc(var(--header-h) + 48px) clamp(24px, 3.5vw, 40px) 48px;
  }
}

.hero__col--content {
  max-width: 640px;
}

.hero__kicker {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin: 0 0 14px;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  font-weight: 600;
  color: var(--color-white);
  margin: 0 0 10px;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.hero__tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  color: var(--color-gold);
  margin: 0 0 22px;
  font-weight: 500;
}

.hero__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-right: 0;
  margin-right: 0;
  border-right: none;
  color: var(--color-white);
  font-size: clamp(12px, 3.2vw, 14px);
  font-weight: 500;
}

.hero__meta-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-white);
  opacity: 0.95;
}

/* Location | spine | location / price | spine | buttons — matches reference lines */
.hero__mega-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 22px;
  row-gap: 20px;
  align-items: start;
  margin-top: 4px;
}

.hero__mega-loc1 {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
}

.hero__mega-loc2 {
  grid-column: 3;
  grid-row: 1;
  justify-self: start;
}

/* Vertical between locations only (no line through / above pricing column) */
.hero__line--spine {
  grid-column: 2;
  grid-row: 1;
  width: 1px;
  justify-self: center;
  align-self: stretch;
  min-height: 2.5rem;
  background: linear-gradient(
    180deg,
    rgba(197, 160, 89, 0.65) 0%,
    rgba(255, 255, 255, 0.38) 70%,
    rgba(255, 255, 255, 0.28) 100%
  );
}

/* Vertical between price column and CTAs only */
.hero__line--cta-rail {
  grid-column: 2;
  grid-row: 2;
  width: 1px;
  justify-self: center;
  align-self: stretch;
  min-height: 5rem;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.32) 0%,
    rgba(197, 160, 89, 0.45) 45%,
    rgba(255, 255, 255, 0.26) 100%
  );
}

.hero__mega-price {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  width: 100%;
}

.hero__price-block {
  margin-bottom: 0;
  width: 100%;
  box-sizing: border-box;
  padding-top: 14px;
  padding-bottom: 14px;
  border-top: 1px solid rgba(197, 160, 89, 0.5);
  border-bottom: 1px solid rgba(197, 160, 89, 0.5);
}

.hero__price-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 4px;
}

.hero__price-amount {
  font-family: var(--font-sans);
  font-size: clamp(1.65rem, 3.4vw, 2.25rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.1;
  letter-spacing: 0.06em;
}

.hero__price-suffix {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  margin-top: 4px;
}

.hero__mega-grid .hero__actions--stacked {
  grid-column: 3;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 12px;
  align-self: start;
  min-width: min(100%, 248px);
}

.hero__mega-grid .hero__actions--stacked .btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 991px) {
  .hero__mega-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto auto auto;
    row-gap: 14px;
    column-gap: 0;
  }

  .hero__mega-loc1 {
    grid-column: 1;
    grid-row: 1;
  }

  .hero__mega-loc2 {
    grid-column: 1;
    grid-row: 2;
  }

  .hero__line--spine {
    grid-column: 1;
    grid-row: 3;
    width: 100%;
    height: 1px;
    min-height: 1px;
    background: rgba(255, 255, 255, 0.35);
  }

  .hero__mega-price {
    grid-column: 1;
    grid-row: 4;
  }

  .hero__line--cta-rail {
    grid-column: 1;
    grid-row: 5;
    width: 100%;
    height: 1px;
    min-height: 1px;
    background: rgba(255, 255, 255, 0.3);
  }

  .hero__mega-grid .hero__actions--stacked {
    grid-column: 1;
    grid-row: 6;
    min-width: 0;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--radius-sharp);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, filter 0.2s;
}

.btn--gold {
  background: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
}

.btn--gold:hover {
  filter: brightness(1.08);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.9);
}

.btn--outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.btn--green {
  background: var(--color-green-cta);
  color: var(--color-white);
  border-color: var(--color-green-cta);
  width: 100%;
}

.btn--green:hover {
  background: var(--color-grey-800);
}

.btn--map {
  background: var(--color-gold-map);
  color: var(--color-white);
  border-color: var(--color-gold-map);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 10px;
  font-weight: 700;
}

a.btn--map {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn--map:hover {
  filter: brightness(1.06);
}

.btn svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 380px) {
  .btn {
    padding: 12px 16px;
    font-size: 10px;
    letter-spacing: 0.08em;
    gap: 8px;
  }
}

/* Repeated brand pattern — overview + contact */
.hero__trust,
.contact-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero__trust::before,
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/bg-pattern.png");
  background-repeat: repeat;
  background-size: clamp(220px, 20vw, 320px) auto;
  background-position: center;
  opacity: 0.34;
  pointer-events: none;
  z-index: 0;
}

.hero__trust::after,
.contact-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.72) 0%, rgba(14, 14, 14, 0.62) 50%, rgba(8, 8, 8, 0.76) 100%),
    radial-gradient(ellipse 90% 55% at 50% 0%, rgba(199, 161, 106, 0.1), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Hero bottom feature bar */
.hero__trust {
  width: 100%;
  background-color: var(--color-grey-900);
  padding: 22px var(--page-pad-x) 26px;
  scroll-margin-top: calc(var(--header-h) + 12px);
  border-top: 1px solid rgba(199, 161, 106, 0.22);
}

.hero__trust-grid {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 12px;
  text-align: center;
}

@media (max-width: 767px) {
  .hero__trust-grid > :last-child {
    grid-column: 1 / -1;
    width: fit-content;
    justify-self: center;
    margin-inline: auto;
  }
}

@media (min-width: 768px) {
  .hero__trust-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
  }
}

.highlight-card__icon,
.amenity-item__icon,
.hero__trust-icon {
  filter: brightness(0) saturate(100%) invert(73%) sepia(28%) saturate(623%) hue-rotate(5deg) brightness(92%) contrast(89%);
}

.hero__trust-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
  display: block;
  object-fit: contain;
}

.hero__trust-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-white);
  margin: 0 0 2px;
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero__trust-desc {
  font-size: 11px;
  font-weight: 500;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.35;
}

/* Lead card */
.lead-card {
  background: rgba(18, 18, 18, 0.94);
  border: 1px solid rgba(199, 161, 106, 0.28);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(22px, 4vw, 28px) var(--page-pad-x);
  max-width: 400px;
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 992px) {
  .lead-card {
    margin: 0;
    margin-left: auto;
  }
}

.lead-card h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-white);
  margin: 0 0 6px;
}

.lead-card__sub {
  font-size: 13px;
  color: var(--color-text-soft);
  margin: 0 0 22px;
}

.lead-card .field {
  margin-bottom: 14px;
}

.lead-card label {
  display: block;
  font-size: 8px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-soft);
  margin-bottom: 6px;
}

.lead-card__submit {
  margin-top: 0;
}

.input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s, background 0.2s;
}

.input-wrap:focus-within {
  border-color: var(--color-gold);
}

.input-wrap svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.input-wrap input,
.input-wrap select {
  flex: 1;
  border: none;
  padding: 12px 0;
  background: transparent;
  min-width: 0;
  color: var(--color-text);
}

.input-wrap input:focus,
.input-wrap select:focus {
  outline: none;
}

.status-msg {
  font-size: 13px;
  margin: 0 0 10px;
  color: #b00020;
}

.status-msg--ok {
  color: var(--color-gold);
}

/* Consent checkbox (all enquiry forms) */
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 6px;
  margin-bottom: 14px;
}

.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--color-gold);
  cursor: pointer;
}

.form-consent__label {
  font-size: 12px;
  line-height: 1.55;
  color: var(--color-text-soft);
  font-weight: 400;
  cursor: pointer;
  overflow-wrap: break-word;
}

.form-consent__policy {
  font-weight: 700;
  text-decoration: underline;
  color: var(--color-text);
}

.form-consent__policy:hover {
  color: var(--color-gold);
}

.form-consent__req {
  font-weight: 700;
  color: var(--color-text);
}

.modal .form-consent__label {
  color: var(--color-text-soft);
}

/* —— Section utilities —— */
.section {
  scroll-margin-top: calc(var(--header-h) + 16px);
  padding: 64px var(--page-pad-x);
}

@media (max-width: 480px) {
  .section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

.section--muted {
  background: var(--color-muted);
}

.section--highlights {
  background: var(--color-grey-950);
  padding-top: 56px;
  padding-bottom: 56px;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  text-align: center;
  color: var(--color-white);
  margin: 0 0 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  line-height: 1.25;
}

.section__title::after {
  content: "";
  display: block;
  width: 52px;
  height: 2px;
  background: var(--color-gold);
  margin: 16px auto 0;
  border-radius: 0;
}

.section__lead {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 36px;
  color: var(--color-text-soft);
  font-size: 14px;
  line-height: 1.55;
}

/* Highlights grid */
.highlights-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 520px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

@media (min-width: 1200px) {
  .highlights-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
  }
}

.highlight-card {
  background: var(--color-surface);
  border-radius: 5px;
  padding: 22px 14px 20px;
  text-align: center;
  border: 1px solid rgba(199, 161, 106, 0.16);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.highlight-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  border-color: rgba(199, 161, 106, 0.38);
  transform: translateY(-2px);
}

.highlight-card__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  display: block;
  object-fit: contain;
}

.highlight-card svg {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
}

.highlight-card h3 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-gold);
  margin: 0 0 6px;
}

.highlight-card p {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-soft);
  margin: 0;
  line-height: 1.4;
}

/* Location split — 1/3 info (forest green) | 2/3 map + reference-style overlay */
.location-split {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 420px;
}

@media (min-width: 900px) {
  .location-split {
    grid-template-columns: minmax(260px, 1fr) minmax(0, 2fr);
    min-height: 480px;
  }
}

.location-split__info {
  background: var(--color-grey-900);
  padding: clamp(28px, 5vw, 40px) var(--page-pad-x) clamp(28px, 5vw, 36px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  min-height: 100%;
  height: 100%;
}

.location-split__kicker {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold-map);
  margin: 0 0 12px;
}

.location-split h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 500;
  color: var(--color-white);
  margin: 0 0 26px;
  line-height: 1.22;
  letter-spacing: 0.02em;
}

.location-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  flex: 1 1 auto;
}

.location-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 500;
}

.location-list li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.location-list__time {
  font-weight: 600;
  opacity: 0.98;
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.95);
}

.location-list__name {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.location-list__icon-svg,
.location-list__icon-img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.location-list__icon-img {
  object-fit: contain;
}

.location-split__map-btn {
  align-self: flex-start;
  margin-top: auto;
}

.btn--sm {
  padding: 10px 18px;
  font-size: 11px;
}

.location-split__map {
  position: relative;
  background: var(--color-grey-800);
  min-height: 320px;
  overflow: hidden;
  isolation: isolate;
}

@media (min-width: 900px) {
  .location-split__map {
    min-height: 480px;
    height: 100%;
    align-self: stretch;
  }
}

.location-split__map iframe {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
  filter: blur(3px) saturate(0.62) contrast(0.95) brightness(1.06) sepia(0.06);
  transform: scale(1.02);
  transform-origin: center;
}

@media (min-width: 900px) {
  .location-split__map iframe {
    min-height: 480px;
  }
}

.location-map-overlay {
  display: none;
}

@media (min-width: 900px) {
  .location-map-overlay {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
  }
}

.location-map-overlay__project {
  position: absolute;
  left: 50%;
  top: 44%;
  transform: translate(-50%, -50%);
  width: max-content;
  max-width: min(200px, 42vw);
  padding: 14px 18px 20px;
  background: var(--color-grey-900);
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.location-map-overlay__project::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -11px;
  transform: translateX(-50%);
  border: 11px solid transparent;
  border-top-color: var(--color-grey-900);
}

.location-map-overlay__project-mark {
  display: flex;
  justify-content: center;
  margin-bottom: 6px;
}

.location-map-overlay__project-mark svg {
  width: 32px;
  height: 32px;
  display: block;
}

.location-map-overlay__project-title {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--color-white);
  line-height: 1.15;
}

.location-map-overlay__project-sub {
  display: block;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  margin-top: 4px;
}

.location-map-overlay__labels {
  list-style: none;
  margin: 0;
  padding: 0;
}

.location-map-label {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px 5px 5px;
  background: rgba(26, 26, 26, 0.94);
  border-radius: 999px;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.28);
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-white);
  white-space: nowrap;
}

.location-map-label__dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--color-gold);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.location-map-label--hinj {
  left: 7%;
  top: 18%;
}

.location-map-label--wakad {
  left: 20%;
  top: 38%;
}

.location-map-label--express {
  left: 5%;
  top: 8%;
}

.location-map-label--phoenix {
  right: 6%;
  bottom: 26%;
}

.location-map-label--metro {
  left: 10%;
  bottom: 14%;
}

@media (min-width: 1200px) {
  .location-map-label {
    font-size: 10px;
    padding: 6px 14px 6px 6px;
  }
}

.section--pricing {
  background: var(--color-black);
  padding-top: 56px;
  padding-bottom: 64px;
}

.section--pricing .section__title {
  margin-bottom: 28px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--color-white);
}

.section--pricing .section__title::after {
  display: none;
}

.pricing-wrap {
  max-width: var(--layout-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}

@media (min-width: 992px) {
  .pricing-wrap {
    grid-template-columns: minmax(0, 1.75fr) minmax(260px, 0.85fr);
    gap: clamp(20px, 2.5vw, 28px);
    align-items: stretch;
  }
}

.pricing-table-wrap {
  overflow-x: auto;
  border-radius: 8px;
  border: 1px solid rgba(199, 161, 106, 0.22);
  background: var(--color-surface);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  height: 100%;
}

.pricing-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 14px;
  font-family: var(--font-sans);
  background: var(--color-surface);
}

.pricing-table thead {
  background: var(--color-grey-900);
}

.pricing-table th,
.pricing-table td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  vertical-align: middle;
}

.pricing-table tbody tr {
  background: var(--color-surface);
  transition: background 0.22s ease, box-shadow 0.22s ease;
}

.pricing-table tbody tr:nth-child(even) {
  background: var(--color-surface-raised);
}

.pricing-table tbody tr:hover {
  background: rgba(199, 161, 106, 0.1);
  box-shadow: inset 3px 0 0 var(--color-gold);
}

.pricing-table tbody tr:hover td {
  color: var(--color-text);
}

.pricing-table tbody tr:hover td strong,
.pricing-table tbody tr:hover .pricing-table__config-name,
.pricing-table tbody tr:hover .pricing-table__price strong {
  color: var(--color-white);
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-table th {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.pricing-table th:last-child,
.pricing-table td:last-child {
  text-align: center;
}

.pricing-table td {
  color: var(--color-text-soft);
  font-weight: 500;
}

.pricing-table td strong {
  color: var(--color-white);
  font-weight: 700;
}

.pricing-table__config {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-table__config-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--color-white);
}

.pricing-table__key {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.pricing-table__price {
  font-size: 14px;
}

.pricing-table__price strong {
  color: var(--color-white);
}

.btn--plan {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  background: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  padding: 10px 20px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border-radius: 2px;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn--plan:hover {
  background: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
}

.btn--plan:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

@media (max-width: 520px) {
  .pricing-table th,
  .pricing-table td {
    padding: 12px 14px;
    font-size: 13px;
  }

  .pricing-table th {
    font-size: 9px;
  }

  .btn--plan {
    padding: 8px 12px;
    font-size: 9px;
    letter-spacing: 0.1em;
  }
}

.pricing-visual {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 320px;
  min-width: 0;
  height: 100%;
  background: #0a0a0a;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  isolation: isolate;
}

.pricing-visual--master {
  border: 1px solid rgba(197, 160, 89, 0.34);
  min-height: clamp(300px, 52vw, 460px);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

@media (min-width: 992px) {
  .pricing-visual {
    min-height: 100%;
    width: 100%;
    max-width: 420px;
    justify-self: end;
  }

  .pricing-visual--master {
    min-height: 100%;
  }
}

.pricing-visual__surface {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pricing-visual__surface::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.22) 100%),
    radial-gradient(ellipse 90% 70% at 50% 100%, rgba(0, 0, 0, 0.42), transparent 62%);
}

.pricing-visual__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 0.55s ease;
}

.pricing-visual--master:hover .pricing-visual__image {
  transform: scale(1.08);
}

.pricing-visual__corner {
  position: absolute;
  z-index: 2;
  width: clamp(28px, 4vw, 42px);
  height: clamp(28px, 4vw, 42px);
  pointer-events: none;
}

.pricing-visual__corner::before,
.pricing-visual__corner::after {
  content: "";
  position: absolute;
  background: var(--color-gold);
}

.pricing-visual__corner--tl {
  top: 14px;
  left: 14px;
}

.pricing-visual__corner--tl::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
}

.pricing-visual__corner--tl::after {
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
}

.pricing-visual__corner--tr {
  top: 14px;
  right: 14px;
}

.pricing-visual__corner--tr::before {
  top: 0;
  right: 0;
  width: 100%;
  height: 2px;
}

.pricing-visual__corner--tr::after {
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
}

.pricing-visual__corner--bl {
  bottom: 14px;
  left: 14px;
}

.pricing-visual__corner--bl::before {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
}

.pricing-visual__corner--bl::after {
  bottom: 0;
  left: 0;
  width: 2px;
  height: 100%;
}

.pricing-visual__corner--br {
  bottom: 14px;
  right: 14px;
}

.pricing-visual__corner--br::before {
  bottom: 0;
  right: 0;
  width: 100%;
  height: 2px;
}

.pricing-visual__corner--br::after {
  bottom: 0;
  right: 0;
  width: 2px;
  height: 100%;
}

.pricing-visual__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    145deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.34) 42%,
    rgba(0, 0, 0, 0.12) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: clamp(22px, 5vw, 36px) var(--page-pad-x) 24px;
  text-align: left;
}

.pricing-visual__eyebrow {
  margin: 0 0 10px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.pricing-visual__tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 500;
  color: var(--color-white);
  margin: 0 0 16px;
  line-height: 1.4;
  max-width: 14em;
}

.pricing-visual__legend {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pricing-visual__legend-item {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid rgba(197, 160, 89, 0.55);
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(6px);
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-visual__btn {
  position: static;
  transform: none;
}

/* Amenities row */
.amenities-row {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 16px;
  text-align: center;
}

@media (min-width: 640px) {
  .amenities-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1100px) {
  .amenities-row {
    grid-template-columns: repeat(8, 1fr);
    gap: 16px;
  }
}

.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: 10px;
}

.amenity-item__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  object-fit: contain;
}

.amenity-item svg {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  margin: 0;
}

.amenity-item span {
  display: block;
  width: 100%;
  max-width: 11em;
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-soft);
  line-height: 1.35;
}

/* About Namrata — two-tier (image + stats + Know more | green CTA bar) */
.about-band {
  padding: 0;
  margin: 0;
  scroll-margin-top: calc(var(--header-h) + 16px);
  background: #0a0a0a;
  color: var(--color-white);
}

.about-band__top {
  background: #0a0a0a;
  padding: 2px 0 2px;
}

.about-band__top-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

@media (min-width: 960px) {
  .about-band__top-inner {
    grid-template-columns: minmax(260px, 30vw) minmax(0, 1fr);
    gap: 0;
    align-items: center;
  }
}

.about-band__visual {
  position: relative;
  min-height: 130px;
  height: 130px;
  border-radius: 0;
  overflow: hidden;
  background: #050505
    url("../images/gallery/g8.webp")
    center / cover;
  box-shadow: none;
}

@media (min-width: 960px) {
  .about-band__visual {
    align-self: center;
    min-height: min(270px, 27vw);
    max-height: min(270px, 27vw);
    height: min(270px, 27vw);
  }
}

.about-band__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 45%, rgba(10, 10, 10, 0.45) 100%);
}

@media (min-width: 960px) {
  .about-band__visual::after {
    background: linear-gradient(
      90deg,
      rgba(10, 10, 10, 0) 0%,
      rgba(10, 10, 10, 0.2) 40%,
      #0a0a0a 92%
    );
  }
}

.about-band__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding: 0 var(--page-pad-x) 2px;
}

@media (min-width: 960px) {
  .about-band__content {
    padding: 16px clamp(16px, 3vw, 40px) 20px clamp(20px, 3vw, 48px);
    /* max-width: 900px; */
  }
}

.about-band__kicker {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin: 0 0 8px;
}

.about-band__content > p:not(.about-band__kicker) {
  margin: 0;
  font-size: clamp(13px, 2.8vw, 15px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  /* max-width: 62ch; */
}

.about-band h2 {
  font-family: var(--font-serif);
  font-size: clamp(0.82rem, 2.85vw + 0.35rem, 2.5rem);
  font-weight: 500;
  margin: 0 0 16px;
  line-height: 1.18;
  color: var(--color-white);
  max-width: 100%;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

@media (max-width: 767px) {
  .about-band h2 {
    white-space: normal;
    overflow-x: visible;
  }
}

.about-band h2::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.about-band__row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  align-self: stretch;
  gap: 16px;
  width: 100%;
  max-width: 100%;
}

@media (min-width: 720px) {
  .about-band__row {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 16px 24px;
  }
}

.about-band__stats {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-end;
  gap: clamp(10px, 2.2vw, 22px);
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  overflow-y: visible;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.about-band__stats::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.about-stat {
  flex: 0 0 auto;
  min-width: min-content;
  text-align: left;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 10px;
  row-gap: 3px;
  align-items: start;
  justify-items: start;
}

.about-stat__icon {
  display: block;
  width: 32px;
  height: 32px;
  margin-bottom: 0;
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: center;
  color: var(--color-gold);
  object-fit: contain;
}

.about-stat__value {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.8vw, 1.25rem);
  font-weight: 700;
  color: var(--color-white);
  margin: 0;
  line-height: 1.15;
  letter-spacing: 0.02em;
  grid-column: 2;
  grid-row: 1;
  white-space: nowrap;
}

.about-stat__label {
  display: block;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.06em;
  /* text-transform: uppercase; */
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.3;
  grid-column: 2;
  grid-row: 2;
  margin: 0;
}

.about-band__know {
  flex-shrink: 0;
  align-self: flex-end;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}

@media (min-width: 720px) {
  .about-band__know {
    margin-bottom: 2px;
  }
}

.about-band__know:hover {
  background: var(--color-gold);
  color: #0a0a0a;
}

.about-band__know:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

.about-band__ctas {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  background: var(--color-grey-900);
}

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

.about-band--group .about-band__top {
  padding: 0;
}

.about-band--group .about-band__content {
  padding-top: clamp(2.75rem, 6vw, 4.5rem);
  padding-bottom: clamp(2.75rem, 6vw, 4.5rem);
}

.about-band--group .about-band__visual {
  padding: 0;
}

@media (min-width: 960px) {
  .about-band--group .about-band__top-inner {
    align-items: stretch;
  }

  .about-band--group .about-band__visual {
    align-self: stretch;
    min-height: auto;
    height: auto;
    max-height: none;
  }
}

/* About panel — project story (hero spines + location-split greens) */
.about-panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 55% at 12% 0%, rgba(199, 161, 106, 0.12), transparent 58%),
    radial-gradient(ellipse 70% 50% at 100% 100%, rgba(42, 42, 42, 0.55), transparent 62%),
    linear-gradient(180deg, #0a0a0a 0%, #000 48%, #101010 100%);
}

.about-panel__shell {
  position: relative;
  z-index: 1;
  padding: clamp(3.25rem, 7vw, 5.75rem) var(--page-pad-x);
}

.about-panel__stage {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.about-panel__spine {
  position: absolute;
  top: clamp(1.5rem, 4vw, 3rem);
  bottom: clamp(1.5rem, 4vw, 3rem);
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(197, 160, 89, 0.05) 0%,
    rgba(197, 160, 89, 0.72) 24%,
    rgba(255, 255, 255, 0.34) 58%,
    rgba(197, 160, 89, 0.18) 100%
  );
}

.about-panel__spine--left {
  left: clamp(10px, 2.5vw, 28px);
}

.about-panel__spine--right {
  right: clamp(10px, 2.5vw, 28px);
  opacity: 0.55;
}

.about-panel__top {
  background: transparent;
  padding: 0;
}

.about-panel__layout {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  gap: clamp(1.75rem, 4vw, 2.75rem);
  padding: clamp(1.15rem, 3vw, 2.25rem);
  background: linear-gradient(145deg, rgba(34, 34, 34, 0.94) 0%, rgba(8, 8, 8, 0.96) 58%);
  border: 1px solid rgba(197, 160, 89, 0.24);
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.about-panel__layout::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(1rem, 3vw, 2rem);
  width: clamp(72px, 12vw, 120px);
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold) 0%, rgba(197, 160, 89, 0.15) 100%);
}

@media (min-width: 960px) {
  .about-panel__layout {
    grid-template-columns: minmax(280px, 0.95fr) 1px minmax(0, 1.05fr);
    align-items: stretch;
    column-gap: clamp(1.75rem, 3vw, 2.75rem);
    row-gap: 0;
    padding: clamp(1.35rem, 2.8vw, 2.5rem);
  }
}

.about-panel__media {
  position: relative;
  min-width: 0;
}

.about-panel__visual {
  min-height: min(240px, 56vw);
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.55);
}

.about-panel__visual::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(197, 160, 89, 0.34);
  pointer-events: none;
  z-index: 1;
}

@media (min-width: 960px) {
  .about-panel__visual {
    min-height: 100%;
    height: 100%;
    max-height: none;
  }

  .about-panel__visual::after {
    background: linear-gradient(
      90deg,
      rgba(8, 8, 8, 0.08) 0%,
      rgba(8, 8, 8, 0.28) 42%,
      rgba(8, 8, 8, 0.82) 100%
    );
  }
}

.about-panel__badge {
  position: absolute;
  left: clamp(12px, 2.5vw, 18px);
  bottom: clamp(12px, 2.5vw, 18px);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid rgba(197, 160, 89, 0.72);
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(6px);
  color: var(--color-gold);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-panel__divider {
  display: none;
}

@media (min-width: 960px) {
  .about-panel__divider {
    display: block;
    align-self: stretch;
    width: 1px;
    margin: clamp(0.75rem, 2vw, 1.25rem) 0;
    background: linear-gradient(
      180deg,
      rgba(197, 160, 89, 0.08) 0%,
      rgba(197, 160, 89, 0.68) 32%,
      rgba(255, 255, 255, 0.3) 68%,
      rgba(197, 160, 89, 0.12) 100%
    );
  }
}

.about-panel__content {
  padding: clamp(1rem, 2.5vw, 1.35rem) 0 0;
}

@media (min-width: 960px) {
  .about-panel__content {
    padding: clamp(0.5rem, 1.5vw, 1rem) 0 clamp(0.5rem, 1.5vw, 1rem) clamp(0.5rem, 1.5vw, 1rem);
  }
}

.about-panel__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(0.9rem, 2vw, 1.35rem);
  padding: clamp(0.35rem, 1.5vw, 0.75rem) 0 0;
  background: transparent;
  border: 0;
}

.about-panel__heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-panel__kicker {
  margin: 0;
  letter-spacing: 0.28em;
}

.about-panel__title {
  white-space: normal;
  overflow: visible;
  font-size: clamp(1.45rem, 3.4vw, 2.85rem);
  margin: 0;
  line-height: 1.14;
  letter-spacing: 0.02em;
}

.about-panel__rule {
  display: block;
  width: clamp(52px, 10vw, 72px);
  height: 2px;
  background: var(--color-gold);
}

.about-panel__description {
  margin: 0;
  font-size: clamp(14px, 2.9vw, 16px);
  line-height: 1.74;
  color: rgba(255, 255, 255, 0.9);
  max-width: 62ch;
}

.about-panel__metrics {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.about-panel__metric {
  position: relative;
  padding: 14px 12px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 2px solid rgba(197, 160, 89, 0.82);
}

.about-panel__metric-value {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(0.82rem, 2vw, 0.98rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-white);
  margin: 0 0 4px;
  line-height: 1.2;
}

.about-panel__metric-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.35;
}

@media (max-width: 719px) {
  .about-panel__metrics {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 720px) and (max-width: 959px) {
  .about-panel__metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .about-panel__metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.about-cta-tile {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 14px;
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 0.2s;
}

@media (min-width: 560px) {
  .about-cta-tile {
    border-top: none;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    min-height: 58px;
  }

  .about-cta-tile:first-child {
    border-left: none;
  }
}

.about-cta-tile:hover {
  background: rgba(0, 0, 0, 0.14);
}

.about-cta-tile:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: -4px;
}

.about-cta-tile svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  opacity: 0.98;
  color: var(--color-white);
}

.about-cta-tile span {
  white-space: nowrap;
}

/* Gallery */
.gallery-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

.gallery-grid .gallery-tile {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-grey-800);
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-align: left;
}

.gallery-grid .gallery-tile:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
  display: block;
}

.gallery-grid .gallery-tile:hover img {
  transform: scale(1.05);
}

/* Gallery lightbox */
.gallery-viewer {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: max(12px, env(safe-area-inset-top, 0px)) max(12px, env(safe-area-inset-right, 0px))
    max(12px, env(safe-area-inset-bottom, 0px)) max(12px, env(safe-area-inset-left, 0px));
}

.gallery-viewer.is-open {
  display: flex;
}

.gallery-viewer__dim {
  position: absolute;
  inset: 0;
  border: none;
  padding: 0;
  margin: 0;
  background: rgba(0, 0, 0, 0.88);
  cursor: pointer;
}

.gallery-viewer__panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: min(100%, 1200px);
  max-height: 92vh;
  padding-top: 48px;
  pointer-events: none;
}

.gallery-viewer__panel > * {
  pointer-events: auto;
}

.gallery-viewer__img {
  max-width: 100%;
  max-height: min(78vh, 860px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}

.gallery-viewer__caption {
  margin: 14px 0 0;
  padding: 0 56px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  line-height: 1.4;
  max-width: 42em;
}

.gallery-viewer__close {
  position: fixed;
  top: max(12px, env(safe-area-inset-top, 12px));
  right: max(12px, env(safe-area-inset-right, 12px));
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 2;
}

.gallery-viewer__close:hover {
  background: rgba(255, 255, 255, 0.22);
}

.gallery-viewer__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(20, 41, 32, 0.75);
  color: var(--color-white);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 2px;
  transition: background 0.2s, border-color 0.2s;
  z-index: 2;
}

.gallery-viewer__nav:hover {
  background: rgba(26, 26, 26, 0.95);
  border-color: var(--color-gold);
}

.gallery-viewer__nav--prev {
  left: max(10px, env(safe-area-inset-left, 10px));
}

.gallery-viewer__nav--next {
  right: max(10px, env(safe-area-inset-right, 10px));
}

@media (max-width: 640px) {
  .gallery-viewer__nav {
    width: 42px;
    height: 42px;
    font-size: 24px;
  }

  .gallery-viewer__caption {
    padding: 0 16px;
  }
}

/* Contact — dark band, aside + elevated form */
.contact-section {
  background-color: var(--color-grey-950);
  padding: 56px var(--page-pad-x) 72px;
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.contact-section > .section__title,
.contact-section > .section__lead,
.contact-inner {
  position: relative;
  z-index: 1;
}

.contact-section .section__title::after {
  margin-bottom: 0;
}

.contact-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.contact-layout {
  display: grid;
  gap: 36px;
  align-items: start;
  margin-top: 8px;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 1.08fr);
    gap: 48px 56px;
  }
}

.contact-aside__kicker {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin: 0 0 12px;
}

.contact-aside__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  font-weight: 500;
  color: var(--color-white);
  margin: 0 0 14px;
  line-height: 1.2;
}

.contact-aside__text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-soft);
  margin: 0;
  max-width: 38ch;
}

.contact-aside__channels {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-aside__note {
  margin: 22px 0 0;
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.5;
  max-width: 48ch;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--color-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-channel:hover {
  border-color: rgba(199, 161, 106, 0.65);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.contact-channel__icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--color-grey-800);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-channel__icon svg {
  width: 20px;
  height: 20px;
  color: var(--color-gold);
}

.contact-channel--wa .contact-channel__icon svg {
  color: var(--color-gold);
}

.contact-channel__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.contact-channel__label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.contact-channel__value {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-white);
  overflow-wrap: anywhere;
}

.contact-form-card {
  background: var(--color-surface-raised);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
  padding: clamp(22px, 4vw, 28px) var(--page-pad-x) clamp(28px, 4vw, 32px);
  position: relative;
  overflow: hidden;
}

.contact-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-map));
}

.contact-form-card__title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.2vw, 1.45rem);
  font-weight: 500;
  color: var(--color-white);
  margin: 10px 0 8px;
}

.contact-form-card__sub {
  font-size: 13px;
  color: var(--color-text-soft);
  margin: 0 0 22px;
  line-height: 1.5;
}

.contact-form-card .field {
  margin-bottom: 16px;
}

.contact-form-card .field:last-of-type {
  margin-bottom: 0;
}

.contact-form-card label {
  display: block;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 7px;
}

.contact-form-card .input-wrap {
  border-color: rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
}

.contact-form-card .input-wrap:focus-within {
  border-color: var(--color-gold);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 1px rgba(199, 161, 106, 0.22);
}

.contact-form-card__submit {
  margin-top: 0;
}

/* Footer */
.site-footer {
  position: relative;
  background: linear-gradient(165deg, #0a0a0a 0%, #1a1a1a 42%, #101010 100%);
  color: rgba(255, 255, 255, 0.82);
  padding: 0 var(--page-pad-x) 36px;
  font-size: 13px;
  line-height: 1.6;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(197, 160, 89, 0.12), transparent 55%);
  pointer-events: none;
}

.site-footer__accent {
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--color-gold) 20%, #e8d4a8 50%, var(--color-gold) 80%, transparent);
  opacity: 0.95;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-top: 40px;
}

.site-footer__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px 24px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(197, 160, 89, 0.22);
}

@media (max-width: 600px) {
  .site-footer__head {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .site-footer__head-actions {
    width: 100%;
  }

  .site-footer__pill {
    width: 100%;
    justify-content: center;
  }
}

.site-footer__brand-block {
  display: block;
  color: inherit;
  text-decoration: none;
  max-width: 520px;
  transition: opacity 0.2s;
}

.site-footer__brand-block:hover {
  opacity: 0.92;
}

.site-footer__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 8px;
}

.site-footer__title {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 6px;
}

.site-footer__subtitle {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 500;
}

.site-footer__head-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  max-width: 100%;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
}

.site-footer__pill:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--color-white);
}

.site-footer__pill--gold {
  border-color: rgba(197, 160, 89, 0.55);
  background: rgba(197, 160, 89, 0.14);
  color: #f5ead2;
}

.site-footer__pill--gold:hover {
  background: rgba(197, 160, 89, 0.28);
  border-color: var(--color-gold);
  color: var(--color-white);
}

.site-footer__pill-icon {
  display: flex;
  color: var(--color-gold);
}

.site-footer__pill-icon svg {
  width: 18px;
  height: 18px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 28px 36px;
  margin-bottom: 32px;
}

@media (max-width: 900px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__grid .site-footer__panel:last-child {
    grid-column: 1 / -1;
  }
}

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

  .site-footer__grid .site-footer__panel:last-child {
    grid-column: auto;
  }
}

.site-footer__panel {
  min-width: 0;
}

.site-footer__disclaimer {
  margin: 0 0 18px;
  padding: 16px 18px;
  font-size: 11px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.52);
  background: rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  border-left: 3px solid var(--color-gold);
  overflow-wrap: break-word;
}

.site-footer__disclaimer strong {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
}

.site-footer__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 420px) {
  .site-footer__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .site-footer__meta-sep {
    display: none;
  }
}

.site-footer__meta-link {
  color: var(--color-gold);
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
}

.site-footer__meta-link:hover {
  color: #e8d4a8;
  text-decoration: underline;
}

.site-footer__meta-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.5);
}

.site-footer__copy {
  margin: 0;
}

/* Compact footer (thank you, privacy) */
.site-footer--compact {
  padding-bottom: 28px;
}

.site-footer__inner--compact {
  padding-top: 28px;
  text-align: center;
}

.site-footer__compact-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
}

.site-footer__logos--center {
  justify-content: center;
  margin-bottom: 0;
}

.site-footer__compact-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 4px;
  font-size: 13px;
  font-weight: 600;
}

.site-footer__compact-nav a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  padding: 4px 6px;
  border-radius: 4px;
  transition: color 0.15s;
}

.site-footer__compact-nav a:hover {
  color: var(--color-gold);
}

.site-footer__nav-dot {
  color: rgba(197, 160, 89, 0.55);
  user-select: none;
}

.site-footer__nav-current {
  color: rgba(255, 255, 255, 0.45);
  padding: 4px 6px;
}

.site-footer__copy--center {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.45);
}

.site-footer .site-footer__pill:focus-visible,
.site-footer .site-footer__brand-block:focus-visible,
.site-footer .site-footer__links a:focus-visible,
.site-footer .site-footer__connect-link:focus-visible,
.site-footer .site-footer__meta-link:focus-visible,
.site-footer .site-footer__compact-nav a:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

/* Sticky quick actions (all viewports) */
.sticky-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--color-grey-900);
  border-top: 1px solid rgba(199, 161, 106, 0.22);
  box-shadow: 0 -6px 28px rgba(0, 0, 0, 0.18);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.sticky-mobile-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: var(--sticky-bar-h);
  padding: 8px 6px;
  color: var(--color-white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.15s;
}

.sticky-mobile-bar svg {
  width: 20px;
  height: 20px;
}

@media (min-width: 769px) {
  :root {
    --sticky-bar-h: 56px;
  }

  .sticky-mobile-bar a {
    flex-direction: row;
    gap: 10px;
    padding: 12px 16px;
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .sticky-mobile-bar svg {
    width: 22px;
    height: 22px;
  }
}

.sticky-mobile-bar a:hover {
  background: rgba(0, 0, 0, 0.12);
}

.sticky-mobile-bar a:last-child {
  border-right: none;
}

@media (max-width: 360px) {
  .sticky-mobile-bar a {
    font-size: 9px;
    letter-spacing: 0.04em;
    padding: 8px 4px;
    gap: 3px;
  }

  .sticky-mobile-bar svg {
    width: 18px;
    height: 18px;
  }
}

.sticky-mobile-bar a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: -4px;
}

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: max(16px, env(safe-area-inset-top, 0px)) max(16px, env(safe-area-inset-right, 0px))
    max(16px, env(safe-area-inset-bottom, 0px)) max(16px, env(safe-area-inset-left, 0px));
}

.modal-backdrop.is-open {
  display: flex;
}

.modal {
  background: var(--color-surface-raised);
  border: 1px solid rgba(199, 161, 106, 0.22);
  border-radius: var(--radius);
  max-width: 420px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow);
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--color-grey-800);
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: var(--color-white);
}

.modal__body {
  padding: clamp(24px, 5vw, 32px) var(--page-pad-x) clamp(22px, 4vw, 28px);
}

.modal__body h3 {
  font-family: var(--font-serif);
  margin: 0 0 8px;
  text-align: center;
  color: var(--color-white);
}

.modal__body > p {
  text-align: center;
  font-size: 14px;
  color: var(--color-text-soft);
  margin: 0 0 20px;
}

/* Standalone pages (thank you, privacy) */
.page-simple .site-header__logo {
  max-width: min(200px, 55vw);
}

.page-simple main {
  margin-top: var(--header-h);
  min-height: 50vh;
  padding: clamp(36px, 8vw, 48px) var(--page-pad-x) clamp(48px, 10vw, 64px);
}

.simple-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--color-surface-raised);
  border: 1px solid rgba(199, 161, 106, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(32px, 6vw, 40px) var(--page-pad-x);
  text-align: center;
}

.simple-card h1 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--color-white);
  margin: 0 0 12px;
}

.simple-card p {
  color: var(--color-text-soft);
  margin: 0 0 20px;
}

.legal-page {
  max-width: 800px;
  margin: 0 auto;
  background: var(--color-surface-raised);
  border: 1px solid rgba(199, 161, 106, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(28px, 5vw, 36px) var(--page-pad-x) clamp(36px, 6vw, 44px);
}

.legal-page h1 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  margin: 0 0 8px;
  color: var(--color-white);
}

.legal-page .sub {
  color: var(--color-text-soft);
  margin: 0 0 28px;
  font-size: 14px;
}

.legal-page h2 {
  font-size: 1.1rem;
  margin: 28px 0 12px;
  color: var(--color-gold);
}

.legal-page p,
.legal-page li {
  color: var(--color-text);
  font-size: 14px;
}

.legal-page ul {
  padding-left: 1.2rem;
}

.standalone-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-weight: 600;
  font-size: 14px;
  color: var(--color-gold);
}

.standalone-back:hover {
  color: var(--color-gold);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Responsive — small phones through extra-large desktops */
@media (max-width: 639px) {
  .hero__trust::before,
  .contact-section::before {
    background-size: clamp(160px, 42vw, 220px) auto;
  }

  .hero__trust-title,
  .hero__trust-desc {
    overflow-wrap: anywhere;
  }

  .lead-card {
    max-width: none;
  }

  .pricing-table-wrap {
    overflow-x: visible;
    border: none;
    background: transparent;
    box-shadow: none;
  }

  .pricing-table {
    min-width: 0;
  }

  .pricing-table thead {
    display: none;
  }

  .pricing-table tbody tr {
    display: block;
    margin-bottom: 14px;
    border: 1px solid rgba(199, 161, 106, 0.22);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  }

  .pricing-table tbody tr:hover {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  }

  .pricing-table tbody tr:last-child {
    margin-bottom: 0;
  }

  .pricing-table td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    text-align: right;
  }

  .pricing-table td::before {
    content: attr(data-label);
    flex: 0 0 42%;
    text-align: left;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold);
  }

  .pricing-table td:last-child {
    justify-content: center;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .pricing-table td:last-child::before {
    margin-bottom: 8px;
  }

  .pricing-table__config {
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  .pricing-visual {
    justify-self: stretch;
    max-width: none;
  }

  .contact-layout {
    gap: 28px;
  }

  .contact-form-card {
    padding-left: clamp(16px, 4vw, 22px);
    padding-right: clamp(16px, 4vw, 22px);
  }
}

@media (min-width: 640px) and (max-width: 991px) {
  .pricing-wrap {
    gap: 28px;
  }

  .pricing-visual {
    justify-self: stretch;
    max-width: none;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (min-width: 769px) and (max-width: 1099px) {
  .site-header__cta {
    padding: 10px 12px;
    font-size: 11px;
    letter-spacing: 0.01em;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .pricing-wrap {
    grid-template-columns: minmax(0, 1.55fr) minmax(240px, 0.95fr);
  }
}

@media (min-width: 1200px) {
  .hero__trust-grid {
    gap: 20px;
  }

  .highlights-grid {
    gap: 18px;
  }

  .pricing-wrap {
    max-width: 1280px;
    grid-template-columns: minmax(0, 1.8fr) minmax(280px, 0.82fr);
  }

  .contact-inner {
    max-width: 1140px;
  }

  .gallery-grid {
    max-width: 1180px;
  }

  .amenities-row {
    max-width: 1240px;
  }

  .about-panel__layout {
    max-width: 1220px;
  }

  .site-footer__inner {
    max-width: 1200px;
  }
}

@media (min-width: 1400px) {
  :root {
    --page-pad-x: clamp(20px, 2.5vw, 40px);
  }

  .hero__main {
    max-width: var(--layout-max-xl);
    gap: 56px;
  }

  .hero__trust-grid {
    max-width: 1360px;
  }

  .highlights-grid,
  .pricing-wrap,
  .amenities-row,
  .gallery-grid,
  .contact-inner,
  .about-panel__layout,
  .site-footer__inner {
    max-width: var(--layout-max-xl);
  }

  .section__lead {
    max-width: 640px;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .section--highlights,
  .section--pricing {
    padding-top: 64px;
    padding-bottom: 72px;
  }

  .contact-section {
    padding-top: 64px;
    padding-bottom: 80px;
  }
}

@media (min-width: 1600px) {
  .hero__main {
    max-width: var(--layout-max-2xl);
  }

  .hero__trust-grid,
  .highlights-grid,
  .pricing-wrap,
  .amenities-row,
  .gallery-grid,
  .contact-inner,
  .about-panel__layout,
  .site-footer__inner {
    max-width: var(--layout-max-2xl);
  }

  .hero h1 {
    font-size: clamp(2.5rem, 3.2vw, 3.75rem);
  }

  .section__title {
    font-size: clamp(1.45rem, 2vw, 2rem);
  }
}

/* Standalone / legal pages: always show compact nav */
.page-simple .site-nav {
  display: flex;
  justify-content: flex-end;
  flex: 1;
  padding-right: 12px;
}

.page-simple .menu-toggle {
  display: none !important;
}

@media (max-width: 768px) {
  .page-simple .site-header__cta {
    display: none;
  }

  .page-simple .site-nav a {
    font-size: 10px;
  }
}
