:root {
  --black: #030303;
  --ink: #eceff1;
  --panel: #0c1012;
  --panel-soft: #080a0b;
  --silver: #c3c8cc;
  --platinum: #060708;
  --steel: #a7adb2;
  --line: rgba(202, 161, 74, 0.2);
  --font-display: "Cinzel", Georgia, "Times New Roman", serif;
  --font-body: "Montserrat", Arial, Helvetica, sans-serif;
  --nav-height: clamp(74px, 6vw, 92px);
  --nav-height-mobile: 66px;
  --gold-muted: #caa14a;
  --charcoal: #17191c;
  --smoke: #161a1c;
  --gold: #c89b3c;
  --model-gold: #c89b3c;
  --gold-dark: #8a6527;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #050607;
  color: var(--ink);
  font-family: var(--font-body);
}

body::selection {
  background: var(--silver);
  color: var(--charcoal);
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 22px clamp(18px, 4vw, 58px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0));
  border-bottom: 0;
  backdrop-filter: none;
}

.brand img {
  width: 186px;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.16));
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 3.1vw, 42px);
  color: rgba(236, 239, 241, 0.82);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.main-nav a:first-child {
  position: relative;
  color: #fff;
}

.main-nav a:first-child::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 2px;
  background: var(--gold);
}

.nav-group {
  position: relative;
}

.nav-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  display: grid;
  min-width: 220px;
  padding: 10px;
  background: rgba(52, 56, 60, 0.98);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-group:hover .nav-menu,
.nav-group:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-menu a {
  padding: 12px 14px;
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0;
}

.nav-menu a:hover {
  background: var(--smoke);
}

.main-nav a,
.login-link {
  transition: color 180ms ease;
}

.main-nav a:hover,
.login-link:hover {
  color: #fff;
}

.login-link {
  border: 1px solid rgba(202, 161, 74, 0.82);
  border-radius: 3px;
  padding: 16px 28px;
  color: var(--ink);
  font-size: 0.9rem;
  background: rgba(5, 6, 7, 0.3);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.suite-model {
  width: min(100%, 1024px);
  margin: 0 auto;
  padding-top: 74px;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.055), transparent 18%),
    linear-gradient(180deg, #020303, #050505 46%, #020202);
  color: #fff;
  overflow: hidden;
}

.model-nav {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 1000;
  width: min(100%, 1280px);
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: minmax(172px, 224px) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(10px, 1.35vw, 22px);
  height: var(--nav-height);
  padding: 10px clamp(18px, 2.4vw, 34px) 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.97), rgba(3, 3, 3, 0.94)),
    #030303;
  border-bottom: 1px solid rgba(197, 151, 61, 0.18);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(10px);
  transition: box-shadow 220ms ease, border-color 220ms ease;
}

.model-nav.is-scrolled {
  border-bottom-color: rgba(197, 151, 61, 0.34);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.55);
}

.model-nav__brand {
  display: block;
  min-width: 0;
  overflow: hidden;
}

.model-nav__panel {
  display: contents;
}

.model-nav__toggle {
  display: none;
}

.model-nav img {
  display: block;
  width: 190px;
  max-height: 56px;
  height: auto;
  object-fit: contain;
}

.model-nav nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-width: 0;
  --indicator-left: 0px;
  --indicator-width: 0px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.model-nav nav a {
  position: relative;
  padding: 11px 0;
  transition: color 180ms ease;
}

.model-nav nav a:hover,
.model-nav nav a.active {
  color: #fff;
}

.model-nav nav a.active::after {
  content: none;
}

.model-menu-indicator {
  content: "";
  position: absolute;
  left: var(--indicator-left);
  bottom: 1px;
  width: var(--indicator-width);
  height: 2px;
  background: #c4973d;
  box-shadow: 0 0 9px rgba(196, 151, 61, 0.48);
  transition: left 220ms ease, width 220ms ease;
  pointer-events: none;
}

.model-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.model-appointment,
.model-login-link,
.model-logout-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 37px;
  padding: 0 14px;
  border: 1px solid #b88735;
  border-radius: 3px;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.model-appointment:hover,
.model-login-link:hover,
.model-logout-link:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.model-appointment {
  min-width: 150px;
}

.model-login-link {
  min-width: 82px;
  background: rgba(197, 151, 61, 0.12);
}

.model-logout-link {
  min-width: 64px;
  background: rgba(255, 255, 255, 0.06);
}

.model-hero {
  position: relative;
  display: grid;
  grid-template-columns: 49% 51%;
  min-height: 590px;
  border-bottom: 1px solid rgba(197, 151, 61, 0.24);
}

.model-hero::before {
  content: "";
  position: absolute;
  inset: -74px 39% 0 0;
  z-index: 1;
  background:
    linear-gradient(102deg, #040404 0%, #050505 72%, rgba(5, 5, 5, 0) 72.2%),
    radial-gradient(circle at 34% 30%, rgba(255, 255, 255, 0.075), transparent 24%);
  clip-path: polygon(0 0, 100% 0, 78% 100%, 0 100%);
}

.model-hero::after {
  content: "";
  position: absolute;
  top: -74px;
  bottom: 0;
  left: 48.7%;
  z-index: 4;
  width: 18px;
  background: linear-gradient(180deg, transparent 0%, #1a1308 12%, #c3933d 48%, #382814 80%, transparent 100%);
  clip-path: polygon(38% 0, 100% 0, 62% 100%, 0 100%);
  box-shadow: 0 0 18px rgba(215, 171, 78, 0.56);
}

.model-hero__copy {
  position: relative;
  z-index: 2;
  padding: 20px 0 0 75px;
}

.model-hero__logo {
  display: block;
  width: 366px;
  margin: 0 0 22px;
  filter: drop-shadow(0 18px 24px rgba(255, 255, 255, 0.1));
}

.model-hero h1 {
  margin: 0;
  color: #f4f2ed;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-wrap: balance;
}

.model-hero h1 span,
.model-about h2 span,
.model-investment-card strong span {
  color: #c9973f;
}

.model-hero h1 span {
  display: block;
}

.model-hero p {
  max-width: 390px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  line-height: 1.55;
}

.model-gold-button,
.model-outline-button,
.model-projects article a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid #b88735;
  border-radius: 3px;
  color: #fff;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.model-gold-button {
  min-width: 168px;
  margin-top: 24px;
  background: linear-gradient(135deg, #d2a24a, #a67825);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.18);
}

.model-hero__image {
  position: relative;
  z-index: 0;
  min-height: 590px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.2)),
    url("../img/suite-hero-building-original.webp");
  background-size: cover;
  background-position: 50% 50%;
}

.model-investment-card {
  position: absolute;
  right: 0;
  bottom: 49px;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  align-items: center;
  width: 424px;
  min-height: 113px;
  padding: 22px 30px;
  border: 1px solid rgba(202, 151, 58, 0.9);
  border-right: 0;
  background: rgba(0, 0, 0, 0.34);
}

.model-chart-icon {
  display: block;
  width: 70px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(200, 155, 60, 0.18));
}

.model-investment-card strong {
  display: block;
  color: #fff;
  font-size: 1.11rem;
  line-height: 1.22;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.model-investment-card small {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.model-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 149px;
  border-bottom: 1px solid rgba(197, 151, 61, 0.24);
  background: #030404;
}

.model-services article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  padding: 30px 26px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.model-services article:last-child {
  border-right: 0;
}

.model-services img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(200, 155, 60, 0.14));
}

.model-services h3,
.model-projects h3 {
  margin: 0;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.24;
  text-transform: uppercase;
}

.model-services p,
.model-projects article p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
  line-height: 1.46;
}

.model-about {
  position: relative;
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 390px;
  border-bottom: 1px solid rgba(197, 151, 61, 0.24);
  background: #040505;
}

.model-about::before {
  content: "";
  position: absolute;
  inset: 0 44% 0 0;
  z-index: 1;
  background: linear-gradient(108deg, #050505 0%, #050505 88%, rgba(5, 5, 5, 0) 88.2%);
}

.model-about::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 46.8%;
  z-index: 3;
  width: 51px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0) 0 26%, #d5b360 26% 33%, #222 33% 44%, rgba(0, 0, 0, 0) 44%);
  transform: skewX(-16deg);
}

.model-about__copy {
  position: relative;
  z-index: 2;
  padding: 40px 0 20px 75px;
}

.model-eyebrow {
  position: relative;
  margin: 0 0 15px 30px;
  color: #c9973f;
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.model-eyebrow::before {
  content: "";
  position: absolute;
  right: calc(100% + 9px);
  top: 50%;
  width: 24px;
  height: 1px;
  background: #c9973f;
}

.model-about h2,
.model-projects h2 {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.model-about__copy > p:not(.model-eyebrow) {
  max-width: 382px;
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.75rem;
  line-height: 1.5;
}

.model-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 330px;
  margin: 14px 0 18px;
}

.model-metrics div {
  min-height: 58px;
  padding: 0 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  text-align: center;
}

.model-metrics div:first-child {
  padding-left: 0;
}

.model-metrics strong {
  display: block;
  color: #c9973f;
  font-size: 1.45rem;
}

.model-metrics span {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.64rem;
  line-height: 1.45;
  text-transform: uppercase;
}

.model-outline-button {
  min-width: 232px;
  min-height: 38px;
  background: rgba(0, 0, 0, 0.15);
}

.model-about__image {
  position: relative;
  z-index: 0;
  min-height: 390px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.08)),
    url("../img/suite-about-building-original.webp");
  background-size: cover;
  background-position: center 58%;
}

.model-projects {
  padding: 28px 43px 18px;
  background: #030404;
  text-align: center;
}

.model-eyebrow--center {
  display: inline-block;
  margin-left: 0;
}

.model-projects h2 {
  font-size: 1.5rem;
}

.model-projects h2::after {
  content: "";
  display: block;
  width: 44px;
  height: 1px;
  margin: 9px auto 0;
  background: #c9973f;
}

.model-project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
  text-align: left;
}

.model-projects article {
  display: grid;
  grid-template-columns: 124px 1fr;
  min-height: 158px;
  overflow: hidden;
  border: 1px solid rgba(197, 151, 61, 0.24);
  border-radius: 7px;
  background: #0c1012;
}

.model-projects article img {
  width: 124px;
  height: 158px;
  object-fit: cover;
  object-position: center top;
}

.model-projects article div {
  display: grid;
  align-content: center;
  padding: 13px 15px;
}

.model-projects article span {
  margin-top: 2px;
  color: #c9973f;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.model-projects article a {
  width: 132px;
  min-height: 29px;
  margin-top: 8px;
  font-size: 0.66rem;
  white-space: nowrap;
}

.model-outline-button--center {
  min-width: 234px;
  min-height: 34px;
  margin-top: 13px;
  color: #c9973f;
}

.suite-service-page {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding-top: clamp(74px, 6vw, 92px);
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.06), transparent 18%),
    linear-gradient(180deg, #020303, #050505 58%, #020202);
  color: #fff;
  overflow: hidden;
}

.service-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.65fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: end;
  min-height: clamp(520px, 42vw, 620px);
  padding: clamp(82px, 9vw, 126px) clamp(36px, 7vw, 110px) clamp(58px, 7vw, 90px);
  border-bottom: 1px solid rgba(197, 151, 61, 0.24);
  background:
    linear-gradient(105deg, rgba(3, 3, 3, 0.98) 0%, rgba(3, 3, 3, 0.9) 49%, rgba(3, 3, 3, 0.34) 49.2%, rgba(3, 3, 3, 0.78) 100%),
    url("../img/suite-hero-building-original.webp");
  background-size: cover;
  background-position: center;
}

.service-hero::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 54%;
  width: 18px;
  background: linear-gradient(180deg, transparent, #c3933d 40%, #24190b 78%, transparent);
  clip-path: polygon(38% 0, 100% 0, 62% 100%, 0 100%);
  box-shadow: 0 0 18px rgba(215, 171, 78, 0.5);
}

.service-hero__copy,
.service-hero__panel {
  position: relative;
  z-index: 2;
}

.service-hero h1 {
  max-width: 760px;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.1vw, 3rem);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  text-wrap: balance;
}

.service-hero__copy > p:not(.model-eyebrow),
.service-hero__panel p,
.service-suite-grid p,
.service-process p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.service-hero__copy > p:not(.model-eyebrow) {
  max-width: 690px;
  margin: 24px 0 0;
  font-size: clamp(1rem, 1.2vw, 1.18rem);
}

.service-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.service-hero__panel {
  display: grid;
  gap: 12px;
  padding: clamp(28px, 3vw, 38px);
  border: 1px solid rgba(202, 151, 58, 0.72);
  background: rgba(0, 0, 0, 0.48);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.34);
}

.service-hero__panel span,
.service-suite-grid span,
.service-process__steps span {
  color: #c9973f;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-hero__panel strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  font-weight: 500;
  line-height: 1.08;
}

.service-suite-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid rgba(197, 151, 61, 0.24);
  background: #030404;
}

.service-suite-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 320px;
  padding: clamp(30px, 3.4vw, 48px) clamp(24px, 3vw, 42px);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.service-suite-grid article:last-child {
  border-right: 0;
}

.service-suite-grid img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 10px rgba(200, 155, 60, 0.16));
}

.service-suite-grid h2,
.service-process h2 {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.35vw, 1.35rem);
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
}

.service-process {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 6vw, 86px);
  padding: clamp(64px, 8vw, 96px) clamp(36px, 7vw, 110px);
  background:
    linear-gradient(110deg, #040505 0%, #040505 50%, rgba(9, 10, 10, 0.92) 50.2%),
    #050505;
}

.service-process h2 {
  max-width: 560px;
  font-size: clamp(1.5rem, 2.4vw, 2.3rem);
}

.service-process__steps {
  display: grid;
  gap: 14px;
}

.service-process__steps article {
  display: grid;
  gap: 8px;
  padding: 26px 28px;
  border: 1px solid rgba(197, 151, 61, 0.25);
  background: #0b0f10;
}

.service-process__steps h3 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.suite-courses-page {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding-top: clamp(74px, 6vw, 92px);
  background:
    radial-gradient(circle at 16% 10%, rgba(255, 255, 255, 0.06), transparent 17%),
    linear-gradient(180deg, #020303, #060707 50%, #020202);
  color: #fff;
  overflow: hidden;
}

.courses-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  min-height: clamp(520px, 42vw, 640px);
  padding: clamp(72px, 8vw, 112px) clamp(28px, 7vw, 110px);
  border-bottom: 1px solid rgba(197, 151, 61, 0.24);
  background:
    linear-gradient(110deg, rgba(2, 3, 3, 0.98), rgba(2, 3, 3, 0.84) 54%, rgba(15, 17, 17, 0.92)),
    url("../img/suite-about-building-original.webp") center / cover;
}

.courses-hero h1,
.course-toolbar h2,
.course-review-box h2 {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.courses-hero h1 {
  max-width: 860px;
  font-size: clamp(1.7rem, 3.1vw, 3rem);
  line-height: 1.16;
  text-wrap: balance;
}

.courses-hero p,
.courses-hero__panel p,
.learning-card p,
.course-detail p,
.course-review-box p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}

.courses-hero > div > p:not(.model-eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  font-size: clamp(1rem, 1.2vw, 1.18rem);
}

.courses-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  max-width: 760px;
  margin-top: 34px;
  padding: 8px;
  border: 1px solid rgba(202, 161, 74, 0.34);
  background: rgba(0, 0, 0, 0.42);
}

.courses-search input {
  min-width: 0;
  min-height: 54px;
  padding: 0 18px;
  border: 0;
  outline: 0;
  background: rgba(244, 241, 234, 0.08);
  color: #fff;
}

.courses-search button,
.course-filters button,
.learning-card__footer button,
.course-detail__tabs button,
.course-review-box button {
  min-height: 48px;
  border: 1px solid rgba(202, 161, 74, 0.46);
  background: rgba(6, 8, 8, 0.78);
  color: #f4f1ea;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.courses-search button,
.learning-card__footer button,
.course-review-box button,
.course-filters button.active,
.course-detail__tabs button.active,
.learning-card__footer button.is-done {
  background: var(--gold);
  border-color: var(--gold);
  color: #070707;
}

.courses-hero__panel {
  display: grid;
  gap: 14px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(202, 161, 74, 0.48);
  background: rgba(3, 5, 5, 0.78);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.34);
}

.courses-hero__panel span,
.courses-hero__panel small,
.learning-card__media span,
.learning-card__media strong,
.learning-instructor,
.learning-evaluation span,
.course-detail article span,
.course-review-feed span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.courses-hero__panel > strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.8vw, 1.8rem);
  line-height: 1.12;
  text-transform: uppercase;
}

.courses-hero__panel div,
.learning-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.courses-hero__panel small,
.learning-meta li {
  padding: 8px 10px;
  border: 1px solid rgba(202, 161, 74, 0.22);
  background: rgba(202, 161, 74, 0.08);
}

.course-marketplace,
.course-detail,
.course-review-box,
.course-guides {
  padding: clamp(54px, 7vw, 90px) clamp(28px, 7vw, 110px);
  border-bottom: 1px solid rgba(197, 151, 61, 0.22);
  background: #030404;
}

.course-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
}

.course-toolbar h2,
.course-review-box h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.3rem);
  line-height: 1.16;
}

.course-filters,
.course-detail__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.course-filters button,
.course-detail__tabs button {
  padding: 0 16px;
  font-size: 0.74rem;
}

.course-catalog {
  display: grid;
  gap: 18px;
}

.learning-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  border: 1px solid rgba(202, 161, 74, 0.25);
  background: rgba(12, 16, 16, 0.9);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
}

.learning-card[hidden] {
  display: none;
}

.learning-card.featured {
  border-color: rgba(202, 161, 74, 0.58);
  background:
    linear-gradient(110deg, rgba(202, 161, 74, 0.12), rgba(12, 16, 16, 0.92) 38%),
    rgba(12, 16, 16, 0.9);
}

.learning-card__media {
  display: grid;
  align-content: space-between;
  min-height: 300px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(202, 161, 74, 0.28), rgba(0, 0, 0, 0.62)),
    url("../img/suite-hero-building-original.webp") center / cover;
}

.learning-card__media strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  letter-spacing: 0.02em;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.learning-card__body {
  display: grid;
  gap: 12px;
  padding: clamp(24px, 3.4vw, 42px);
}

.learning-rating {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.learning-rating strong,
.learning-rating span {
  color: #e3b65b;
}

.learning-rating small {
  color: rgba(255, 255, 255, 0.64);
}

.learning-card h3,
.course-detail article strong,
.course-review-feed strong {
  margin: 0;
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.5vw, 1.4rem);
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.learning-card p {
  margin: 0;
}

.learning-instructor {
  color: rgba(255, 255, 255, 0.7);
}

.learning-meta {
  padding: 0;
  margin: 4px 0 0;
  list-style: none;
}

.learning-meta li {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.learning-evaluation {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.06);
}

.learning-card__footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-top: 8px;
}

.learning-card__footer > strong {
  color: #fff;
  font-size: 1.3rem;
}

.learning-card__footer button,
.course-review-box button {
  padding: 0 24px;
}

.course-detail {
  background:
    linear-gradient(110deg, #050505, rgba(9, 10, 10, 0.96)),
    #050505;
}

.course-detail__tabs {
  margin-bottom: 18px;
}

.course-detail__panel {
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.course-detail__panel.active {
  display: grid;
}

.course-detail article,
.course-review-feed article {
  display: grid;
  gap: 10px;
  min-height: 210px;
  align-content: start;
  padding: 24px;
  border: 1px solid rgba(202, 161, 74, 0.24);
  background: rgba(15, 20, 20, 0.74);
}

.course-review-box {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.course-review-box form {
  display: grid;
  gap: 12px;
}

.course-review-box label {
  display: grid;
  gap: 8px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.course-review-box input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(244, 241, 234, 0.18);
  background: rgba(244, 241, 234, 0.08);
  color: #fff;
}

.course-review-feed {
  grid-column: 2;
  display: grid;
  gap: 14px;
}

.course-review-feed:empty {
  display: none;
}

.course-guides {
  text-align: center;
}

.course-guides .article-grid {
  margin-top: 28px;
  text-align: left;
}

.suite-project-page {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding-top: clamp(74px, 6vw, 92px);
  background:
    radial-gradient(circle at 20% 12%, rgba(255, 255, 255, 0.055), transparent 18%),
    linear-gradient(180deg, #020303, #050505 54%, #020202);
  color: #fff;
  overflow: hidden;
}

.project-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 0.9fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  min-height: clamp(560px, 44vw, 670px);
  padding: clamp(72px, 8vw, 112px) clamp(36px, 7vw, 110px);
  border-bottom: 1px solid rgba(197, 151, 61, 0.24);
  background:
    linear-gradient(112deg, #040404 0%, #040404 54%, rgba(4, 4, 4, 0.78) 54.2%, rgba(4, 4, 4, 0.95) 100%);
}

.project-hero::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 53%;
  width: 20px;
  background: linear-gradient(180deg, transparent, #c3933d 42%, #25190b 80%, transparent);
  clip-path: polygon(34% 0, 100% 0, 66% 100%, 0 100%);
  box-shadow: 0 0 18px rgba(215, 171, 78, 0.44);
}

.project-hero__copy,
.project-hero__featured {
  position: relative;
  z-index: 2;
}

.project-hero h1,
.project-showcase h2,
.project-investment-band h2 {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.project-hero h1 {
  max-width: 760px;
  font-size: clamp(1.7rem, 3.1vw, 3rem);
  line-height: 1.16;
  text-wrap: balance;
}

.project-hero__copy > p:not(.model-eyebrow),
.project-hero__featured p,
.project-showcase p,
.project-investment-band p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.project-hero__copy > p:not(.model-eyebrow) {
  max-width: 680px;
  margin: 24px 0 0;
  font-size: clamp(1rem, 1.2vw, 1.18rem);
}

.project-hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 520px;
  margin-top: 34px;
  border-top: 1px solid rgba(197, 151, 61, 0.26);
  border-bottom: 1px solid rgba(197, 151, 61, 0.26);
}

.project-hero__metrics div {
  padding: 18px 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  text-align: center;
}

.project-hero__metrics div:last-child {
  border-right: 0;
}

.project-hero__metrics strong {
  display: block;
  color: #c9973f;
  font-size: clamp(1.5rem, 2vw, 2.1rem);
}

.project-hero__metrics span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.68rem;
  line-height: 1.35;
  text-transform: uppercase;
}

.project-hero__featured {
  display: grid;
  grid-template-rows: minmax(320px, 1fr) auto;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(197, 151, 61, 0.34);
  background: #080b0c;
  box-shadow: 0 28px 58px rgba(0, 0, 0, 0.36);
}

.project-hero__featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.84) contrast(1.06);
}

.project-hero__featured div {
  display: grid;
  gap: 8px;
  padding: 26px 30px;
}

.project-hero__featured span,
.project-showcase article span,
.project-criteria span {
  color: #c9973f;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-hero__featured h2 {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 1.9vw, 1.9rem);
  font-weight: 500;
}

.project-showcase {
  padding: clamp(58px, 7vw, 90px) clamp(36px, 7vw, 110px);
  background: #030404;
  text-align: center;
  border-bottom: 1px solid rgba(197, 151, 61, 0.24);
}

.project-showcase h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.4rem);
}

.project-showcase h2::after {
  content: "";
  display: block;
  width: 58px;
  height: 1px;
  margin: 14px auto 0;
  background: #c9973f;
}

.project-showcase__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 30px);
  margin-top: 38px;
  text-align: left;
}

.project-showcase article {
  display: grid;
  grid-template-rows: 320px 1fr;
  overflow: hidden;
  border: 1px solid rgba(197, 151, 61, 0.28);
  background: #0b0f10;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
}

.project-showcase article img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04);
}

.project-showcase article div {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 28px;
}

.project-showcase h3 {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.5vw, 1.5rem);
  font-weight: 500;
  line-height: 1.2;
}

.project-showcase strong {
  color: #fff;
  font-size: 1.15rem;
}

.project-showcase ul {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 0;
  margin: 2px 0 8px;
  list-style: none;
  color: rgba(255, 255, 255, 0.7);
}

.project-showcase .model-outline-button {
  justify-self: start;
  min-width: 188px;
  color: #c9973f;
}

.project-investment-band {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 46px);
  padding: clamp(64px, 8vw, 96px) clamp(36px, 7vw, 110px);
  background:
    linear-gradient(110deg, #050505 0%, #050505 58%, rgba(9, 10, 10, 0.94) 58.2%),
    #050505;
}

.project-investment-band h2 {
  max-width: 940px;
  font-size: clamp(1.5rem, 2.4vw, 2.3rem);
  line-height: 1.18;
}

.project-criteria {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.project-criteria article {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 238px;
  padding: 26px;
  border: 1px solid rgba(197, 151, 61, 0.25);
  background: #0b0f10;
}

.project-criteria h3 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.suite-info-page {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding-top: clamp(74px, 6vw, 92px);
  background:
    radial-gradient(circle at 20% 12%, rgba(255, 255, 255, 0.055), transparent 18%),
    linear-gradient(180deg, #020303, #050505 58%, #020202);
  color: #fff;
  overflow: hidden;
}

.info-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.62fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: end;
  min-height: clamp(520px, 42vw, 620px);
  padding: clamp(82px, 9vw, 126px) clamp(36px, 7vw, 110px) clamp(58px, 7vw, 90px);
  border-bottom: 1px solid rgba(197, 151, 61, 0.24);
  background:
    linear-gradient(105deg, rgba(3, 3, 3, 0.98) 0%, rgba(3, 3, 3, 0.88) 50%, rgba(3, 3, 3, 0.35) 50.2%, rgba(3, 3, 3, 0.78) 100%),
    url("../img/suite-hero-building-original.webp");
  background-size: cover;
  background-position: center;
}

.suite-info-page--investments .info-hero {
  background-image:
    linear-gradient(105deg, rgba(3, 3, 3, 0.98) 0%, rgba(3, 3, 3, 0.9) 50%, rgba(3, 3, 3, 0.38) 50.2%, rgba(3, 3, 3, 0.76) 100%),
    url("../img/suite-about-building-original.webp");
}

.info-hero::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 55%;
  width: 18px;
  background: linear-gradient(180deg, transparent, #c3933d 42%, #24190b 80%, transparent);
  clip-path: polygon(38% 0, 100% 0, 62% 100%, 0 100%);
  box-shadow: 0 0 18px rgba(215, 171, 78, 0.46);
}

.info-hero__copy,
.info-hero__card {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.info-hero h1,
.appointment-section h2,
.contact-section h2,
.info-process-band h2 {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.info-hero h1 {
  max-width: 820px;
  font-size: clamp(1.7rem, 3.1vw, 3rem);
  line-height: 1.16;
  text-wrap: balance;
}

.info-hero__copy > p:not(.model-eyebrow),
.info-hero__card p,
.appointment-section p,
.contact-section p,
.info-process-band p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.info-hero__copy > p:not(.model-eyebrow) {
  max-width: 700px;
  margin: 24px 0 0;
  font-size: clamp(1rem, 1.2vw, 1.18rem);
}

.info-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.info-hero__card {
  display: grid;
  gap: 12px;
  padding: clamp(28px, 3vw, 38px);
  border: 1px solid rgba(202, 151, 58, 0.72);
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.34);
}

.info-hero__card span,
.info-card-grid span,
.info-step-list span,
.contact-cards span {
  color: #c9973f;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.info-hero__card strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.info-card-grid,
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-card-grid {
  padding: clamp(56px, 7vw, 88px) clamp(36px, 7vw, 110px);
  border-bottom: 1px solid rgba(197, 151, 61, 0.24);
  background: #030404;
}

.info-card-grid article,
.contact-cards article,
.info-step-list article {
  display: grid;
  gap: 12px;
  padding: 28px;
  border: 1px solid rgba(197, 151, 61, 0.25);
  background: #0b0f10;
}

.info-card-grid h2,
.contact-cards h2 {
  font-size: clamp(1.1rem, 1.35vw, 1.35rem);
  line-height: 1.2;
}

.info-process-band,
.appointment-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(34px, 6vw, 86px);
  padding: clamp(64px, 8vw, 96px) clamp(36px, 7vw, 110px);
  background:
    linear-gradient(110deg, #050505 0%, #050505 50%, rgba(9, 10, 10, 0.94) 50.2%),
    #050505;
}

.info-process-band h2,
.appointment-section h2 {
  max-width: 620px;
  font-size: clamp(1.5rem, 2.4vw, 2.3rem);
  line-height: 1.18;
}

.info-step-list {
  display: grid;
  gap: 14px;
}

.suite-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(197, 151, 61, 0.25);
  background: #0b0f10;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
}

.suite-form label {
  display: grid;
  gap: 8px;
  color: #c9973f;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.suite-form input,
.suite-form select,
.suite-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  color: #fff;
  background: #161a1c;
  border: 1px solid rgba(255, 255, 255, 0.14);
  outline: 0;
}

.suite-form textarea {
  grid-column: 1 / -1;
  min-height: 132px;
  padding-top: 14px;
  resize: vertical;
}

.suite-form label:has(textarea),
.suite-form button {
  grid-column: 1 / -1;
}

.suite-form option {
  color: #fff;
  background: #161a1c;
}

.suite-form option:checked,
.suite-form option:hover {
  color: #fff;
  background: #777;
}

.suite-form button {
  min-height: 52px;
  border: 1px solid #b88735;
  background: linear-gradient(135deg, #d2a24a, #a67825);
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-section {
  align-items: start;
}

.contact-section > * {
  min-width: 0;
}

.contact-cards {
  grid-template-columns: 1fr;
}

.suite-info-page--contact .info-hero {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
}

.suite-info-page--contact .info-hero__card strong,
.contact-cards h2 {
  overflow-wrap: anywhere;
  word-break: break-word;
  text-transform: none;
}

.suite-info-page--contact .info-hero__card strong {
  font-family: var(--font-body);
  font-size: clamp(0.98rem, 1.2vw, 1.2rem);
  font-weight: 600;
  letter-spacing: 0;
}

.contact-cards h2 {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

.contact-cards article {
  overflow: hidden;
}

.suite-login-page {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding-top: clamp(74px, 6vw, 92px);
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.055), transparent 18%),
    linear-gradient(180deg, #020303, #050505 58%, #020202);
  color: #fff;
  overflow: hidden;
}

.login-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.62fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  min-height: clamp(620px, 48vw, 760px);
  padding: clamp(82px, 9vw, 126px) clamp(36px, 7vw, 110px) clamp(58px, 7vw, 90px);
  border-bottom: 1px solid rgba(197, 151, 61, 0.24);
  background:
    linear-gradient(105deg, rgba(3, 3, 3, 0.98) 0%, rgba(3, 3, 3, 0.9) 51%, rgba(3, 3, 3, 0.36) 51.2%, rgba(3, 3, 3, 0.78) 100%),
    url("../img/suite-hero-building-original.webp");
  background-size: cover;
  background-position: center;
}

.login-hero::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 55%;
  width: 18px;
  background: linear-gradient(180deg, transparent, #c3933d 42%, #24190b 80%, transparent);
  clip-path: polygon(38% 0, 100% 0, 62% 100%, 0 100%);
  box-shadow: 0 0 18px rgba(215, 171, 78, 0.46);
}

.login-hero__copy,
.login-panel {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.login-hero h1,
.login-panel h2 {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.login-hero h1 {
  max-width: 760px;
  font-size: clamp(1.7rem, 3vw, 2.9rem);
  line-height: 1.16;
  text-wrap: balance;
}

.login-hero__copy > p:not(.model-eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.login-hero__copy > p:not(.model-eyebrow) {
  max-width: 680px;
  margin: 24px 0 0;
  font-size: clamp(1rem, 1.15vw, 1.16rem);
}

.login-panel {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid rgba(202, 151, 58, 0.72);
  background: rgba(0, 0, 0, 0.56);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.36);
}

.login-panel img {
  width: min(320px, 100%);
  max-height: 220px;
  object-fit: contain;
  justify-self: center;
}

.login-panel h2 {
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
}

.login-panel label {
  display: grid;
  gap: 8px;
  color: #c9973f;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.login-panel input {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  color: #fff;
  background: #161a1c;
  border: 1px solid rgba(255, 255, 255, 0.14);
  outline: 0;
}

.login-panel button {
  min-height: 52px;
  border: 1px solid #b88735;
  background: linear-gradient(135deg, #d2a24a, #a67825);
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Fluid version of the SUITE model, so it fills desktop screens without deforming. */
.suite-model {
  width: min(100%, 1280px);
  padding-top: clamp(74px, 6vw, 92px);
}

.model-nav img {
  width: clamp(174px, 13vw, 220px);
  max-height: clamp(48px, 4.6vw, 62px);
}

.model-nav nav {
  gap: clamp(10px, 1.45vw, 22px);
  font-size: clamp(0.64rem, 0.68vw, 0.76rem);
  white-space: nowrap;
}

.model-appointment {
  min-height: clamp(37px, 3vw, 45px);
  padding: 0 clamp(10px, 1vw, 14px);
  font-size: clamp(0.64rem, 0.68vw, 0.76rem);
  white-space: nowrap;
}

.model-login-link,
.model-logout-link {
  min-height: clamp(37px, 3vw, 45px);
  font-size: clamp(0.64rem, 0.68vw, 0.76rem);
}

.model-hero {
  grid-template-columns: minmax(0, 49%) minmax(0, 51%);
  min-height: clamp(590px, 48vw, 690px);
}

.model-hero::before {
  inset: calc(-1 * clamp(74px, 6vw, 92px)) 39% 0 0;
}

.model-hero::after {
  top: calc(-1 * clamp(74px, 6vw, 92px));
  width: clamp(18px, 1.4vw, 25px);
}

.model-hero__copy {
  padding: clamp(18px, 2vw, 34px) 0 0 clamp(48px, 7vw, 110px);
}

.model-hero__logo {
  width: clamp(330px, 32vw, 470px);
  max-width: 88%;
}

.model-hero h1 {
  font-size: clamp(1.55rem, 2.7vw, 2.3rem);
}

.model-hero p {
  max-width: clamp(390px, 35vw, 520px);
  font-size: clamp(0.98rem, 1.05vw, 1.18rem);
}

.model-gold-button,
.model-outline-button,
.model-projects article a {
  min-height: clamp(38px, 3.1vw, 46px);
  padding: 0 clamp(18px, 1.8vw, 28px);
}

.model-hero__image {
  min-height: clamp(590px, 48vw, 690px);
}

.model-investment-card {
  width: min(48vw, 520px);
  min-width: 390px;
  min-height: clamp(108px, 8.2vw, 128px);
  bottom: clamp(38px, 4vw, 58px);
}

.model-services {
  min-height: clamp(149px, 12vw, 172px);
}

.model-services article {
  grid-template-columns: clamp(42px, 4vw, 54px) 1fr;
  gap: clamp(12px, 1.4vw, 18px);
  padding: clamp(26px, 3vw, 38px) clamp(24px, 3vw, 42px) clamp(18px, 2vw, 26px);
}

.model-services img {
  width: clamp(42px, 4vw, 54px);
  height: clamp(42px, 4vw, 54px);
}

.model-services h3,
.model-projects h3 {
  font-size: clamp(0.88rem, 0.95vw, 1.05rem);
}

.model-services p,
.model-projects article p {
  font-size: clamp(0.72rem, 0.78vw, 0.84rem);
}

.model-about {
  grid-template-columns: minmax(0, 45%) minmax(0, 55%);
  min-height: clamp(390px, 33vw, 485px);
}

.model-about__copy {
  padding: clamp(40px, 4.4vw, 66px) 0 clamp(20px, 2.8vw, 38px) clamp(48px, 7vw, 110px);
}

.model-about h2 {
  font-size: clamp(1.15rem, 1.85vw, 1.6rem);
}

.model-projects h2 {
  font-size: clamp(1.35rem, 2.1vw, 1.95rem);
}

.model-about__copy > p:not(.model-eyebrow) {
  max-width: clamp(380px, 34vw, 510px);
  font-size: clamp(0.75rem, 0.86vw, 0.95rem);
}

.model-metrics {
  max-width: clamp(330px, 30vw, 430px);
}

.model-about__image {
  min-height: clamp(390px, 33vw, 485px);
}

.model-projects {
  padding: clamp(28px, 3vw, 42px) clamp(43px, 5vw, 78px) clamp(18px, 2.5vw, 34px);
}

.model-project-grid {
  gap: clamp(14px, 1.8vw, 26px);
}

.model-projects article {
  grid-template-columns: minmax(124px, 38%) 1fr;
  min-height: clamp(158px, 14vw, 198px);
}

.model-projects article img {
  width: 100%;
  height: 100%;
}

@media (max-width: 980px) {
  .suite-model,
  .suite-service-page,
  .suite-project-page,
  .suite-info-page,
  .suite-login-page,
  .suite-courses-page {
    width: 100%;
    padding-top: var(--nav-height-mobile);
  }

  .model-hero {
    grid-template-columns: 1fr;
  }

  .model-hero::before,
  .model-hero::after {
    content: none;
  }

  .model-hero__copy {
    padding: 34px 24px 38px;
  }

  .model-hero__image {
    min-height: 420px;
  }

  .model-investment-card {
    left: 24px;
    right: 24px;
    width: auto;
    min-width: 0;
  }

  .model-services,
  .model-project-grid,
  .service-suite-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-hero,
  .service-process,
  .project-hero,
  .project-investment-band,
  .info-hero,
  .info-process-band,
  .appointment-section,
  .contact-section,
  .login-hero,
  .courses-hero,
  .learning-card,
  .course-review-box {
    grid-template-columns: 1fr;
  }

  .service-hero::after,
  .project-hero::after,
  .info-hero::after {
    content: none;
  }

  .suite-info-page--contact .info-hero {
    grid-template-columns: 1fr;
  }

  .login-hero::after {
    content: none;
  }

  .project-showcase__grid,
  .project-criteria,
  .info-card-grid,
  .course-detail__panel {
    grid-template-columns: 1fr;
  }

  .course-toolbar {
    display: grid;
    align-items: start;
  }

  .course-review-feed {
    grid-column: auto;
  }

  .project-hero__featured {
    min-height: auto;
  }

  .model-about {
    grid-template-columns: 1fr;
    height: auto;
  }

  .model-about::before,
  .model-about::after {
    content: none;
  }

  .model-about__copy {
    padding: 46px 24px 34px;
  }

  .model-about__image {
    min-height: 420px;
  }
}

@media (max-width: 620px) {
  .suite-model,
  .suite-service-page,
  .suite-project-page,
  .suite-info-page,
  .suite-login-page,
  .suite-courses-page {
    padding-top: var(--nav-height-mobile);
  }

  .model-hero__logo {
    width: min(320px, 100%);
  }

  .model-hero h1 {
    font-size: 1.55rem;
  }

  .model-about h2 {
    font-size: 1.25rem;
  }

  .model-projects h2 {
    font-size: 1.4rem;
  }

  .model-services,
  .model-project-grid,
  .service-suite-grid {
    grid-template-columns: 1fr;
  }

  .model-metrics {
    max-width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .model-metrics div {
    padding: 0 8px;
  }

  .model-metrics strong {
    font-size: 1.3rem;
  }

  .model-metrics span {
    font-size: 0.58rem;
  }

  .model-services article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .model-projects {
    padding-inline: 18px;
  }

  .model-projects article {
    grid-template-columns: 1fr;
  }

  .model-projects article img {
    aspect-ratio: 16 / 10;
  }

  .service-hero,
  .service-process,
  .project-hero,
  .project-showcase,
  .project-investment-band,
  .info-hero,
  .info-card-grid,
  .info-process-band,
  .appointment-section,
  .contact-section,
  .login-hero,
  .login-support-section,
  .courses-hero,
  .course-marketplace,
  .course-detail,
  .course-review-box,
  .course-guides {
    padding-inline: 22px;
  }

  .courses-search,
  .learning-card__footer {
    grid-template-columns: 1fr;
  }

  .courses-search {
    display: grid;
  }

  .learning-card__footer {
    display: grid;
    justify-items: start;
  }

  .service-suite-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .project-hero__metrics {
    grid-template-columns: 1fr;
  }

  .project-hero__metrics div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .project-hero__metrics div:last-child {
    border-bottom: 0;
  }

  .project-showcase article {
    grid-template-rows: 260px 1fr;
  }

  .suite-form {
    grid-template-columns: 1fr;
  }
}

.reference-model {
  position: relative;
  width: min(100%, 1024px);
  margin: 0 auto;
  background: #000;
  line-height: 0;
}

.reference-model img {
  display: block;
  width: 100%;
  height: auto;
}

.reference-hotspot {
  position: absolute;
  z-index: 2;
  display: block;
  border-radius: 2px;
}

.reference-hotspot:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.reference-hotspot--home { left: 23.1%; top: 2.2%; width: 4.5%; height: 2.4%; }
.reference-hotspot--about { left: 29.9%; top: 2.2%; width: 7.2%; height: 2.4%; }
.reference-hotspot--services { left: 39.5%; top: 2.2%; width: 7.8%; height: 2.4%; }
.reference-hotspot--projects { left: 49.1%; top: 2.2%; width: 8.4%; height: 2.4%; }
.reference-hotspot--investments { left: 59.3%; top: 2.2%; width: 10.1%; height: 2.4%; }
.reference-hotspot--contact { left: 70.7%; top: 2.2%; width: 7.1%; height: 2.4%; }
.reference-hotspot--appointment { left: 82%; top: 1.7%; width: 13.7%; height: 3.3%; }
.reference-hotspot--know-more { left: 7.4%; top: 37.8%; width: 16.5%; height: 3.4%; }
.reference-hotspot--history { left: 7.3%; top: 73.3%; width: 22.6%; height: 2.7%; }
.reference-hotspot--project-one { left: 18.3%; top: 93.6%; width: 10.9%; height: 2.1%; }
.reference-hotspot--project-two { left: 49.4%; top: 93.6%; width: 10.9%; height: 2.1%; }
.reference-hotspot--project-three { left: 80.8%; top: 93.6%; width: 10.9%; height: 2.1%; }
.reference-hotspot--all-projects { left: 38%; top: 97%; width: 22.8%; height: 2.6%; }

.brand-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(470px, 0.95fr) minmax(470px, 1.05fr);
  min-height: 720px;
  padding: 104px 0 0 clamp(28px, 7vw, 96px);
  background: #030303;
  border-bottom: 1px solid rgba(202, 161, 74, 0.22);
  overflow: hidden;
}

.brand-hero::before {
  content: "";
  position: absolute;
  inset: 0 38% 0 0;
  z-index: 1;
  background:
    radial-gradient(circle at 28% 16%, rgba(255, 255, 255, 0.12), transparent 18%),
    linear-gradient(90deg, rgba(0, 0, 0, 1), rgba(8, 9, 10, 0.96));
  clip-path: polygon(0 0, 100% 0, 73% 100%, 0 100%);
}

.brand-hero::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50.1%;
  z-index: 4;
  width: 7px;
  background: linear-gradient(180deg, transparent, var(--gold) 20%, #3b2a10 76%, transparent);
  transform: skewX(-17deg);
  box-shadow: 0 0 20px rgba(202, 161, 74, 0.55);
}

.brand-hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 650px;
  padding-bottom: 48px;
}

.brand-hero__mark {
  width: min(460px, 90%);
  margin: 0 0 28px;
  filter: drop-shadow(0 24px 44px rgba(255, 255, 255, 0.18));
}

.brand-hero h1,
.about-band h2,
.projects-showcase h2,
.portal-section h2 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.045em;
}

.brand-hero h1 {
  max-width: 610px;
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1.04;
}

.brand-hero h1 span,
.about-band h2 span {
  display: block;
  color: var(--gold);
}

.brand-hero p:not(.eyebrow),
.about-band p,
.portal-section p {
  color: rgba(236, 239, 241, 0.76);
  line-height: 1.7;
}

.brand-hero p:not(.eyebrow) {
  max-width: 530px;
  margin-top: 18px;
  font-size: 1.08rem;
}

.gold-button,
.outline-gold-button,
.portal-actions a,
.showcase-card a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 28px;
  border: 1px solid var(--gold);
  color: #fff;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.gold-button {
  margin-top: 24px;
  background: linear-gradient(135deg, #d7ae58, #9a6e24);
  min-width: 210px;
}

.outline-gold-button {
  background: transparent;
}

.brand-hero__visual {
  position: relative;
  z-index: 0;
  min-height: 616px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.1)),
    url("../img/suite-hero-building-original.webp");
  background-size: cover;
  background-position: center right;
  clip-path: none;
}

.brand-hero__visual::before {
  content: none;
}

.investment-badge {
  position: absolute;
  right: 7.4%;
  bottom: 8%;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  min-width: 462px;
  padding: 24px 30px;
  border: 1px solid rgba(202, 161, 74, 0.9);
  background: rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(6px);
}

.chart-icon {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 5px;
  width: 70px;
  height: 58px;
  color: var(--gold);
}

.chart-icon i {
  display: block;
  width: 12px;
  border: 2px solid currentColor;
}

.chart-icon i:nth-child(1) { height: 20px; }
.chart-icon i:nth-child(2) { height: 32px; }
.chart-icon i:nth-child(3) { height: 44px; }

.chart-icon b {
  position: absolute;
  left: 8px;
  top: 4px;
  width: 54px;
  height: 30px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: rotate(-28deg);
}

.investment-badge strong {
  display: block;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
}

.investment-badge strong span {
  display: block;
  color: var(--gold);
}

.investment-badge small {
  color: rgba(236, 239, 241, 0.78);
  text-transform: uppercase;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #030303;
  border-top: 1px solid rgba(202, 161, 74, 0.18);
  border-bottom: 1px solid rgba(202, 161, 74, 0.18);
}

.feature-strip article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px 20px;
  padding: 38px clamp(18px, 3.2vw, 58px);
  border-right: 1px solid rgba(202, 161, 74, 0.18);
}

.service-icon {
  position: relative;
  display: block;
  width: 48px;
  height: 48px;
  color: var(--gold);
}

.service-icon::before,
.service-icon::after {
  content: "";
  position: absolute;
  border: 2px solid currentColor;
}

.building-icon::before {
  inset: 10px 12px 0 12px;
}

.building-icon::after {
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 38px;
  border-top: 0;
  background: repeating-linear-gradient(180deg, transparent 0 7px, currentColor 7px 9px);
}

.handshake-icon::before {
  inset: 14px 5px 12px;
  transform: rotate(-12deg);
}

.handshake-icon::after {
  inset: 14px 5px 12px;
  transform: rotate(12deg);
}

.shield-icon::before {
  inset: 5px 10px;
  border-radius: 18px 18px 24px 24px;
}

.shield-icon::after {
  inset: 17px 20px;
  border-radius: 50%;
}

.key-icon::before {
  left: 4px;
  top: 8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

.key-icon::after {
  left: 25px;
  top: 26px;
  width: 20px;
  height: 0;
  border-width: 2px 0 0;
  box-shadow: 10px 8px 0 -2px currentColor;
}

.feature-strip h3,
.showcase-card h3 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.feature-strip p,
.showcase-card p {
  margin: 0;
  color: rgba(236, 239, 241, 0.7);
  line-height: 1.55;
}

.about-band {
  display: grid;
  grid-template-columns: minmax(430px, 0.85fr) minmax(500px, 1.15fr);
  gap: 0;
  align-items: center;
  padding: 0 0 0 clamp(28px, 7vw, 96px);
  background:
    linear-gradient(110deg, #08090a 0%, #08090a 52%, rgba(8, 9, 10, 0.38) 52.2%),
    #050607;
  border-bottom: 1px solid rgba(202, 161, 74, 0.2);
}

.about-band h2,
.projects-showcase h2,
.portal-section h2 {
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  line-height: 1.08;
}

.about-band__copy {
  padding: clamp(74px, 9vw, 126px) clamp(28px, 5vw, 78px) clamp(74px, 9vw, 126px) 0;
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 28px 0;
}

.about-metrics div {
  border-right: 1px solid rgba(202, 161, 74, 0.24);
}

.about-metrics strong {
  display: block;
  color: var(--gold);
  font-size: 2rem;
}

.about-metrics span {
  color: rgba(236, 239, 241, 0.78);
  text-transform: uppercase;
  font-size: 0.78rem;
  line-height: 1.45;
}

.about-band__image {
  min-height: 570px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.18)),
    url("../img/suite-about-building-original.webp");
  background-size: cover;
  background-position: center;
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
  border-left: 3px solid rgba(202, 161, 74, 0.8);
}

.projects-showcase {
  padding: clamp(68px, 8vw, 96px) clamp(20px, 5vw, 58px) 62px;
  text-align: center;
  background: #050607;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
  text-align: left;
}

.showcase-card {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  min-height: 218px;
  background: linear-gradient(135deg, #15191c, #090b0d);
  border: 1px solid rgba(202, 161, 74, 0.22);
  border-radius: 8px;
  overflow: hidden;
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-card div {
  display: grid;
  gap: 10px;
  align-content: center;
  padding: 24px;
}

.showcase-card span {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
}

.showcase-card a {
  justify-self: start;
  min-height: 42px;
  padding: 0 18px;
}

.center-button {
  margin-top: 34px;
}

.portal-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(54px, 7vw, 80px) clamp(20px, 6vw, 86px);
  background:
    linear-gradient(135deg, rgba(202, 161, 74, 0.18), rgba(5, 6, 7, 0.94)),
    #08090a;
  border-top: 1px solid rgba(202, 161, 74, 0.22);
  border-bottom: 1px solid rgba(202, 161, 74, 0.22);
}

.portal-section p {
  max-width: 720px;
}

.portal-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 132px clamp(18px, 6vw, 86px) 48px;
  overflow: hidden;
}

.page-hero {
  padding: 164px clamp(18px, 6vw, 86px) 72px;
  background:
    linear-gradient(135deg, rgba(63, 68, 73, 0.56), rgba(36, 39, 43, 0.95)),
    var(--platinum);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 920px;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(236, 239, 241, 0.72);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.65;
}

.compact-section {
  padding-top: clamp(44px, 6vw, 78px);
  padding-bottom: clamp(44px, 6vw, 78px);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("../img/suite-hero-building-original.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.74;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(36, 39, 43, 0.96) 0%, rgba(36, 39, 43, 0.82) 44%, rgba(36, 39, 43, 0.34) 100%),
    linear-gradient(0deg, var(--platinum) 0%, rgba(36, 39, 43, 0) 36%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1040px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-muted);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
}

h1 {
  max-width: 860px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.12;
}

.hero-copy {
  max-width: 690px;
  margin: 24px 0 34px;
  color: rgba(236, 239, 241, 0.72);
  font-size: clamp(1rem, 2vw, 1.24rem);
  line-height: 1.65;
}

.search-panel {
  display: grid;
  grid-template-columns: 1fr 1.45fr 1fr 0.8fr 0.8fr 0.9fr 1fr auto;
  gap: 1px;
  width: min(1180px, 100%);
  padding: 8px;
  background: rgba(236, 239, 241, 0.16);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.hero-links a {
  padding: 10px 14px;
  background: rgba(52, 56, 60, 0.82);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.9rem;
}

.search-panel label {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  background: rgba(52, 56, 60, 0.96);
  color: var(--steel);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.search-panel input,
.search-panel select {
  min-width: 0;
  width: 100%;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  text-transform: none;
  letter-spacing: 0;
}

.search-panel option {
  color: #fff;
  background: #161a1c;
}

.search-panel option:checked,
.search-panel option:hover {
  color: #fff;
  background: #777;
}

.search-panel button,
.investment-card button,
.course-card button {
  border: 0;
  background: linear-gradient(135deg, #4c5156, #17191b 58%, #a9adb1);
  color: #fff;
  padding: 0 28px;
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-band div {
  padding: 28px clamp(18px, 4vw, 56px);
  border-right: 1px solid var(--line);
}

.stats-band strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 400;
}

.stats-band span {
  color: var(--steel);
}

.section,
.split-section {
  padding: clamp(72px, 10vw, 132px) clamp(18px, 6vw, 86px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(190px, 0.42fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  margin-bottom: 42px;
}

.section-heading h2,
.split-section h2 {
  max-width: 860px;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.14;
}

.property-grid,
.role-grid,
.course-grid,
.action-grid,
.zone-grid,
.service-grid,
.advisor-grid,
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.property-card,
.course-card,
.role-grid article,
.process-list article,
.investment-card,
.action-card,
.zone-card,
.service-card,
.advisor-card,
.article-card,
.lead-form,
.newsletter-form {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.16);
}

.quick-actions {
  padding-top: 34px;
  padding-bottom: 34px;
}

.action-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.action-card,
.zone-card,
.service-card,
.advisor-card,
.article-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 190px;
  padding: 22px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.action-card:hover,
.zone-card:hover,
.service-card:hover,
.advisor-card:hover,
.article-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.action-card h3,
.zone-card h3,
.service-card h3,
.advisor-card h3,
.article-card h3 {
  font-size: 1.32rem;
}

.action-card p,
.zone-card p,
.service-card p,
.advisor-card p,
.article-card p {
  margin: 0;
  color: rgba(236, 239, 241, 0.68);
  line-height: 1.55;
}

.property-card {
  overflow: hidden;
}

.property-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.34;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.05);
}

.property-body {
  padding: 22px;
}

.tag {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold-muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.property-body h3,
.course-card h3,
.role-grid h3,
.process-list h3,
.investment-card h3,
.lead-form h3 {
  font-size: 1.7rem;
}

.property-body p,
.course-card p,
.role-grid p,
.process-list p,
.investment-card p,
.split-section p {
  color: rgba(236, 239, 241, 0.68);
  line-height: 1.65;
}

.property-body strong {
  display: block;
  margin-top: 20px;
  font-size: 1.25rem;
}

.property-body ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
  color: var(--steel);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-list article,
.role-grid article,
.course-card,
.investment-card,
.lead-form,
.newsletter-form {
  padding: 28px;
}

.process-list span,
.course-card span,
.investment-card span,
.zone-card span,
.service-card span,
.advisor-card span,
.article-card span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold-muted);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.muted-section {
  background: var(--panel-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dark-panel {
  background:
    linear-gradient(135deg, rgba(63, 68, 73, 0.78), rgba(43, 47, 51, 0.9)),
    var(--panel-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.role-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.lead-form label,
.newsletter-form label {
  display: grid;
  gap: 8px;
  color: var(--steel);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lead-form input,
.lead-form select,
.newsletter-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--smoke);
  border: 1px solid var(--line);
  outline: 0;
}

.lead-form button,
.newsletter-form button {
  min-height: 50px;
  border: 0;
  background: linear-gradient(135deg, #4c5156, #17191b 58%, #a9adb1);
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.lead-form button {
  grid-column: 1 / -1;
}

.advisor-grid,
.article-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.advisor-avatar {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 8px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.7rem;
}

.editorial-section {
  background: var(--panel);
}

.article-card a {
  align-self: end;
  color: var(--gold-muted);
  font-weight: 700;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: end;
  margin-top: 18px;
}

.investment {
  background-image:
    linear-gradient(90deg, rgba(36, 39, 43, 0.95), rgba(36, 39, 43, 0.7)),
    url("../img/suite-about-building-original.webp");
  background-size: cover;
  background-position: center;
}

.investment-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: rgba(52, 56, 60, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.investment-card button,
.course-card button {
  align-self: flex-start;
  min-height: 46px;
  margin-top: 18px;
}

.course-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
}

.course-card.featured {
  background: linear-gradient(145deg, rgba(87, 93, 99, 0.78), var(--panel));
  border-color: rgba(195, 200, 204, 0.34);
}

.course-card strong {
  margin-top: auto;
  font-size: 1.2rem;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 36px clamp(18px, 6vw, 86px);
  background: var(--charcoal);
  color: var(--ink);
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 112px;
  height: 70px;
  object-fit: contain;
}

.site-footer h2 {
  font-size: 1.5rem;
}

.site-footer p {
  margin: 8px 0 0;
  color: var(--steel);
}

.site-footer a {
  color: var(--silver);
}

.auth-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
  gap: clamp(28px, 6vw, 76px);
  min-height: 100svh;
  align-items: center;
  padding: 132px clamp(18px, 6vw, 86px) 64px;
}

.auth-intro h1 {
  max-width: 760px;
}

.auth-intro p {
  max-width: 680px;
  color: rgba(236, 239, 241, 0.72);
  line-height: 1.65;
}

.auth-card,
.demo-access,
.dashboard-card {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.auth-card {
  display: grid;
  gap: 18px;
  padding: 32px;
}

.auth-card img {
  width: 150px;
  justify-self: center;
}

.auth-card h2,
.demo-access h2,
.dashboard-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
}

.auth-card label {
  display: grid;
  gap: 8px;
  color: var(--steel);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-card input {
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--smoke);
  border: 1px solid var(--line);
  outline: 0;
}

.auth-card button,
.dashboard-card button {
  min-height: 50px;
  border: 0;
  background: linear-gradient(135deg, #4c5156, #17191b 58%, #a9adb1);
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-error {
  margin: 0;
  padding: 12px 14px;
  background: rgba(180, 64, 64, 0.18);
  border: 1px solid rgba(255, 140, 140, 0.3);
  color: #ffd6d6;
}

.demo-access {
  max-width: 680px;
  margin-top: 24px;
  padding: 24px;
}

.demo-access ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
  color: rgba(236, 239, 241, 0.78);
}

.dashboard-hero {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-end;
  padding: 154px clamp(18px, 6vw, 86px) 54px;
  background:
    linear-gradient(135deg, rgba(63, 68, 73, 0.56), rgba(36, 39, 43, 0.95)),
    var(--platinum);
  border-bottom: 1px solid var(--line);
}

.dashboard-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(236, 239, 241, 0.72);
  line-height: 1.65;
}

.logout-button {
  flex: 0 0 auto;
  padding: 12px 18px;
  border: 1px solid var(--line);
  background: rgba(63, 68, 73, 0.76);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(34px, 5vw, 64px) clamp(18px, 6vw, 86px);
}

.dashboard-card {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 220px;
  padding: 26px;
}

.dashboard-card.wide {
  grid-column: span 2;
}

.dashboard-card span {
  color: var(--gold-muted);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dashboard-card p {
  margin: 0;
  color: rgba(236, 239, 241, 0.68);
  line-height: 1.6;
}

.suite-dashboard-page {
  width: min(1720px, calc(100% - 64px));
  margin: 0 auto;
  padding: calc(var(--nav-height) + 40px) 0 96px;
  color: #f4f1ea;
}

.dashboard-premium-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 5vw, 88px);
  align-items: end;
  min-height: 540px;
  padding: clamp(42px, 7vw, 92px);
  border: 1px solid rgba(202, 161, 74, 0.24);
  background:
    linear-gradient(105deg, rgba(2, 3, 3, 0.96) 0%, rgba(2, 3, 3, 0.86) 46%, rgba(11, 12, 12, 0.62) 100%),
    url("../img/suite-hero-building-original.webp") center / cover;
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.dashboard-premium-hero h1 {
  max-width: 920px;
  margin: 18px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.3vw, 3.2rem);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-wrap: balance;
}

.dashboard-premium-hero p:not(.model-eyebrow) {
  max-width: 720px;
  margin: 0;
  color: rgba(244, 241, 234, 0.8);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.65;
}

.dashboard-logout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
  min-height: 56px;
  padding: 0 30px;
  border: 1px solid rgba(202, 161, 74, 0.72);
  color: #f4f1ea;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-profile {
  display: grid;
  gap: 14px;
  min-height: 280px;
  align-content: center;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(202, 161, 74, 0.48);
  background: rgba(4, 6, 6, 0.72);
}

.dashboard-profile span,
.dashboard-metric-card span,
.dashboard-list span {
  color: var(--model-gold);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.dashboard-profile strong {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.9vw, 1.9rem);
  font-weight: 600;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.dashboard-profile p {
  margin: 0;
  overflow-wrap: anywhere;
  color: rgba(244, 241, 234, 0.76);
}

.dashboard-profile__logout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 46px;
  margin-top: 6px;
  padding: 0 20px;
  color: #f4f1ea;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-premium-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(202, 161, 74, 0.22);
  border-top: 0;
}

.dashboard-metric-card {
  display: grid;
  gap: 16px;
  min-height: 230px;
  align-content: start;
  padding: clamp(26px, 4vw, 44px);
  border-right: 1px solid rgba(202, 161, 74, 0.2);
  background: rgba(4, 6, 6, 0.82);
}

.dashboard-metric-card:last-child {
  border-right: 0;
}

.dashboard-metric-card strong {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 600;
  line-height: 1;
}

.dashboard-metric-card p,
.dashboard-list p {
  margin: 0;
  color: rgba(244, 241, 234, 0.72);
  line-height: 1.55;
}

.dashboard-action-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 84px);
  align-items: start;
  margin-top: 72px;
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid rgba(202, 161, 74, 0.28);
  background: linear-gradient(115deg, rgba(9, 11, 11, 0.96), rgba(5, 6, 6, 0.76));
}

.dashboard-action-panel h2 {
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.7vw, 2.7rem);
  font-weight: 500;
  line-height: 1.14;
  text-transform: uppercase;
}

.branch-action-panel {
  grid-template-columns: minmax(210px, 0.45fr) minmax(0, 1.55fr);
  gap: clamp(28px, 4vw, 56px);
}

.dashboard-list {
  display: grid;
  gap: 18px;
}

.dashboard-list article {
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(202, 161, 74, 0.24);
  background: rgba(15, 20, 20, 0.72);
}

.dashboard-list strong {
  font-size: 1.1rem;
  text-transform: uppercase;
}

.branch-map-explorer {
  display: grid;
  grid-template-columns: minmax(470px, 1.28fr) minmax(290px, 0.72fr);
  gap: clamp(22px, 3vw, 40px);
  align-items: stretch;
}

.branch-map-explorer.is-collapsed {
  display: none;
}

.investor-branch-view {
  display: grid;
  gap: 18px;
}

.investor-branch-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.8fr);
  gap: 20px;
  align-items: end;
  padding: clamp(24px, 3vw, 34px);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    rgba(12, 16, 16, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055), 0 22px 60px rgba(0, 0, 0, 0.26);
}

.investor-branch-summary span,
.investor-region-access span,
.admin-audit-summary span,
.audit-diagram-card > span,
.audit-history span {
  color: var(--model-gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.investor-branch-summary strong {
  display: block;
  margin-top: 12px;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  font-weight: 600;
  line-height: 1.12;
  text-transform: uppercase;
}

.investor-branch-summary p,
.investor-region-access p,
.audit-diagram-card p,
.audit-history p {
  margin: 0;
  color: rgba(244, 241, 234, 0.72);
  line-height: 1.55;
}

.investor-branch-summary dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.investor-branch-summary dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.investor-branch-summary dt {
  color: rgba(244, 241, 234, 0.58);
  font-weight: 800;
  text-transform: uppercase;
}

.investor-branch-summary dd {
  margin: 0;
  color: #f4f1ea;
  text-align: right;
}

.investor-branch-summary button {
  grid-column: 1 / -1;
}

.investor-region-access,
.admin-audit-summary,
.admin-audit-layout,
.audit-history {
  display: grid;
  gap: 14px;
}

.investor-region-access {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.investor-region-access article,
.admin-audit-summary article,
.audit-diagram-card,
.audit-history article {
  display: grid;
  gap: 12px;
  padding: 22px;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.016)),
    rgba(12, 16, 16, 0.74);
}

.branch-map-stage {
  min-height: 1540px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 20px;
  align-items: stretch;
  overflow: hidden;
  border-radius: 28px;
  padding: 26px;
  background:
    linear-gradient(90deg, rgba(230, 220, 204, 0.18), transparent 44%),
    radial-gradient(circle at 52% 15%, rgba(235, 214, 176, 0.14), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(20, 19, 17, 0.24));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 30px 80px rgba(0, 0, 0, 0.34);
}

.branch-map-stage__heading {
  width: 100%;
  display: grid;
  gap: 6px;
}

.branch-map-stage__heading span {
  color: var(--gold-muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.branch-map-stage__heading strong {
  color: #f4f1ea;
  font-size: 1.18rem;
  text-transform: uppercase;
}

.branch-map-card {
  position: relative;
  width: min(100%, 560px);
  margin: 0 auto;
}

.branch-chile-map {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(20px 26px 18px rgba(0, 0, 0, 0.28));
}

.branch-map-ocean {
  fill: rgba(232, 224, 211, 0.22);
}

.branch-map-neighbor {
  fill: rgba(244, 241, 234, 0.12);
  stroke: rgba(226, 214, 196, 0.22);
  stroke-width: 2;
}

.branch-map-country {
  fill: rgba(232, 224, 211, 0.18);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.branch-map-country--left {
  transform: rotate(-90deg);
  transform-origin: 38px 420px;
}

.branch-region {
  cursor: pointer;
  outline: none;
}

.branch-region path {
  fill: var(--region-fill);
  stroke: rgba(50, 43, 34, 0.62);
  stroke-width: 2.5;
  transition: filter 0.2s ease, transform 0.2s ease, stroke 0.2s ease;
}

.branch-region text {
  fill: rgba(44, 38, 31, 0.74);
  font-size: 17px;
  font-weight: 950;
  letter-spacing: 0.04em;
  pointer-events: none;
  text-transform: uppercase;
}

.branch-region:hover path,
.branch-region:focus-visible path,
.branch-region.active path {
  filter: brightness(1.08) saturate(0.92) drop-shadow(0 0 16px rgba(230, 210, 178, 0.46));
  stroke: rgba(255, 246, 231, 0.94);
  stroke-width: 4;
  transform: translateX(-4px);
}

.branch-region.active text {
  fill: #050607;
}

.branch-map-city circle,
.branch-map-city rect {
  fill: #8f6d48;
  stroke: #fffaf2;
  stroke-width: 2;
}

.branch-map-city text {
  fill: rgba(244, 241, 234, 0.86);
  font-size: 15px;
  font-weight: 850;
}

.branch-map-city--capital text {
  fill: #fffaf2;
  font-size: 22px;
  font-weight: 950;
}

.branch-map-details {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(24px, 3vw, 34px);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.052), rgba(9, 11, 11, 0.28)),
    rgba(11, 14, 14, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 22px 54px rgba(0, 0, 0, 0.28);
}

.branch-map-details > span,
.branch-map-specs dt {
  color: var(--gold-muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.branch-map-details > strong {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.8vw, 1.7rem);
  font-weight: 600;
  line-height: 1.12;
  text-transform: uppercase;
}

.branch-map-details > p {
  margin: 0;
  color: rgba(244, 241, 234, 0.74);
  line-height: 1.6;
}

.branch-map-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.branch-map-controls label {
  display: grid;
  gap: 8px;
  color: rgba(244, 241, 234, 0.68);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.branch-investment-form {
  display: grid;
  gap: 14px;
}

.branch-investment-form label {
  display: grid;
  gap: 8px;
  color: rgba(244, 241, 234, 0.68);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.branch-map-controls select,
.branch-investment-form input,
.branch-investment-form textarea {
  min-height: 48px;
  border: 0;
  border-radius: 16px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.075);
  color: #f4f1ea;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.branch-investment-form textarea {
  min-height: 110px;
  padding-top: 14px;
  resize: vertical;
}

.branch-map-controls option {
  color: #111;
}

.branch-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.branch-secondary-button {
  background:
    linear-gradient(#101313, #101313) padding-box,
    linear-gradient(135deg, rgba(255, 222, 141, 0.76), rgba(180, 122, 30, 0.5)) border-box;
  color: #f4f1ea;
}

.branch-map-specs {
  display: grid;
  gap: 12px;
  margin: 2px 0 0;
}

.branch-map-specs div {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.branch-map-specs div:last-child {
  border-bottom: 0;
}

.branch-map-specs dd {
  margin: 8px 0 0;
  color: #f4f1ea;
  line-height: 1.48;
}

.dashboard-workspace {
  margin-top: 72px;
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid rgba(202, 161, 74, 0.26);
  background:
    linear-gradient(125deg, rgba(7, 9, 9, 0.96), rgba(3, 4, 4, 0.82)),
    rgba(10, 12, 12, 0.92);
}

.dashboard-notice {
  margin: 0 0 24px;
  padding: 16px 18px;
  border: 1px solid rgba(202, 161, 74, 0.42);
  background: rgba(202, 161, 74, 0.12);
  color: #f4f1ea;
  font-weight: 800;
}

.dashboard-workspace__header {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.dashboard-workspace__header h2 {
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.7vw, 2.7rem);
  font-weight: 500;
  line-height: 1.14;
  text-transform: uppercase;
}

.dashboard-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.dashboard-tabs button,
.dashboard-state-button,
.dashboard-quick-form button {
  min-height: 48px;
  border: 1px solid rgba(202, 161, 74, 0.46);
  background: rgba(6, 8, 8, 0.78);
  color: #f4f1ea;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-tabs button {
  padding: 0 18px;
  font-size: 0.78rem;
}

.dashboard-tabs button.active,
.dashboard-state-button.is-done,
.dashboard-quick-form button {
  background: var(--model-gold);
  border-color: var(--model-gold);
  color: #070707;
}

.dashboard-tab-panel {
  display: none;
}

.dashboard-tab-panel.active {
  display: block;
}

.dashboard-board,
.dashboard-feed {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.dashboard-feed {
  margin-top: 18px;
}

.dashboard-board article,
.dashboard-feed article {
  display: grid;
  gap: 12px;
  min-height: 210px;
  align-content: start;
  padding: 26px;
  border: 1px solid rgba(202, 161, 74, 0.22);
  background: rgba(17, 22, 22, 0.74);
}

.dashboard-board span,
.dashboard-feed span,
.dashboard-table span {
  color: var(--model-gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dashboard-board strong,
.dashboard-feed strong {
  font-size: 1.2rem;
  text-transform: uppercase;
}

.dashboard-board p,
.dashboard-feed p {
  margin: 0;
  color: rgba(244, 241, 234, 0.72);
  line-height: 1.55;
}

.dashboard-state-button {
  width: fit-content;
  margin-top: 10px;
  padding: 0 18px;
  font-size: 0.74rem;
}

.dashboard-quick-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr) auto;
  gap: 12px;
  align-items: end;
}

.dashboard-quick-form label {
  display: grid;
  gap: 8px;
  color: var(--model-gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dashboard-quick-form input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(244, 241, 234, 0.18);
  background: rgba(244, 241, 234, 0.08);
  color: #fff;
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.dashboard-quick-form button {
  padding: 0 24px;
  white-space: nowrap;
}

.dashboard-table {
  display: grid;
  border: 1px solid rgba(202, 161, 74, 0.22);
}

.branch-ops-table {
  display: grid;
  overflow-x: auto;
  border: 1px solid rgba(202, 161, 74, 0.2);
  border-radius: 18px;
}

.branch-ops-table > div {
  display: grid;
  grid-template-columns: minmax(220px, 1.3fr) minmax(150px, 0.9fr) minmax(130px, 0.7fr) auto;
  gap: 16px;
  align-items: center;
  min-width: 760px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.065);
}

.branch-ops-table > div:first-child {
  background: rgba(202, 161, 74, 0.1);
}

.branch-ops-table > div:last-child {
  border-bottom: 0;
}

.branch-ops-table span {
  color: rgba(244, 241, 234, 0.72);
}

.branch-ops-table > div:first-child span {
  color: var(--model-gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.branch-ops-table strong {
  color: #f4f1ea;
  text-transform: uppercase;
}

.dashboard-table > div {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr auto;
  gap: 18px;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(202, 161, 74, 0.16);
}

.dashboard-table > div:first-child {
  background: rgba(202, 161, 74, 0.08);
}

.dashboard-table > div:last-child {
  border-bottom: 0;
}

.dashboard-table strong {
  color: #f4f1ea;
  text-transform: uppercase;
}

.broker-property-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.broker-property-form label {
  display: grid;
  gap: 8px;
  color: var(--model-gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.broker-property-form input,
.broker-property-form select,
.broker-property-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(244, 241, 234, 0.18);
  background: rgba(244, 241, 234, 0.08);
  color: #fff;
  outline: 0;
}

.broker-property-form select option {
  color: #111;
}

.broker-property-form textarea {
  min-height: 140px;
  padding-top: 14px;
  resize: vertical;
}

.broker-property-form__wide,
.broker-property-form button {
  grid-column: 1 / -1;
}

.broker-property-form button {
  min-height: 54px;
  border: 1px solid var(--model-gold);
  background: var(--model-gold);
  color: #070707;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-audit-dashboard {
  display: grid;
  gap: 22px;
}

.admin-audit-summary {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-audit-summary strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.4vw, 2.6rem);
  font-weight: 600;
  line-height: 1;
}

.admin-audit-layout {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.audit-diagram-card > strong {
  color: #fff;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.audit-flow {
  display: grid;
  gap: 10px;
}

.audit-flow div {
  display: grid;
  gap: 5px;
  padding: 14px;
  border-left: 3px solid rgba(202, 161, 74, 0.72);
  background: rgba(255, 255, 255, 0.045);
}

.audit-flow b,
.audit-bars span {
  color: #f4f1ea;
  text-transform: uppercase;
}

.audit-flow small,
.audit-bars em {
  color: rgba(244, 241, 234, 0.62);
  font-style: normal;
}

.audit-bars {
  display: grid;
  gap: 14px;
}

.audit-bars p {
  display: grid;
  grid-template-columns: 120px 1fr 78px;
  gap: 12px;
  align-items: center;
  margin: 0;
}

.audit-bars b {
  height: 10px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(202, 161, 74, 0.95) var(--bar), rgba(255, 255, 255, 0.08) var(--bar));
}

.audit-edit-table {
  display: grid;
  overflow-x: auto;
  border: 1px solid rgba(202, 161, 74, 0.18);
  border-radius: 18px;
}

.audit-edit-table > div {
  display: grid;
  grid-template-columns: 1.1fr repeat(5, minmax(130px, 1fr)) auto;
  gap: 12px;
  align-items: center;
  min-width: 1120px;
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.065);
}

.audit-edit-table > div:first-child {
  background: rgba(202, 161, 74, 0.1);
}

.audit-edit-table > div:last-child {
  border-bottom: 0;
}

.audit-edit-table span {
  color: var(--model-gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.audit-edit-table input,
.audit-edit-table select {
  width: 100%;
  min-height: 44px;
  border: 0;
  border-radius: 12px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.075);
  color: #f4f1ea;
}

.audit-edit-table option {
  color: #111;
}

.audit-history {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.property-preview-feed {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.property-preview-feed:empty {
  display: none;
}

.property-preview-feed article {
  display: grid;
  gap: 12px;
  padding: 26px;
  border: 1px solid rgba(202, 161, 74, 0.3);
  background: rgba(17, 22, 22, 0.82);
}

.property-preview-feed span {
  color: var(--model-gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.property-preview-feed strong {
  color: #fff;
  font-size: 1.35rem;
  text-transform: uppercase;
}

.property-preview-feed p {
  margin: 0;
  color: rgba(244, 241, 234, 0.72);
  line-height: 1.55;
}

.property-preview-feed ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.property-preview-feed li {
  padding: 8px 10px;
  border: 1px solid rgba(202, 161, 74, 0.22);
  color: rgba(244, 241, 234, 0.76);
}

.model-appointment,
.model-login-link,
.model-logout-link,
.dashboard-logout,
.dashboard-profile__logout,
.dashboard-tabs button,
.dashboard-state-button,
.dashboard-quick-form button,
.broker-property-form button,
.login-panel button,
.courses-search button,
.course-filters button,
.learning-card__footer button,
.course-detail__tabs button,
.course-review-box button,
.model-gold-button,
.model-outline-button,
.gold-button,
.outline-gold-button {
  border: 0;
  border-radius: 16px;
  background:
    linear-gradient(#0b0d0d, #0b0d0d) padding-box,
    linear-gradient(135deg, rgba(255, 222, 141, 0.94), rgba(180, 122, 30, 0.76), rgba(255, 255, 255, 0.18)) border-box;
  border: 1px solid transparent;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 14px 32px rgba(0, 0, 0, 0.24);
}

.dashboard-tabs button.active,
.dashboard-state-button.is-done,
.dashboard-quick-form button,
.broker-property-form button,
.courses-search button,
.learning-card__footer button,
.course-review-box button,
.learning-card__footer button.is-done {
  background:
    linear-gradient(135deg, #e1b75f, #bc842c 55%, #6b491a) padding-box,
    linear-gradient(135deg, #ffe8a7, #b97d25, rgba(255, 255, 255, 0.28)) border-box;
  color: #070707;
}

.model-gold-button {
  background:
    linear-gradient(135deg, #dcb05a, #b8862e 58%, #8a6527) padding-box,
    linear-gradient(135deg, #ffe8a7, #b97d25, rgba(255, 255, 255, 0.28)) border-box;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.model-outline-button {
  color: #f4ecdc;
}

.dashboard-premium-hero,
.dashboard-profile,
.dashboard-premium-grid,
.dashboard-metric-card,
.dashboard-action-panel,
.dashboard-list article,
.dashboard-workspace,
.dashboard-board article,
.dashboard-feed article,
.dashboard-table,
.dashboard-table > div,
.dashboard-notice,
.property-preview-feed article,
.login-panel,
.learning-card,
.course-detail article,
.course-review-feed article,
.courses-hero__panel {
  border-color: transparent;
  border-radius: 18px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 20px 60px rgba(0, 0, 0, 0.24);
}

.dashboard-metric-card,
.dashboard-list article,
.dashboard-board article,
.dashboard-feed article,
.property-preview-feed article,
.course-detail article,
.course-review-feed article {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
    rgba(12, 16, 16, 0.74);
}

.dashboard-table {
  overflow: hidden;
  background: rgba(12, 16, 16, 0.72);
}

.dashboard-table > div {
  border-bottom-color: rgba(255, 255, 255, 0.055);
  box-shadow: none;
}

.broker-property-form input,
.broker-property-form select,
.broker-property-form textarea,
.dashboard-quick-form input,
.login-panel input,
.course-review-box input,
.courses-search input {
  border-color: transparent;
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(9, 11, 11, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

@media (max-width: 1180px) {
  .site-header {
    gap: 18px;
    padding-inline: 24px;
  }

  .brand img {
    width: 148px;
    height: 62px;
  }

  .main-nav {
    gap: 18px;
    font-size: 0.76rem;
  }

  .login-link {
    padding: 13px 18px;
    font-size: 0.78rem;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .brand-hero,
  .about-band,
  .portal-section {
    grid-template-columns: 1fr;
  }

  .brand-hero {
    padding-top: 132px;
    background: #050607;
  }

  .brand-hero__visual,
  .about-band__image {
    min-height: 420px;
    clip-path: none;
  }

  .feature-strip,
  .showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .search-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .search-panel button {
    min-height: 58px;
  }

  .property-grid,
  .course-grid,
  .role-grid,
  .action-grid,
  .zone-grid,
  .service-grid,
  .advisor-grid,
  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-section,
  .section-heading,
  .dashboard-premium-hero,
  .dashboard-action-panel,
  .dashboard-quick-form,
  .broker-property-form {
    grid-template-columns: 1fr;
  }

  .branch-map-explorer {
    grid-template-columns: 1fr;
  }

  .branch-map-stage {
    min-height: 1760px;
  }

  .branch-map-card {
    width: min(100%, 600px);
  }

  .dashboard-premium-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-workspace__header {
    display: grid;
    align-items: start;
  }

  .dashboard-tabs {
    justify-content: flex-start;
  }

  .dashboard-metric-card:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: sticky;
    gap: 12px;
  }

  .brand img {
    width: 112px;
    height: 48px;
  }

  .branch-map-stage {
    min-height: 1320px;
    padding: 20px;
  }

  .branch-map-card {
    width: min(100%, 410px);
  }

  .branch-map-controls {
    grid-template-columns: 1fr;
  }

  .branch-region text {
    font-size: 15px;
  }

  .branch-map-city text {
    font-size: 12px;
  }

  .branch-map-city--capital text {
    font-size: 17px;
  }

  .login-link {
    padding: 9px 13px;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  h1 {
    font-size: 2rem;
  }

  .brand-hero {
    min-height: auto;
    padding: 52px 18px 34px;
  }

  .brand-hero__mark {
    width: min(340px, 100%);
  }

  .brand-hero h1,
  .about-band h2,
  .projects-showcase h2,
  .portal-section h2 {
    font-size: 2.2rem;
  }

  .brand-hero__visual,
  .about-band__image {
    min-height: 320px;
  }

  .investment-badge {
    left: 18px;
    right: 18px;
    min-width: 0;
  }

  .feature-strip,
  .showcase-grid,
  .about-metrics,
  .portal-section {
    grid-template-columns: 1fr;
  }

  .feature-strip article {
    border-right: 0;
    border-bottom: 1px solid rgba(202, 161, 74, 0.18);
  }

  .showcase-card {
    grid-template-columns: 1fr;
  }

  .showcase-card img {
    aspect-ratio: 1.4;
  }

  .search-panel,
  .stats-band,
  .property-grid,
  .course-grid,
  .role-grid,
  .action-grid,
  .zone-grid,
  .service-grid,
  .advisor-grid,
  .article-grid,
  .lead-form,
  .newsletter-form,
  .site-footer,
  .auth-page,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .suite-dashboard-page {
    width: min(100% - 24px, 100%);
    padding: calc(var(--nav-height-mobile) + 26px) 0 62px;
  }

  .dashboard-premium-hero {
    min-height: auto;
    padding: 30px 22px;
  }

  .dashboard-premium-hero h1,
  .dashboard-action-panel h2 {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .dashboard-premium-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-metric-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(202, 161, 74, 0.2);
  }

  .dashboard-action-panel {
    margin-top: 42px;
    padding: 26px 20px;
  }

  .dashboard-workspace {
    margin-top: 42px;
    padding: 24px 18px;
  }

  .dashboard-workspace__header h2 {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .dashboard-board,
  .dashboard-feed {
    grid-template-columns: 1fr;
  }

  .dashboard-table {
    overflow-x: auto;
  }

  .dashboard-table > div {
    min-width: 620px;
  }

  .dashboard-hero {
    display: grid;
    padding-top: 64px;
  }

  .dashboard-card.wide {
    grid-column: auto;
  }

  .nav-menu {
    display: none;
  }

  .stats-band div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .search-panel button {
    min-height: 56px;
  }
}

/* Dashboard responsive hardening */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.suite-dashboard-page,
.suite-dashboard-page * {
  min-width: 0;
}

.suite-dashboard-page svg,
.suite-dashboard-page img {
  max-width: 100%;
}

@media (max-width: 1320px) {
  .suite-dashboard-page {
    width: min(100% - 36px, 100%);
  }

  .dashboard-premium-hero {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
  }

  .dashboard-profile {
    width: min(100%, 520px);
  }

  .branch-action-panel {
    grid-template-columns: 1fr;
  }

  .branch-map-explorer {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  }
}

@media (max-width: 1040px) {
  .branch-map-explorer {
    grid-template-columns: 1fr;
  }

  .branch-map-details {
    order: -1;
  }

  .branch-map-stage {
    min-height: auto;
  }

  .branch-map-card {
    width: min(100%, 520px);
  }

  .dashboard-premium-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .investor-branch-summary,
  .admin-audit-layout,
  .audit-history {
    grid-template-columns: 1fr;
  }

  .investor-region-access,
  .admin-audit-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .suite-dashboard-page {
    width: min(100% - 24px, 100%);
    padding-top: calc(var(--nav-height-mobile) + 26px);
  }

  .dashboard-premium-hero,
  .dashboard-action-panel,
  .dashboard-workspace {
    border-radius: 16px;
  }

  .dashboard-premium-hero {
    padding: 28px 20px;
  }

  .dashboard-premium-hero h1,
  .dashboard-action-panel h2 {
    font-size: clamp(1.55rem, 6.5vw, 2.1rem);
    line-height: 1.16;
  }

  .dashboard-profile {
    min-height: auto;
    padding: 24px;
  }

  .dashboard-profile strong {
    font-size: clamp(1.3rem, 5.5vw, 1.7rem);
  }

  .dashboard-logout,
  .dashboard-profile__logout,
  .dashboard-state-button {
    width: 100%;
  }

  .dashboard-premium-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-metric-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(202, 161, 74, 0.16);
  }

  .branch-map-stage {
    padding: 18px 12px;
  }

  .branch-map-card {
    width: min(100%, 360px);
  }

  .branch-map-country {
    font-size: 18px;
  }

  .branch-region text {
    font-size: 13px;
  }

  .branch-map-city text {
    font-size: 10px;
  }

  .branch-map-city--capital text {
    font-size: 15px;
  }

  .branch-map-controls,
  .investor-region-access,
  .admin-audit-summary,
  .dashboard-workspace__header,
  .dashboard-board,
  .dashboard-feed,
  .audit-history {
    grid-template-columns: 1fr;
  }

  .investor-branch-summary {
    grid-template-columns: 1fr;
  }

  .audit-bars p {
    grid-template-columns: 1fr;
  }

  .branch-form-actions {
    display: grid;
  }

  .dashboard-tabs {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .dashboard-tabs button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .suite-dashboard-page {
    width: min(100% - 16px, 100%);
    padding-top: calc(var(--nav-height-mobile) + 22px);
  }

  .dashboard-premium-hero,
  .dashboard-action-panel,
  .dashboard-workspace {
    padding-inline: 16px;
  }

  .branch-map-card {
    width: min(100%, 320px);
  }

  .branch-map-stage__heading strong {
    font-size: 1rem;
  }

  .branch-map-details {
    padding: 20px 16px;
  }
}

/* ============================================================
   Responsive & polish v2: mobile navigation, login, refinements
   ============================================================ */

:focus-visible {
  outline: 2px solid rgba(226, 184, 96, 0.9);
  outline-offset: 3px;
}

button:focus:not(:focus-visible),
a:focus:not(:focus-visible) {
  outline: none;
}

img {
  max-width: 100%;
}

body.nav-open {
  overflow: hidden;
}

/* --- Nav toggle (hamburger) --- */
.model-nav__toggle {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(197, 151, 61, 0.42);
  border-radius: 10px;
  background: rgba(197, 151, 61, 0.08);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease;
}

.model-nav__toggle:hover {
  background: rgba(197, 151, 61, 0.16);
  border-color: rgba(197, 151, 61, 0.7);
}

.model-nav__toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  border-radius: 2px;
  background: #e5c479;
  transition: transform 220ms ease, opacity 180ms ease, top 220ms ease;
}

.model-nav__toggle span:nth-child(1) { top: 14px; }
.model-nav__toggle span:nth-child(2) { top: 21px; }
.model-nav__toggle span:nth-child(3) { top: 28px; }

.model-nav.is-open .model-nav__toggle span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.model-nav.is-open .model-nav__toggle span:nth-child(2) {
  opacity: 0;
}

.model-nav.is-open .model-nav__toggle span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

/* --- Buttons & cards polish --- */
.model-gold-button,
.model-outline-button,
.model-projects article a,
.login-panel button[type="submit"],
.suite-form button,
.dashboard-tabs button,
.dashboard-state-button,
.dashboard-quick-form button,
.broker-property-form button,
.courses-search button,
.course-filters button,
.learning-card__footer button,
.course-detail__tabs button,
.course-review-box button {
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease, background 180ms ease, color 180ms ease;
}

.model-gold-button:hover,
.model-outline-button:hover,
.model-projects article a:hover,
.login-panel button[type="submit"]:hover,
.suite-form button:hover,
.dashboard-quick-form button:hover,
.broker-property-form button:hover,
.courses-search button:hover,
.learning-card__footer button:hover,
.course-review-box button:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 34px rgba(0, 0, 0, 0.36),
    0 0 0 1px rgba(226, 184, 96, 0.28);
}

.dashboard-tabs button:hover,
.dashboard-state-button:hover,
.course-filters button:hover,
.course-detail__tabs button:hover {
  filter: brightness(1.12);
}

.model-projects article,
.login-support-cards article,
.info-card-grid article,
.contact-cards article,
.info-step-list article,
.service-process__steps article,
.project-criteria article,
.project-showcase article,
.dashboard-metric-card,
.dashboard-list article,
.dashboard-board article,
.dashboard-feed article,
.investor-region-access article,
.admin-audit-summary article,
.audit-history article,
.learning-card,
.course-detail article,
.article-card {
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .model-projects article:hover,
  .login-support-cards article:hover,
  .info-card-grid article:hover,
  .contact-cards article:hover,
  .info-step-list article:hover,
  .service-process__steps article:hover,
  .project-criteria article:hover,
  .project-showcase article:hover,
  .dashboard-list article:hover,
  .dashboard-board article:hover,
  .investor-region-access article:hover,
  .learning-card:hover,
  .course-detail article:hover,
  .article-card:hover {
    transform: translateY(-3px);
    border-color: rgba(202, 161, 74, 0.62);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      0 26px 60px rgba(0, 0, 0, 0.42),
      0 0 0 1px rgba(202, 161, 74, 0.22);
  }

  .model-projects article:hover img,
  .project-showcase article:hover img {
    transform: scale(1.04);
  }
}

.model-projects article img,
.project-showcase article img {
  display: block;
  transition: transform 420ms ease;
}

.model-projects article > div,
.project-showcase article > div {
  min-width: 0;
}

/* --- Services strip: correct borders when wrapping --- */
@media (max-width: 980px) and (min-width: 621px) {
  .model-services article:nth-child(2n) {
    border-right: 0;
  }

  .model-services article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .service-suite-grid article:nth-child(2n) {
    border-right: 0;
  }

  .service-suite-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
}

@media (max-width: 620px) {
  .model-services article:last-child,
  .service-suite-grid article:last-child {
    border-bottom: 0;
  }

  .service-suite-grid article {
    min-height: auto;
  }
}

/* --- Login page --- */
.login-panel {
  gap: 16px;
}

.login-panel img {
  width: min(250px, 100%);
  max-height: 170px;
}

.login-panel input {
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.login-panel input:focus {
  border-color: rgba(226, 184, 96, 0.75);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 0 3px rgba(202, 161, 74, 0.18);
}

.login-password {
  position: relative;
  display: block;
}

.login-password input {
  padding-right: 96px;
}

.login-password__toggle {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(202, 161, 74, 0.35);
  border-radius: 10px;
  background: rgba(202, 161, 74, 0.1);
  color: #e5c479;
  cursor: pointer;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease;
}

.login-password__toggle:hover {
  background: rgba(202, 161, 74, 0.2);
  border-color: rgba(202, 161, 74, 0.7);
}

.login-panel__hint {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  line-height: 1.55;
  text-align: center;
}

.form-error {
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
}

.login-support-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
  padding: clamp(56px, 7vw, 88px) clamp(36px, 7vw, 110px);
  background: #030404;
}

.login-support-section h2 {
  max-width: 560px;
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 2.1rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.login-support-section > div > p:not(.model-eyebrow) {
  max-width: 520px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.login-support-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.login-support-cards article {
  display: grid;
  gap: 10px;
  align-content: start;
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(197, 151, 61, 0.25);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
    rgba(12, 16, 16, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 20px 60px rgba(0, 0, 0, 0.24);
}

.login-support-cards span {
  color: #c9973f;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.login-support-cards strong {
  color: #fff;
  font-size: 1.02rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.login-support-cards p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.55;
}

.login-support-cards .model-outline-button {
  justify-self: start;
  min-width: 0;
  margin-top: 6px;
  padding-inline: 20px;
  color: #e5c479;
}

/* --- 404 notice --- */
.notice {
  display: grid;
  gap: 6px;
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 26px clamp(18px, 4vw, 40px);
  border-top: 1px solid rgba(197, 151, 61, 0.28);
  border-bottom: 1px solid rgba(197, 151, 61, 0.28);
  background: rgba(202, 161, 74, 0.08);
  color: #fff;
  text-align: center;
}

.notice span {
  color: rgba(255, 255, 255, 0.72);
}

/* --- Footer --- */
.site-footer {
  gap: 20px 28px;
  background: #050607;
  border-top: 1px solid rgba(197, 151, 61, 0.22);
}

.site-footer h2 {
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 4px;
  color: #e5c479;
  font-weight: 600;
  overflow-wrap: anywhere;
}

/* --- Dashboard polish --- */
.dashboard-premium-hero > div:first-child {
  min-width: 0;
}

.dashboard-profile__logout {
  transition: transform 180ms ease, filter 180ms ease;
}

.dashboard-profile__logout:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.dashboard-tabs button.active {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 14px 30px rgba(0, 0, 0, 0.3);
}

.dashboard-notice {
  border-radius: 14px;
}

/* --- File input --- */
.broker-property-form input[type="file"] {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 8px 10px;
  color: rgba(244, 241, 234, 0.72);
  font-size: 0.82rem;
  cursor: pointer;
}

.broker-property-form input[type="file"]::file-selector-button {
  margin-right: 12px;
  padding: 9px 14px;
  border: 1px solid rgba(202, 161, 74, 0.5);
  border-radius: 10px;
  background: rgba(202, 161, 74, 0.14);
  color: #e5c479;
  cursor: pointer;
  font: inherit;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease;
}

.broker-property-form input[type="file"]::file-selector-button:hover {
  background: rgba(202, 161, 74, 0.26);
  border-color: rgba(202, 161, 74, 0.8);
}

/* --- Forms: consistent focus glow --- */
.suite-form input:focus,
.suite-form select:focus,
.suite-form textarea:focus,
.broker-property-form input:focus,
.broker-property-form select:focus,
.broker-property-form textarea:focus,
.dashboard-quick-form input:focus,
.course-review-box input:focus,
.courses-search input:focus,
.branch-investment-form input:focus,
.branch-investment-form textarea:focus,
.branch-map-controls select:focus,
.audit-edit-table input:focus,
.audit-edit-table select:focus {
  outline: none;
  border-color: rgba(226, 184, 96, 0.75);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 0 3px rgba(202, 161, 74, 0.18);
}

.suite-form select,
.broker-property-form select,
.branch-map-controls select,
.audit-edit-table select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
  background-image:
    linear-gradient(45deg, transparent 50%, #e5c479 50%),
    linear-gradient(135deg, #e5c479 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 50%,
    calc(100% - 14px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

/* ============================================================
   Mobile navigation (<= 1023px): compact header + dropdown panel
   ============================================================ */
@media (max-width: 1023px) {
  .model-nav {
    width: 100%;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    height: var(--nav-height-mobile);
    padding: 0 16px;
  }

  .model-nav img {
    width: clamp(132px, 34vw, 168px);
    max-height: 46px;
  }

  .model-nav__toggle {
    display: inline-flex;
    justify-self: end;
  }

  .model-nav__panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 18px;
    max-height: calc(100vh - var(--nav-height-mobile));
    max-height: calc(100dvh - var(--nav-height-mobile));
    padding: 12px 16px 24px;
    overflow-y: auto;
    background:
      linear-gradient(180deg, rgba(4, 4, 4, 0.99), rgba(3, 3, 3, 0.97));
    border-bottom: 1px solid rgba(197, 151, 61, 0.34);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 200ms ease, transform 220ms ease, visibility 0s linear 220ms;
  }

  .model-nav.is-open .model-nav__panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 200ms ease, transform 220ms ease, visibility 0s;
  }

  .model-nav nav {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    font-size: 0.86rem;
    letter-spacing: 0.06em;
    white-space: normal;
  }

  .model-nav nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.86);
  }

  .model-nav nav a::after {
    content: "";
    position: static;
    width: 7px;
    height: 7px;
    border-top: 1px solid rgba(197, 151, 61, 0.75);
    border-right: 1px solid rgba(197, 151, 61, 0.75);
    background: transparent;
    transform: rotate(45deg);
    opacity: 0.6;
  }

  .model-nav nav a.active {
    color: #e5c479;
  }

  .model-nav nav a.active::after {
    opacity: 1;
  }

  .model-menu-indicator {
    display: none;
  }

  .model-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    justify-content: stretch;
  }

  .model-appointment,
  .model-login-link,
  .model-logout-link {
    width: 100%;
    min-width: 0;
    min-height: 46px;
    font-size: 0.74rem;
  }

  .model-appointment {
    background: linear-gradient(135deg, #d2a24a, #a67825);
    border-color: #b88735;
  }

  .suite-model,
  .suite-service-page,
  .suite-project-page,
  .suite-info-page,
  .suite-login-page,
  .suite-courses-page {
    width: 100%;
    padding-top: var(--nav-height-mobile);
  }

  .model-hero::before {
    inset: calc(-1 * var(--nav-height-mobile)) 39% 0 0;
  }

  .model-hero::after {
    top: calc(-1 * var(--nav-height-mobile));
  }

  .suite-dashboard-page {
    padding-top: calc(var(--nav-height-mobile) + 32px);
  }

  .login-support-section {
    grid-template-columns: 1fr;
  }

  .login-hero {
    align-items: start;
  }

  .login-panel {
    order: -1;
    background: rgba(0, 0, 0, 0.72);
  }

  .login-panel img {
    width: min(200px, 100%);
    max-height: 130px;
  }
}

@media (max-width: 760px) {
  .dashboard-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
  }

  .dashboard-tabs button {
    flex: 1 1 calc(50% - 4px);
    width: auto;
    min-width: 0;
    padding-inline: 10px;
    font-size: 0.72rem;
  }
}

@media (max-width: 620px) {
  .login-support-cards {
    grid-template-columns: 1fr;
  }

  .login-support-section {
    padding-inline: 22px;
  }

  .site-footer {
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 380px) {
  .model-nav {
    padding: 0 12px;
  }

  .model-nav img {
    width: 124px;
  }
}

/* --- Dashboard tables & metrics on phones --- */
@media (max-width: 760px) {
  .dashboard-premium-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-metric-card {
    gap: 10px;
    padding: 20px 18px;
    border-right: 1px solid rgba(202, 161, 74, 0.16);
  }

  .dashboard-metric-card:nth-child(2n) {
    border-right: 0;
  }

  .dashboard-metric-card strong {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .dashboard-metric-card p {
    font-size: 0.82rem;
  }
}

@media (max-width: 620px) {
  .dashboard-table {
    overflow: visible;
    border: 0;
    background: transparent;
    gap: 12px;
  }

  .dashboard-table > div:first-child {
    display: none;
  }

  .dashboard-table > div {
    grid-template-columns: 1fr;
    gap: 6px;
    min-width: 0;
    padding: 18px;
    border: 1px solid rgba(202, 161, 74, 0.22);
    border-radius: 16px;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
      rgba(12, 16, 16, 0.74);
  }

  .dashboard-table > div .dashboard-state-button {
    width: fit-content;
    margin-top: 6px;
  }

  .branch-ops-table {
    overflow: visible;
    border: 0;
    border-radius: 0;
    gap: 12px;
  }

  .branch-ops-table > div:first-child {
    display: none;
  }

  .branch-ops-table > div {
    grid-template-columns: 1fr;
    gap: 6px;
    min-width: 0;
    padding: 18px;
    border: 1px solid rgba(202, 161, 74, 0.22);
    border-radius: 16px;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
      rgba(12, 16, 16, 0.74);
  }

  .branch-ops-table > div .dashboard-state-button {
    width: fit-content;
    margin-top: 6px;
  }

  .audit-edit-table {
    -webkit-overflow-scrolling: touch;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   Dashboard action buttons (replace numbered info cards)
   ============================================================ */
.dashboard-actions {
  gap: 14px;
}

.dashboard-action {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: 100%;
  padding: 20px 22px;
  border: 1px solid rgba(202, 161, 74, 0.24);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
    rgba(12, 16, 16, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 20px 60px rgba(0, 0, 0, 0.24);
  color: #f4f1ea;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.dashboard-action:hover {
  transform: translateY(-2px);
  border-color: rgba(202, 161, 74, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 26px 60px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(202, 161, 74, 0.22);
}

.dashboard-action:active {
  transform: translateY(0);
}

.dashboard-action.active {
  border-color: rgba(226, 184, 96, 0.85);
  background:
    linear-gradient(135deg, rgba(202, 161, 74, 0.22), rgba(202, 161, 74, 0.05) 58%),
    rgba(12, 16, 16, 0.86);
}

.dashboard-action__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(202, 161, 74, 0.45);
  border-radius: 14px;
  background: rgba(202, 161, 74, 0.1);
  color: #e5c479;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}

.dashboard-action__icon svg {
  width: 22px;
  height: 22px;
}

.dashboard-action.active .dashboard-action__icon {
  border-color: transparent;
  background: linear-gradient(135deg, #e1b75f, #bc842c);
  color: #120d04;
}

.dashboard-action__body {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.dashboard-action__body strong {
  color: #fff;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.dashboard-actions .dashboard-action__body > span,
.dashboard-list .dashboard-action__body > span {
  color: rgba(244, 241, 234, 0.72);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

.dashboard-actions .dashboard-action__body > strong,
.dashboard-list .dashboard-action__body > strong {
  font-size: 1rem;
  line-height: 1.3;
}

.dashboard-action__arrow {
  width: 12px;
  height: 12px;
  margin-right: 4px;
  border-top: 2px solid rgba(226, 184, 96, 0.65);
  border-right: 2px solid rgba(226, 184, 96, 0.65);
  transform: rotate(45deg);
  transition: transform 200ms ease, border-color 200ms ease;
}

.dashboard-action:hover .dashboard-action__arrow,
.dashboard-action.active .dashboard-action__arrow {
  border-color: #e5c479;
  transform: translateX(4px) rotate(45deg);
}

.dashboard-workspace {
  scroll-margin-top: calc(var(--nav-height) + 16px);
}

.is-highlighted {
  border-color: rgba(226, 184, 96, 0.9) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 0 3px rgba(226, 184, 96, 0.4) !important;
}

@media (max-width: 1023px) {
  .dashboard-workspace {
    scroll-margin-top: calc(var(--nav-height-mobile) + 12px);
  }
}

@media (max-width: 620px) {
  .dashboard-action {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
  }

  .dashboard-action__icon {
    width: 42px;
    height: 42px;
  }

  .dashboard-action__arrow {
    display: none;
  }
}

/* ============================================================
   Paneles funcionales: avisos, estados, formularios en línea
   ============================================================ */
.is-hidden {
  display: none !important;
}

.dashboard-notice--error {
  border-color: rgba(255, 120, 120, 0.5);
  background: rgba(180, 64, 64, 0.16);
  color: #ffd9d9;
}

.form-flash {
  margin: 0 0 18px;
  padding: 16px 18px;
  border: 1px solid rgba(202, 161, 74, 0.42);
  border-radius: 14px;
  background: rgba(202, 161, 74, 0.12);
  color: #f4f1ea;
  font-weight: 700;
  line-height: 1.5;
}

.form-flash--error {
  border-color: rgba(255, 120, 120, 0.5);
  background: rgba(180, 64, 64, 0.16);
  color: #ffd9d9;
}

.suite-form__context {
  grid-column: 1 / -1;
  margin: 0;
  padding: 12px 14px;
  border-left: 3px solid var(--gold);
  background: rgba(202, 161, 74, 0.1);
  color: rgba(244, 241, 234, 0.82);
  font-size: 0.9rem;
}

.suite-form__context strong {
  color: #fff;
}

.dashboard-hint {
  margin: 0 0 18px;
  color: rgba(244, 241, 234, 0.66);
  font-size: 0.9rem;
  line-height: 1.55;
}

.dashboard-hint--storage {
  padding: 12px 16px;
  border: 1px dashed rgba(202, 161, 74, 0.4);
  border-radius: 12px;
}

.dashboard-hint code {
  padding: 1px 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #e5c479;
  font-size: 0.85em;
}

.dashboard-empty {
  display: grid;
  gap: 10px;
  justify-items: start;
  padding: 30px 26px;
  border: 1px dashed rgba(202, 161, 74, 0.38);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.dashboard-empty strong {
  color: #fff;
  font-size: 1.05rem;
}

.dashboard-empty p {
  margin: 0;
  color: rgba(244, 241, 234, 0.7);
  line-height: 1.55;
}

.dashboard-meta {
  margin: 0;
  color: rgba(244, 241, 234, 0.58) !important;
  font-size: 0.8rem !important;
  line-height: 1.5;
}

.dashboard-meta a {
  color: #e5c479;
}

.dashboard-answer {
  margin: 0;
  padding: 12px 14px;
  border-left: 3px solid rgba(202, 161, 74, 0.7);
  background: rgba(202, 161, 74, 0.08);
  color: rgba(244, 241, 234, 0.82);
  font-size: 0.9rem;
  line-height: 1.55;
}

.dashboard-answer b {
  color: #e5c479;
}

/* --- Estados --- */
.status-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 24px;
  padding: 0 10px;
  border: 1px solid rgba(202, 161, 74, 0.45);
  border-radius: 999px;
  background: rgba(202, 161, 74, 0.12);
  color: #e5c479 !important;
  font-size: 0.68rem !important;
  font-weight: 800;
  letter-spacing: 0.1em !important;
  text-transform: uppercase;
  white-space: nowrap;
}

.status-pill--approved,
.status-pill--published {
  border-color: rgba(102, 204, 140, 0.5);
  background: rgba(60, 170, 100, 0.14);
  color: #9be3b6 !important;
}

.status-pill--rejected,
.status-pill--archived,
.status-pill--blocked {
  border-color: rgba(255, 120, 120, 0.5);
  background: rgba(180, 64, 64, 0.16);
  color: #ffb3b3 !important;
}

.status-pill--observed {
  border-color: rgba(255, 176, 90, 0.55);
  background: rgba(220, 130, 40, 0.16);
  color: #ffcf96 !important;
}

.status-pill--draft {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(244, 241, 234, 0.75) !important;
}

.status-pill--type {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(244, 241, 234, 0.8) !important;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* --- Formularios en línea --- */
.inline-form {
  display: grid;
  gap: 12px;
  margin-top: 6px;
  padding: 16px;
  border: 1px solid rgba(202, 161, 74, 0.28);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.28);
}

.inline-form label {
  display: grid;
  gap: 6px;
  color: var(--model-gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.inline-form input,
.inline-form select,
.inline-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(9, 11, 11, 0.72);
  color: #fff;
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.inline-form textarea {
  min-height: 96px;
  padding: 12px 14px;
  resize: vertical;
}

.inline-form select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 36px;
  background-image:
    linear-gradient(45deg, transparent 50%, #e5c479 50%),
    linear-gradient(135deg, #e5c479 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.inline-form select option {
  color: #111;
}

.inline-form input:focus,
.inline-form select:focus,
.inline-form textarea:focus {
  outline: none;
  border-color: rgba(226, 184, 96, 0.75);
  box-shadow: 0 0 0 3px rgba(202, 161, 74, 0.18);
}

.inline-form input[type="file"] {
  display: flex;
  align-items: center;
  padding: 6px 8px;
  color: rgba(244, 241, 234, 0.7);
  font-size: 0.8rem;
  cursor: pointer;
}

.inline-form input[type="file"]::file-selector-button {
  margin-right: 10px;
  padding: 7px 12px;
  border: 1px solid rgba(202, 161, 74, 0.5);
  border-radius: 9px;
  background: rgba(202, 161, 74, 0.14);
  color: #e5c479;
  cursor: pointer;
  font: inherit;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inline-form--grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.inline-form--grid > button,
.inline-form--grid > p {
  grid-column: 1 / -1;
}

.inline-form--row {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.inline-form .dashboard-state-button {
  margin-top: 0;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.inline-actions form {
  margin: 0;
}

.inline-actions .dashboard-state-button {
  margin-top: 0;
}

.dashboard-state-button--small {
  min-height: 40px;
  padding: 0 14px;
  font-size: 0.68rem;
}

.link-button {
  padding: 4px 0;
  border: 0;
  background: none;
  color: rgba(255, 179, 179, 0.85);
  cursor: pointer;
  font: inherit;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.link-button:hover {
  color: #ffb3b3;
  text-decoration: underline;
}

.checkbox-field {
  display: flex !important;
  align-items: center;
  gap: 10px;
  color: rgba(244, 241, 234, 0.82) !important;
  font-size: 0.86rem !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.checkbox-field input {
  width: 18px !important;
  min-height: 0 !important;
  height: 18px;
  accent-color: #d2a24a;
}

/* --- Tarjetas de propiedad en paneles --- */
.property-admin-card {
  grid-template-columns: 132px minmax(0, 1fr) !important;
  gap: 18px !important;
  align-items: start;
}

.property-admin-card > div {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.dashboard-thumb {
  width: 132px;
  height: 132px;
  border-radius: 14px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.05);
}

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

.spec-list li {
  padding: 5px 9px;
  border: 1px solid rgba(202, 161, 74, 0.22);
  border-radius: 8px;
  color: rgba(244, 241, 234, 0.76);
  font-size: 0.74rem;
}

/* --- Tabla de usuarios --- */
.dashboard-table--users > div {
  grid-template-columns: 0.7fr 1.6fr 0.7fr auto;
}

.dashboard-table form {
  margin: 0;
}

.dashboard-table .dashboard-state-button {
  margin-top: 0;
}

.table-user {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.table-user b {
  color: #f4f1ea;
  font-size: 0.92rem;
}

.table-user small {
  color: rgba(244, 241, 234, 0.6);
  font-size: 0.78rem;
  overflow-wrap: anywhere;
}

/* --- Botones de acción en cuadrícula --- */
.dashboard-actions--grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.dashboard-actions--grid .dashboard-action {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
}

.dashboard-actions .dashboard-action__body > .dashboard-action__label,
.dashboard-list .dashboard-action__body > .dashboard-action__label {
  color: var(--model-gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.investor-region-access.dashboard-actions--grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

/* --- Cursos (Admin) --- */
.course-admin-list {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.course-admin-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(202, 161, 74, 0.24);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(12, 16, 16, 0.74);
}

.course-admin-card > p {
  margin: 0;
  color: rgba(244, 241, 234, 0.74);
  line-height: 1.55;
}

.course-admin-card__header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.course-admin-card__header > div {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.course-admin-card__header strong {
  color: #fff;
  font-size: 1.15rem;
  text-transform: uppercase;
}

.course-admin-card__header form {
  margin: 0;
  flex: 0 0 auto;
}

.course-admin-card__header .dashboard-state-button {
  margin-top: 0;
}

.course-sections {
  display: grid;
  gap: 14px;
}

.course-section {
  display: grid;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.22);
}

.course-section > header {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
}

.course-section > header strong {
  flex: 1 1 auto;
  color: #fff;
  font-size: 0.98rem;
}

.course-section > header form {
  margin: 0;
}

.lesson-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: lesson;
}

.lesson-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.lesson-list li form {
  margin: 0;
}

.lesson-list a {
  color: #e5c479;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lesson-title {
  color: #f4f1ea;
  font-size: 0.92rem;
}

.lesson-title small,
.course-outline small {
  color: rgba(244, 241, 234, 0.55);
  font-size: 0.76rem;
}

.lesson-type {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 6px;
  background: rgba(202, 161, 74, 0.16);
  color: #e5c479;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.lesson-type--lectura,
.lesson-type--documento {
  background: rgba(120, 170, 255, 0.16);
  color: #b9d1ff;
}

.lesson-type--evaluacion {
  background: rgba(102, 204, 140, 0.16);
  color: #9be3b6;
}

.enrollment-list {
  display: grid;
  gap: 10px;
}

.enrollment-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

/* --- Auditoría --- */
.audit-edit-table > form {
  display: grid;
  grid-template-columns: 1.3fr repeat(5, minmax(120px, 1fr)) auto;
  gap: 12px;
  align-items: center;
  min-width: 1080px;
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.065);
}

.audit-edit-table > form:last-child {
  border-bottom: 0;
}

.audit-edit-table > div {
  grid-template-columns: 1.3fr repeat(5, minmax(120px, 1fr)) auto;
  min-width: 1080px;
}

.audit-edit-table label {
  display: block;
  margin: 0;
}

.audit-edit-table .dashboard-state-button {
  margin-top: 0;
}

.audit-flow b em {
  margin-left: 6px;
  color: #e5c479;
  font-style: normal;
}

/* --- Academia pública --- */
.course-toolbar__meta {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.course-outline {
  border: 1px solid rgba(202, 161, 74, 0.22);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.25);
}

.course-outline summary {
  padding: 12px 16px;
  color: #e5c479;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.course-outline__section {
  display: grid;
  gap: 8px;
  padding: 12px 16px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.course-outline__section strong {
  color: #fff;
  font-size: 0.92rem;
}

.course-outline ol {
  display: grid;
  gap: 6px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.course-outline li {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.enroll-form {
  margin-top: 0;
}

.enroll-form input {
  min-height: 46px;
}

.course-empty-search {
  margin-top: 18px;
}

.learning-card[hidden] {
  display: none !important;
}

@media (max-width: 980px) {
  .dashboard-actions--grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .dashboard-table--users > div {
    grid-template-columns: 1fr;
  }

  .property-admin-card {
    grid-template-columns: 1fr !important;
  }

  .dashboard-thumb {
    width: 100%;
    height: 180px;
  }

  .course-admin-card__header {
    flex-direction: column;
  }

  .lesson-list li {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .lesson-list li a,
  .lesson-list li form {
    grid-column: 2;
  }

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

@media (max-width: 620px) {
  .dashboard-actions--grid,
  .inline-form--grid,
  .inline-form--row {
    grid-template-columns: 1fr;
  }

  .dashboard-empty {
    padding: 22px 18px;
  }
}

/* --- Etiqueta de sección activa (paneles sin pestañas) --- */
.dashboard-current {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 10px 16px;
  border: 1px solid rgba(202, 161, 74, 0.35);
  border-radius: 999px;
  background: rgba(202, 161, 74, 0.08);
  color: rgba(244, 241, 234, 0.7);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dashboard-current strong {
  color: #e5c479;
  font-weight: 800;
}

/* ============================================================
   Trabaja con SUITE (portada y login)
   ============================================================ */
.model-join {
  display: grid;
  gap: 22px;
  padding: clamp(36px, 4vw, 56px) clamp(22px, 5vw, 78px) clamp(40px, 4.5vw, 64px);
  border-top: 1px solid rgba(197, 151, 61, 0.24);
  background:
    radial-gradient(circle at 12% 0%, rgba(202, 161, 74, 0.09), transparent 32%),
    #030404;
  color: #fff;
}

.model-join__intro {
  max-width: 720px;
}

.model-join__intro h2 {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.model-join__intro > p:not(.model-eyebrow) {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.6;
}

.model-join__note a {
  color: #e5c479;
  font-weight: 700;
}

.model-join__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.model-join__card {
  display: grid;
  gap: 12px;
  align-content: start;
  min-width: 0;
  padding: clamp(22px, 2.6vw, 30px);
  border: 1px solid rgba(197, 151, 61, 0.28);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.016)),
    rgba(12, 16, 16, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 20px 60px rgba(0, 0, 0, 0.24);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .model-join__card:hover {
    transform: translateY(-3px);
    border-color: rgba(202, 161, 74, 0.62);
  }
}

.model-join__label {
  color: #c9973f;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.model-join__card h3 {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.model-join__card ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 4px 0 8px;
  list-style: none;
}

.model-join__card li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.5;
}

.model-join__card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e1b75f, #a67825);
}

.model-join__card .model-gold-button {
  justify-self: start;
  min-width: 0;
  margin-top: 4px;
  cursor: pointer;
}

.join-form {
  margin-top: 6px;
}

.dashboard-hint--prefill {
  margin: 0;
  padding: 12px 14px;
  border-left: 3px solid var(--gold);
  background: rgba(202, 161, 74, 0.1);
  color: rgba(244, 241, 234, 0.85);
}

.model-join--login {
  border-top: 0;
  padding-inline: clamp(22px, 7vw, 110px);
}

@media (max-width: 760px) {
  .model-join__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Ficha de proyecto
   ============================================================ */
.project-hero__featured--link {
  display: grid;
  color: inherit;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.project-hero__featured--link:hover {
  transform: translateY(-3px);
  border-color: rgba(202, 161, 74, 0.7);
}

.project-hero__price {
  color: #e5c479;
  font-size: 0.92rem;
  font-weight: 700;
}

.project-hero__more {
  color: #fff !important;
  font-size: 0.74rem !important;
  letter-spacing: 0.1em !important;
}

.project-showcase article ul li {
  padding: 5px 9px;
  border: 1px solid rgba(202, 161, 74, 0.22);
  border-radius: 8px;
  font-size: 0.74rem;
}

.project-showcase--properties {
  background: #050505;
}

.project-detail__hero {
  background:
    linear-gradient(112deg, #040404 0%, #040404 54%, rgba(4, 4, 4, 0.82) 54.2%, rgba(4, 4, 4, 0.95) 100%),
    var(--cover) center / cover;
}

.project-detail__hero .project-hero__copy > p:not(.model-eyebrow) {
  margin-top: 18px;
}

.project-detail__location {
  color: #e5c479 !important;
  font-size: 0.9rem !important;
  font-weight: 600;
}

.project-detail__hero .project-hero__metrics {
  max-width: 640px;
}

.project-detail__hero .project-hero__metrics strong {
  font-size: clamp(1.05rem, 1.4vw, 1.4rem);
  line-height: 1.2;
}

.project-detail__hero .info-actions {
  margin-top: 28px;
}

.project-detail__cover {
  grid-template-rows: minmax(300px, 1fr) auto;
  min-height: 480px;
}

/* --- Galería --- */
.project-gallery {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 3vw, 40px) clamp(22px, 6vw, 96px);
  border-bottom: 1px solid rgba(197, 151, 61, 0.24);
  background: #030404;
}

.project-gallery__stage {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(197, 151, 61, 0.28);
  border-radius: 18px;
  background: #0b0f10;
  aspect-ratio: 16 / 9;
}

.project-gallery__stage::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: var(--bg, none) center / cover no-repeat;
  filter: blur(28px) saturate(0.9);
  opacity: 0.55;
}

.project-gallery__main {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.project-gallery__nav {
  position: absolute;
  top: 50%;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(202, 161, 74, 0.6);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease;
}

.project-gallery__nav::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 11px;
  border-top: 2px solid #e5c479;
  border-right: 2px solid #e5c479;
}

.project-gallery__nav--prev {
  left: 16px;
}

.project-gallery__nav--prev::before {
  transform: translate(-30%, -50%) rotate(-135deg);
}

.project-gallery__nav--next {
  right: 16px;
}

.project-gallery__nav--next::before {
  transform: translate(-70%, -50%) rotate(45deg);
}

.project-gallery__nav:hover {
  background: rgba(202, 161, 74, 0.35);
}

.project-gallery__caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 4px;
  padding: 40px 22px 18px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
}

.project-gallery__caption span {
  color: #e5c479;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-gallery__caption p {
  margin: 0;
  color: #fff;
  font-size: 0.92rem;
  line-height: 1.5;
}

.project-gallery__caption small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.74rem;
}

.project-gallery__thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 2px 8px;
  scrollbar-width: thin;
}

.project-gallery__thumb {
  position: relative;
  flex: 0 0 150px;
  height: 96px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 12px;
  background: #0b0f10;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 180ms ease, transform 180ms ease;
}

.project-gallery__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 180ms ease;
}

.project-gallery__thumb span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 6px 8px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.85));
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: left;
  text-transform: uppercase;
}

.project-gallery__thumb:hover img,
.project-gallery__thumb.active img {
  opacity: 1;
}

.project-gallery__thumb.active {
  border-color: #e5c479;
}

/* --- Cuerpo --- */
.project-detail__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 300px);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  padding: clamp(40px, 5vw, 72px) clamp(22px, 6vw, 96px);
  background: #030404;
}

.project-detail__main {
  display: grid;
  gap: clamp(36px, 4vw, 56px);
  min-width: 0;
}

.project-detail__block h2 {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.project-detail__text {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.98rem;
  line-height: 1.7;
}

.project-detail__highlights {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.project-detail__highlights li,
.amenity-grid li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  line-height: 1.55;
}

.project-detail__highlights li::before,
.amenity-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e1b75f, #a67825);
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 18px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

/* --- Tipologías --- */
.typology-table {
  display: grid;
  margin-top: 18px;
  border: 1px solid rgba(202, 161, 74, 0.24);
  border-radius: 16px;
  overflow-x: auto;
  background: rgba(12, 16, 16, 0.74);
}

.typology-table__head,
.typology-table__row {
  display: grid;
  grid-template-columns: 44px 1.3fr 0.7fr 0.7fr 0.8fr 0.8fr 0.7fr auto;
  gap: 10px;
  align-items: center;
  min-width: 700px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.065);
}

.typology-table__head {
  background: rgba(202, 161, 74, 0.1);
}

.typology-table__head span {
  color: var(--model-gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.typology-table__row:last-child {
  border-bottom: 0;
}

.typology-table__row strong {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(202, 161, 74, 0.16);
  color: #e5c479;
  font-size: 0.9rem;
}

.typology-table__row > span {
  color: rgba(244, 241, 234, 0.82);
  font-size: 0.9rem;
}

.typology-table__price {
  color: #fff !important;
  font-weight: 700;
}

.typology-table__row .dashboard-state-button {
  margin-top: 0;
  white-space: nowrap;
}

.project-detail__block .dashboard-meta {
  margin-top: 12px;
}

/* --- Plano --- */
.project-plan {
  margin: 18px 0 0;
  border: 1px solid rgba(202, 161, 74, 0.24);
  border-radius: 16px;
  overflow: hidden;
  background: #f6f2ea;
}

.project-plan img {
  display: block;
  width: 100%;
  height: auto;
}

.project-plan figcaption {
  padding: 10px 16px;
  background: #0b0f10;
  color: rgba(244, 241, 234, 0.6);
  font-size: 0.78rem;
}

/* --- Ficha técnica --- */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px;
  margin: 18px 0 0;
}

.spec-grid div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.spec-grid dt {
  color: rgba(244, 241, 234, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spec-grid dd {
  margin: 0;
  color: #f4f1ea;
  font-size: 0.9rem;
  text-align: right;
}

/* --- Ubicación --- */
.project-location {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
  gap: 20px;
  margin-top: 18px;
}

.project-location__map {
  width: 100%;
  min-height: 340px;
  border: 1px solid rgba(202, 161, 74, 0.24);
  border-radius: 16px;
  filter: saturate(0.85) contrast(1.05);
}

.project-location__list {
  display: grid;
  gap: 10px;
  align-content: start;
}

.project-location__list div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.project-location__list strong {
  color: #f4f1ea;
  font-size: 0.9rem;
  font-weight: 600;
}

.project-location__list span {
  color: #e5c479;
  font-size: 0.82rem;
  white-space: nowrap;
}

.project-location__list .model-outline-button {
  justify-self: start;
  min-width: 0;
  margin-top: 8px;
  padding-inline: 20px;
  color: #e5c479;
}

/* --- Proceso --- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.process-steps li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(202, 161, 74, 0.22);
  border-radius: 14px;
  background: rgba(12, 16, 16, 0.74);
}

.process-steps li > span {
  color: #e5c479;
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1;
}

.process-steps strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.process-steps p {
  margin: 6px 0 0;
  color: rgba(244, 241, 234, 0.72);
  font-size: 0.88rem;
  line-height: 1.55;
}

/* --- Columna lateral --- */
.project-detail__side {
  display: grid;
  gap: 18px;
  position: sticky;
  top: calc(var(--nav-height) + 20px);
}

.project-cta {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(202, 161, 74, 0.4);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(202, 161, 74, 0.14), rgba(255, 255, 255, 0.02) 60%),
    rgba(12, 16, 16, 0.86);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.project-cta > strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.1;
}

.project-cta > p {
  margin: 0;
  color: rgba(244, 241, 234, 0.72);
  font-size: 0.88rem;
}

.project-cta dl {
  display: grid;
  gap: 8px;
  margin: 4px 0;
}

.project-cta dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.project-cta dt {
  color: rgba(244, 241, 234, 0.58);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-cta dd {
  margin: 0;
  color: #f4f1ea;
  font-size: 0.86rem;
  text-align: right;
}

.project-cta .model-gold-button,
.project-cta .model-outline-button {
  width: 100%;
  min-width: 0;
}

.project-cta .model-outline-button {
  color: #e5c479;
}

.project-cta--team {
  background: rgba(12, 16, 16, 0.74);
  border-color: rgba(202, 161, 74, 0.22);
}

.project-detail__others {
  border-top: 1px solid rgba(197, 151, 61, 0.24);
}

@media (max-width: 1100px) {
  .project-detail__body {
    grid-template-columns: 1fr;
  }

  .project-detail__side {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .project-detail__hero {
    background:
      linear-gradient(180deg, rgba(4, 4, 4, 0.96), rgba(4, 4, 4, 0.9)),
      var(--cover) center / cover;
  }

  .amenity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .project-detail__side,
  .process-steps,
  .spec-grid,
  .project-location,
  .amenity-grid {
    grid-template-columns: 1fr;
  }

  .project-gallery__stage {
    aspect-ratio: 4 / 3;
  }

  .project-gallery__thumb {
    flex-basis: 118px;
    height: 78px;
  }

  .project-gallery__nav {
    width: 38px;
    height: 38px;
  }

  .project-gallery__caption {
    padding: 30px 14px 12px;
  }

  .project-detail__cover {
    min-height: auto;
  }
}

/* ============================================================
   Admin: proyectos
   ============================================================ */
.project-admin-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}

.project-admin-toolbar strong {
  color: #fff;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.project-admin-toolbar .dashboard-state-button {
  margin-top: 0;
}

.project-form {
  margin: 0 0 18px;
  padding: 20px;
  border: 1px solid rgba(202, 161, 74, 0.28);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.28);
}

.project-form textarea {
  min-height: 96px;
  padding-top: 12px;
  resize: vertical;
}

.project-admin-card__intro {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.project-admin-card__intro .dashboard-thumb {
  width: 96px;
  height: 96px;
}

.project-admin-card__intro > div {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.project-admin-card .course-admin-card__header {
  flex-wrap: wrap;
}

.photo-admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
}

.photo-admin-grid figure {
  position: relative;
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.photo-admin-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
}

.photo-admin-grid figcaption {
  display: grid;
  gap: 2px;
}

.photo-admin-grid figcaption b {
  color: #e5c479;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.photo-admin-grid figcaption small {
  color: rgba(244, 241, 234, 0.6);
  font-size: 0.72rem;
  line-height: 1.4;
}

.photo-admin-grid form {
  margin: 0;
}

.plan-admin-preview {
  display: block;
  max-width: 420px;
  border: 1px solid rgba(202, 161, 74, 0.24);
  border-radius: 12px;
  overflow: hidden;
  background: #f6f2ea;
}

.plan-admin-preview img {
  display: block;
  width: 100%;
  height: auto;
}

.project-preview-notice {
  margin: calc(var(--nav-height) + 16px) clamp(22px, 6vw, 96px) -60px;
  position: relative;
  z-index: 2;
}

@media (max-width: 760px) {
  .project-admin-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .project-admin-card__intro {
    grid-template-columns: 1fr;
  }

  .project-admin-card__intro .dashboard-thumb {
    width: 100%;
    height: 160px;
  }
}

/* ============================================================
   Panel Admin: acciones por usuario y cambio de contraseña
   ============================================================ */
.table-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.table-actions form {
  margin: 0;
}

.table-actions .link-button {
  padding: 4px 6px;
}

.table-password-form {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 10px;
  margin-top: 6px;
  padding: 14px;
  border: 1px solid rgba(202, 161, 74, 0.28);
  border-radius: 12px;
  background: rgba(202, 161, 74, 0.06);
}

.table-password-form label {
  flex: 1 1 260px;
  display: grid;
  gap: 6px;
  color: rgba(244, 241, 234, 0.82);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.table-password-form input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(244, 241, 234, 0.18);
  border-radius: 10px;
  background: rgba(244, 241, 234, 0.08);
  color: #fff;
  font: inherit;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: none;
  outline: 0;
}

.table-password-form input:focus {
  border-color: rgba(202, 161, 74, 0.6);
}

.table-password-form .dashboard-state-button {
  margin-top: 0;
}

.broker-property-form .field-with-action {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.broker-property-form .field-action {
  grid-column: auto;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(202, 161, 74, 0.5);
  border-radius: 12px;
  background: rgba(202, 161, 74, 0.14);
  box-shadow: none;
  color: #e5c479;
  cursor: pointer;
  font: inherit;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.broker-property-form .field-action:hover {
  background: rgba(202, 161, 74, 0.26);
}

@media (max-width: 760px) {
  .table-actions {
    justify-content: flex-start;
  }

  .table-password-form {
    padding: 12px;
  }

  .table-password-form .dashboard-state-button {
    flex: 1 1 140px;
  }
}
