:root {
  --green-950: #173124;
  --green-900: #1f3f2d;
  --green-800: #2b5038;
  --green-700: #496b4d;
  --green-100: #e8efe3;
  --cream: #f5ead9;
  --cream-light: #fcf8f1;
  --cream-warm: #f2dfc7;
  --terracotta: #c75f43;
  --terracotta-dark: #ab4932;
  --terracotta-soft: #f3d8cd;
  --gold: #c79639;
  --ink: #28221d;
  --muted: #6b625b;
  --white: #ffffff;
  --line: rgba(40, 34, 29, .12);
  --shadow-sm: 0 12px 30px rgba(47, 35, 23, .08);
  --shadow-md: 0 24px 65px rgba(47, 35, 23, .12);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--cream-light);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--white);
  color: var(--green-950);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 36px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  background: rgba(252, 248, 241, .88);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand-mark,
.footer-monogram {
  display: grid;
  place-items: center;
  border: 1px solid rgba(199, 150, 57, .6);
  border-radius: 50%;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -.04em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, .7);
  font-size: 1.05rem;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  position: relative;
  color: var(--green-900);
  font-size: .91rem;
  font-weight: 700;
  text-decoration: none;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 1px solid rgba(23, 49, 36, .14);
  border-radius: 14px;
  background: rgba(255, 255, 255, .78);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 99px;
  background: var(--green-950);
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 84px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .72), transparent 42%),
    radial-gradient(circle at 82% 12%, rgba(199, 150, 57, .09), transparent 34%),
    var(--cream);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(199, 150, 57, .24);
  border-radius: 50%;
}

.hero::before {
  top: -220px;
  right: -210px;
  width: 520px;
  height: 520px;
}

.hero::after {
  bottom: -260px;
  left: -170px;
  width: 460px;
  height: 460px;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow--one {
  top: 18%;
  left: -70px;
  width: 220px;
  height: 220px;
  background: rgba(199, 95, 67, .12);
}

.hero-glow--two {
  right: 12%;
  bottom: 8%;
  width: 180px;
  height: 180px;
  background: rgba(73, 107, 77, .09);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(330px, .9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
}

.hero-photo-column {
  display: flex;
  justify-content: center;
}

.photo-frame {
  position: relative;
  isolation: isolate;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-frame--hero {
  width: min(100%, 440px);
  aspect-ratio: 4 / 5;
  padding: 10px;
  border: 1px solid rgba(199, 150, 57, .68);
  border-radius: 40px;
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow-md);
}

.photo-frame--hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: -26px;
  bottom: -28px;
  width: 58%;
  height: 38%;
  border-radius: 50% 50% 36% 64%;
  background: rgba(199, 95, 67, .16);
}

.photo-frame--hero img {
  border-radius: 31px;
  object-position: center top;
}

.photo-frame__accent--top {
  position: absolute;
  top: -13px;
  left: 50%;
  width: 94px;
  height: 5px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-50%);
}

.photo-frame__leaf {
  position: absolute;
  right: -54px;
  bottom: -34px;
  width: 150px;
  color: var(--green-700);
  opacity: .78;
}

.photo-frame__leaf svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-copy {
  text-align: left;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--terracotta-dark);
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow > span:not(.button-icon) {
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.hero h1,
.section-heading h2,
.about h2 {
  margin: 0;
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.038em;
}

.hero h1 {
  margin-top: 18px;
  font-size: clamp(3.3rem, 7vw, 6.2rem);
}

.hero-role {
  max-width: 640px;
  margin: 18px 0 0;
  color: var(--terracotta-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
}

.hero-text {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.hero-actions,
.final-actions {
  display: grid;
  gap: 12px;
}

.hero-actions {
  max-width: 590px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  text-align: center;
  text-decoration: none;
  font-size: .91rem;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    background-color .2s ease,
    border-color .2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(47, 35, 23, .14);
}

.button--primary {
  background: var(--green-900);
  color: var(--white);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--green-950);
}

.button--accent {
  background: var(--terracotta);
  color: var(--white);
}

.button--accent:hover,
.button--accent:focus-visible {
  background: var(--terracotta-dark);
}

.button--outline {
  border-color: rgba(199, 95, 67, .62);
  background: rgba(255, 255, 255, .7);
  color: var(--terracotta-dark);
}

.button--outline:hover,
.button--outline:focus-visible {
  border-color: var(--terracotta);
  background: var(--white);
}

.button-icon {
  display: inline-grid;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  place-items: center;
}

.button-icon svg,
.path-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section {
  position: relative;
  padding: 90px 0;
}

.pathways {
  background:
    radial-gradient(circle at 50% -15%, rgba(199, 150, 57, .08), transparent 38%),
    var(--cream-light);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading__ornament {
  display: block;
  width: 48px;
  height: 3px;
  margin: 0 auto 14px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-heading h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.section-heading p {
  max-width: 690px;
  margin: 14px auto 0;
  color: var(--muted);
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.path-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .85);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.path-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 90px;
  height: 90px;
  border-radius: 0 0 0 90px;
  opacity: .24;
}

.path-card--green::after {
  background: var(--green-100);
}

.path-card--accent::after {
  background: var(--terracotta-soft);
}

.path-card--neutral::after {
  background: var(--cream-warm);
}

.path-card:hover {
  transform: translateY(-6px);
  border-color: rgba(73, 107, 77, .25);
  box-shadow: var(--shadow-md);
}

.path-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
}

.path-icon svg {
  width: 30px;
  height: 30px;
}

.path-card--green .path-icon {
  background: var(--green-100);
  color: var(--green-800);
}

.path-card--accent .path-icon {
  background: var(--terracotta-soft);
  color: var(--terracotta-dark);
}

.path-card--neutral .path-icon {
  background: var(--cream-warm);
  color: var(--green-700);
}

.path-card h3 {
  margin: 24px 0 10px;
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
}

.path-card--accent h3 {
  color: var(--terracotta-dark);
}

.path-card p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 24px;
  color: var(--green-900);
  text-decoration: none;
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.path-card--accent .card-link {
  color: var(--terracotta-dark);
}

.card-link span {
  font-size: 1.35rem;
  transition: transform .2s ease;
}

.card-link:hover span,
.card-link:focus-visible span {
  transform: translateX(5px);
}

.about {
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 25%, rgba(199, 150, 57, .09), transparent 26%),
    var(--green-950);
  color: rgba(255, 255, 255, .82);
}

.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(460px, 1.2fr);
  align-items: center;
  gap: clamp(42px, 7vw, 90px);
}

.photo-frame--about {
  width: min(100%, 390px);
  aspect-ratio: 4 / 5;
  padding: 8px;
  border: 1px solid rgba(199, 150, 57, .75);
  border-radius: 34px;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .28);
}

.photo-frame--about img {
  border-radius: 26px;
  object-position: center top;
}

.eyebrow--light {
  color: #e2bd71;
}

.about h2 {
  margin-top: 14px;
  color: var(--white);
  font-size: clamp(2.35rem, 5vw, 4rem);
}

.about-copy {
  position: relative;
  z-index: 2;
}

.about-copy p {
  max-width: 710px;
  margin: 17px 0 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  color: #f0cc84;
  text-decoration: none;
  font-weight: 800;
}

.text-link span {
  transition: transform .2s ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(5px);
}

.about-botanical {
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 280px;
  fill: none;
  stroke: rgba(226, 189, 113, .34);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.quote-section {
  padding: 74px 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.44), transparent),
    var(--cream);
}

.quote-card {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 42px 70px;
  border: 1px solid rgba(199, 150, 57, .48);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.quote-card p {
  margin: 0;
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-style: italic;
  line-height: 1.45;
}

.quote-card footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
  color: var(--terracotta-dark);
  font-size: .9rem;
  font-weight: 700;
}

.quote-card footer span {
  width: 34px;
  height: 1px;
  background: var(--gold);
}

.quote-mark {
  position: absolute;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5rem;
  line-height: 1;
  opacity: .9;
}

.quote-mark--open {
  top: 18px;
  left: 24px;
}

.quote-mark--close {
  right: 24px;
  bottom: 0;
}

.final-cta {
  overflow: hidden;
  padding-top: 86px;
  background:
    linear-gradient(180deg, rgba(252,248,241,.9), rgba(245,234,217,.88)),
    var(--cream-light);
}

.final-cta__inner {
  position: relative;
  z-index: 2;
}

.final-actions {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1040px;
  margin: 0 auto;
}

.final-cta__decor {
  position: absolute;
  bottom: -90px;
  width: 240px;
  height: 300px;
  border-radius: 48% 52% 0 0;
  opacity: .45;
  filter: blur(.2px);
}

.final-cta__decor--left {
  left: -55px;
  background: radial-gradient(circle at 55% 40%, rgba(73,107,77,.34), transparent 46%);
}

.final-cta__decor--right {
  right: -55px;
  background: radial-gradient(circle at 45% 40%, rgba(199,95,67,.28), transparent 46%);
}

.site-footer {
  padding: 38px 0;
  background: #211817;
  color: rgba(255, 255, 255, .68);
  font-size: .82rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr auto auto;
  align-items: center;
  gap: 28px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-monogram {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  font-size: 1.2rem;
}

.footer-brand div {
  display: grid;
  gap: 3px;
}

.footer-brand strong {
  color: rgba(255, 255, 255, .92);
  font-size: .78rem;
  letter-spacing: .04em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: #e7bf72;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  text-decoration: underline;
}

.site-footer p {
  margin: 0;
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

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

@media (max-width: 980px) {
  .hero {
    padding-top: 56px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero-photo-column {
    order: 0;
  }

  .hero-copy {
    order: 1;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
  }

  .hero-copy .eyebrow {
    justify-content: center;
  }

  .hero-role,
  .hero-text,
  .hero-actions {
    margin-right: auto;
    margin-left: auto;
  }

  .photo-frame--hero {
    width: min(82vw, 430px);
  }

  .path-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin: 0 auto;
  }

  .path-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "icon title arrow"
      "icon text arrow";
    align-items: center;
    column-gap: 20px;
    padding: 24px;
  }

  .path-icon {
    grid-area: icon;
  }

  .path-card h3 {
    grid-area: title;
    margin: 0 0 4px;
  }

  .path-card p {
    grid-area: text;
  }

  .card-link {
    grid-area: arrow;
    align-self: center;
    padding: 0;
    font-size: 0;
  }

  .card-link span {
    font-size: 1.75rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-photo {
    display: flex;
    justify-content: center;
  }

  .about-copy p {
    margin-right: auto;
    margin-left: auto;
  }

  .about-botanical {
    right: -100px;
    opacity: .55;
  }

  .final-actions {
    grid-template-columns: 1fr;
    max-width: 620px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .site-footer p {
    text-align: center;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 70px;
  }

  .header-inner {
    min-height: 66px;
  }

  .brand-name {
    font-size: 1.02rem;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 66px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 12px 18px 22px;
    border-bottom: 1px solid var(--line);
    background: rgba(252, 248, 241, .98);
    box-shadow: 0 18px 36px rgba(47, 35, 23, .12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .2s ease, transform .2s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 14px 4px;
    border-bottom: 1px solid rgba(40, 34, 29, .08);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    padding: 40px 0 62px;
  }

  .photo-frame--hero {
    width: min(88vw, 390px);
    border-radius: 30px;
  }

  .photo-frame--hero img {
    border-radius: 23px;
  }

  .photo-frame__leaf {
    right: -24px;
    bottom: -24px;
    width: 112px;
  }

  .eyebrow {
    font-size: .68rem;
  }

  .eyebrow > span:not(.button-icon) {
    width: 18px;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .hero-role {
    font-size: 1.23rem;
  }

  .hero-text {
    font-size: .98rem;
  }

  .button {
    width: 100%;
    min-height: 54px;
    padding: 13px 16px;
    font-size: .8rem;
  }

  .section {
    padding: 68px 0;
  }

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

  .section-heading h2 {
    font-size: clamp(2rem, 10vw, 2.9rem);
  }

  .path-card {
    grid-template-columns: 54px 1fr 24px;
    column-gap: 14px;
    padding: 20px 18px;
    border-radius: 18px;
  }

  .path-icon {
    width: 50px;
    height: 50px;
  }

  .path-icon svg {
    width: 26px;
    height: 26px;
  }

  .path-card h3 {
    font-size: 1.28rem;
  }

  .path-card p {
    font-size: .85rem;
    line-height: 1.45;
  }

  .about {
    padding-top: 58px;
  }

  .photo-frame--about {
    width: min(74vw, 330px);
    border-radius: 26px;
  }

  .photo-frame--about img {
    border-radius: 19px;
  }

  .about h2 {
    font-size: clamp(2.15rem, 10vw, 3rem);
  }

  .about-copy p {
    font-size: .93rem;
  }

  .about-botanical {
    right: -145px;
    bottom: -60px;
    width: 250px;
  }

  .quote-section {
    padding: 52px 0;
  }

  .quote-card {
    padding: 34px 32px;
    border-radius: 20px;
  }

  .quote-card p {
    font-size: 1.3rem;
  }

  .quote-card footer {
    flex-wrap: wrap;
    gap: 8px;
    font-size: .8rem;
  }

  .quote-card footer span {
    width: 24px;
  }

  .quote-mark {
    font-size: 3.6rem;
  }

  .quote-mark--open {
    top: 12px;
    left: 14px;
  }

  .quote-mark--close {
    right: 14px;
    bottom: -8px;
  }

  .final-cta {
    padding-top: 64px;
  }

  .footer-brand {
    flex-direction: column;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .brand-name {
    display: none;
  }

  .hero h1 {
    font-size: 3.25rem;
  }

  .hero-role {
    font-size: 1.08rem;
  }

  .path-card {
    grid-template-columns: 46px 1fr 20px;
    padding: 17px 14px;
  }

  .path-icon {
    width: 44px;
    height: 44px;
  }

  .path-card h3 {
    font-size: 1.15rem;
  }

  .path-card p {
    font-size: .79rem;
  }

  .quote-card {
    padding-right: 24px;
    padding-left: 24px;
  }
}
