



.Masthead {
  --Masthead-bg: #ffffff;
  --Masthead-ink: #1f2f57;
  --Masthead-rule: #ddd7cf;

  --mm-bg: #ffffff;
  --mm-text: #1f2f57;
  --mm-primary: #d98324;
  --mm-overlay-bg: rgba(31, 47, 87, 0.55);

  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--Masthead-bg);
  border-bottom: 1px solid var(--Masthead-rule);
}

.Masthead-inner {
  width: min(92vw, 68rem);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0;
}

.Masthead-logo { display: flex; align-items: center; }
.Masthead-logo img { height: 2.4rem; width: auto; }

.Masthead-call {
  display: none;
  margin-left: 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--Masthead-ink);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.Masthead-toggle { margin-left: auto; }

.Masthead-nav { font-size: 0.95rem; }

.Masthead-list { margin: 0; padding: 0; list-style: none; }

.Masthead-item { margin: 0; }

.Masthead-link {
  color: var(--Masthead-ink);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 500;
}

.Masthead-link:hover { color: #d98324; }

.Masthead-close { color: var(--Masthead-ink); }

.Masthead-overlay { backdrop-filter: blur(2px); }



.ClientInquiries { border-top: 3px solid #d98324; }

.LegalServices .Band-head { max-width: 40rem; }

.ClientAdvantages { border-bottom: 1px solid #ddd7cf; }

.FirmHeritage .Band-lede { max-width: 28rem; }

.Form { margin: 0; }



.Button {
  --Button-bg: #1f2f57;
  --Button-ink: #ffffff;
  --Button-pad: 1rem;

  display: block;
  width: 100%;
  background: var(--Button-bg);
  color: var(--Button-ink);
  border: none;
  border-radius: 10px;
  padding: var(--Button-pad);
  font-weight: 700;
  font-size: 1.05rem;
  text-align: center;
  cursor: pointer;
  letter-spacing: 0.02em;
}

.Button--primary { --Button-bg: #d98324; }
.Button--primary:hover { --Button-bg: #c0701a; color: #ffffff; }

.Button--ghost {
  --Button-bg: transparent;
  --Button-ink: #1f2f57;
  border: 1px solid #1f2f57;
}

.Button--inline { display: inline-block; width: auto; padding: 0.75rem 1.75rem; }

.Button:active { transform: scale(0.95); }



.FirmIntroduction {
  --FirmIntroduction-glow: rgba(217, 131, 36, 0.14);

  text-align: center;
  padding: 8vh 4vw 6vh;
  background:
    radial-gradient(60vw 40vh at 50% -10%, var(--FirmIntroduction-glow), transparent 70%),
    linear-gradient(#ffffff 0%, #f4f2ef 100%);
  border-bottom: 1px solid #ddd7cf;
}

.FirmIntroduction-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #d98324;
  margin: 0 0 1rem;
}

.FirmIntroduction-lede {
  max-width: 34rem;
  margin: 0 auto;
  color: #4a4a4a;
  font-size: 1.0625rem;
}

.Lookup {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 620px;
  margin: 2rem auto 0;
}

.Lookup-field {
  flex: 1;
  padding: 1rem 1.25rem;
  border: 1px solid #ddd7cf;
  border-radius: 999px;
  font-family: inherit;
  font-size: 1rem;
  background: #ffffff;
  color: #333333;
  min-width: 0;
}

.Lookup-submit {
  border: none;
  border-radius: 999px;
  padding: 1rem 1.5rem;
  background: #1f2f57;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  white-space: nowrap;
}

.Lookup-submit:hover { background: #d98324; }

.Lookup-note {
  margin: 0.5rem auto 0;
  font-size: 0.8rem;
  color: #6b6b6b;
}



.Assurances {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  margin: 2rem auto 0;
  padding: 0;
  list-style: none;
  max-width: 44rem;
}

.Assurances-item {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1f2f57;
  border-bottom: 1px solid #ddd7cf;
  padding-bottom: 0.25rem;
}



.Price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0 0 1.5rem;
}

.Price-now {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3rem;
  line-height: 1;
  font-weight: 700;
  color: #1f2f57;
}

.Price-old {
  text-decoration: line-through;
  color: #8a8a8a;
  font-size: 1.1rem;
}

.Price-save {
  background: #f6e3c9;
  color: #a35c0d;
  border-radius: 4px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}



.Steps { margin: 0; padding: 0; list-style: none; counter-reset: step; }

.Steps-item {
  counter-increment: step;
  position: relative;
  padding: 0 0 1rem 3rem;
  border-bottom: 1px solid #ddd7cf;
  margin-bottom: 1rem;
}

.Steps-item:last-child { border-bottom: none; margin-bottom: 0; }

.Steps-item::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid #d98324;
  color: #d98324;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  font-weight: 700;
}

.Steps-title { display: block; font-weight: 500; color: #1f2f57; }



.Card {
  --Card-accent: #1f2f57;

  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.Card-top {
  background: var(--Card-accent);
  height: 90px;
  position: relative;
}

.Card-top::after {
  content: "";
  position: absolute;
  left: 1.5rem;
  bottom: 1rem;
  width: 2.5rem;
  border-top: 2px solid #d98324;
}

.Card--amber { --Card-accent: #d98324; }
.Card--amber .Card-top::after { border-top-color: #ffffff; }

.Card-body { padding: 1.5rem; }

.Card-title { margin: 0 0 0.5rem; }

.Card-text { margin: 0; color: #4a4a4a; font-size: 0.975rem; }



.TileGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}

.Tile {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #ddd7cf;
  padding: 3rem 1.5rem 1.5rem;
}

.Tile-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: #d98324;
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.Tile-title { font-size: 1.15rem; margin: 0 0 0.5rem; }

.Tile-text { margin: 0; font-size: 0.95rem; color: #4a4a4a; }



.Product {
  --Product-frame: #f4f2ef;

  background: var(--Product-frame);
  border: 1px solid #ddd7cf;
  border-radius: 14px;
  padding: 1.5rem;
  margin: 0;
}

.Product img { border-radius: 10px; }

.Product-caption {
  margin: 1rem 0 0;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b6b6b;
  text-align: center;
}



.Formula { margin: 1.5rem 0 0; padding: 0; list-style: none; }

.Formula-item {
  padding: 0.5rem 0;
  border-bottom: 1px solid #ddd7cf;
  font-size: 0.975rem;
}

.Formula-name { font-weight: 500; color: #1f2f57; }



.Faq-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid #eee;
}

.Faq-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f6e3c9;
  color: #d98324;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.Faq-body { min-width: 0; }

.Faq-q { margin: 0 0 0.5rem; font-size: 1.15rem; }

.Faq-a { margin: 0; color: #4a4a4a; font-size: 0.975rem; }



.Fab {
  position: fixed;
  right: 4vw;
  bottom: 3vh;
  z-index: 1040;
  width: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 999px;
  background: #d98324;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(31, 47, 87, 0.28);
}

.Fab:hover { background: #1f2f57; }

.Fab-mark { font-size: 1.1rem; line-height: 1; }



.OrderModal {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 4vh 4vw;
  overflow-y: auto;
  background: rgba(31, 47, 87, 0.55);
}

.OrderModal.is-open { display: flex; }

.OrderModal-dialog {
  background: #ffffff;
  border-radius: 14px;
  width: min(92vw, 30rem);
  padding: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  position: relative;
}

.OrderModal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 44px;
  height: 44px;
  border: none;
  background: none;
  font-size: 1.6rem;
  line-height: 1;
  color: #1f2f57;
  cursor: pointer;
}

.OrderModal-title { margin: 0 0 0.5rem; font-size: 1.8rem; }

.OrderModal-lede { margin: 0 0 1.5rem; font-size: 0.95rem; color: #4a4a4a; }



.Form-group { margin: 0 0 1rem; }

.Form-label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1f2f57;
  margin: 0 0 0.5rem;
}

.Form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd7cf;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  color: #333333;
  background: #ffffff;
}

.Form-check {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.8rem;
  color: #4a4a4a;
  margin: 0 0 1rem;
  line-height: 1.5;
}

.Form-check input { margin-top: 0.25rem; }

.Form-note { margin: 1rem 0 0; font-size: 0.8rem; color: #6b6b6b; text-align: center; }

.Form-error {
  background: #f6e3c9;
  border-left: 3px solid #d98324;
  color: #a35c0d;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
  margin: 0 0 1rem;
}



.Seller {
  border-top: 1px solid #ddd7cf;
  border-bottom: 1px solid #ddd7cf;
  padding: 0.75rem 0;
  margin: 0 0 1rem;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #4a4a4a;
}

.Seller-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1f2f57;
  margin: 0 0 0.25rem;
}

.Seller-name { font-weight: 500; color: #1f2f57; }

.Seller-address { margin: 0; font-style: normal; }



.SiteFooter {
  --SiteFooter-bg: #1f2f57;
  --SiteFooter-ink: #cbd5e1;

  background: var(--SiteFooter-bg);
  color: var(--SiteFooter-ink);
  padding: 3rem 1rem 1.5rem;
}

.SiteFooter-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.SiteFooter-col { min-width: 0; }

.SiteFooter-brand img { height: 2.4rem; width: auto; }

.SiteFooter-blurb { margin: 1rem 0 0; font-size: 0.9rem; color: #cbd5e1; }

.SiteFooter-blurb a { color: #cbd5e1; }
.SiteFooter-blurb a:hover { color: #f6e3c9; }

.SiteFooter-heading {
  color: #ffffff;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

.SiteFooter-list { margin: 0; padding: 0; list-style: none; }

.SiteFooter-list li { margin: 0 0 0.5rem; font-size: 0.9rem; }

.SiteFooter-list a { color: #cbd5e1; }
.SiteFooter-list a:hover { color: #f6e3c9; }

.SiteFooter-seller { color: #cbd5e1; }
.SiteFooter-seller .Seller-label { color: #ffffff; }
.SiteFooter-seller .Seller-name { color: #ffffff; }

.SiteFooter-bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.SiteFooter-disclaimer { margin: 0; color: #cbd5e1; }

.SiteFooter-copy { margin: 0; color: #9fb0c9; }



.Legal { padding: 6vh 4vw; background: #ffffff; }

.Legal-body h2 { font-size: 1.6rem; margin-top: 2rem; }

.Legal-body h3 { margin-top: 1.5rem; }

.Legal-body ul { padding-left: 1.5rem; }

.Legal-body li { margin-bottom: 0.5rem; }

.Legal-updated {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b6b6b;
}

.Success {
  text-align: center;
  padding: 10vh 4vw;
  background: #ffffff;
}

.Success-mark {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  border: 1px solid #d98324;
  display: grid;
  place-items: center;
  color: #d98324;
  font-size: 1.6rem;
}



@media (max-width: 767px) {
  .Band--foldable .Band-content { display: none; }
  .Band--foldable.is-open .Band-content { display: block; }
  .Band--foldable .Band-head { margin-bottom: 0; cursor: pointer; }
  .Band-fold {
    display: block;
    width: 100%;
    background: none;
    border: none;
    border-top: 1px solid #ddd7cf;
    padding: 0.5rem 0;
    text-align: left;
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #d98324;
    cursor: pointer;
  }
}

@media (min-width: 480px) {
  .Lookup { flex-direction: row; gap: 0; }
  .Lookup-field { border-right: none; border-radius: 999px 0 0 999px; }
  .Lookup-submit { border-radius: 0 999px 999px 0; padding: 0 1.5rem; }
}

@media (min-width: 768px) {
  .Band-fold { display: none; }
  .Masthead-call { display: inline-block; padding-left: 1.5rem; }
  .Masthead-nav { margin-left: auto; }
  .FirmIntroduction { padding: 12vh 4vw 8vh; }
  .Price-now { font-size: 4rem; }
  .SiteFooter-cols { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .SiteFooter-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
  .Fab { right: 3vw; bottom: 4vh; }
}
