:root {
  --navy-950: #071627;
  --navy-900: #0b1f36;
  --navy-800: #12365a;
  --blue-700: #1f5f99;
  --teal-600: #15847e;
  --gold-500: #c99a36;
  --white: #ffffff;
  --paper: #f6f8fb;
  --mist: #e8eef5;
  --line: #d6e0ea;
  --text: #172231;
  --muted: #5c6978;
  --shadow: 0 22px 55px rgba(7, 22, 39, 0.16);
}

@font-face {
  font-family: "CoFo Gothic";
  src: url("assets/fonts/CoFoGothic-Regular-Trial.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "CoFo Gothic";
  src: url("assets/fonts/CoFoGothic-Medium-Trial.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "CoFo Gothic";
  src: url("assets/fonts/CoFoGothic-Bold-Trial.otf") format("opentype");
  font-weight: 800 900;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: "CoFo Gothic", Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-950);
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

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

.site-nav a,
.site-footer a {
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--teal-600);
}

.header-cta,
.button,
.whatsapp-inline,
.booking-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.header-cta {
  padding: 0 18px;
  background: var(--navy-900);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--navy-950);
  content: "";
}

.menu-icon::before {
  transform: translateY(-7px);
}

.menu-icon::after {
  transform: translateY(5px);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: clamp(72px, 9vw, 130px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(7, 22, 39, 0.92) 0%, rgba(7, 22, 39, 0.74) 47%, rgba(7, 22, 39, 0.28) 100%),
    url("assets/financial-advisory-hero.png") center/cover;
  color: var(--white);
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-600);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero .eyebrow,
.booking-section .eyebrow,
.cta-strip .eyebrow {
  color: #8ee3d8;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 890px;
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 6.8vw, 5.9rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.17rem;
  line-height: 1.25;
}

.hero-text {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 26px;
}

.button {
  padding: 0 20px;
  border: 2px solid transparent;
}

.button-primary {
  background: var(--gold-500);
  color: var(--navy-950);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--white);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 800;
}

.section,
.product-band,
.booking-section,
.cta-strip {
  padding: clamp(60px, 8vw, 108px) clamp(18px, 5vw, 72px);
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(30px, 5vw, 74px);
  background: var(--white);
}

.intro-section p:last-child,
.section-heading {
  max-width: 760px;
}

.intro-section p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  margin-bottom: 34px;
}

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

.service-card,
.product-panel,
.step-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-card {
  min-height: 255px;
  padding: 28px;
}

.service-card p,
.product-panel p,
.step-card p,
.booking-copy p,
.footer-copy,
.compliance {
  color: var(--muted);
}

.featured-card {
  border-color: rgba(21, 132, 126, 0.34);
}

.icon-wrap {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border-radius: 8px;
  background: #edf7f6;
  color: var(--teal-600);
}

.product-band {
  background: var(--navy-900);
  color: var(--white);
}

.product-band .section-heading p {
  color: rgba(255, 255, 255, 0.74);
}

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

.product-panel {
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.product-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-panel li {
  position: relative;
  padding-left: 22px;
}

.product-panel li::before {
  position: absolute;
  left: 0;
  color: var(--gold-500);
  content: "•";
}

.note-panel {
  background: rgba(201, 154, 54, 0.12);
}

.process-section {
  background: var(--white);
}

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

.step-card {
  min-height: 238px;
  padding: 28px;
}

.step-card span {
  display: inline-flex;
  margin-bottom: 32px;
  color: var(--gold-500);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  background: var(--navy-950);
  color: var(--white);
}

.booking-copy {
  position: sticky;
  top: 108px;
}

.booking-options {
  display: grid;
  gap: 10px;
  margin: 28px 0 18px;
}

.booking-option {
  width: 100%;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
}

.booking-option.is-active,
.booking-option:hover {
  background: var(--gold-500);
  color: var(--navy-950);
}

.whatsapp-inline {
  width: 100%;
  padding: 0 18px;
  background: #1faa59;
  color: var(--white);
}

.calendar-shell {
  overflow: hidden;
  min-height: 680px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.3);
}

.calendar-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  color: var(--navy-950);
}

.calendar-toolbar span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.calendar-shell #my-cal-inline {
  display: block;
  width: 100%;
  min-height: 620px;
  border: 0;
  background: var(--white);
  overflow: auto;
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--navy-800);
  color: var(--white);
}

.cta-strip h2 {
  margin-bottom: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.6fr) minmax(160px, 0.7fr) minmax(160px, 0.7fr);
  gap: 32px;
  padding: 50px clamp(18px, 5vw, 72px) 28px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.site-footer h3 {
  font-size: 1rem;
}

.site-footer div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-brand {
  margin-bottom: 10px;
}

.footer-copy {
  max-width: 560px;
}

.compliance {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #1faa59;
  color: var(--white);
  box-shadow: 0 18px 42px rgba(31, 170, 89, 0.38);
  text-decoration: none;
}

.whatsapp-float svg {
  width: 31px;
  height: 31px;
}

.whatsapp-float img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

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

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

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px;
  }

  .header-cta {
    display: none;
  }

  .service-grid,
  .product-columns,
  .steps,
  .intro-section,
  .booking-section {
    grid-template-columns: 1fr;
  }

  .booking-copy {
    position: static;
  }

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

@media (max-width: 640px) {
  .site-header {
    min-height: 72px;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: 720px;
    background:
      linear-gradient(90deg, rgba(7, 22, 39, 0.94), rgba(7, 22, 39, 0.76)),
      url("assets/financial-advisory-hero.png") center/cover;
  }

  .hero-actions,
  .cta-strip,
  .calendar-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .calendar-shell {
    min-height: 590px;
  }

  .calendar-shell #my-cal-inline {
    min-height: 540px;
  }

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

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
  }
}
