:root {
  --burgundy: #64191b;
  --burgundy-deep: #421114;
  --burgundy-soft: #7d292c;

  --cream: #f8f5ec;
  --ivory: #fffdf7;

  --gold: #c9a34a;
  --gold-soft: #e0c77d;

  --navy: #17283f;
  --ink: #202020;
  --muted: #6e6963;

  --line: rgba(32, 32, 32, .15);
  --white-line: rgba(255, 255, 255, .18);

  --serif: "Playfair Display", Georgia, serif;
  --sans: "Manrope", "DM Sans", Arial, sans-serif;

  --ease: cubic-bezier(.2, .7, .2, 1);
}


/* =========================================================
   RESET
   ========================================================= */

* {
  box-sizing: border-box;
  user-select: none;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
}

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

address {
  font-style: normal;
}

::selection {
  background: var(--gold);
  color: var(--burgundy-deep);
}


/* =========================================================
   GLOBAL LAYOUT
   ========================================================= */

.container {
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
}

.section {
  padding: 140px 0;
}

.section-dark {
  background: var(--burgundy-deep);
  color: var(--ivory);
  padding: 150px 0;
}

.section-cream {
  background: #eee8db;
  padding: 150px 0;
}


/* =========================================================
   TYPOGRAPHY
   ========================================================= */

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 28px;
  color: var(--burgundy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}

.eyebrow.light {
  color: var(--gold-soft);
}

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

h1,
h2,
h3 {
  line-height: 1.02;
  letter-spacing: -.04em;
}

h1 em,
h2 em {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.025em;
}

h2 {
  font-size: clamp(3.1rem, 6vw, 6.5rem);
  margin-bottom: 28px;
}

h3 {
  letter-spacing: -.02em;
}


/* =========================================================
   PAGE LOADER
   ========================================================= */

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--burgundy-deep);
  display: grid;
  place-items: center;
  color: var(--ivory);
}

.loader-mark {
  text-align: center;
}

.loader-mark span {
  display: block;
  font: 700 34px var(--sans);
  letter-spacing: .08em;
}

.loader-mark i {
  display: block;
  width: 64px;
  height: 1px;
  background: var(--gold);
  margin: 12px auto 0;
  transform-origin: left;
}


/* =========================================================
   HEADER / NAVIGATION
   ========================================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  color: var(--ivory);

  transition:
    background .45s var(--ease),
    color .45s var(--ease),
    box-shadow .45s;
}

.site-header.scrolled {
  background: rgba(255, 253, 247, .96);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(32, 32, 32, .1);
  backdrop-filter: blur(12px);
}

.nav {
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  transition: height .45s var(--ease);
}

.site-header.scrolled .nav {
  height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
  min-width: 0;
}

.brand img {
  width: 48px;
  height: 44px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
  min-width: 0;
}

.brand-copy strong {
  font-size: 21px;
  letter-spacing: .05em;
}

.brand-copy small {
  font-size: 8px;
  letter-spacing: .12em;
  margin-top: 4px;
  font-weight: 800;
}

.brand-copy > span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1.2;
  margin-top: 5px;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.nav-links a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width .35s var(--ease);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;

  transition:
    transform .35s var(--ease),
    background .35s,
    color .35s,
    border-color .35s;
}

.nav-cta {
  background: var(--gold);
  color: var(--burgundy-deep);
}

.nav-cta i,
.button i {
  font-size: 13px;
  line-height: 1;

  transition:
    transform .35s var(--ease),
    opacity .35s var(--ease);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.nav-cta:hover i,
.button:hover i {
  transform: translate(3px, -3px);
}

.menu-toggle {
  display: none;
  position: relative;

  width: 42px;
  height: 42px;

  padding: 0;
  border: 0;
  background: transparent;
  color: currentColor;

  flex: 0 0 42px;

  align-items: center;
  justify-content: center;
}

.menu-toggle span {
  position: absolute;

  left: 50%;

  width: 23px;
  height: 2px;

  display: block;

  background: currentColor;

  transform: translateX(-50%);
  margin: 0;

  border-radius: 1px;
}

.menu-toggle span:nth-child(1) {
  top: 10px;
}

.menu-toggle span:nth-child(2) {
  top: 20px;
}

.menu-toggle span:nth-child(3) {
  top: 30px;
}

.mobile-menu {
  display: none;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
  min-height: 100svh;

  position: relative;
  overflow: hidden;

  background: var(--burgundy-deep);
  color: var(--ivory);

  display: flex;
  align-items: center;
}

.hero::before {
  content: "";

  position: absolute;
  inset: 0;

  opacity: .08;

  background-image:
    linear-gradient(
      90deg,
      transparent 49.8%,
      #fff 50%,
      transparent 50.2%
    ),
    linear-gradient(
      0deg,
      transparent 49.8%,
      #fff 50%,
      transparent 50.2%
    );

  background-size: 160px 160px;

  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at 76% 50%,
      rgba(201, 163, 74, .16),
      transparent 25%
    );
}

.hero-noise {
  position: absolute;
  inset: 0;

  opacity: .045;

  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.hero-inner {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1fr .88fr;

  gap: 8%;

  align-items: center;

  padding: 90px 0 85px;
}

.hero-copy {
  max-width: 700px;
  min-width: 0;
}

.hero-title {
  font-size: clamp(4.1rem, 7.2vw, 8.2rem);
  margin: 0 0 28px;
  max-width: 800px;
}

.hero-title em {
  color: var(--gold-soft);
}

.hero-title span {
  font-size: .82em;
}

.hero-lead {
  max-width: 580px;

  color: rgba(255, 253, 247, .74);

  font-size: 17px;
  line-height: 1.8;

  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.hero-actions .button {
  width: fit-content;
}

.button-review-link {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(201, 163, 74, .65);
}

.button-review-link:hover {
  background: var(--gold);
  color: var(--burgundy-deep);
  border-color: var(--gold);
}

.button-primary {
  background: var(--gold);
  color: var(--burgundy-deep);
}

.button-ghost {
  border-color: rgba(255, 255, 255, .35);
  color: var(--ivory);
}

.button-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 18px;

  margin-top: 55px;

  font-size: 9px;
  font-weight: 800;
  letter-spacing: .15em;

  color: rgba(255, 255, 255, .55);
}

.hero-meta b {
  color: var(--gold-soft);
}

.meta-rule {
  width: 34px;
  height: 1px;

  background: rgba(255, 255, 255, .25);
}

.hero-visual {
  position: relative;

  min-height: 650px;
  min-width: 0;
}

.hero-photo-wrap {
  position: absolute;

  inset: 5% 3% 8% 10%;

  overflow: hidden;

  clip-path: inset(0 0 0 0);
}

.hero-photo {
  width: 89%;
  height: 90%;

  object-fit: fill;

  filter: saturate(.7) contrast(1.02);

  transform: scale(1.06);
}

.photo-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      140deg,
      rgba(66, 17, 20, .05),
      rgba(66, 17, 20, .62)
    );

  mix-blend-mode: multiply;
}

.hero-photo-wrap::before {
  content: "";

  position: absolute;
  inset: 18px;

  border: 1px solid rgba(255, 255, 255, .28);

  z-index: 1;
}

.hero-card {
  position: absolute;
  z-index: 3;

  background: rgba(255, 253, 247, .96);
  color: var(--ink);

  box-shadow: 0 24px 70px rgba(0, 0, 0, .22);

  padding: 20px 22px;
}

.hero-card-top {
  left: -8%;
  top: 5%;
  width: 190px;
}

.hero-card-bottom {
  right: 0;
  bottom: 9%;
  width: 235px;
}

.hero-card .card-kicker {
  display: block;

  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;

  color: var(--muted);

  margin-bottom: 10px;
}

.hero-card strong {
  display: block;

  font-size: 15px;
  line-height: 1.3;
}

.hero-card small {
  display: block;

  color: var(--muted);
  font-size: 10px;

  margin-top: 5px;
}

.review-stars {
  color: var(--gold);
  letter-spacing: .1em;
  font-size: 12px;
}

.hero-seal {
  position: absolute;

  right: 2%;
  top: 2%;

  z-index: 4;

  width: 112px;
  height: 112px;

  border: 1px solid rgba(201, 163, 74, .65);
  border-radius: 50%;

  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;

  text-align: center;

  font-size: 7px;
  letter-spacing: .18em;
  line-height: 1.5;

  color: var(--gold-soft);

  transform: rotate(8deg);
}

.hero-seal strong {
  font-size: 18px;
  letter-spacing: .06em;
  margin: 3px 0;
}

.hero-orbit {
  position: absolute;

  border: 1px solid rgba(201, 163, 74, .16);
  border-radius: 50%;

  pointer-events: none;
}

.orbit-one {
  width: 680px;
  height: 680px;

  right: -330px;
  top: 12%;
}

.orbit-two {
  width: 850px;
  height: 850px;

  right: -420px;
  top: 0;
}

.scroll-cue {
  position: absolute;

  z-index: 3;

  bottom: 26px;
  left: 50%;

  transform: translateX(-50%);

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 10px;

  color: rgba(255, 255, 255, .55);

  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
}


/* =========================================================
   ABOUT
   ========================================================= */

.display-quote {
  max-width: 1100px;

  font: 500 clamp(2.5rem, 5vw, 5.6rem) / 1.06 var(--serif);

  letter-spacing: -.03em;

  margin: 0;
}

.about-grid {
  margin-top: 120px;

  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 10%;
}

.section-index {
  color: var(--gold);

  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
}

.about-statement h2 {
  font-size: clamp(3rem, 5.4vw, 6rem);
}

.about-copy {
  padding-top: 20px;
}

.large-copy {
  font-size: 23px;
  line-height: 1.45;
}

.about-copy > p:not(.large-copy) {
  color: var(--muted);
  max-width: 550px;
}

.about-facts {
  margin-top: 48px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-facts div {
  padding: 20px 10px 20px 0;
}

.about-facts div + div {
  padding-left: 15px;
  border-left: 1px solid var(--line);
}

.about-facts strong {
  display: block;

  font-size: 16px;
  letter-spacing: .06em;
}

.about-facts span {
  color: var(--muted);

  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
}


/* =========================================================
   SUBJECTS
   ========================================================= */

.subjects-head {
  display: grid;
  grid-template-columns: 1fr .5fr;

  gap: 10%;

  align-items: end;

  margin-bottom: 80px;
}

.subjects-head h2 {
  margin-bottom: 0;
}

.subjects-head > p {
  color: rgba(255, 255, 255, .58);

  margin: 0;

  max-width: 360px;

  font-size: 14px;
}

.subject-layout {
  display: grid;
  grid-template-columns: 1fr .8fr;

  gap: 7%;

  align-items: start;
}

.subject-list {
  border-top: 1px solid var(--white-line);
}

.subject-accordion {
  width: 100%;
  border-bottom: 1px solid var(--white-line);
}

.subject-item {
  appearance: none;

  border: 0;
  background: transparent;
  color: inherit;

  width: 100%;

  display: grid;
  grid-template-columns: 1fr 30px;

  gap: 18px;

  align-items: center;

  text-align: left;

  padding: 18px 0;

  position: relative;

  cursor: pointer;

  transition:
    padding .45s var(--ease),
    background .45s,
    color .45s;
}

.subject-item::before {
  content: "";

  position: absolute;

  left: 0;
  top: -1px;

  width: 0;
  height: 1px;

  background: var(--gold);

  transition: width .5s var(--ease);
}

.subject-item:hover,
.subject-accordion.open .subject-item {
  padding-left: 14px;
  background: rgba(255, 255, 255, .035);
}

.subject-item:hover::before,
.subject-accordion.open .subject-item::before {
  width: 100%;
}

.subject-arrow {
  width: 30px;
  height: 30px;

  display: grid;
  place-items: center;

  color: var(--gold);

  opacity: .4;

  border: 1px solid rgba(201, 163, 74, .28);
  border-radius: 50%;

  transition:
    transform .35s var(--ease),
    opacity .35s ease,
    background .35s ease,
    border-color .35s ease;
}

.subject-arrow i {
  font-size: 10px;
  line-height: 1;

  transition: transform .35s var(--ease);
}

.subject-item:hover .subject-arrow,
.subject-accordion.open .subject-arrow {
  opacity: 1;

  border-color: rgba(201, 163, 74, .7);

  background: rgba(201, 163, 74, .08);
}

.subject-accordion.open .subject-arrow {
  transform: rotate(90deg);
}


/* =========================================================
   ACCORDION
   ========================================================= */

.subject-content {
  display: grid;
  grid-template-rows: 0fr;

  opacity: 0;

  overflow: hidden;

  transition:
    grid-template-rows .45s var(--ease),
    opacity .3s ease;
}

.subject-content > * {
  min-height: 0;
  overflow: hidden;
}

.subject-content-image {
  display: none;
}

.subject-content p {
  margin: 0;

  padding: 0 30px 0 60px;

  color: rgba(255, 255, 255, .58);

  font-size: 14px;
  line-height: 1.8;

  transform: translateY(-8px);

  transition:
    opacity .3s ease,
    transform .4s ease,
    padding .45s var(--ease);
}

.subject-accordion.open .subject-content {
  grid-template-rows: 1fr;
  opacity: 1;
}

.subject-accordion.open .subject-content p {
  padding-bottom: 25px;

  opacity: 1;
  transform: translateY(0);
}

.subject-content img {
  width: calc(100% - 60px);
  height: auto;

  display: block;

  object-fit: cover;

  border-radius: 12px;

  margin: 0 30px 30px 60px;
}


/* =========================================================
   SUBJECT PREVIEW
   ========================================================= */

.subject-preview {
  position: sticky;
  top: 110px;
}

.subject-image-wrap {
  height: 500px;

  overflow: hidden;

  background: rgba(255, 255, 255, .04);
}

.subject-image-wrap img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    opacity .28s ease,
    transform .8s var(--ease);

  filter: saturate(.65);
}

.subject-image-wrap.is-changing img {
  opacity: .2;
  transform: scale(1.03);
}

.subject-caption {
  padding: 20px 0;

  display: grid;
  gap: 7px;

  border-bottom: 1px solid var(--white-line);
}

.subject-caption span {
  color: rgba(255, 255, 255, .52);

  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.subject-caption strong {
  font-size: 25px;
  letter-spacing: .03em;
}


/* =========================================================
   PREPARED
   ========================================================= */

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

.prepared-top {
  display: grid;
  grid-template-columns: .45fr 1fr;

  gap: 10%;

  align-items: end;
}

.prepared-heading {
  display: flex;

  justify-content: space-between;
  align-items: end;

  gap: 40px;
}

.prepared-heading h2 {
  margin: 0;
}

.prepared-heading p {
  color: var(--muted);

  max-width: 250px;

  margin: 0;

  font-size: 13px;
}

.pillars {
  margin-top: 110px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  border-top: 1px solid var(--line);
}

.pillar {
  padding: 32px 26px 40px 0;

  min-height: 330px;

  position: relative;
}

.pillar + .pillar {
  border-left: 1px solid var(--line);
  padding-left: 26px;
}

.pillar-no {
  color: var(--gold);

  font-size: 11px;
  font-weight: 800;
}

.pillar h3 {
  font-size: clamp(1.7rem, 2.5vw, 2.6rem);

  margin: 70px 0 22px;
}

.pillar p {
  color: var(--muted);

  font-size: 13px;

  max-width: 230px;
}

.pillar-line {
  position: absolute;

  bottom: 0;
  left: 0;

  width: 35px;
  height: 2px;

  background: var(--burgundy);

  transition: width .5s var(--ease);
}

.pillar:hover .pillar-line {
  width: 75px;
}


/* =========================================================
   WHY
   ========================================================= */

.why-grid {
  display: grid;
  grid-template-columns: .75fr 1fr;

  gap: 12%;
}

.why-intro h2 {
  margin-bottom: 25px;
}

.why-lead {
  color: var(--muted);

  max-width: 440px;
}

.qualification-stamp {
  display: flex;

  gap: 15px;

  align-items: center;

  margin-top: 50px;

  border-top: 1px solid var(--line);

  padding-top: 20px;

  max-width: 420px;
}

.stamp-icon {
  width: 46px;
  height: 46px;

  border: 1px solid var(--gold);

  display: grid;
  place-items: center;

  color: var(--gold);
}

.qualification-stamp strong {
  display: block;

  font-size: 12px;
}

.qualification-stamp small {
  display: block;

  color: var(--muted);

  font-size: 10px;

  margin-top: 3px;
}

.why-list {
  border-top: 1px solid var(--line);
}

.why-item {
  display: grid;
  grid-template-columns: 50px 1fr;

  gap: 25px;

  padding: 30px 0;

  border-bottom: 1px solid var(--line);
}

.why-item > span {
  color: var(--gold);

  font-size: 11px;
  font-weight: 800;
}

.why-item h3 {
  margin: 0 0 10px;

  font-size: 25px;
}

.why-item p {
  color: var(--muted);

  font-size: 13px;

  max-width: 500px;
}


/* =========================================================
   JOURNEY
   ========================================================= */

.journey-head {
  margin-bottom: 90px;
}

.timeline {
  position: relative;

  max-width: 900px;

  margin: 0 auto;

  padding-left: 70px;
}

.timeline-progress {
  position: absolute;

  left: 18px;
  top: 0;
  bottom: 0;

  width: 1px;

  background: rgba(255, 255, 255, .14);
}

.timeline-progress span {
  display: block;

  width: 1px;
  height: 0;

  background: var(--gold);
}

.timeline-step {
  position: relative;

  display: grid;
  grid-template-columns: 80px 1fr;

  gap: 25px;

  padding: 30px 0 50px;
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-step > span {
  color: var(--gold);

  font-size: 11px;
  font-weight: 800;
}

.timeline-step h3 {
  font-size: 28px;

  margin: 0 0 10px;
}

.timeline-step p {
  color: rgba(255, 255, 255, .58);

  max-width: 550px;

  font-size: 14px;
}


/* =========================================================
   CTA
   ========================================================= */

.cta {
  position: relative;

  background: var(--burgundy);
  color: var(--ivory);

  overflow: hidden;

  padding: 130px 0;
}

.cta-rule {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      90deg,
      transparent 49.9%,
      rgba(255, 255, 255, .09) 50%,
      transparent 50.1%
    );

  background-size: 160px 160px;

  opacity: .45;

  pointer-events: none;
}

.cta-inner {
  position: relative;

  z-index: 2;

  display: grid;
  grid-template-columns: 1fr .35fr;

  gap: 10%;

  align-items: center;
}

.cta-copy h2 {
  margin-bottom: 25px;
}

.cta-copy > p:not(.eyebrow) {
  max-width: 500px;

  color: rgba(255, 255, 255, .68);
}

.cta-actions {
  display: flex;

  gap: 12px;

  flex-wrap: wrap;

  margin-top: 30px;
}

.button-light {
  background: var(--ivory);

  color: var(--burgundy-deep);
}

.qr-panel {
  display: flex;
  flex-direction: column;

  align-items: center;

  gap: 18px;

  text-align: center;
}

.qr-frame {
  width: 180px;
  height: 180px;

  padding: 14px;

  background: var(--ivory);
}

.qr-frame img {
  width: 100%;
  height: 100%;

  object-fit: contain;
}

.qr-panel > span {
  color: var(--gold-soft);

  font-size: 10px;
  font-weight: 800;

  letter-spacing: .15em;
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact-head {
  margin-bottom: 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: .7fr 1fr;

  gap: 10%;
}

.contact-details {
  display: grid;
  gap: 28px;
}

.contact-block {
  border-top: 1px solid var(--line);

  padding-top: 18px;
}

.contact-block > span {
  display: block;

  color: var(--burgundy);

  font-size: 10px;
  font-weight: 800;

  letter-spacing: .14em;

  text-transform: uppercase;

  margin-bottom: 10px;
}

.contact-block address,
.contact-block a,
.contact-block p {
  color: var(--muted);

  font-size: 14px;

  margin: 0;
}

.contact-block a:hover {
  color: var(--burgundy);
}

.contact-note {
  display: flex;

  gap: 14px;

  align-items: flex-start;

  border-top: 1px solid var(--line);

  padding-top: 18px;
}

.contact-note > span {
  color: var(--gold);

  font-size: 15px;
}

.contact-note p {
  color: var(--muted);

  font-size: 13px;

  margin: 0;
}

.contact-form {
  display: grid;

  gap: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 18px;
}

.contact-form label {
  display: grid;

  gap: 8px;
}

.contact-form label > span {
  color: var(--ink);

  font-size: 10px;
  font-weight: 800;

  letter-spacing: .12em;

  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;

  border: 1px solid var(--line);

  background: transparent;

  color: var(--ink);

  padding: 14px 15px;

  outline: none;

  transition:
    border-color .3s ease,
    background .3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);

  background: rgba(255, 255, 255, .35);
}

.contact-form textarea {
  resize: vertical;

  min-height: 140px;
}

.form-bottom {
  display: flex;

  align-items: center;

  gap: 20px;
}

.form-status {
  margin: 0;

  font-size: 12px;
}

.contact-map {
  margin-top: 80px;
}

.contact-map iframe {
  display: block;

  min-height: 450px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  background: var(--burgundy-deep);

  color: var(--ivory);

  padding: 70px 0 35px;
}

.footer-main {
  display: grid;

  grid-template-columns: 1.5fr .7fr .8fr;

  gap: 70px;

  padding-bottom: 60px;

  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.brand-footer .brand-copy > span {
  color: var(--gold);
}

.footer-nav,
.footer-contact {
  display: grid;

  align-content: start;

  gap: 12px;
}

.footer-nav > span,
.footer-contact > span {
  color: var(--gold-soft);

  font-size: 10px;
  font-weight: 800;

  letter-spacing: .15em;

  text-transform: uppercase;

  margin-bottom: 6px;
}

.footer-nav a,
.footer-contact a,
.footer-contact p {
  color: rgba(255, 255, 255, .68);

  font-size: 13px;

  margin: 0;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--gold-soft);
}

.footer-bottom {
  display: grid;

  grid-template-columns: 1fr 1fr auto;

  gap: 20px;

  align-items: center;

  padding-top: 25px;
}

.footer-bottom p,
.footer-bottom span {
  margin: 0;

  color: rgba(255, 255, 255, .46);

  font-size: 9px;

  letter-spacing: .12em;

  text-transform: uppercase;
}

.footer-bottom p:nth-child(2) {
  text-align: center;
}

.footer-bottom span {
  text-align: right;
}


/* =========================================================
   REVIEWS
   ========================================================= */

.reviews {
  background: var(--ivory);
}

.reviews-top {
  display: grid;

  grid-template-columns: 1fr .5fr;

  gap: 10%;

  align-items: end;

  margin-bottom: 70px;
}

.reviews-top > p {
  color: var(--muted);

  max-width: 340px;

  margin: 0 0 10px;
}


/* IMPORTANT FIX:
   The review track now uses CSS Grid.
   Each review occupies the same grid cell.
   The track height follows the content naturally.
*/

.reviews-stage {
  position: relative;

  width: 100%;

  display: grid;

  grid-template-columns: 50px minmax(0, 1fr) 50px;

  gap: 24px;

  align-items: center;
}

.review-track {
  position: relative;

  width: 100%;
  min-width: 0;

  display: grid;

  touch-action: pan-y;

  user-select: none;
}

.review-card {
  grid-area: 1 / 1;

  position: relative;

  width: 100%;
  min-width: 0;

  opacity: 0;
  visibility: hidden;

  pointer-events: none;

  display: flex;

  flex-direction: column;
  justify-content: center;

  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);

  padding: 50px 70px;

  transform: translateY(10px);

  transition:
    opacity .5s ease,
    visibility .5s ease,
    transform .5s var(--ease);
}

.review-card.active {
  opacity: 1;

  visibility: visible;

  pointer-events: auto;

  transform: translateY(0);
}

.review-card blockquote {
  font:
    500 clamp(1.6rem, 2.7vw, 2.8rem) /
    1.3
    var(--serif);

  margin: 18px 0 22px;

  max-width: 900px;

  letter-spacing: -.02em;

  user-select: text;
}

.review-card footer {
  color: var(--muted);

  font-size: 10px;
  font-weight: 700;

  letter-spacing: .12em;

  text-transform: uppercase;

  user-select: text;
}

.review-nav {
  width: 50px;
  height: 50px;

  min-width: 50px;

  margin: 0;

  display: grid;

  place-items: center;

  border: 1px solid rgba(100, 25, 27, .22);

  border-radius: 50%;

  background: transparent;

  color: var(--burgundy);

  transition:
    background .3s var(--ease),
    color .3s var(--ease),
    border-color .3s var(--ease),
    transform .3s var(--ease),
    box-shadow .3s var(--ease);

  flex-shrink: 0;
}

.review-nav i {
  font-size: 13px;

  line-height: 1;

  transition: transform .3s var(--ease);
}

.review-nav:hover {
  background: var(--burgundy);

  color: var(--ivory);

  border-color: var(--burgundy);

  transform: translateY(-2px);

  box-shadow: 0 10px 24px rgba(66, 17, 20, .16);
}

.review-nav.prev:hover i {
  transform: translateX(-2px);
}

.review-nav.next:hover i {
  transform: translateX(2px);
}

.more-reviews-button {
  position: relative;

  z-index: 5;

  display: flex;

  width: fit-content;

  margin: 32px auto 0;

  align-items: center;

  justify-content: center;

  gap: 10px;

  background-color: #e0c77d;

  color: var(--burgundy-deep);
}

.more-reviews-button:hover {
  color: #e0c77d;

  background-color: white;
}

.more-reviews-button i {
  font-size: 12px;

  line-height: 1;

  color: currentColor;

  transition:
    transform .3s var(--ease),
    color .3s var(--ease);
}

.more-reviews-button:hover i {
  transform: translate(3px, -3px);

  color: currentColor;
}

.review-dots {
  display: none !important;

  visibility: hidden !important;

  width: 0 !important;
  height: 0 !important;

  margin: 0 !important;
  padding: 0 !important;

  overflow: hidden !important;
}


/* =========================================================
   BACK TO TOP
   ========================================================= */

.back-top {
  position: fixed;

  right: 24px;
  bottom: 24px;

  width: 46px;
  height: 46px;

  border: 1px solid var(--line);

  background: var(--ivory);

  color: var(--burgundy);

  opacity: 0;
  visibility: hidden;

  transform: translateY(10px);

  transition:
    opacity .3s ease,
    visibility .3s ease,
    transform .3s var(--ease),
    background .3s,
    color .3s;

  z-index: 90;
}

.back-top.visible {
  opacity: 1;
  visibility: visible;

  transform: translateY(0);
}

.back-top:hover {
  background: var(--burgundy);

  color: var(--ivory);
}


/* =========================================================
   REVEAL STATES
   ========================================================= */

.reveal {
  opacity: 0;

  transform: translateY(24px);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

  .hero-title {
    font-size: clamp(3.8rem, 6.6vw, 6.5rem);
  }

  .hero-inner {
    gap: 5%;
  }

  .hero-visual {
    min-height: 560px;
  }

  .hero-card-top {
    left: -3%;
  }

  .subject-layout {
    gap: 5%;
  }

  .subject-image-wrap {
    height: 430px;
  }
}


@media (max-width: 980px) {

  .nav-links {
    gap: 18px;
  }

  .nav-cta {
    padding: 0 16px;
  }

  .hero-inner,
  .about-grid,
  .why-grid,
  .contact-grid,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    gap: 55px;
  }

  .hero-copy {
    max-width: 800px;
  }

  .hero-visual {
    min-height: 600px;

    max-width: 760px;

    width: 100%;

    margin: 0 auto;
  }

  .about-grid,
  .why-grid,
  .contact-grid {
    gap: 60px;
  }

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

  .subject-preview {
    display: none;
  }

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

  .pillar:nth-child(3) {
    border-left: 0;

    padding-left: 0;

    border-top: 1px solid var(--line);
  }

  .pillar:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .cta-inner {
    gap: 60px;
  }

  .qr-panel {
    align-items: flex-start;

    text-align: left;
  }
}


@media (max-width: 820px) {

  html,
  body {
    width: 100%;
    max-width: 100%;

    overflow-x: hidden;
  }

  .container {
    width: 100%;

    max-width: 100%;

    padding-left: 18px;
    padding-right: 18px;
  }

  img,
  video,
  iframe {
    max-width: 100%;
  }

  * {
    max-width: 100%;
  }


  /* =======================================================
     MOBILE NAVIGATION
     ======================================================= */

  .nav {
    display: flex !important;

    align-items: center;
    justify-content: space-between;

    width: 100%;

    height: 78px;
  }

  .nav .brand {
    flex: 0 0 auto;
  }

  .nav .nav-links,
  .nav .nav-cta {
    display: none;
  }

  .nav .menu-toggle {
    display: flex !important;

    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    margin-left: auto !important;
    margin-right: 0 !important;

    align-items: center;
    justify-content: center;
  }

  .mobile-menu {
    display: flex;

    position: absolute;

    left: 18px;
    right: 18px;

    top: calc(100% + 8px);

    padding: 16px;

    background: rgba(255, 253, 247, .98);

    color: var(--ink);

    border: 1px solid var(--line);

    box-shadow: 0 20px 50px rgba(0, 0, 0, .1);

    flex-direction: column;

    gap: 3px;

    opacity: 0;

    visibility: hidden;

    transform: translateY(-10px);

    transition:
      opacity .3s ease,
      visibility .3s ease,
      transform .3s var(--ease);
  }

  .mobile-menu.open {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
  }

  .mobile-menu > a {
    padding: 13px 12px;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: .1em;

    text-transform: uppercase;
  }

  .mobile-menu > a:hover {
    background: rgba(201, 163, 74, .1);
  }

  .mobile-menu-cta {
    margin-top: 8px;

    background: var(--gold);

    color: var(--burgundy-deep);

    text-align: center;
  }


  /* =======================================================
     HERO MOBILE
     ======================================================= */

  .hero {
    min-height: auto;
  }

  .hero-inner {
    display: flex;

    flex-direction: column;

    padding: 120px 0 70px;

    gap: 40px;
  }

  .hero-title {
    font-size: clamp(3rem, 14vw, 5rem);

    line-height: .98;
  }

  .hero-lead {
    width: 100%;

    max-width: 100%;

    font-size: 13px;

    line-height: 1.7;

    margin-bottom: 28px;
  }

  .hero-actions {
    width: 100%;

    max-width: 100%;

    align-items: center;
  }

  .hero-actions .button {
    max-width: 100%;

    width: min(100%, 320px);

    min-height: 48px;

    padding: 0 16px;

    font-size: 9px;

    letter-spacing: .11em;

    justify-content: center;
  }

  .hero-meta {
    width: 100%;

    max-width: 100%;

    font-size: 8px;

    letter-spacing: .11em;

    margin-top: 36px;

    flex-wrap: wrap;
  }

  .hero-visual {
    width: 100%;

    min-height: auto !important;
    height: auto !important;

    margin-top: 10px;

    display: flex;

    flex-direction: column;

    gap: 14px;

    overflow: visible !important;
  }

  .hero-photo-wrap {
    position: relative !important;

    inset: auto !important;

    width: 100%;

    height: auto !important;

    min-height: 0;

    overflow: hidden;

    z-index: 1;
  }

  .hero-photo {
    display: block !important;

    width: 100% !important;

    height: auto !important;

    min-height: 0 !important;

    max-height: none !important;

    object-fit: contain !important;

    object-position: center center;

    transform: none !important;
  }

  .hero-card {
    position: relative;

    left: auto;
    right: auto;
    top: auto;
    bottom: auto;

    width: 100%;

    max-width: none;

    background: rgba(255, 253, 247, .95);

    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);

    padding: 16px 18px;
  }

  .hero-card-top {
    order: 2;
  }

  .hero-card-bottom {
    order: 3;
  }

  .hero-seal {
    width: 78px;
    height: 78px;

    right: 12px;
    top: 12px;
  }


  /* =======================================================
     MOBILE SUBJECTS
     ======================================================= */

  .subjects-head {
    grid-template-columns: 1fr;

    gap: 30px;

    margin-bottom: 50px;
  }

  .subject-item {
    padding: 16px 0;
  }

  .subject-item:hover,
  .subject-accordion.open .subject-item {
    padding-left: 0;
  }

  .subject-content p {
    padding-left: 0;

    padding-right: 0;

    font-size: 13px;
  }


  /* =======================================================
     MOBILE REVIEWS
     ======================================================= */

  .reviews-top {
    grid-template-columns: 1fr;

    gap: 25px;

    margin-bottom: 45px;
  }

  .reviews-stage {
    grid-template-columns: 38px minmax(0, 1fr) 38px;

    gap: 8px;

    align-items: center;

    width: 100%;
  }

  .review-track {
    width: 100%;

    min-width: 0;

    touch-action: pan-y;
  }

  .review-card {
    width: 100%;

    min-width: 0;

    padding: 35px 20px;
  }

  .review-card blockquote {
    font-size: 1.45rem;

    line-height: 1.35;

    margin: 16px 0 20px;
  }

  .review-card footer {
    font-size: 9px;

    line-height: 1.5;
  }

  .review-nav {
    width: 38px;
    height: 38px;

    min-width: 38px;

    margin: 0;

    flex-shrink: 0;
  }

  .more-reviews-button {
    position: relative;

    z-index: 5;

    margin: 35px auto 0;
  }


  /* =======================================================
     ABOUT
     ======================================================= */

  .about-grid {
    margin-top: 70px;
  }

  .about-statement h2 {
    font-size: clamp(2.8rem, 12vw, 4.4rem);
  }

  .display-quote {
    font-size: clamp(2.1rem, 9vw, 4rem);
  }


  /* =======================================================
     PREPARED
     ======================================================= */

  .prepared-top {
    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;
  }

  .prepared-top .eyebrow {
    justify-content: center;
  }

  .prepared-heading {
    width: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    gap: 18px;
  }

  .prepared-heading p {
    max-width: 320px;

    text-align: center;
  }

  .pillars {
    width: 100%;

    grid-template-columns: 1fr;

    margin-top: 65px;

    text-align: center;
  }

  .pillar,
  .pillar + .pillar {
    width: 100%;

    min-height: auto;

    border-left: 0;

    padding: 32px 0 38px;

    text-align: center;

    display: flex;

    flex-direction: column;

    align-items: center;
  }

  .pillar + .pillar {
    border-top: 1px solid var(--line);
  }

  .pillar-no {
    display: block;

    width: 100%;

    text-align: center;

    margin-bottom: 8px;
  }

  .pillar h3 {
    width: 100%;

    margin: 30px 0 18px;

    text-align: center;
  }

  .pillar p {
    width: 100%;

    max-width: 290px;

    margin: 0 auto;

    text-align: center;
  }

  .pillar-line {
    position: relative;

    left: auto;
    right: auto;
    bottom: auto;

    width: 35px;
    height: 2px;

    margin: 25px auto 0;
  }


  /* =======================================================
     CTA
     ======================================================= */

  .cta {
    padding: 90px 0;
  }

  .cta-actions {
    justify-content: center;
  }

  .qr-panel {
    width: 100%;

    align-items: center !important;

    justify-content: center;

    text-align: center !important;

    margin-left: auto;
    margin-right: auto;
  }

  .qr-frame {
    margin-left: auto;

    margin-right: auto;
  }


  /* =======================================================
     CONTACT
     ======================================================= */

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

  .form-bottom {
    flex-direction: column;

    align-items: center;
  }

  .contact-map {
    margin-top: 50px;
  }


  /* =======================================================
     FOOTER
     ======================================================= */

  .footer-main {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;

    text-align: center;
  }

  .footer-bottom p:nth-child(2),
  .footer-bottom span {
    text-align: center;
  }


  /*
    IMPORTANT:
    Only normal .button elements are centered.
    Do NOT target every <button>, because that breaks
    the review navigation arrows.
  */

  .button {
    margin-left: auto;
    margin-right: auto;
  }

  .button-group,
  .actions,
  .form-actions {
    display: flex;

    justify-content: center;
    align-items: center;

    width: 100%;
  }

  .more-reviews-button {
    margin: 35px auto 0;
  }

}


/* =========================================================
   DESKTOP HERO BOOK STACK
   ========================================================= */

@media (min-width: 821px) {

  .hero-visual {
    overflow: visible;

    position: relative;
  }

  .hero-photo-wrap {
    z-index: 1;
  }

  .hero-photo {
    position: relative;

    z-index: 1;
  }

  .hero-card-top {
    z-index: 4;

    left: -70px;

    top: 0;
  }

  .hero-card-bottom {
    z-index: 4;

    right: -35px;

    bottom: 0;
  }

  .hero-seal {
    z-index: 5;

    right: -5px;

    top: -10px;
  }
}


/* =========================================================
   EXTRA MOBILE FIXES
   ========================================================= */

@media (max-width: 560px) {

  .prepared {
    width: 100%;

    text-align: center;
  }

  .prepared .container {
    width: 100%;

    max-width: 100%;

    margin: 0 auto;

    padding-left: 18px;
    padding-right: 18px;
  }

  .prepared-top .eyebrow {
    justify-content: center;

    width: 100%;

    margin-left: auto;
    margin-right: auto;
  }

  .prepared-heading {
    width: 100%;

    justify-content: center;
  }

  .prepared-heading h2 {
    width: 100%;

    text-align: center;
  }

  .prepared-heading p {
    width: 100%;

    max-width: 320px;

    margin: 0 auto;

    text-align: center;
  }

  .pillars {
    width: 100%;

    display: grid;

    grid-template-columns: 1fr;

    margin-top: 65px;

    text-align: center;
  }

  .pillar,
  .pillar + .pillar {
    width: 100%;

    min-height: auto;

    border-left: 0;

    padding: 32px 0 38px;

    text-align: center;

    display: flex;

    flex-direction: column;

    align-items: center;
  }

  .pillar + .pillar {
    border-top: 1px solid var(--line);
  }

  .pillar-no {
    display: block;

    width: 100%;

    text-align: center;

    margin-bottom: 8px;
  }

  .pillar h3 {
    width: 100%;

    margin: 30px 0 18px;

    text-align: center;
  }

  .pillar p {
    width: 100%;

    max-width: 290px;

    margin: 0 auto;

    text-align: center;
  }

  .pillar-line {
    position: relative;

    left: auto;
    right: auto;
    bottom: auto;

    width: 35px;

    height: 2px;

    margin: 25px auto 0;
  }

}


/* =========================================================
   HAMBURGER
   ========================================================= */

@media (max-width: 820px) {

  .nav .menu-toggle {
    display: flex !important;

    position: relative;

    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    margin-left: auto !important;
    margin-right: 0 !important;

    align-items: center;

    justify-content: center;
  }

  .nav .menu-toggle span {
    position: absolute;

    left: 50%;

    width: 23px;
    height: 2px;

    margin: 0;

    transform: translateX(-50%);
  }

  .nav .menu-toggle span:nth-child(1) {
    top: 10px;
  }

  .nav .menu-toggle span:nth-child(2) {
    top: 20px;
  }

  .nav .menu-toggle span:nth-child(3) {
    top: 30px;
  }

  .hero-actions {
    align-items: center;
  }

  .hero-actions .button {
    width: min(100%, 320px);
  }

}


/* =========================================================
   MOBILE SIDE SPACING FIX
   ========================================================= */

@media (max-width: 768px) {

  html,
  body {
    width: 100%;
    max-width: 100%;

    overflow-x: hidden;
  }

  .container,
  .section-inner,
  .hero-inner,
  .subjects-section,
  .reviews-section,
  .review-section,
  .contact-section,
  .why-section,
  .intro-section {
    width: 100%;

    max-width: 100%;

    padding-left: 20px;
    padding-right: 20px;

    box-sizing: border-box;
  }

  .hero,
  .hero-section,
  section {
    box-sizing: border-box;
  }

  .subject-grid,
  .subjects-grid,
  .review-grid,
  .reviews-grid,
  .cards-grid {
    margin-left: 0;
    margin-right: 0;

    width: 100%;

    box-sizing: border-box;
  }

  .subject-card,
  .review-tile,
  .service-card,
  .hero-card {
    box-sizing: border-box;

    max-width: 100%;
  }

  img,
  video {
    max-width: 100%;
  }

}


/* =========================================================
   SMALLER PHONES
   ========================================================= */

@media (max-width: 480px) {

  .container,
  .section-inner,
  .hero-inner,
  .subjects-section,
  .reviews-section,
  .review-section,
  .contact-section,
  .why-section,
  .intro-section {
    padding-left: 16px;
    padding-right: 16px;
  }

}


/* =========================================================
   FINAL MOBILE NAVIGATION + HAMBURGER FIX
   ========================================================= */

@media screen and (max-width: 900px) {

  .site-header .nav {
    display: flex !important;

    align-items: center !important;

    justify-content: space-between !important;

    width: 100% !important;

    gap: 12px !important;
  }

  .site-header .nav-links,
  .site-header .nav-cta {
    display: none !important;
  }

  .site-header .brand {
    display: inline-flex !important;

    align-items: center !important;

    flex: 1 1 auto !important;

    min-width: 0 !important;
  }

  .site-header .menu-toggle {
    display: flex !important;

    position: relative !important;

    align-items: center !important;
    justify-content: center !important;

    width: 44px !important;
    height: 44px !important;

    min-width: 44px !important;
    min-height: 44px !important;

    margin: 0 0 0 auto !important;

    padding: 0 !important;

    flex: 0 0 44px !important;

    border: 0 !important;

    outline: none !important;

    background: transparent !important;

    color: currentColor !important;

    cursor: pointer !important;

    opacity: 1 !important;

    visibility: visible !important;

    z-index: 9999 !important;

    -webkit-appearance: none !important;
    appearance: none !important;
  }

  .site-header .menu-toggle span {
    position: absolute !important;

    left: 50% !important;

    display: block !important;

    width: 24px !important;

    height: 2px !important;

    margin: 0 !important;

    padding: 0 !important;

    background: currentColor !important;

    border-radius: 2px !important;

    opacity: 1 !important;

    visibility: visible !important;

    transform: translateX(-50%) !important;

    pointer-events: none !important;
  }

  .site-header .menu-toggle span:nth-child(1) {
    top: 10px !important;
  }

  .site-header .menu-toggle span:nth-child(2) {
    top: 20px !important;
  }

  .site-header .menu-toggle span:nth-child(3) {
    top: 30px !important;
  }

}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media screen and (max-width: 600px) {

  .site-header .nav {
    padding-left: 16px !important;

    padding-right: 16px !important;
  }

  .site-header .menu-toggle {
    width: 44px !important;

    height: 44px !important;

    min-width: 44px !important;

    flex-basis: 44px !important;
  }

}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media screen and (max-width: 380px) {

  .site-header .nav {
    padding-left: 12px !important;

    padding-right: 12px !important;
  }

  .site-header .menu-toggle {
    width: 42px !important;

    height: 42px !important;

    min-width: 42px !important;

    flex-basis: 42px !important;
  }

  .site-header .menu-toggle span {
    width: 22px !important;
  }

}