:root {
  --muted-rose: #b76e79;
  --dusky-pink: #cb8786;
  --soft-mauve: #c6a4a4;
  --peach-clay: #dea193;
  --blush-light: #f7c5ad;

  --text-main: #f7e7ce;
  --text-soft: #f4e4d4;

  --accent: #b76e79;
  --accent-border: rgba(185, 115, 140, 0.42);

  --nav-bg: rgba(248, 230, 220, 0.14);
  --footer-line: rgba(185, 115, 140, 0.18);
  --card-bg: rgba(255, 245, 240, 0.14);

  --shadow-soft: 0 0 18px rgba(248, 236, 217, 0.22);

  --font-display: "Fraunces", serif;
  --font-body: "Public Sans", sans-serif;
  --font-nav: "DM Sans", sans-serif;

  --max-width: 1200px;
  --radius-pill: 999px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --header: "Fraunces", serif;
}

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

html,
body {
  min-height: 100%;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: linear-gradient(
    to bottom,
    var(--muted-rose) 13%,
    var(--dusky-pink) 33%,
    var(--peach-clay) 55%,
    var(--blush-light) 75%,
    var(--text-main) 92%
  );
  color: var(--text-main);
}

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

.site-shell {
  min-height: 100vh;
  padding: 0.35rem;
}

.page {
  width: min(100%, var(--max-width));
  min-height: calc(100vh - 1.5rem);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

/* ------------------------------
   Top Nav
------------------------------ */

.top-nav-wrap {
  padding-top: 0.25rem;
}

.top-nav {
  width: min(100%, 1100px);
  margin: 0 auto;
  padding: 1rem 1.75rem;
  background: var(--nav-bg);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;

  position: relative;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--text-main);
  text-decoration: none;
  text-shadow: var(--shadow-soft);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3rem;
  margin: 0;
  padding: 0;
  flex: 1;
}

.nav-links li {
  flex: 0 0 auto;
}

.nav-links a {
  font-family: var(--font-nav);
  font-size: 0.95rem;
  color: var(--text-main);
  text-decoration: none;
  white-space: nowrap;
}

.rollover-nav {
    color: var(--text-soft);
    text-decoration: none;
    transition: color 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
}

.rollover-nav:hover {
    color: #fff7ec;
    text-shadow:
        0 0 5px rgba(255, 247, 236, 0.9),
        0 0 12px rgba(255, 240, 214, 0.65),
        0 0 20px rgba(255, 232, 196, 0.35);
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(247, 231, 206, 0.28);
  background: transparent;
  color: var(--text-main);
  font-family: var(--font-nav);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.6rem 1.15rem;
  border-radius: 999px;
  cursor: pointer;
  flex-shrink: 0;
}

body.quiet-gathering-body .qg-toggle {
  all: unset;
  display: block;
  position: relative;
  width: 56px;
  height: 30px;
  border-radius: 999px;
  cursor: pointer;
  background-color: rgba(70, 40, 42, 0.7);
}


/* ------------------------------
   Hero
------------------------------ */

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1rem 5rem;
}

.hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(4rem, 12vw, 7.25rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--text-main);
  margin-bottom: 1.5rem;
}

.hero-tagline {
  margin: 0 0 3.5rem;
  font-size: clamp(1rem, 2.1vw, 1.5rem);
  font-style: italic;
  color: var(--text-main);
  opacity: 0.96;
}

/* ------------------------------
   Feature Buttons
------------------------------ */

.feature-links {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem 4rem;
}

.feature-card {
  min-width: 130px;
  min-height: 58px;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-md);
  background: var(--card-bg);
  color: var(--accent);
  font-size: 0.95rem;
  line-height: 1.15;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 245, 240, 0.2);
  border-color: rgba(185, 115, 140, 0.65);
}

/* ------------------------------
   Footer
------------------------------ */

.site-footer {
  padding: 2rem 3rem;
  background: transparent;
}

.footer-line {
  width: 100%;
  height: 1px;
  background-color: rgba(176, 111, 134, 0.25);
  margin-bottom: 1.5rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-nav ul {
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-nav li {
    margin: 0;
    padding: 0;
}

.footer-nav li::marker {
    content: "";
}

.footer-nav a {
text-decoration: none;
color: var(--muted-rose);
font-size: 0.95rem;
}

.footer-copy {
    margin: 0;
    color: var(--muted-rose);
    font-size: 0.75rem;
}

.rollover-foot {
    color: #2F3A4A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.rollover-foot:hover {
    color: #2F3A4A;
}


/* ------------------------------
   Tablet
------------------------------ */

@media (max-width: 900px) {
  .top-nav {
    width: 100%;
  }

  .top-nav ul {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .top-nav .brand,
  .top-nav li {
    text-align: center;
  }

  .hero {
    padding-top: 3rem;
    padding-bottom: 4rem;
  }

  .feature-links {
    gap: 1.25rem;
  }
}

/* ------------------------------
   Mobile
------------------------------ */

@media (max-width: 768px) {
  .site-shell {
    padding: 0.35rem;
  }

  .top-nav {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    position: relative;
    gap: 0.75rem 1rem;
  }

  .top-nav-wrap,
  .top-nav {
  position: relative;
  z-index: 1000;
}

.nav-links.is-open {
  z-index: 1002;
}

  .brand {
    font-size: 1.3rem;
  }

  .menu-toggle {
    display: block;
    border: 1px solid rgba(247, 231, 206, 0.28);
    background: transparent;
    color: var(--text-main);
    font-family: var(--font-nav);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.6rem 1.15rem;
    border-radius: 999px;
    cursor: pointer;
    z-index: 20;
  }

  .nav-links {
    display: none;
  }

body.menu-open::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(78, 48, 58, 0.18);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  z-index: 900;
}

  
.nav-links.is-open {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: calc(100% + 1.7rem);
  right: 1rem;
  width: min(325px, calc(100vw - 2rem));

  background: rgba(248, 230, 220, 0.14);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);

  border: 1px solid rgba(247, 231, 206, 0.38);
  box-shadow: 
    0 12px 32px rgba(78, 48, 58, 0.18),
    inset 0 0 24px rgba(247, 231, 206, 0.08);

  padding: 1.4rem 1.5rem;
  border-radius: 1.5rem;
  gap: 1.1rem;
  z-index: 1002;
}

.nav-links.is-open li {
  width: 100%;
  text-align: center;
}
  

.nav-links.is-open a {
  display: inline-block;
  width: auto;
  transform: translateX(-25%);
  font-size: 1rem;
  line-height: 1.35;
  color: var(--text-main);
  text-shadow: 0 2px 10px rgba(45, 28, 36, 0.45);
  transition: color 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
}

.nav-links.is-open a:hover {
  color: #fff7ec;
  text-shadow:
    0 0 5px rgba(255, 247, 236, 0.9),
    0 0 12px rgba(255, 240, 214, 0.65),
    0 0 20px rgba(255, 232, 196, 0.35);
}

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .footer-nav ul {
    justify-content: center;
    gap: 1rem 1.5rem;
  }

  .footer-copy {
    font-size: 0.7rem;
  }
}

/* ------------------------------
   Quiet Gathering
------------------------------ */

body.quiet-gathering-body {
  margin: 0;
  background: none;
  overflow: hidden;
}

/* Outer shell stays full width */
body.quiet-gathering-body .site-shell {
  min-height: 100vh;
  width: 100%;
  max-width: none;
}

/* Page = nav + stage */
body.quiet-gathering-body .page {
  width: 100%;
  max-width: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 0.7rem);
}

/* Stage under nav */
body.quiet-gathering-body .page-shell,
body.quiet-gathering-body .quiet-gathering-layout {
  flex: 1 1 auto;
  min-height: 0 !important;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
  filter: none !important;
  backdrop-filter: none !important;
}

/* Inner wrappers */
body.quiet-gathering-body .quiet-gathering-section,
body.quiet-gathering-body .quiet-gathering-frame,
body.quiet-gathering-body .quiet-gathering-inner,
body.quiet-gathering-body #root,
body.quiet-gathering-body #root > div {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  min-height: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
  filter: none !important;
  backdrop-filter: none !important;
}

/* Let React fill the available stage without forcing another viewport */
body.quiet-gathering-body #root,
body.quiet-gathering-body #root > div {
  height: 100%;
}

/* Background image system */
body.quiet-gathering-body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url('assets/qg_welcome.png') center / cover no-repeat;
  z-index: -2;
  transition: background 0.8s ease;
}

body.quiet-gathering-body.sky-entered::before {
  background: url('assets/qg_yourlight.png') center / cover no-repeat;
}

body.quiet-gathering-body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  z-index: -1;
  transition: background 0.8s ease;
}

body.quiet-gathering-body.sky-entered::after {
  background: rgba(12, 7, 13, 0.58);
}

/* Prevent shared page-state dimming */
body.quiet-gathering-body .current-page {
  opacity: 1 !important;
}

/* Hide footer only here */
body.quiet-gathering-body .site-footer {
  display: none !important;
}

/* Toggle knob */
body.quiet-gathering-body .qg-toggle-knob {
  background: #f7e7ce !important;
}

/* Info screen */
body.quiet-gathering-body .qg-info-screen {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  background: transparent !important;
}

body.quiet-gathering-body .qg-info-content {
  width: 100%;
  max-width: 48rem;
  text-align: center;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  transform: translateY(-6rem);
}

/* Exit screen */
body.quiet-gathering-body .qg-exit-content {
  box-sizing: border-box;
}

/* Constellation screen */
body.quiet-gathering-body .qg-constellation-screen {
  position: relative;
  width: 100%;
  min-height: calc(100svh - 7.5rem);
  overflow: hidden;
}

@media (max-width: 768px) {
  body.quiet-gathering-body .qg-constellation-screen {
    min-height: calc(100svh - 8.5rem);
  }

  /* Keep Quiet Gathering nav above React content */
body.quiet-gathering-body .top-nav-wrap {
  position: relative;
  z-index: 1000;
}

body.quiet-gathering-body .top-nav {
  position: relative;
  z-index: 1001;
}

body.quiet-gathering-body .nav-links.is-open {
  z-index: 1002;
}

body.quiet-gathering-body .page-shell,
body.quiet-gathering-body .quiet-gathering-section,
body.quiet-gathering-body .quiet-gathering-frame,
body.quiet-gathering-body .quiet-gathering-inner,
body.quiet-gathering-body #root {
  position: relative;
  z-index: 1;
}

/* Mobile menu veil for Quiet Gathering */
body.quiet-gathering-body.menu-open .site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(45, 32, 48, 0.24);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: 900;
  pointer-events: none;
}
}

/* ------------------------------
   Words to Rest In
------------------------------ */

.words-page {
  background: url('assets/sl-words.png') center / cover no-repeat;
  font-family: "Public Sans", sans-serif;
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.words-page .site-shell {
  min-height: 100vh;
}

.words-page .page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.words-page main {
  flex: 1;
  position: relative;
  min-height: 72vh;
}

.words-page .site-footer {
  margin-top: auto;
}

/* Entry state */

.words-entry {
  position: fixed;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  background: rgba(34, 43, 58, 0.22);
  animation: entryVeil 4.8s ease-in-out forwards;
}

.words-entry p {
  color: rgba(246, 238, 218, 0.82);
  text-shadow: 0 0 10px rgba(246, 238, 218, 0.22);
  font-family: "Fraunces", serif;
  font-size: clamp(1.15rem, 2vw, 1.8rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  opacity: 0;
  animation: entryText 4.2s ease-in-out forwards;
  filter: drop-shadow(0 0 14px rgba(246, 238, 218, 0.16));
}

@keyframes entryVeil {
  0% {
    opacity: 1;
  }

  62% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes entryText {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }

  24% {
    opacity: 0.82;
    transform: translateY(0);
  }

  68% {
    opacity: 0.82;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-8px);
  }
}

/* Animation controls */

.words-inner {
  padding: 1rem 2rem 3rem;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
  line-height: 1.4rem;
}

#word-container {
  position: fixed;
  top: 150px;
  left: 7vw;
  right: 7vw;
  bottom: 145px;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.floating-word {
  position: absolute;
  color: rgba(246, 238, 218, 0.88);
  text-shadow: 0 0 10px rgba(246, 238, 218, 0.22);
  font-family: "Fraunces", serif;
  font-size: clamp(1.05rem, 1.7vw, 1.65rem);
  font-weight: 400;
  line-height: 1.35;
  max-width: 360px;
  opacity: 0;
  animation: wordDrift 8.5s ease-in-out forwards;
  text-wrap: balance;
  filter: drop-shadow(0 0 12px rgba(246, 238, 218, 0.18));
}

@keyframes wordDrift {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }

  20% {
    opacity: 0.88;
    transform: translateY(0) scale(1);
  }

  68% {
    opacity: 0.88;
    transform: translateY(-4px) scale(1);
  }

  100% {
    opacity: 0;
    transform: translateY(-16px) scale(0.98);
  }
}

/* Keep navigation and footer above floating words */

.words-page .top-nav-wrap,
.words-page .site-footer {
  position: relative;
  z-index: 5;
}

.words-page .site-footer p,
.words-page .site-footer a {
  color: var(--text-main);
}

.words-page .footer-line {
  background-color: var(--text-main);
  opacity: 0.3;
}

/* Mobile Break */

@media (max-width: 900px) {
  .words-inner {
    padding: 2.5rem 1.5rem 4rem;
  }

  .words-inner .title {
    font-size: 24pt;
    margin-bottom: 2rem;
  }

  .words-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  #word-container {
    top: 135px;
    left: 6vw;
    right: 6vw;
    bottom: 150px;
  }

  .floating-word {
    font-size: clamp(1rem, 3vw, 1.45rem);
    max-width: 300px;
  }
}

@media (max-width: 600px) {
  .words-inner {
    padding: 2rem 1.25rem 3.5rem;
  }

  .words-inner .title {
    font-size: 20pt;
    margin-bottom: 1.5rem;
  }

  #word-container {
    top: 125px;
    left: 7vw;
    right: 7vw;
    bottom: 145px;
  }

  .floating-word {
    font-size: clamp(0.95rem, 4.5vw, 1.25rem);
    max-width: 260px;
  }

  .words-entry p {
    font-size: clamp(1rem, 5vw, 1.45rem);
  }
}

/* ------------------------------
   About
------------------------------ */
.about-page {
background: url('assets/sl_footermenu.png') center / cover no-repeat;
font-family: "Public Sans", sans-serif;
width: 100%;
}

.about-inner { 
  padding: 1rem 2rem 3rem;
  width: 100%;
  max-width:1100px;
  margin: 0 auto;
  text-align: left;
  line-height: 1.4rem;
  
}

.about-inner .title {
  font-family: var(--font-display);
  font-size:36pt;
  text-align: center;
  margin-bottom: 3rem;
}

.about-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

.about-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-column p {
  text-align: left;
  margin: 0;
  line-height: 1.6;
}

.about p:last-child {
  margin-top: 1rem;
  font-weight: 500;
}

.about-page .site-footer p, 
.about-page .site-footer a {
color: var(--text-main);
}

.about-page .footer-line{
  background-color: var(--text-main); /*lighter tone*/
  opacity: 0.3;
}

/* Mobile Break */


@media (max-width: 900px) {
  .about-inner {
    padding: 2.5rem 1.5rem 4rem;
  }

  .about-inner .title {
    font-size: 24pt;
    margin-bottom: 2rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-column {
    gap: 1.25rem;
  }

  .about-column p {
    font-size: 1rem;
    line-height: 1.7;
  }
}

@media (max-width: 600px) {
  .about-inner {
    padding: 2rem 1.25rem 3.5rem;
  }

  .about-inner .title {
    font-size: 20pt;
    margin-bottom: 1.5rem;
  }

  .about-column p {
    font-size: 0.98rem;
    line-height: 1.65;
  }
}

/* ------------------------------
   Approach
------------------------------ */
.approach-page {
background: url('assets/sl_footermenu.png') center / cover no-repeat;
font-family: "Public Sans", sans-serif;
width: 100%;
}

.approach-inner { 
  padding: 1rem 2rem 3rem;
  width: 100%;
  max-width:1100px;
  margin: 0 auto;
  text-align: left;
  line-height: 1.4rem;
  
}

.approach-inner .title {
  font-family: var(--font-display);
  font-size:36pt;
  text-align: center;
  margin-bottom: 3rem;
}

.approach-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

.approach-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.approach-column p {
  text-align: left;
  margin: 0;
  line-height: 1.6;
}

.approach p:last-child {
  margin-top: 1rem;
  font-weight: 500;
}

.approach-page .site-footer p, 
.approach-page .site-footer a {
color: var(--text-main);
}

.approach-page .footer-line{
  background-color: var(--text-main); /*lighter tone*/
  opacity: 0.3;
}

/* Mobile Break */

@media (max-width: 900px) {
  .approach-inner {
    padding: 2.5rem 1.5rem 4rem;
  }

  .approach-inner .title {
    font-size: 24pt;
    margin-bottom: 2rem;
  }

  .approach-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .approach-column {
    gap: 1.25rem;
  }

  .approach-column p {
    font-size: 1rem;
    line-height: 1.7;
  }
}


@media (max-width: 600px) {
  .approach-inner {
    padding: 2rem 1.25rem 3.5rem;
  }

  .approach-inner .title {
    font-size: 20pt;
    margin-bottom: 1.5rem;
  }

  .approach-column p {
    font-size: 0.98rem;
    line-height: 1.65;
  }
}

  /* ------------------------------
   Accessibility
------------------------------ */
.accessibility-page {
background: url('assets/sl_footermenu.png') center / cover no-repeat;
font-family: "Public Sans", sans-serif;
width: 100%;
}

.accessibility-inner { 
  padding: 1rem 2rem 3rem;
  width: 100%;
  max-width:1100px;
  margin: 0 auto;
  text-align: left;
  line-height: 1.4rem;
  
}

.accessibility-inner .title {
  font-family: var(--font-display);
  font-size:36pt;
  text-align: center;
  margin-bottom: 3rem;
}

.accessibility-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

.accessibility-column {
  gap: 0;
}

.accessibility-column p {
  margin-bottom: 1.5rem;
}

.accessibility-column p:has(+ ul) {
  margin-bottom: 0.5rem;
}

.accessibility-column ul {
  margin: 0 0 1.5rem;
  padding-left: 1.25rem;
}

.accessibility-column li {
  margin-bottom: 0.4rem;
}

.accessibility-page .site-footer p, 
.accessibility-page .site-footer a {
color: var(--text-main);
}

.accessibility-page .footer-line{
  background-color: var(--text-main); /*lighter tone*/
  opacity: 0.3;
}

/* Mobile Break */

@media (max-width: 900px) {
  .accessibility-inner {
    padding: 2.5rem 1.5rem 4rem;
  }

  .accessibility-inner .title {
    font-size: 24pt;
    margin-bottom: 2rem;
  }

  .accessibility-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .accessibility-column {
    gap: 1.25rem;
  }

  .accessibility-column p {
    font-size: 1rem;
    line-height: 1.7;
  }
}


@media (max-width: 600px) {
  .accessibility-inner {
    padding: 2rem 1.25rem 3.5rem;
  }

  .accessibility-inner .title {
    font-size: 20pt;
    margin-bottom: 1.5rem;
  }

  .accessibility-column p {
    font-size: 0.98rem;
    line-height: 1.65;
  }
}