:root {
  --navy: #242424;
  --navy-deep: #090909;
  --navy-soft: #3a3a3a;
  --bordeaux: #1d1d1d;
  --beige: #d0d0d0;
  --cream: #f5f5f3;
  --gold: #c3a158;
  --white: #ffffff;
  --text: #171717;
  --muted: #5b5b5b;
  --line: #d9d9d6;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  color: var(--text);
  background: var(--white);
  font-family: "Nunito Sans", Arial, sans-serif;
  line-height: 1.6;
}

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

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.top-bar {
  background: var(--navy-deep);
  color: var(--cream);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 86px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 900;
}

.brand img {
  width: 82px;
  height: 82px;
  object-fit: cover;
  border-radius: 8px;
}

.brand span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.top-contact {
  display: flex;
  gap: 18px;
  color: var(--beige);
  font-size: 14px;
  font-weight: 800;
}

.top-contact a:hover {
  color: var(--gold);
}

.mobile-menu-toggle,
.mobile-nav {
  display: none;
}

.main-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 58px;
}

.nav-inner a {
  padding: 10px 14px;
  color: var(--navy);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

.nav-inner a:hover,
.nav-inner .nav-cta {
  color: var(--cream);
  background: var(--bordeaux);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 10vw, 126px) 0 clamp(74px, 9vw, 112px);
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(5, 5, 5, 0.98) 0%, rgba(20, 20, 20, 0.94) 52%, rgba(45, 45, 45, 0.86) 100%),
    url("assets/the-plaza-hero.jpg") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.38));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.46fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.eyebrow,
.section-eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
.section-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 1.02;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(46px, 7vw, 88px);
}

.hero-copy p {
  max-width: 710px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

.hero-actions,
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.btn-primary {
  color: var(--navy-deep);
  background: var(--gold);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.proof {
  display: grid;
  gap: 4px;
  margin-top: 34px;
  color: var(--cream);
}

.proof strong {
  color: var(--white);
  font-size: 18px;
}

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

.hero-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.hero-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
}

.hero-card div {
  display: grid;
  gap: 6px;
  padding: 22px;
}

.hero-card strong {
  color: var(--white);
  font-size: 18px;
}

.hero-card span {
  color: rgba(255, 255, 255, 0.72);
}

.section {
  padding: clamp(74px, 9vw, 110px) 0;
}

.section-title {
  max-width: 860px;
  margin-bottom: 20px;
  color: var(--navy);
  font-size: clamp(36px, 5.4vw, 64px);
}

.section-lead {
  max-width: 790px;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: 19px;
}

.pain {
  background: var(--cream);
}

.issue-grid,
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.issue-grid article,
.diff-grid article {
  min-height: 260px;
  padding: 28px;
  color: var(--white);
  border-radius: 18px;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
}

.issue-grid span,
.diff-grid strong {
  display: inline-block;
  margin-bottom: 46px;
  color: var(--gold);
  font-weight: 900;
}

.issue-grid h3,
.diff-grid h3,
.solution-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.15;
}

.issue-grid p,
.diff-grid p {
  color: rgba(255, 255, 255, 0.78);
}

.audience {
  color: var(--white);
  background: var(--navy-deep);
}

.audience-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(42px, 8vw, 110px);
  align-items: start;
}

.audience .section-title {
  color: var(--cream);
}

.audience-intro p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.audience-groups {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.audience-groups article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.audience-number {
  color: var(--gold);
  font-weight: 900;
}

.audience-groups h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  line-height: 1.1;
}

.audience-groups ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 18px;
  padding: 0;
  list-style: none;
}

.audience-groups li {
  position: relative;
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.76);
}

.audience-groups li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--gold);
}

.solutions {
  background: var(--white);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.solution-card {
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--cream);
}

.solution-card.featured {
  color: var(--white);
  background: var(--bordeaux);
  border-color: var(--bordeaux);
}

.card-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.solution-card h3 {
  color: inherit;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 4vw, 44px);
}

.solution-card p {
  margin-bottom: 22px;
  color: var(--muted);
}

.solution-card.featured p,
.solution-card.featured li {
  color: rgba(255, 255, 255, 0.78);
}

.solution-card ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
}

.solution-card li {
  color: var(--text);
  font-weight: 800;
}

.case-note {
  background: var(--cream);
}

.case-highlight {
  max-width: 900px;
  padding: clamp(28px, 5vw, 48px);
  color: var(--white);
  border-radius: 22px;
  background: linear-gradient(135deg, var(--navy), var(--bordeaux));
  box-shadow: var(--shadow);
}

.case-highlight .section-title {
  color: var(--cream);
}

.case-highlight p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.case-highlight .case-intro {
  max-width: 700px;
  margin-bottom: 28px;
}

.case-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.case-results article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(210, 167, 88, 0.38);
  background: rgba(255, 255, 255, 0.07);
}

.case-results p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.65;
}

.case-check {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--gold);
  border: 1px solid var(--gold);
  font-size: 20px;
  font-weight: 800;
}

.case-disclaimer {
  margin-top: 18px;
  padding: 16px 18px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.08);
  font-size: 15px !important;
}

@media (max-width: 820px) {
  .case-results {
    grid-template-columns: 1fr;
  }

  .case-results article {
    min-height: 0;
  }
}

.differentials {
  color: var(--white);
  background: var(--navy-deep);
}

.differentials .section-title {
  color: var(--cream);
}

.differentials .diff-grid {
  grid-template-columns: repeat(4, 1fr);
}

.differentials .diff-grid article {
  min-height: 250px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.leadership {
  background: var(--cream);
}

.leadership-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
}

.leader-photo {
  overflow: hidden;
  min-height: 520px;
  border-radius: 22px;
  background: var(--navy-deep);
  box-shadow: var(--shadow);
}

.leader-photo img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center top;
}

.leadership p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.result-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.result-list span {
  padding: 10px 14px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
}

.faq {
  background: var(--white);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 880px;
}

.faq-list details {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--cream);
}

.faq-list summary {
  cursor: pointer;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

.faq-list p {
  margin-top: 14px;
  color: var(--muted);
}

.cta-final {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 10vw, 120px) 0;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(5, 5, 5, 0.98), rgba(38, 38, 38, 0.92)),
    url("assets/the-plaza-sign.jpg") center / cover no-repeat;
}

.cta-final h2 {
  max-width: 860px;
  margin-bottom: 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02;
}

.cta-final p,
.cta-final address {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
  font-size: 18px;
}

.cta-final .cta-buttons {
  margin: 28px 0;
}

.footer {
  padding: 28px 0;
  color: var(--beige);
  background: var(--navy-deep);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.footer a {
  color: var(--gold);
  font-weight: 900;
}

.float-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  padding: 14px 18px;
  color: var(--navy-deep);
  background: var(--gold);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  font-weight: 900;
}

@media (max-width: 920px) {
  .top-bar-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px 18px;
    min-height: 76px;
    padding: 8px 0 12px;
  }

  .top-contact {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .top-contact a {
    overflow-wrap: anywhere;
  }

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

  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: grid;
    width: 46px;
    height: 46px;
    padding: 11px;
    place-content: center;
    gap: 5px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 6px;
    background: transparent;
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: currentColor;
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-nav:not([hidden]) {
    position: relative;
    z-index: 25;
    display: block;
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    background: var(--navy-deep);
  }

  .mobile-nav-inner {
    display: grid;
    padding: 8px 0 16px;
  }

  .mobile-nav a {
    min-height: 48px;
    padding: 12px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-weight: 800;
  }

  .mobile-nav a:last-child {
    color: var(--gold);
    border-bottom: 0;
  }

  .hero-grid,
  .solution-grid,
  .audience-layout,
  .leadership-grid {
    grid-template-columns: 1fr;
  }

  .issue-grid,
  .diff-grid,
  .differentials .diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .brand img {
    width: 58px;
    height: 58px;
  }

  .brand span {
    max-width: 150px;
    font-size: 18px;
    line-height: 1.05;
  }

  .top-contact {
    display: grid;
    gap: 8px;
    font-size: 13px;
  }

  h1 {
    font-size: 40px;
  }

  .section {
    padding: 64px 0;
  }

  .section-title {
    font-size: 38px;
  }

  .hero {
    padding: 58px 0 64px;
  }

  .hero-copy p {
    font-size: 18px;
  }

  .btn {
    width: 100%;
  }

  .hero-card img {
    height: 240px;
  }

  .issue-grid,
  .diff-grid,
  .differentials .diff-grid {
    grid-template-columns: 1fr;
  }

  .issue-grid article,
  .diff-grid article {
    min-height: 0;
  }

  .audience-groups article {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
  }

  .solution-card,
  .case-highlight,
  .faq-list details {
    border-radius: 14px;
  }

  .leader-photo,
  .leader-photo img {
    min-height: 300px;
  }

  .float-wa {
    right: 14px;
    bottom: 14px;
    padding: 12px 14px;
    font-size: 13px;
  }
}

@media (max-width: 360px) {
  .brand {
    gap: 8px;
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

  .brand span {
    max-width: 130px;
    font-size: 16px;
  }

  h1 {
    font-size: 36px;
  }

  .section-title {
    font-size: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
