/* Acacias Capital - alternative assets advisory landing */

:root {
  --ink: #071016;
  --deep: #081820;
  --cream: #f3f0e9;
  --white: #ffffff;
  --gold: #c49a5a;
  --line: rgba(255, 255, 255, 0.22);
}

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

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--white);
  background: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

button {
  font: inherit;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 35px;
  height: 1px;
  background: var(--gold);
}

h1,
h2,
h3,
.logo {
  font-family: "Montserrat", "Manrope", sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 780px;
  font-size: clamp(36px, 5.4vw, 80px);
  line-height: 0.96;
  font-weight: 900;
}

h2 {
  max-width: 850px;
  font-size: clamp(38px, 5.7vw, 82px);
  line-height: 0.94;
  font-weight: 900;
}

h3 {
  font-size: clamp(24px, 3vw, 39px);
  line-height: 1;
  font-weight: 800;
}

p {
  line-height: 1.75;
}

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  padding: 0 5vw;
  transition: 0.35s;
}

.nav.scrolled {
  height: 68px;
  background: rgba(4, 13, 18, 0.91);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.logo {
  position: relative;
  z-index: 35;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 23px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.logo span:last-child {
  color: var(--gold);
}

.logo-mark {
  display: inline-flex;
  width: 24px;
  height: 24px;
  color: var(--gold);
}

.logo-mark svg {
  width: 100%;
  height: 100%;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.65vw, 27px);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.navlinks a {
  transition: 0.25s;
}

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

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.language-switch button {
  min-width: 34px;
  border: 0;
  padding: 8px 9px;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.25s;
}

.language-switch button:hover,
.language-switch button.active {
  background: var(--gold);
  color: var(--ink);
}

.navlinks .login-cta {
  padding: 12px 17px;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--ink);
}

.navlinks .login-cta:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

.burger {
  display: none;
  z-index: 35;
  width: 36px;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.burger i {
  display: block;
  width: 100%;
  height: 2px;
  margin: 7px 0;
  background: var(--white);
  transition: 0.3s;
}

.hero,
.chapter {
  position: relative;
  display: flex;
  align-items: end;
  min-height: 100svh;
  padding: 145px 6vw 9vh;
  overflow: hidden;
  isolation: isolate;
}

.media {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  filter: saturate(0.85);
}

.shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(1, 8, 11, 0.89), rgba(1, 8, 11, 0.28) 63%, rgba(1, 8, 11, 0.2)),
    linear-gradient(0deg, rgba(1, 8, 11, 0.73), transparent 55%);
}

.hero .content {
  max-width: 1080px;
}

.hero .sub {
  max-width: 710px;
  margin: 24px 0 32px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(15px, 1.5vw, 19px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-video-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  font: 900 10px "Manrope", sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.25s;
}

.hero-video-link:hover {
  color: var(--gold);
}

.hero-video-link .arrow {
  margin-left: 0;
  font-size: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 15px 22px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: transparent;
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: 0.3s;
  cursor: pointer;
}

.btn:hover {
  color: var(--ink);
  background: var(--white);
}

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

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

.btn.dark {
  border-color: var(--ink);
  color: var(--ink);
}

.btn.dark:hover {
  color: var(--white);
  background: var(--ink);
}

.btn.dark.outline {
  background: transparent;
  border-color: rgba(7, 16, 22, 0.24);
  color: var(--ink);
}

.btn.dark.outline:hover {
  border-color: var(--ink);
  color: var(--white);
  background: var(--ink);
}

.arrow {
  margin-left: 18px;
  font-size: 17px;
  transition: 0.3s;
}

.btn:hover .arrow {
  transform: translateX(5px);
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
}

.lead-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(2, 8, 11, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
}

.lead-card {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(7, 16, 22, 0.94);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

.lead-card h3 {
  margin-bottom: 14px;
  font-size: clamp(28px, 4vw, 42px);
}

.lead-card p {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.78);
}

.lead-card label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lead-card input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 14px 15px;
  font: 500 15px "Manrope", sans-serif;
  outline: none;
  transition: 0.25s;
}

.lead-card input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.12);
}

.lead-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.lead-message {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.5;
}

.lead-message.error {
  color: #ffb4a8;
}

.lead-message.success {
  color: #d9f4ce;
}

.lead-submit {
  width: 100%;
  margin-top: 4px;
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.lead-submit:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.lead-submit:disabled {
  opacity: 0.68;
  cursor: wait;
}

.scroll {
  position: absolute;
  right: 5vw;
  bottom: 8vh;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transform: rotate(90deg);
  transform-origin: right center;
}

.scroll::after {
  content: "";
  width: 76px;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
}

.intro-video-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: 34px;
}

.intro-video-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(2, 8, 11, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  cursor: pointer;
}

.intro-video-card {
  position: relative;
  z-index: 1;
  width: min(82vw, 980px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #050f14;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.48);
}

.intro-video-card video {
  display: block;
  width: 100%;
  max-height: min(78vh, 680px);
  background: #050f14;
}

.intro-video-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(7, 16, 22, 0.72);
  color: var(--white);
  font: 900 14px "Manrope", sans-serif;
  cursor: pointer;
  transition: 0.25s;
}

.intro-video-close:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.calendar-modal {
  position: fixed;
  inset: 0;
  z-index: 160;
  display: grid;
  place-items: center;
  padding: 34px;
}

.calendar-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(2, 8, 11, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  cursor: pointer;
}

.calendar-card {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(92vw, 980px);
  max-height: calc(100svh - 68px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.48);
  overflow: hidden;
}

.calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(7, 16, 22, 0.12);
  padding: 22px clamp(20px, 3vw, 34px);
}

.calendar-head span {
  display: block;
  margin-bottom: 6px;
  color: #7f5c2b;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.calendar-head h3 {
  font-size: clamp(26px, 3.4vw, 44px);
}

.calendar-close {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid rgba(7, 16, 22, 0.16);
  background: transparent;
  color: var(--ink);
  font: 900 14px "Manrope", sans-serif;
  cursor: pointer;
  transition: 0.25s;
}

.calendar-close:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.calendar-frame {
  display: block;
  width: 100%;
  height: min(68svh, 660px);
  border: 0;
  background: var(--white);
}

.chapter {
  min-height: 86svh;
}

.chapter .content {
  max-width: 750px;
}

.chapter p {
  max-width: 650px;
  margin: 18px 0 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
}

.chapter.right {
  justify-content: end;
  text-align: left;
}

.chapter.right .content {
  width: min(750px, 100%);
}

.statement {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  background: var(--cream);
  color: var(--ink);
}

.statement-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 690px;
  padding: 9vw 7vw;
}

.statement .eyebrow {
  color: #7f5c2b;
}

.statement h2 {
  font-size: clamp(38px, 4.9vw, 73px);
}

.statement p {
  max-width: 660px;
  margin-top: 26px;
  color: #35434a;
  font-size: 16px;
}

.statement-img {
  min-height: 560px;
  background-position: center;
  background-size: cover;
}

.services {
  padding: 112px 6vw;
  background: #07151b;
}

.services-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 55px;
}

.services h2 {
  max-width: 620px;
  font-size: clamp(41px, 5vw, 72px);
}

.services-head p {
  max-width: 470px;
  color: rgba(255, 255, 255, 0.62);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.card {
  position: relative;
  min-height: 410px;
  padding: 31px;
  background: #07151b;
  overflow: hidden;
  transition: 0.4s;
}

.card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: var(--gold);
  transform: translateX(-101%);
  transition: 0.4s;
}

.card:hover {
  background: #10252d;
}

.card:hover::after {
  transform: translateX(0);
}

.num {
  color: var(--gold);
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.card h3 {
  margin: 96px 0 18px;
  font-size: 29px;
  letter-spacing: -0.03em;
}

.card p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
}

.card a,
.card .disabled-link {
  position: absolute;
  bottom: 29px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.card .disabled-link {
  color: rgba(255, 255, 255, 0.36);
  cursor: default;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 50px 6vw;
  background: var(--gold);
  color: var(--ink);
}

.metric {
  padding: 12px 23px;
  border-right: 1px solid rgba(7, 16, 22, 0.24);
}

.metric:last-child {
  border: 0;
}

.metric b {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(31px, 3vw, 51px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.metric span {
  display: block;
  margin-top: 11px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.team {
  background: var(--cream);
  color: var(--ink);
}

.team-copy {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(82px, 8vw, 122px) 6vw;
}

.team-founder-grid {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: clamp(42px, 5vw, 76px);
  align-items: start;
}

.team-photo {
  position: sticky;
  top: 104px;
  align-self: start;
  width: 240px;
}

.team-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(7, 16, 22, 0.14);
  object-fit: cover;
  object-position: center top;
  filter: grayscale(1);
}

.team-photo span {
  display: block;
  margin-top: 14px;
  color: #7f5c2b;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
}

.founder-identity {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.founder-identity strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.founder-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(7, 16, 22, 0.14);
  color: var(--ink);
  transition: 0.25s;
}

.founder-link:hover {
  border-color: #0a66c2;
  background: #0a66c2;
  color: var(--white);
}

.founder-link svg {
  width: 17px;
  height: 17px;
}

.founder-identity + span {
  margin-top: 8px;
}

.team .eyebrow {
  color: #7f5c2b;
}

.team h2 {
  max-width: 720px;
  font-size: clamp(34px, 4.4vw, 64px);
}

.founder-note {
  max-width: 760px;
  margin-top: 30px;
}

.founder-note p {
  margin: 0 0 18px;
  color: #35434a;
  font-size: 15px;
  line-height: 1.78;
}

.team-members {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(7, 16, 22, 0.16);
}

.team-members h3 {
  margin-bottom: 16px;
  color: #7f5c2b;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.team-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3.2vw, 42px);
  max-width: 1080px;
}

.team-list article {
  display: block;
  border-top: 1px solid rgba(7, 16, 22, 0.12);
  padding: 20px 0 2px;
}

.team-member-photo {
  display: block;
  width: 128px;
  aspect-ratio: 4 / 5;
  margin-bottom: 18px;
  border: 1px solid rgba(7, 16, 22, 0.14);
  object-fit: cover;
  object-position: center top;
  filter: grayscale(1);
}

.team-member-photo-placeholder {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 16, 22, 0.08), transparent 38%),
    radial-gradient(circle at 78% 22%, rgba(127, 92, 43, 0.22), transparent 28%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.35), rgba(7, 16, 22, 0.06));
  filter: none;
}

.team-member-photo-placeholder::before,
.team-member-photo-placeholder::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(7, 16, 22, 0.16);
}

.team-member-photo-placeholder::before {
  inset: 18px 20px 42px 22px;
  transform: rotate(-8deg);
}

.team-member-photo-placeholder::after {
  inset: 48px 18px 18px 34px;
  border-color: rgba(127, 92, 43, 0.22);
  transform: rotate(10deg);
}

.team-member-photo-placeholder span {
  position: absolute;
  right: 22px;
  bottom: 24px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(7, 16, 22, 0.18);
}

.team-list strong,
.team-list span {
  display: block;
}

.team-list strong {
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
}

.team-list span {
  color: #6f7a7f;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.team-list p {
  margin-top: 12px;
  color: #4f5c62;
  font-size: 14px;
  line-height: 1.72;
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border: 1px solid rgba(7, 16, 22, 0.14);
  background: transparent;
  color: #0a1b22;
  transition: 0.25s;
}

.linkedin-link:hover {
  border-color: #0a66c2;
  background: #0a66c2;
  color: var(--white);
}

.linkedin-link svg {
  width: 21px;
  height: 21px;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  min-height: 560px;
  background: var(--cream);
  color: var(--ink);
}

.contact-copy {
  padding: 9vw 7vw;
}

.contact h2 {
  font-size: clamp(41px, 5vw, 76px);
}

.contact p {
  max-width: 650px;
  margin: 24px 0 29px;
  color: #35434a;
}

.contact-actions {
  display: flex;
  width: fit-content;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
}

.contact-meta {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 65px 6vw;
  background: #0a1b22;
  color: var(--white);
}

.contact-meta a {
  margin-top: 12px;
  color: var(--gold);
  font-size: 22px;
}

.contact-meta small {
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.chatbot-faq {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  font-family: "Manrope", sans-serif;
}

.chatbot-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #0a1b22;
  color: var(--white);
  padding: 0 18px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  font: 900 10px "Manrope", sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.25s;
}

.chatbot-toggle:hover {
  border-color: rgba(212, 179, 109, 0.75);
  color: var(--gold);
}

.chatbot-toggle-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(212, 179, 109, 0.16);
}

.chatbot-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 14px);
  width: min(390px, calc(100vw - 32px));
  max-height: min(680px, calc(100svh - 104px));
  overflow: auto;
  border: 1px solid rgba(7, 16, 22, 0.14);
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.chatbot-head {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(7, 16, 22, 0.12);
  background: rgba(244, 241, 234, 0.96);
  padding: 20px 20px 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.chatbot-head strong,
.chatbot-head span {
  display: block;
}

.chatbot-head strong {
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
}

.chatbot-head span {
  margin-top: 4px;
  color: #7f5c2b;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.chatbot-close {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(7, 16, 22, 0.14);
  background: transparent;
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.chatbot-messages {
  display: grid;
  gap: 10px;
  padding: 18px 20px 8px;
}

.chatbot-message {
  max-width: 92%;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.55;
}

.chatbot-message.assistant {
  justify-self: start;
  border: 1px solid rgba(7, 16, 22, 0.1);
  background: rgba(255, 255, 255, 0.48);
  color: #35434a;
}

.chatbot-message.user {
  justify-self: end;
  background: #0a1b22;
  color: var(--white);
}

.chatbot-questions {
  display: grid;
  gap: 8px;
  padding: 14px 20px 18px;
}

.chatbot-questions span {
  margin-bottom: 4px;
  color: #7f5c2b;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.chatbot-questions button {
  border: 1px solid rgba(7, 16, 22, 0.12);
  background: transparent;
  color: var(--ink);
  padding: 11px 12px;
  text-align: left;
  font: 800 12px "Manrope", sans-serif;
  cursor: pointer;
  transition: 0.2s;
}

.chatbot-questions button:hover,
.chatbot-questions button.active {
  border-color: rgba(127, 92, 43, 0.38);
  background: rgba(127, 92, 43, 0.08);
}

.chatbot-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  border-top: 1px solid rgba(7, 16, 22, 0.12);
  padding: 16px 20px;
}

.chatbot-actions a,
.chatbot-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid rgba(7, 16, 22, 0.16);
  background: transparent;
  color: var(--ink);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}

.chatbot-actions a:hover,
.chatbot-actions button:hover {
  background: var(--ink);
  color: var(--white);
}

.chatbot-disclaimer {
  margin: 0;
  padding: 0 20px 18px;
  color: #6f7a7f;
  font-size: 11px;
  line-height: 1.55;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 27px 6vw;
  background: #051015;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  line-height: 1.7;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s, transform 0.7s;
}

.reveal.show {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .team-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 850px) {
  h1 {
    max-width: 11.5ch;
    font-size: clamp(34px, 13vw, 58px);
    line-height: 0.95;
  }

  h2 {
    font-size: clamp(32px, 10vw, 54px);
  }

  .hero,
  .chapter {
    min-height: 100svh;
    padding: 118px 6vw 7vh;
  }

  .hero .content {
    max-width: 92vw;
  }

  .hero .sub {
    max-width: 34ch;
    margin: 20px 0 26px;
    font-size: 14px;
    line-height: 1.65;
  }

  .btn {
    min-width: 0;
    width: fit-content;
    max-width: 100%;
    padding: 13px 17px;
    font-size: 10px;
  }

  .navlinks {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    background: rgba(4, 14, 19, 0.98);
    font-size: 17px;
    transform: translateX(100%);
    transition: 0.4s;
  }

  .navlinks .language-switch {
    margin: 2px 0;
  }

  .navlinks .language-switch button {
    min-width: 44px;
    padding: 10px 12px;
    font-size: 11px;
  }

  .navlinks.open {
    transform: none;
  }

  .burger {
    display: block;
  }

  .burger.open i:first-child {
    transform: translateY(9px) rotate(45deg);
  }

  .burger.open i:last-child {
    transform: translateY(-9px) rotate(-45deg);
  }

  .burger.open i:nth-child(2) {
    opacity: 0;
  }

  .scroll {
    display: none;
  }

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

  .statement-copy {
    min-height: auto;
    padding: 92px 6vw;
  }

  .statement-img {
    min-height: 370px;
  }

  .team-copy {
    padding: 86px 6vw;
  }

  .team-founder-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .team-photo {
    position: static;
    width: min(220px, 72vw);
  }

  .team h2 {
    font-size: clamp(34px, 10vw, 52px);
  }

  .founder-note p {
    font-size: 14px;
  }

  .team-list {
    grid-template-columns: 1fr;
  }

  .team-list article {
    padding: 18px 0;
  }

  .linkedin-link {
    width: 36px;
    height: 36px;
  }

  .services {
    padding: 90px 6vw;
  }

  .services-head {
    display: block;
  }

  .services-head p {
    margin-top: 18px;
  }

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

  .card {
    min-height: 310px;
  }

  .card h3 {
    margin-top: 57px;
  }

  .metrics {
    grid-template-columns: 1fr 1fr;
    padding: 24px 5vw;
  }

  .metric {
    padding: 24px 15px;
    border-bottom: 1px solid rgba(7, 16, 22, 0.24);
  }

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

  .metric:nth-child(n + 3) {
    border-bottom: 0;
  }

  .contact-meta {
    min-height: 245px;
    padding: 45px 6vw;
  }

  .chatbot-faq {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .chatbot-toggle {
    margin-left: auto;
    min-height: 46px;
    padding: 0 15px;
    font-size: 9px;
  }

  .chatbot-panel {
    width: 100%;
    max-height: calc(100svh - 92px);
  }

  .calendar-modal {
    padding: 16px;
  }

  .calendar-card {
    width: 100%;
    max-height: calc(100svh - 32px);
  }

  .calendar-head {
    padding: 17px 16px;
  }

  .calendar-head h3 {
    font-size: clamp(24px, 8vw, 34px);
  }

  .calendar-frame {
    height: calc(100svh - 140px);
  }

  .chatbot-head,
  .chatbot-messages,
  .chatbot-questions,
  .chatbot-actions {
    padding-right: 16px;
    padding-left: 16px;
  }

  footer {
    display: block;
  }

  footer span {
    display: block;
    margin-top: 12px;
  }
}
