/* ==========================================================================
   H. Sharma & Associates — site styles
   Palette and type carried over from the Claude Design source
   ("H Sharma Associates.dc.html").
   ========================================================================== */

:root {
  --navy:        #0A1E3C;
  --navy-mid:    #12294B;
  --navy-lift:   #1D3E6E;
  --navy-deep:   #071731;
  --navy-blue:   #4C79B8;

  --gold:        #E4CB8A;
  --gold-mid:    #C8A24A;
  --gold-deep:   #A8802B;
  --gold-wash:   #F5EBD5;

  --cream:       #FAF8F3;
  --white:       #FFFFFF;
  --line:        #E7E1D5;
  --line-soft:   #EDE7DB;
  --line-input:  #DDD6C7;
  --track:       #E9E4D8;

  --ink:         #0A1E3C;
  --ink-2:       #33445C;
  --body:        #4A5769;
  --body-2:      #55637A;
  --muted:       #7A8798;
  --muted-2:     #8A93A2;
  --numeral:     #B9AE93;

  --on-navy:     #BFCCDE;
  --on-navy-2:   #C9D4E4;
  --on-navy-3:   #93A5BC;
  --on-navy-4:   #DCE5F0;
  --on-navy-5:   #9FB0C6;

  --green:       #2E7D4F;
  --green-lift:  #5BAE7C;
  --green-wash:  #E9F4EC;
  --red:         #B4453A;
  --red-wash:    #FBEDEB;

  --serif: Newsreader, Georgia, "Times New Roman", serif;
  --sans:  Manrope, system-ui, -apple-system, "Segoe UI", sans-serif;

  --shell:  clamp(20px, 5vw, 40px);
  --bp-nav: 900px;
}

/* --------------------------------------------------------------- base --- */

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

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
hr { border: 0; height: 1px; background: var(--line-soft); margin: 0; }

a { color: var(--ink); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--gold-deep); }

h1, h2, h3 { margin: 0; text-wrap: pretty; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
dl, dd { margin: 0; }

input, textarea, select, button { font: inherit; color: inherit; }

:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 100;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 18px;
  border-radius: 0 0 9px 9px;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; color: #fff; }

/* ------------------------------------------------------------ layout ---- */

.wrap { max-width: 1200px; margin: 0 auto; }
.wrap--narrow { max-width: 900px; }

.section { padding: clamp(56px, 7vw, 110px) var(--shell); }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--ruled { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.section--contact {
  border-top: 1px solid var(--line-soft);
  padding-bottom: clamp(70px, 8vw, 120px);
}

.grid { display: grid; gap: 18px; }
.grid--300 { grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); }
.grid--290 { grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr)); }
.grid--230 { grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr)); }
.grid--200 { grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr)); }
.grid--gap20 { gap: 20px; }
.grid--gap16 { gap: 16px; }

.mt-38 { margin-top: 38px; }
.mt-40 { margin-top: 40px; }
.mt-44 { margin-top: 44px; }

/* -------------------------------------------------------- typography ---- */

.h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  letter-spacing: -.01em;
  margin-top: 14px;
}
.h2--sm { font-size: clamp(28px, 3.6vw, 42px); line-height: 1.14; }

.eyebrow {
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--gold-deep);
}
.eyebrow--gold { color: var(--gold); }

.section__head { max-width: 720px; }
.section__head--narrow { max-width: 640px; }
.section__head--center { max-width: none; text-align: center; }
.section__head--split {
  max-width: none;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-end;
  justify-content: space-between;
}
.section__head--split > div { max-width: 660px; }

.section__lede {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--body-2);
  margin-top: 16px;
}

.link-underline {
  font-weight: 700;
  font-size: 15px;
  color: var(--gold-deep);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 3px;
}
.link-underline:hover { color: var(--navy); border-bottom-color: var(--navy); }

/* ------------------------------------------------------------ buttons --- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 16px 28px;
  font-size: 15.5px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.btn--sm { padding: 12px 21px; font-size: 14.5px; border-radius: 9px; }
.btn--block { width: 100%; padding: 16px; min-height: 52px; }

.btn--navy { background: var(--navy); color: #fff; box-shadow: 0 8px 20px rgba(10, 30, 60, .2); }
.btn--navy:hover { background: var(--gold-deep); color: #fff; }

.btn--gold { background: var(--gold); color: var(--navy); box-shadow: 0 14px 34px rgba(228, 203, 138, .26); }
.btn--gold:hover { background: #fff; color: var(--navy); }

.btn--ghost { border-color: rgba(255, 255, 255, .3); color: #fff; font-weight: 700; padding: 16px 26px; }
.btn--ghost:hover { background: rgba(255, 255, 255, .1); color: #fff; border-color: rgba(255, 255, 255, .5); }

.btn--outline-navy { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn--outline-navy:hover { background: var(--navy); color: #fff; }

.btn--sheen { position: relative; overflow: hidden; }
.sheen {
  position: absolute;
  inset-block: 0;
  left: 0;
  width: 40%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .55), transparent);
  animation: hsSheen 4.5s ease-in-out infinite;
  pointer-events: none;
}

/* ------------------------------------------------------------- topbar --- */

.topbar {
  background: var(--navy);
  color: var(--on-navy-2);
  font-size: 13px;
  letter-spacing: .01em;
  padding: 9px var(--shell);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 26px;
  align-items: center;
  justify-content: center;
}
.topbar__status { display: flex; align-items: center; gap: 7px; }
.topbar .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #7BC47F;
  display: inline-block;
  flex: none;
}
.topbar__phone { color: var(--gold); font-weight: 600; }
.topbar__mail  { color: var(--on-navy-2); }
.topbar a:hover { color: #fff; }

/* ------------------------------------------------------------- header --- */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 243, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px clamp(16px, 5vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 42px; height: 42px;
  flex: none;
  border-radius: 10px;
  background: linear-gradient(150deg, var(--navy), var(--navy-lift));
  color: var(--gold);
  font-family: var(--serif);
  font-size: 21px;
  letter-spacing: .02em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(10, 30, 60, .22);
}
.brand__text { display: block; line-height: 1.15; }
.brand__name { display: block; font-family: var(--serif); font-size: 19px; font-weight: 600; }
.brand__kicker {
  display: block;
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14.5px;
  font-weight: 600;
}
.nav__links > a { color: var(--ink-2); }
.nav__links > a:hover { color: var(--gold-deep); }
.nav__links > .btn:hover { color: #fff; }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid #D9D2C4;
  border-radius: 9px;
  background: #fff;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav__toggle > span {
  width: 18px; height: 2px;
  background: var(--navy);
  display: block;
  transition: transform .22s ease, opacity .22s ease;
}
.nav__toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav__mobile {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 6px 16px 18px;
  background: var(--cream);
  border-top: 1px solid var(--line-soft);
}
.nav__mobile[hidden] { display: none; }
.nav__mobile > a {
  padding: 14px 6px;
  font-weight: 600;
  border-bottom: 1px solid var(--line-soft);
}
.nav__mobile-cta {
  margin-top: 12px;
  text-align: center;
  background: var(--navy);
  color: #fff;
  padding: 15px;
  border-radius: 9px;
  font-weight: 700;
  border-bottom: 0 !important;
}
.nav__mobile-cta:hover { background: var(--gold-deep); color: #fff; }

@media (max-width: 899px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
}
@media (min-width: 900px) {
  .nav__mobile { display: none !important; }
}

/* --------------------------------------------------------------- hero --- */

.hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}
.hero__glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 520px at 12% 8%, rgba(45, 86, 148, .75), transparent 62%),
    radial-gradient(760px 520px at 88% 92%, rgba(200, 162, 74, .28), transparent 60%);
  animation: hsDrift 22s ease-in-out infinite;
}
.hero__grid-lines {
  position: absolute; inset: 0;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255, 255, 255, .5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .5) 1px, transparent 1px);
  background-size: 68px 68px;
  -webkit-mask-image: radial-gradient(70% 60% at 50% 40%, #000, transparent);
  mask-image: radial-gradient(70% 60% at 50% 40%, #000, transparent);
}
.hero__ring {
  position: absolute; top: 12%; right: 6%;
  width: 220px; height: 220px;
  border: 1px solid rgba(228, 203, 138, .35);
  border-radius: 50%;
  animation: hsFloatSlow 13s ease-in-out infinite;
}
.hero__square {
  position: absolute; bottom: 8%; left: 4%;
  width: 120px; height: 120px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 26px;
  animation: hsFloat 9s ease-in-out infinite;
}

.hero__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(52px, 7vw, 104px) var(--shell) clamp(44px, 6vw, 88px);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(34px, 5vw, 64px);
  align-items: center;
}
/* The copy column gets the wider share so the headline keeps its three
   intended lines instead of breaking after "intend". */
@media (min-width: 1000px) {
  .hero__inner { grid-template-columns: 1.1fr .9fr; }
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(228, 203, 138, .45);
  background: rgba(228, 203, 138, .1);
  color: var(--gold);
  border-radius: 999px;
  padding: 7px 15px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.eyebrow-pill .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
  flex: none;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -.015em;
  margin-top: 22px;
}
.hero h1 em { font-style: italic; color: var(--gold); }
/* Below ~700px the forced breaks fight the column width — let it wrap. */
.br-lg { display: none; }
@media (min-width: 700px) { .br-lg { display: inline; } }

.hero__lede {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.65;
  color: var(--on-navy);
  max-width: 560px;
  margin-top: 22px;
}
.hero__lede strong { color: #fff; font-weight: 700; }

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

.hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(120px, 100%), 1fr));
  gap: 18px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  max-width: 560px;
}
.hero__stats dt { font-family: var(--serif); font-size: 34px; color: var(--gold); line-height: 1; }
.hero__stats dd {
  font-size: 12.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--on-navy-3);
  margin-top: 6px;
  font-weight: 600;
}

/* snapshot card */
.snapshot { position: relative; }
.snapshot__halo {
  position: absolute; inset: -14px;
  border-radius: 22px;
  background: linear-gradient(140deg, rgba(228, 203, 138, .35), rgba(255, 255, 255, .04));
  filter: blur(2px);
}
.snapshot__card {
  position: relative;
  background: var(--cream);
  color: var(--ink);
  border-radius: 18px;
  padding: clamp(22px, 3vw, 34px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .35);
}
.snapshot__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.snapshot__head h2 { font-family: var(--serif); font-size: 20px; font-weight: 600; margin: 0; }
.tag-live {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: var(--gold-wash);
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
}
.snapshot__bars { display: flex; flex-direction: column; gap: 16px; margin-top: 20px; }
.bar__label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 7px;
}
.bar__label .is-good { color: var(--green); }
.bar__label .is-warn { color: var(--gold-deep); }
.bar__label .is-info { color: var(--ink-2); }
.bar__track { height: 8px; border-radius: 99px; background: var(--track); overflow: hidden; }
.bar__fill { display: block; height: 100%; border-radius: 99px; }
.bar__fill--green { background: linear-gradient(90deg, var(--green), var(--green-lift)); }
.bar__fill--gold  { background: linear-gradient(90deg, var(--gold-mid), var(--gold)); }
.bar__fill--blue  { background: linear-gradient(90deg, var(--navy-lift), var(--navy-blue)); }
.snapshot__note {
  margin-top: 22px;
  padding: 14px 16px;
  background: var(--navy);
  color: var(--on-navy-2);
  border-radius: 11px;
  font-size: 13px;
  line-height: 1.5;
}

/* marquee */
.marquee {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, .12);
  background: rgba(0, 0, 0, .16);
  overflow: hidden;
}
.marquee__track {
  display: flex;
  width: max-content;
  padding: 14px 0;
  animation: hsMarquee 32s linear infinite;
}
.marquee__group {
  display: flex;
  gap: 44px;
  padding-right: 44px;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--on-navy-3);
  font-weight: 700;
  white-space: nowrap;
}

/* ----------------------------------------------------------- problems --- */

.problem {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow .25s ease, transform .25s ease;
}
.problem:hover { box-shadow: 0 18px 44px rgba(10, 30, 60, .1); transform: translateY(-4px); }

.chip {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 6px;
}
.chip--red   { color: var(--red);   background: var(--red-wash); }
.chip--green { color: var(--green); background: var(--green-wash); }

.problem__q { font-family: var(--serif); font-size: 21px; font-weight: 400; line-height: 1.3; }
.problem__a { font-size: 15.3px; line-height: 1.65; color: var(--body); }

/* ----------------------------------------------------------- services --- */

.service {
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 28px;
  background: var(--cream);
  transition: border-color .22s ease, background-color .22s ease;
}
.service:hover { border-color: var(--gold-mid); background: #fff; }
.service__num { font-family: var(--serif); font-size: 13px; letter-spacing: .1em; color: var(--numeral); font-weight: 600; }
.service h3 { font-family: var(--serif); font-weight: 600; font-size: 23px; margin: 10px 0; }
.service p { font-size: 15.2px; line-height: 1.65; color: var(--body); }

.service--cta {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}
.service--cta:hover { background: var(--navy); border-color: var(--navy); }
.service--cta h3 { margin: 0 0 10px; }
.service--cta p { color: var(--on-navy); }
.service--cta .btn { align-self: flex-start; }

/* ------------------------------------------------------------- steps ---- */

.steps { counter-reset: none; }
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
}
.step__num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 18px;
}
.step h3 { font-size: 17px; font-weight: 800; margin: 16px 0 8px; }
.step p { font-size: 14.8px; line-height: 1.62; color: var(--body); }

/* -------------------------------------------------------------- about --- */

.about {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
  padding: clamp(56px, 7vw, 110px) var(--shell);
}
.about__glow {
  position: absolute; inset: 0;
  background: radial-gradient(700px 400px at 85% 15%, rgba(200, 162, 74, .22), transparent 60%);
}
.about__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(30px, 4vw, 64px);
  align-items: center;
}
.about__text { font-size: 16.5px; line-height: 1.7; color: var(--on-navy); margin-top: 18px; }
.about__text + .about__text { margin-top: 14px; }

.creds {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr));
  gap: 14px;
  margin-top: 30px;
}
.creds > div {
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 11px;
  padding: 15px 16px;
}
.creds dt {
  font-size: 11.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--on-navy-3);
  font-weight: 700;
}
.creds dd { font-size: 15px; font-weight: 700; margin-top: 5px; }

.about__aside { display: flex; flex-direction: column; gap: 16px; }

.portrait {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  background: linear-gradient(160deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02));
  aspect-ratio: 16 / 7;
  min-height: 240px;
}
.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Matches the framing set on the <image-slot> in the design source. */
  object-position: 50% 38%;
}
@media (max-width: 899px) {
  .portrait { aspect-ratio: 4 / 3; }
}

.tools {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 14px;
  padding: 20px 22px;
}
.tools__title {
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 800;
}
.tools__list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.tools__list li {
  font-size: 13px;
  font-weight: 600;
  color: var(--on-navy-4);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 7px;
  padding: 6px 11px;
}

/* --------------------------------------------------------- industries --- */

.industry {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  background: var(--cream);
  transition: background-color .22s ease, border-color .22s ease, color .22s ease;
}
.industry h3 { font-family: var(--serif); font-size: 21px; font-weight: 600; margin-bottom: 8px; }
.industry p { font-size: 14.6px; line-height: 1.6; color: var(--body); transition: color .22s ease; }
.industry:hover { background: var(--navy); border-color: var(--navy); color: #fff; }
.industry:hover p { color: var(--on-navy); }

/* ------------------------------------------------------------ banner ---- */

.banner-wrap { padding: clamp(20px, 4vw, 40px) var(--shell); }
.banner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(115deg, var(--navy-mid), var(--navy) 45%, var(--navy-lift));
  color: #fff;
  padding: clamp(34px, 5vw, 58px);
}
.banner__ring { position: absolute; border-radius: 50%; }
.banner__ring--a {
  top: -60px; right: -40px;
  width: 260px; height: 260px;
  border: 1px solid rgba(228, 203, 138, .28);
  animation: hsFloatSlow 15s ease-in-out infinite;
}
.banner__ring--b {
  bottom: -80px; right: 120px;
  width: 180px; height: 180px;
  border: 1px solid rgba(255, 255, 255, .14);
}
.banner__inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 28px;
  align-items: center;
}
.banner__lede { font-size: 16px; line-height: 1.66; color: var(--on-navy); margin-top: 14px; max-width: 560px; }
.banner__ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.banner__ctas .btn { padding: 15px 24px; font-size: 15px; }

/* --------------------------------------------------------------- faq ---- */

.faq { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  overflow: hidden;
}
.faq__item h3 { margin: 0; font-size: inherit; font-weight: inherit; }
.faq__q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 20px 22px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  font-size: 16.5px;
  font-weight: 700;
  color: var(--navy);
  transition: color .18s ease;
}
.faq__q:hover { color: var(--gold-deep); }

/* “+” that becomes “−” — drawn so it can rotate rather than swap glyphs. */
.faq__sign {
  position: relative;
  flex: none;
  width: 16px; height: 16px;
}
.faq__sign::before,
.faq__sign::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto 0;
  height: 2px;
  background: var(--gold-deep);
  border-radius: 2px;
  transform: translateY(-50%);
  transition: transform .25s ease, opacity .25s ease;
}
.faq__sign::after { transform: translateY(-50%) rotate(90deg); }
.faq__q[aria-expanded="true"] .faq__sign::after { transform: translateY(-50%) rotate(0deg); opacity: 0; }

.faq__a { padding: 0 22px 22px; }
.faq__a[hidden] { display: none; }
.faq__a p { font-size: 15.4px; line-height: 1.7; color: var(--body); }

/* ----------------------------------------------------------- contact ---- */

.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(310px, 100%), 1fr));
  gap: clamp(28px, 4vw, 56px);
}
.contact__lede {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--body-2);
  margin: 16px 0 30px;
  max-width: 480px;
}
.contact__cards { display: flex; flex-direction: column; gap: 14px; }

.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  background: var(--cream);
  transition: border-color .2s ease, background-color .2s ease;
}
a.contact-card:hover { border-color: var(--gold-mid); background: #fff; color: var(--ink); }
.contact-card__icon {
  width: 40px; height: 40px;
  flex: none;
  border-radius: 10px;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}
.contact-card__label {
  display: block;
  font-size: 11.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.contact-card__value { display: block; font-size: 16px; font-weight: 700; }
.contact-card__value--break { font-size: 15.4px; word-break: break-all; }

.formcard {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(22px, 3vw, 34px);
}
.formcard__done { text-align: center; padding: 40px 10px; }
.formcard__done[hidden] { display: none; }
.formcard__tick {
  width: 56px; height: 56px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--green-wash);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}
.formcard__done h3 { font-family: var(--serif); font-size: 24px; font-weight: 600; margin: 18px 0 8px; }
.formcard__done p { font-size: 15.4px; line-height: 1.65; color: var(--body); }
.formcard__done a { color: var(--gold-deep); font-weight: 700; }

.form { display: flex; flex-direction: column; gap: 16px; }
.form[hidden] { display: none; }
.form__row { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr)); gap: 16px; }

.field { display: block; }
.field__label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line-input);
  border-radius: 9px;
  padding: 13px 14px;
  font-size: 15px;
  background: #fff;
  color: var(--ink);
  min-height: 48px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold-mid);
  box-shadow: 0 0 0 3px rgba(200, 162, 74, .18);
}
.field input:user-invalid,
.field textarea:user-invalid { border-color: var(--red); }
.field ::placeholder { color: #A9B0BB; }

.hp { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }

.form__error {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--red);
  background: var(--red-wash);
  border-radius: 8px;
  padding: 11px 13px;
}
.form__error[hidden] { display: none; }

.form__fineprint { font-size: 12.5px; line-height: 1.55; color: var(--muted-2); }

/* ------------------------------------------------------------ footer ---- */

.footer {
  background: var(--navy-deep);
  color: var(--on-navy-5);
  padding: clamp(44px, 5vw, 70px) var(--shell) 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
  gap: 34px;
  padding-bottom: 40px;
}
.brand--footer { gap: 12px; }
.brand--footer .brand__mark {
  width: 40px; height: 40px;
  font-size: 19px;
  background: linear-gradient(150deg, var(--navy-mid), var(--navy-lift));
  box-shadow: none;
}
.brand--footer .brand__name { font-size: 19px; color: #fff; font-weight: 400; }
.footer__blurb { font-size: 14.5px; line-height: 1.7; margin-top: 16px; max-width: 330px; }
.footer__title {
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 800;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; font-size: 14.5px; }
.footer__links a { color: var(--on-navy-5); }
.footer__links a:hover { color: var(--gold); }
.footer__phone { color: #fff !important; font-weight: 700; }
.footer__phone:hover { color: var(--gold) !important; }
.footer__break { word-break: break-all; }

.footer__legal {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 20px 0 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  font-size: 12.8px;
}
.footer__disclaimer { max-width: 620px; color: #7C8DA3; }

/* -------------------------------------------------------- mobile bar ---- */

.mobilebar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  display: none;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(250, 248, 243, .96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
}
.mobilebar .btn { flex: 1; padding: 14px; font-size: 15px; min-height: 50px; box-shadow: none; }

@media (max-width: 899px) {
  .mobilebar { display: flex; }
  .footer { padding-bottom: 80px; }
}

/* --------------------------------------------------------- animation ---- */

@keyframes hsFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-16px); }
}
@keyframes hsFloatSlow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-26px) rotate(6deg); }
}
@keyframes hsMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes hsSheen {
  0%       { transform: translateX(-120%); }
  60%,100% { transform: translateX(240%); }
}
@keyframes hsDrift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(4%, -5%, 0) scale(1.12); }
}

/* Scroll reveal. Only armed when JS is running, so the page is fully
   readable with scripting disabled or if site.js fails to load. */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.2, .7, .3, 1), transform .7s cubic-bezier(.2, .7, .3, 1);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .hero__glow,
  .hero__ring,
  .hero__square,
  .banner__ring--a,
  .marquee__track,
  .sheen { animation: none !important; }
  .sheen { display: none; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}

/* ------------------------------------------------------------- print ---- */

@media print {
  .header, .mobilebar, .topbar, .marquee, .skip-link, .hero__glow, .hero__grid-lines { display: none !important; }
  body { background: #fff; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .faq__a[hidden] { display: block !important; }
}
