:root {
  --cream: #f7f3ee;
  --cream-deep: #efe7dc;
  --teal: #1f5d63;
  --teal-dark: #153f44;
  --sage: #a7b8a5;
  --sage-light: #dfe8dc;
  --gold: #c8a96b;
  --charcoal: #2d2d2d;
  --muted: #68665f;
  --white: #fffdf9;
  --line: rgba(31, 93, 99, 0.16);
  --shadow: 0 24px 70px rgba(31, 64, 68, 0.14);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--charcoal);
  background:
    radial-gradient(circle at top left, rgba(167, 184, 165, 0.32), transparent 34rem),
    linear-gradient(180deg, var(--cream) 0%, #fbf8f2 54%, var(--cream) 100%);
  line-height: 1.65;
}

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

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

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

.section-padding {
  padding: 96px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(247, 243, 238, 0.84);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--cream);
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  box-shadow: 0 10px 24px rgba(31, 93, 99, 0.24);
}

.brand-text {
  display: inline-flex;
  align-items: baseline;
  gap: 11px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-stem {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 900;
  color: var(--teal-dark);
  letter-spacing: -0.043em;
  font-size: 1.2em;
}

.brand-by {
  font-family: "Sacramento", cursive;
  font-weight: 400;
  color: var(--teal);
  letter-spacing: 0.01em;
  font-size: 1.55em;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 700;
  font-size: 0.94rem;
  color: rgba(45, 45, 45, 0.78);
}

.nav-links a {
  transition: color 180ms ease, transform 180ms ease;
}

.nav-links a:hover {
  color: var(--teal);
  transform: translateY(-1px);
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(31, 93, 99, 0.22);
  border-radius: 999px;
  color: var(--teal) !important;
  background: rgba(255, 253, 249, 0.72);
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  padding-top: 70px;
  padding-bottom: 60px;
  isolation: isolate;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: none;
  opacity: 1;
}

.hero-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(247, 243, 238, 0) 0%,
      rgba(247, 243, 238, 0) 28%,
      rgba(247, 243, 238, 0) 62%,
      rgba(247, 243, 238, 0.35) 62%,
      rgba(247, 243, 238, 0.82) 84%,
      var(--cream) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 18px;
  z-index: -1;
  background: linear-gradient(90deg, var(--teal), var(--sage), var(--gold));
  opacity: 0.72;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 150px;
  z-index: -1;
  background: linear-gradient(180deg, rgba(247, 243, 238, 0), var(--cream));
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  align-items: start;
  gap: 72px;
}

.hero-copy {
  padding: 38px;
  margin-left: -38px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(247, 243, 238, 0.70), rgba(255, 253, 249, 0.36));
  border: 1px solid rgba(31, 93, 99, 0.10);
  backdrop-filter: blur(4px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--teal-dark);
  letter-spacing: -0.045em;
}

h1 {
  max-width: 720px;
  font-size: clamp(2.6rem, 5.8vw, 5.4rem);
}

h2 {
  font-size: clamp(2.2rem, 4.4vw, 4.2rem);
}

h3 {
  font-size: 1.1rem;
  color: var(--teal-dark);
  letter-spacing: -0.025em;
}

.hero-lede {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

.button-primary {
  color: var(--cream);
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  box-shadow: 0 15px 36px rgba(31, 93, 99, 0.25);
}

.button-secondary {
  color: var(--teal-dark);
  background: rgba(255, 253, 249, 0.78);
  border: 1px solid rgba(31, 93, 99, 0.18);
}

.credential-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.credential-strip span,
.about-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(167, 184, 165, 0.24);
  border: 1px solid rgba(31, 93, 99, 0.12);
  font-size: 0.86rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 540px;
  padding-top: 20px;
}

.portrait-card {
  position: relative;
  right: 0;
  top: 0;
  width: min(390px, 100%);
  padding: 18px;
  border-radius: 38px;
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.92), rgba(239, 231, 220, 0.78));
  border: 1px solid rgba(31, 93, 99, 0.14);
  box-shadow: var(--shadow);
}

.portrait {
  width: 100%;
  aspect-ratio: 4 / 5.1;
  object-fit: cover;
  object-position: center top;
  border-radius: 28px;
  filter: saturate(0.98) contrast(1.02);
}

.portrait-caption {
  display: block;
  padding: 16px 8px 4px;
}

.portrait-caption div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.portrait-caption strong {
  color: var(--teal-dark);
  font-size: 1rem;
  font-weight: 900;
}

.portrait-caption span {
  color: var(--muted);
  text-align: left;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
}

.floating-photo {
  position: absolute;
  overflow: hidden;
  border-radius: 26px;
  border: 8px solid rgba(255, 253, 249, 0.88);
  box-shadow: 0 18px 44px rgba(35, 56, 54, 0.18);
  background: var(--white);
}

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

.study-float-photo {
  left: -300px;
  bottom: 110px;
  width: 280px;
  height: 190px;
  transform: rotate(-4deg);
}

.blossom-photo {
  right: 330px;
  bottom: 205px;
  width: 242px;
  height: 180px;
  transform: rotate(4deg);
}

.trust-bar {
  padding: 32px 0;
  background: rgba(31, 93, 99, 0.07);
  border-block: 1px solid rgba(31, 93, 99, 0.10);
}

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

.trust-grid div {
  padding: 18px 22px;
  border-radius: var(--radius-md);
  background: rgba(255, 253, 249, 0.62);
}

.trust-number {
  display: block;
  margin-bottom: 7px;
  color: var(--teal-dark);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.trust-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.section-heading {
  max-width: 720px;
}

.section-heading.centered {
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.card-grid {
  display: grid;
  gap: 20px;
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.expectation-card {
  position: relative;
  min-height: 258px;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 249, 0.76);
  border: 1px solid rgba(31, 93, 99, 0.13);
  box-shadow: 0 14px 34px rgba(35, 56, 54, 0.08);
  overflow: hidden;
}

.service-card::after,
.expectation-card::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -54px;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: rgba(167, 184, 165, 0.18);
}

.service-card h3,
.expectation-card h3 {
  margin-top: 36px;
  font-size: 1.25rem;
}

.service-card p,
.expectation-card p {
  position: relative;
  margin: 14px 0 0;
  color: var(--muted);
}

.card-icon {
  position: absolute;
  top: 26px;
  left: 30px;
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.accent-card {
  background: linear-gradient(135deg, rgba(31, 93, 99, 0.93), rgba(21, 63, 68, 0.96));
}

.accent-card h3,
.accent-card p,
.accent-card .card-icon {
  color: var(--cream);
}

.accent-card p {
  opacity: 0.84;
}

.visual-story-section {
  padding: 34px 0 88px;
}

.visual-story-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: center;
  padding: 42px;
  border-radius: 40px;
  background:
    radial-gradient(circle at 12% 16%, rgba(200, 169, 107, 0.13), transparent 18rem),
    rgba(255, 253, 249, 0.68);
  border: 1px solid rgba(31, 93, 99, 0.12);
  box-shadow: var(--shadow);
}

.visual-story-copy p:not(.eyebrow) {
  color: var(--muted);
}

.study-image-card {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 18px 48px rgba(31, 64, 68, 0.16);
}

.study-image-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.image-band {
  display: grid;
  grid-template-columns: 1fr 1.05fr 0.95fr;
  gap: 14px;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 12px;
  border-radius: 36px;
  background: rgba(255, 253, 249, 0.74);
  border: 1px solid rgba(31, 93, 99, 0.12);
  box-shadow: var(--shadow);
}

.image-band img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  border-radius: 26px;
}

.approach-section {
  position: relative;
}

.split-grid,
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.media-panel {
  position: relative;
}

.media-panel > img {
  width: 100%;
  height: 590px;
  object-fit: cover;
  border-radius: 38px;
  box-shadow: var(--shadow);
}

.quote-card {
  position: absolute;
  right: -26px;
  bottom: 42px;
  max-width: 340px;
  padding: 24px;
  border-radius: 24px;
  color: var(--teal-dark);
  background: rgba(255, 253, 249, 0.90);
  border: 1px solid rgba(31, 93, 99, 0.14);
  box-shadow: 0 20px 48px rgba(31, 64, 68, 0.16);
}

.quote-card p {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  line-height: 1.35;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.feature-item {
  padding: 22px;
  border-radius: var(--radius-md);
  background: rgba(255, 253, 249, 0.64);
  border: 1px solid rgba(31, 93, 99, 0.12);
}

.feature-item p {
  margin: 8px 0 0;
  color: var(--muted);
}

.about-section {
  background:
    linear-gradient(180deg, rgba(247, 243, 238, 0.72), rgba(247, 243, 238, 0.92)),
    url("images/nature-cherry-blossom.jpg") center / cover fixed;
}

.about-copy {
  padding: 46px;
  border-radius: 36px;
  background: rgba(247, 243, 238, 0.88);
  border: 1px solid rgba(31, 93, 99, 0.12);
  box-shadow: var(--shadow);
}

.about-copy p:not(.eyebrow) {
  color: var(--muted);
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.about-card {
  overflow: hidden;
  border-radius: 36px;
  background: var(--white);
  border: 1px solid rgba(31, 93, 99, 0.12);
  box-shadow: var(--shadow);
}

.about-card img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center 42%;
}

.about-card-content {
  padding: 30px;
}

.about-card-content ul {
  padding-left: 20px;
  margin: 14px 0 0;
  color: var(--muted);
}

.testimonials-section {
  background:
    linear-gradient(180deg, rgba(247, 243, 238, 0.86), rgba(247, 243, 238, 0.94)),
    url("images/hero-mountain-lake.jpg") center / cover;
}

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

.expectation-card {
  min-height: 210px;
  background: rgba(255, 253, 249, 0.82);
}

.cta-section {
  padding: 36px 0 96px;
}

.cta-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
  padding: 48px;
  border-radius: 38px;
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(21, 63, 68, 0.94), rgba(31, 93, 99, 0.88)),
    url("images/nature-beach-sunset.jpg") center / cover;
  box-shadow: var(--shadow);
}

.cta-card h2 {
  color: var(--cream);
}

.cta-card p {
  max-width: 760px;
  color: rgba(247, 243, 238, 0.82);
}

.cta-card .eyebrow {
  color: var(--sage-light);
}

.cta-card .button-primary {
  color: var(--teal-dark);
  background: var(--cream);
  box-shadow: none;
}

.cta-card .button-secondary {
  color: var(--cream);
  background: rgba(255, 253, 249, 0.10);
  border-color: rgba(255, 253, 249, 0.28);
}

.site-footer {
  padding: 36px 0;
  background: var(--teal-dark);
  color: rgba(247, 243, 238, 0.82);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand .brand-mark {
  background: var(--cream);
  color: var(--teal-dark);
  box-shadow: none;
}

.footer-brand .brand-text {
  color: var(--cream);
}

.site-footer p {
  margin: 12px 0 0;
  font-size: 0.92rem;
}

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

.footer-links a:hover {
  color: var(--cream);
}

@media (max-width: 980px) {
  .nav {
    min-height: auto;
    padding: 16px 0;
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .split-grid,
  .about-grid,
  .cta-card,
  .visual-story-grid {
    grid-template-columns: 1fr;
  }

  .hero-background::after {
    background:
      linear-gradient(180deg, rgba(247, 243, 238, 0.96), rgba(247, 243, 238, 0.88) 46%, rgba(247, 243, 238, 0.96)),
      linear-gradient(90deg, rgba(247, 243, 238, 0.9), rgba(247, 243, 238, 0.82));
  }

  .hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 620px;
  }

  .portrait-card {
    position: relative;
    width: min(440px, 100%);
    padding: 18px;
    border-radius: 38px;
    background: linear-gradient(180deg, rgba(255, 253, 249, 0.94), rgba(239, 231, 220, 0.82));
    border: 1px solid rgba(31, 93, 99, 0.14);
    box-shadow: var(--shadow);
    z-index: 3;    
  }

  .study-float-photo {
    left: 4%;
  }

  .blossom-photo {
    right: 4%;
  }

  .services-grid,
  .trust-grid,
  .expectation-grid {
    grid-template-columns: 1fr;
  }

  .image-band {
    grid-template-columns: 1fr;
  }

  .image-band img {
    height: 240px;
  }

  .quote-card {
    right: 18px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section-padding {
    padding: 68px 0;
  }

  .hero {
    padding-top: 66px;
  }

  h1 {
    max-width: 720px;
    font-size: clamp(2.7rem, 5.4vw, 5rem);
  }

  h2 {
    font-size: 2.15rem;
  }

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

  .button {
    width: 100%;
  }

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

  .portrait-card {
    width: 86%;
    padding: 12px;
    border-radius: 28px;
  }

  .portrait {
    border-radius: 22px;
  }

  .portrait-caption {
    align-items: flex-start;
    flex-direction: column;
  }

  .portrait-caption span {
    text-align: left;
  }

  .floating-photo {
    border-width: 5px;
  }

  .study-float-photo {
    width: 165px;
    height: 122px;
    bottom: 54px;
  }

  .blossom-photo {
    width: 150px;
    height: 112px;
    bottom: 4px;
  }

  .service-card,
  .expectation-card,
  .about-copy,
  .cta-card,
  .visual-story-grid {
    padding: 24px;
    border-radius: 26px;
  }

  .study-image-card img {
    height: 280px;
  }

  .media-panel > img {
    height: 390px;
    border-radius: 28px;
  }

  .quote-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -42px 16px 0;
  }

  .about-section {
    background-attachment: scroll;
  }

  .about-card img {
    height: 360px;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}

.hero .floating-photo {
  display: none;
}

.booking-actions {
  justify-content: flex-start;
}

/* Helps if Square injects a button/link that does not match my layout */
.booking-actions iframe,
.booking-actions > div {
  max-width: 100%;
}

.booking-actions a,
.booking-actions button {
  font-family: "Inter", system-ui, sans-serif;
}

/* =====================================================================
   MULTI-PAGE ADDITIONS  —  service pages, packages, FAQ, nav, reveals
   Built on the existing design tokens (teal / cream / gold / sage).
   ===================================================================== */

/* ---- Navigation: dropdown + mobile menu ---- */
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(31, 93, 99, 0.22);
  border-radius: 14px;
  background: rgba(255, 253, 249, 0.72);
  cursor: pointer;
  padding: 0;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--teal-dark);
  border-radius: 2px;
  transition: transform 220ms ease, opacity 180ms ease;
}
.nav-toggle span { position: relative; }
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after  { position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

.has-dropdown { position: relative; }
.dropdown-trigger { cursor: pointer; display: inline-flex; align-items: center; gap: 5px; }
.dropdown-trigger .caret { font-size: 0.7em; transition: transform 200ms ease; }
.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 232px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.97);
  border: 1px solid var(--line);
  box-shadow: 0 24px 54px rgba(31, 64, 68, 0.18);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms ease, transform 200ms ease, visibility 200ms;
  z-index: 120;
}
.dropdown a {
  display: block;
  padding: 11px 14px;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--teal-dark);
}
.dropdown a span { display: block; font-weight: 600; font-size: 0.78rem; color: var(--muted); margin-top: 1px; }
.dropdown a:hover { background: rgba(167, 184, 165, 0.22); }
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.has-dropdown:hover .caret { transform: rotate(180deg); }

/* ---- Interior page hero ---- */
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 132px 0 72px;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 14px;
  background: linear-gradient(90deg, var(--teal), var(--sage), var(--gold));
  opacity: 0.72;
  z-index: 1;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(247,243,238,0.72) 0%, rgba(247,243,238,0.86) 55%, var(--cream) 100%),
    linear-gradient(100deg, rgba(21,63,68,0.10), rgba(247,243,238,0));
}
.page-hero-inner { max-width: 760px; }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); }
.page-hero .hero-lede { margin-top: 22px; }
.page-hero .credential-strip { margin-top: 26px; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
}
.breadcrumb a { color: var(--teal); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span.sep { opacity: 0.5; }

/* ---- Highlight stats row ---- */
.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 18px;
  margin-top: 6px;
}
.stat {
  padding: 26px 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 253, 249, 0.72);
  border: 1px solid rgba(31, 93, 99, 0.12);
  box-shadow: 0 14px 34px rgba(35, 56, 54, 0.07);
}
.stat strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  line-height: 1;
  color: var(--teal-dark);
  letter-spacing: -0.03em;
}
.stat span { display: block; margin-top: 8px; color: var(--muted); font-size: 0.92rem; font-weight: 600; }

/* ---- Package cards ---- */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
  align-items: stretch;
}
.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 30px 30px;
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 249, 0.82);
  border: 1px solid rgba(31, 93, 99, 0.14);
  box-shadow: 0 16px 38px rgba(35, 56, 54, 0.08);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.package-card:hover { transform: translateY(-5px); box-shadow: 0 26px 60px rgba(31, 64, 68, 0.16); }
.package-card::after {
  content: "";
  position: absolute;
  right: -50px; bottom: -60px;
  width: 160px; height: 160px;
  border-radius: 999px;
  background: rgba(167, 184, 165, 0.16);
}
.package-card.featured {
  background: linear-gradient(150deg, rgba(31, 93, 99, 0.96), rgba(21, 63, 68, 0.98));
  border-color: transparent;
}
.package-card.featured::after { background: rgba(200, 169, 107, 0.22); }
.package-card.featured h3,
.package-card.featured .package-sessions,
.package-card.featured .package-desc,
.package-card.featured .package-features li { color: var(--cream); }
.package-card.featured .package-features li::before { color: var(--gold); }
.package-card.featured .package-hours { color: var(--sage-light); }
.package-badge {
  position: absolute;
  top: 18px; right: 18px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: var(--gold);
}
.package-eyebrow {
  font-size: 0.74rem; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.package-card.featured .package-eyebrow { color: var(--sage-light); }
.package-card h3 { font-size: 1.4rem; margin-bottom: 4px; }
.package-sessions {
  display: flex; align-items: baseline; gap: 8px;
  margin-top: 14px;
  font-family: "Playfair Display", serif;
  color: var(--teal-dark);
}
.package-sessions b { font-size: 2.5rem; line-height: 1; letter-spacing: -0.03em; font-weight: 700; }
.package-sessions em { font-style: normal; font-size: 0.96rem; font-weight: 600; font-family: "Inter", sans-serif; color: var(--muted); }
.package-card.featured .package-sessions em { color: var(--sage-light); }
.package-hours {
  margin-top: 4px; font-size: 0.86rem; font-weight: 700; color: var(--teal);
}
.package-desc { margin: 16px 0 18px; color: var(--muted); font-size: 0.96rem; position: relative; }
.package-features {
  list-style: none; padding: 0; margin: 0 0 24px;
  display: grid; gap: 9px; position: relative;
}
.package-features li {
  position: relative; padding-left: 26px;
  font-size: 0.92rem; color: var(--charcoal); font-weight: 500;
}
.package-features li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--teal); font-weight: 800;
}
.package-card .button { margin-top: auto; position: relative; }
.package-card.featured .button-primary { color: var(--teal-dark); background: var(--cream); box-shadow: none; }

/* ---- Comparison table ---- */
.compare-wrap { overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--line); box-shadow: 0 14px 34px rgba(35,56,54,0.07); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 640px; background: rgba(255,253,249,0.85); }
.compare-table th, .compare-table td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--line); font-size: 0.93rem; }
.compare-table thead th { background: rgba(31,93,99,0.08); color: var(--teal-dark); font-weight: 800; letter-spacing: -0.01em; }
.compare-table tbody th { font-weight: 700; color: var(--teal-dark); }
.compare-table td { color: var(--muted); }
.compare-table tr:last-child td, .compare-table tr:last-child th { border-bottom: none; }
.compare-table .yes { color: var(--teal); font-weight: 800; }

/* ---- Subject grid (tutoring) ---- */
.subject-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.subject-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 249, 0.80);
  border: 1px solid rgba(31, 93, 99, 0.13);
  box-shadow: 0 14px 34px rgba(35, 56, 54, 0.07);
}
.subject-card h3 { display: flex; align-items: center; gap: 10px; font-size: 1.2rem; margin-bottom: 16px; }
.subject-card h3 .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); flex: none; }
.subject-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.subject-pill {
  padding: 6px 13px; border-radius: 999px;
  background: rgba(167, 184, 165, 0.22);
  border: 1px solid rgba(31, 93, 99, 0.12);
  color: var(--teal-dark); font-size: 0.84rem; font-weight: 700;
}

/* ---- Generic two-column prose feature ---- */
.prose-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.prose-split p { color: var(--muted); }
.checklist { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px; }
.checklist li { position: relative; padding-left: 30px; color: var(--charcoal); }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 20px; height: 20px; border-radius: 50%;
  display: grid; place-items: center; font-size: 0.7rem; font-weight: 900;
  color: var(--cream); background: var(--teal);
}

/* ---- FAQ accordion ---- */
.faq { display: grid; gap: 12px; max-width: 860px; margin: 0 auto; }
.faq-item {
  border-radius: var(--radius-md);
  background: rgba(255, 253, 249, 0.80);
  border: 1px solid rgba(31, 93, 99, 0.13);
  overflow: hidden;
}
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 24px;
  font-weight: 800; color: var(--teal-dark); font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus { flex: none; width: 24px; height: 24px; position: relative; transition: transform 240ms ease; }
.faq-item summary .plus::before,
.faq-item summary .plus::after {
  content: ""; position: absolute; inset: 0; margin: auto;
  background: var(--teal); border-radius: 2px;
}
.faq-item summary .plus::before { width: 14px; height: 2px; }
.faq-item summary .plus::after { width: 2px; height: 14px; }
.faq-item[open] summary .plus { transform: rotate(135deg); }
.faq-item .faq-body { padding: 0 24px 22px; color: var(--muted); }
.faq-item .faq-body p { margin: 0; }

/* ---- Callout band ---- */
.callout {
  display: grid; grid-template-columns: 1.4fr auto; gap: 28px; align-items: center;
  padding: 40px 44px; border-radius: 34px; color: var(--cream);
  background:
    linear-gradient(135deg, rgba(21, 63, 68, 0.95), rgba(31, 93, 99, 0.90)),
    url("images/nature-rainier-aerial.jpg") center / cover;
  box-shadow: var(--shadow);
}
.callout h2 { color: var(--cream); font-size: clamp(1.8rem, 3vw, 2.6rem); }
.callout p { margin: 12px 0 0; color: rgba(247, 243, 238, 0.85); max-width: 560px; }
.callout .button-primary { color: var(--teal-dark); background: var(--cream); box-shadow: none; }

/* ---- Scroll reveal ---- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 90ms; }
.reveal[data-delay="2"] { transition-delay: 180ms; }
.reveal[data-delay="3"] { transition-delay: 270ms; }
.reveal[data-delay="4"] { transition-delay: 360ms; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---- Responsive ---- */
@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px 20px 20px;
    background: rgba(247, 243, 238, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px rgba(31, 64, 68, 0.12);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links > a, .dropdown-trigger { padding: 12px 8px; border-radius: 12px; }
  .has-dropdown { width: 100%; }
  .dropdown {
    position: static; transform: none; opacity: 1; visibility: visible;
    box-shadow: none; border: none; background: rgba(167,184,165,0.12);
    min-width: 0; margin: 2px 0 6px; display: none; backdrop-filter: none;
  }
  .has-dropdown.open .dropdown { display: block; }
  .nav-cta { text-align: center; }
  .prose-split { grid-template-columns: 1fr; gap: 28px; }
  .callout { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .page-hero { padding: 112px 0 56px; }
  .package-card { padding: 26px 22px; }
}

/* ---- Brand logo (replaces text wordmark) ---- */
.brand-logo { height: 48px; width: auto; display: block; }
.site-header .brand { gap: 0; }
@media (max-width: 640px) { .brand-logo { height: 40px; } }

.footer-brand { gap: 0; }
.footer-logo-chip {
  display: inline-flex;
  padding: 12px 18px;
  border-radius: 16px;
  background: var(--cream);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}
.footer-logo-chip img { height: 40px; width: auto; display: block; }

/* ---- Package price ---- */
.package-price {
  margin-top: 6px;
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  color: var(--teal-dark);
  letter-spacing: -0.02em;
}
.package-price .per { font-family: "Inter", sans-serif; font-size: 0.8rem; font-weight: 700; color: var(--muted); }
.package-card.featured .package-price { color: var(--cream); }
.package-card.featured .package-price .per { color: var(--sage-light); }
.package-note { text-align: center; margin-top: 22px; color: var(--muted); font-size: 0.86rem; }

/* ---- Tagline under hero on home ---- */
.brand-tagline {
  margin: 6px 0 0;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---- Home: offerings grid (4 linked cards) ---- */
.offerings-grid { grid-template-columns: repeat(auto-fit, minmax(248px, 1fr)); }
.card-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.card-link:hover { transform: translateY(-6px); box-shadow: 0 26px 60px rgba(31, 64, 68, 0.16); }
.card-more {
  position: relative;
  margin-top: auto;
  padding-top: 18px;
  color: var(--teal);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}
.accent-card .card-more { color: var(--gold); }
.card-link:hover .card-more { text-decoration: underline; }

/* =====================================================================
   BLOG + ABOUT PAGE COMPONENTS
   ===================================================================== */

/* ---- Blog index ---- */
.post-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.post-card {
  display: flex; flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 253, 249, 0.86);
  border: 1px solid rgba(31, 93, 99, 0.13);
  box-shadow: 0 16px 38px rgba(35, 56, 54, 0.08);
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.post-card:hover { transform: translateY(-6px); box-shadow: 0 26px 60px rgba(31, 64, 68, 0.16); }
.post-card .post-thumb { height: 188px; overflow: hidden; }
.post-card .post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-card .post-inner { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.post-tag {
  align-self: flex-start;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.post-card h3 { font-family: "Playfair Display", serif; font-size: 1.4rem; line-height: 1.18; color: var(--teal-dark); }
.post-card p { color: var(--muted); margin: 12px 0 0; font-size: 0.96rem; }
.post-card .read-more { margin-top: auto; padding-top: 18px; color: var(--teal); font-weight: 800; font-size: 0.9rem; }
.post-card:hover .read-more { text-decoration: underline; }

/* ---- Blog post body ---- */
.post-body { max-width: 740px; margin: 0 auto; }
.post-body p { color: #3c3b36; font-size: 1.08rem; line-height: 1.75; margin: 0 0 22px; }
.post-body h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin: 44px 0 16px; }
.post-body h3 { font-size: 1.2rem; color: var(--teal-dark); margin: 30px 0 10px; }
.post-body ul, .post-body ol { color: #3c3b36; font-size: 1.06rem; line-height: 1.7; padding-left: 22px; margin: 0 0 22px; }
.post-body li { margin-bottom: 8px; }
.post-body strong { color: var(--teal-dark); }
.post-body a { color: var(--teal); text-decoration: underline; }
.post-meta-row {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
  color: var(--muted); font-size: 0.9rem; font-weight: 600; margin-top: 14px;
}
.post-meta-row .post-tag { margin: 0; }
.tip-box {
  margin: 0 0 24px; padding: 22px 24px;
  border-radius: var(--radius-md);
  background: rgba(167, 184, 165, 0.18);
  border: 1px solid rgba(31, 93, 99, 0.14);
  border-left: 4px solid var(--teal);
}
.tip-box strong { color: var(--teal-dark); }
.tip-box p:last-child { margin-bottom: 0; }
.author-box {
  display: flex; gap: 20px; align-items: center;
  max-width: 740px; margin: 48px auto 0;
  padding: 26px; border-radius: var(--radius-lg);
  background: rgba(255, 253, 249, 0.82);
  border: 1px solid rgba(31, 93, 99, 0.13);
}
.author-box img { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; object-position: center top; flex: none; }
.author-box h4 { margin: 0 0 4px; color: var(--teal-dark); font-size: 1.05rem; }
.author-box p { margin: 0; color: var(--muted); font-size: 0.92rem; }

/* ---- About page ---- */
.about-hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.about-portrait {
  border-radius: 34px; overflow: hidden;
  border: 1px solid rgba(31, 93, 99, 0.14);
  box-shadow: var(--shadow); background: var(--white);
}
.about-portrait img { width: 100%; height: 520px; object-fit: cover; object-position: center top; }
.bio-lead { font-size: 1.18rem; color: var(--muted); }
.timeline { display: grid; gap: 16px; margin-top: 8px; }
.timeline-item {
  position: relative; padding: 22px 24px 22px 28px;
  border-radius: var(--radius-md);
  background: rgba(255, 253, 249, 0.78);
  border: 1px solid rgba(31, 93, 99, 0.12);
  border-left: 4px solid var(--gold);
}
.timeline-item .yr { font-size: 0.78rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); }
.timeline-item h3 { margin: 6px 0 4px; font-size: 1.12rem; }
.timeline-item p { margin: 0; color: var(--muted); font-size: 0.94rem; }
.research-list { columns: 2; column-gap: 32px; }
.research-list .subject-pill { display: inline-flex; margin: 0 0 8px; }

@media (max-width: 980px) {
  .about-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-portrait img { height: 420px; }
  .research-list { columns: 1; }
}
@media (max-width: 640px) {
  .author-box { flex-direction: column; text-align: center; }
}

/* =====================================================================
   BLOG, ARTICLES & ABOUT PAGE
   ===================================================================== */

/* ---- Blog index ---- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.blog-card {
  display: flex; flex-direction: column; overflow: hidden; text-decoration: none;
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 249, 0.85);
  border: 1px solid rgba(31, 93, 99, 0.13);
  box-shadow: 0 14px 34px rgba(35, 56, 54, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 26px 60px rgba(31, 64, 68, 0.16); }
.blog-card-img { height: 196px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.blog-tag {
  align-self: flex-start; margin-bottom: 14px; padding: 5px 12px; border-radius: 999px;
  background: rgba(167, 184, 165, 0.24); border: 1px solid rgba(31, 93, 99, 0.12);
  color: var(--teal-dark); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
}
.blog-card h3 { font-size: 1.3rem; }
.blog-card p { margin: 12px 0 0; color: var(--muted); font-size: 0.96rem; }
.blog-card .card-more { margin-top: 18px; padding-top: 0; }

/* ---- Article (single post) ---- */
.article { padding: 56px 0 0; }
.article-body { max-width: 760px; margin: 0 auto; }
.article-body > p, .article-body > ul, .article-body > ol, .article-body > blockquote, .article-body > .article-key { margin: 0 0 22px; }
.article-body p, .article-body li { color: var(--charcoal); font-size: 1.07rem; line-height: 1.78; }
.article-body h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin: 46px 0 16px; }
.article-body h3 { font-size: 1.3rem; margin: 30px 0 10px; }
.article-body ul, .article-body ol { padding-left: 24px; display: grid; gap: 10px; }
.article-body strong { color: var(--teal-dark); }
.article-body a { color: var(--teal); text-decoration: underline; font-weight: 600; }
.article-lede { font-size: 1.22rem; line-height: 1.7; color: var(--muted); margin: 0 auto 8px; }
.article-body blockquote {
  margin: 30px 0; padding: 22px 28px; border-left: 4px solid var(--gold);
  background: rgba(255, 253, 249, 0.72); border-radius: 0 18px 18px 0;
  font-family: "Playfair Display", serif; font-size: 1.22rem; line-height: 1.45; color: var(--teal-dark);
}
.article-key {
  padding: 24px 28px; border-radius: 20px;
  background: rgba(31, 93, 99, 0.06); border: 1px solid var(--line);
}
.article-key h3 { margin: 0 0 10px; }
.article-key p:last-child, .article-key ul:last-child { margin-bottom: 0; }
.article-meta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 18px; color: var(--muted); font-size: 0.9rem; font-weight: 700; }
.article-meta span { display: inline-flex; align-items: center; gap: 6px; }
.article-author {
  display: flex; align-items: center; gap: 14px; max-width: 760px; margin: 44px auto 0;
  padding: 22px 26px; border-radius: 22px;
  background: rgba(255, 253, 249, 0.78); border: 1px solid var(--line);
}
.article-author img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; object-position: center top; flex: none; }
.article-author strong { color: var(--teal-dark); display: block; }
.article-author span { color: var(--muted); font-size: 0.92rem; }

/* ---- About page ---- */
.about-hero-grid { display: grid; grid-template-columns: 1fr 0.8fr; gap: 56px; align-items: center; }
.about-portrait {
  border-radius: 34px; overflow: hidden;
  border: 1px solid rgba(31, 93, 99, 0.14); box-shadow: var(--shadow); background: var(--white);
}
.about-portrait img { width: 100%; height: 480px; object-fit: cover; object-position: center top; }
.cred-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.cred-block {
  padding: 26px; border-radius: var(--radius-md);
  background: rgba(255, 253, 249, 0.78); border: 1px solid rgba(31, 93, 99, 0.12);
  box-shadow: 0 14px 34px rgba(35, 56, 54, 0.07);
}
.cred-block h3 { display: flex; align-items: center; gap: 9px; margin-bottom: 12px; }
.cred-block h3 .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); flex: none; }
.cred-block ul { margin: 0; padding-left: 18px; color: var(--muted); display: grid; gap: 7px; font-size: 0.95rem; }
.story-quote {
  max-width: 820px; margin: 0 auto; text-align: center;
  font-family: "Playfair Display", serif; font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.4; color: var(--teal-dark); letter-spacing: -0.02em;
}

@media (max-width: 980px) {
  .about-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-portrait img { height: 420px; }
}

/* ---- Blog post featured image ---- */
.post-feature {
  margin: 0 0 30px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 16px 38px rgba(35, 56, 54, 0.10);
}
.post-feature img { width: 100%; display: block; }

/* ---- Testimonial ---- */
.testimonial {
  max-width: 820px;
  margin: 0 auto 46px;
  padding: 42px 46px 38px;
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 249, 0.92);
  border: 1px solid rgba(31, 93, 99, 0.14);
  box-shadow: var(--shadow);
  text-align: center;
}
.testimonial::before {
  content: "\201C";
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  line-height: 0.5;
  color: var(--gold);
  margin-bottom: 10px;
}
.testimonial blockquote {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.25rem, 2.3vw, 1.65rem);
  line-height: 1.5;
  color: var(--teal-dark);
  letter-spacing: -0.01em;
}
.testimonial figcaption {
  margin-top: 22px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
