/* =========================================================
   Grow Soul Consultants — Editorial premium theme
   Deep navy · ivory · brass. Fraunces serif + Manrope sans.
   ========================================================= */

:root {
  --navy-900: #0A1A36;
  --navy-800: #0B1E3F;
  --navy-700: #14294F;
  --navy-600: #1E345C;
  --ivory:    #F4EDDF;
  --ivory-2:  #EFE7D4;
  --parchment:#EAE0C9;
  --paper:    #FBF8F1;
  --brass:    #C29A5B;
  --brass-2:  #B9863F;
  --ink:      #0A1A36;
  --muted:    #5E6B82;
  --line:     rgba(10,26,54,0.14);
  --line-light: rgba(244,237,223,0.18);
  --shadow:   0 30px 60px -30px rgba(10,26,54,0.35);

  --f-serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --f-sans:  'Manrope', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-sans);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  font-size: 16.5px;
  line-height: 1.65;
  overflow-x: hidden;
}
::selection { background: var(--brass); color: var(--navy-900); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s ease, opacity .25s ease; }
a:hover { color: var(--brass-2); }

.container-xxl { max-width: 1280px; padding-inline: 28px; margin-inline: auto; }
@media (max-width: 640px) { .container-xxl { padding-inline: 20px; } }

/* =========================================================
   NAVIGATION
   ========================================================= */
.gs-nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  padding: 20px 0;
  transition: background .35s ease, padding .3s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.gs-nav.is-scrolled {
  background: rgba(251, 248, 241, 0.86);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  padding: 12px 0;
  border-bottom-color: var(--line);
}

.gs-brand { display: inline-flex; align-items: center; gap: 14px; }
.gs-brand__mark {
  width: 40px; height: 40px; display: grid; place-items: center;
  background: var(--navy-900); color: var(--ivory);
  font-family: var(--f-serif); font-weight: 600;
  border-radius: 50%; font-size: 15px; letter-spacing: .04em;
}
.gs-brand__mark--light { background: var(--ivory); color: var(--navy-900); }
.gs-brand__name {
  font-family: var(--f-serif); font-size: 20px; font-weight: 500;
  letter-spacing: -.01em; color: var(--ivory);
  transition: color .3s ease;
}
.gs-nav.is-scrolled .gs-brand__name { color: var(--navy-900); }
.gs-brand__name em { font-style: italic; color: var(--brass); font-weight: 400; }
.gs-nav.is-scrolled .gs-brand__name em { color: var(--brass-2); }

.gs-nav__links {
  display: flex; align-items: center; gap: 34px;
  list-style: none; margin: 0; padding: 0;
}
.gs-nav__links a {
  font-size: 14px; font-weight: 500; color: var(--ivory);
  letter-spacing: .02em; position: relative; padding: 6px 0;
  transition: color .3s ease;
}
.gs-nav.is-scrolled .gs-nav__links a { color: var(--navy-900); }
.gs-nav__links a:not(.gs-nav__cta)::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  height: 1px; width: 0; background: var(--brass);
  transition: width .3s ease;
}
.gs-nav__links a:not(.gs-nav__cta):hover { color: var(--brass); }
.gs-nav__links a:not(.gs-nav__cta):hover::after { width: 100%; }
.gs-nav__cta {
  background: var(--ivory); color: var(--navy-900) !important;
  padding: 10px 20px; border-radius: 999px;
  font-size: 13px; letter-spacing: .04em;
}
.gs-nav__cta:hover { background: var(--brass); color: var(--navy-900) !important; }
.gs-nav.is-scrolled .gs-nav__cta { background: var(--navy-900); color: var(--ivory) !important; }
.gs-nav.is-scrolled .gs-nav__cta:hover { background: var(--brass-2); color: var(--navy-900) !important; }

.gs-nav__toggle {
  display: none; width: 40px; height: 40px; background: transparent;
  border: none; padding: 8px; cursor: pointer;
}
.gs-nav__toggle span {
  display: block; height: 2px; background: var(--ivory);
  margin: 5px 0; transition: transform .3s ease, opacity .3s ease, background .3s ease;
}
.gs-nav.is-scrolled .gs-nav__toggle span { background: var(--navy-900); }
.gs-nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.gs-nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.gs-nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  .gs-nav__toggle { display: block; }
  .gs-nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 6px;
    background: var(--paper); border-top: 1px solid var(--line);
    padding: 22px 28px 28px;
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
  }
  .gs-nav__links.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .gs-nav__links li { width: 100%; }
  .gs-nav__links a { display: block; padding: 12px 0; font-size: 16px; width: 100%; }
  .gs-nav__cta { display: inline-block; margin-top: 8px; }
}

/* =========================================================
   HERO
   ========================================================= */
.gs-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1200px 700px at 15% 0%, #14294F 0%, transparent 55%),
    radial-gradient(900px 700px at 100% 20%, #1E345C 0%, transparent 60%),
    linear-gradient(180deg, #0A1A36 0%, #0B1E3F 100%);
  color: var(--ivory);
  padding: 180px 0 120px;
}
.gs-hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(244,237,223,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,237,223,0.045) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 85%);
  pointer-events: none;
}
.gs-hero__noise {
  position: absolute; inset: 0; opacity: .06; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.7'/></svg>");
}
.gs-hero__inner { position: relative; z-index: 2; }

.gs-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  text-transform: uppercase; letter-spacing: .28em;
  font-size: 12px; font-weight: 600; color: var(--brass);
  margin: 0 0 22px;
}
.gs-eyebrow::before {
  content: ''; width: 26px; height: 1px; background: var(--brass); display: inline-block;
}
.gs-eyebrow--light { color: var(--brass); }

.gs-hero__headline {
  font-family: var(--f-serif); font-weight: 400;
  font-size: clamp(38px, 6vw, 82px);
  line-height: 1.02; letter-spacing: -0.02em;
  color: var(--ivory); max-width: 18ch; margin: 0 0 30px;
}
.gs-hero__accent {
  display: block; font-style: italic; font-weight: 300;
  color: var(--brass); position: relative;
}
.gs-hero__accent::after {
  content: ''; display: block; width: 120px; height: 1px;
  background: linear-gradient(90deg, var(--brass), transparent);
  margin-top: 24px;
}
.gs-hero__sub {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.7; color: rgba(244,237,223,0.78);
  max-width: 62ch; margin: 0 0 42px;
}

.gs-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 90px; }

.gs-hero__stats {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px; padding-top: 40px;
  border-top: 1px solid var(--line-light);
}
@media (max-width: 780px) { .gs-hero__stats { grid-template-columns: 1fr; gap: 26px; } }

.gs-stat__num {
  font-family: var(--f-serif); font-weight: 300;
  font-size: clamp(42px, 5vw, 66px); line-height: 1;
  color: var(--ivory); letter-spacing: -.02em;
}
.gs-stat__num span { color: var(--brass); font-weight: 300; }
.gs-stat__label {
  margin-top: 10px; font-size: 13px; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(244,237,223,0.65);
}

/* =========================================================
   BUTTONS
   ========================================================= */
.gs-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px; border-radius: 999px;
  font-family: var(--f-sans); font-size: 14px; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), background .3s, color .3s, border-color .3s, box-shadow .3s;
}
.gs-btn i { transition: transform .35s ease; }
.gs-btn:hover i { transform: translateX(4px); }
.gs-btn--primary { background: var(--ivory); color: var(--navy-900); }
.gs-btn--primary:hover { background: var(--brass); color: var(--navy-900); transform: translateY(-2px); box-shadow: 0 18px 40px -20px rgba(194,154,91,0.7); }
.gs-btn--ghost {
  background: transparent; color: var(--ivory);
  border-color: rgba(244,237,223,0.32);
}
.gs-btn--ghost:hover { border-color: var(--brass); color: var(--brass); }
.gs-btn--dark { background: var(--navy-900); color: var(--ivory); }
.gs-btn--dark:hover { background: var(--brass-2); color: var(--navy-900); transform: translateY(-2px); }
.gs-btn--gold { background: var(--brass); color: var(--navy-900); }
.gs-btn--gold:hover { background: var(--ivory); }

/* =========================================================
   SECTION SHELL
   ========================================================= */
.gs-section { padding: 120px 0; position: relative; }
@media (max-width: 780px) { .gs-section { padding: 84px 0; } }

.gs-section--ivory { background: var(--paper); color: var(--ink); }
.gs-section--parchment { background: var(--parchment); color: var(--ink); }
.gs-section--navy {
  background: var(--navy-900); color: var(--ivory);
  position: relative; overflow: hidden;
}
.gs-section--navy::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(1000px 500px at 20% -10%, rgba(194,154,91,0.15) 0%, transparent 60%);
}

.gs-section__head { margin-bottom: 72px; max-width: 900px; }
.gs-section__head.text-center { margin-inline: auto; }

.gs-h2 {
  font-family: var(--f-serif); font-weight: 400;
  font-size: clamp(30px, 4.2vw, 56px); line-height: 1.08;
  letter-spacing: -0.02em; color: var(--navy-900); margin: 0 0 20px;
  max-width: 22ch;
}
.gs-h2 em { font-style: italic; color: var(--brass-2); font-weight: 400; }
.gs-h2--light { color: var(--ivory); }
.gs-h2--light em { color: var(--brass); }

.gs-lead {
  font-size: clamp(16px, 1.3vw, 18.5px); line-height: 1.7;
  color: var(--muted); max-width: 68ch; margin: 0;
}
.gs-lead--light { color: rgba(244,237,223,0.78); }

.gs-prose p { font-size: 17px; line-height: 1.85; color: var(--ink); margin: 0 0 22px; max-width: 62ch; }
.gs-prose--light p { color: rgba(244,237,223,0.82); }
.gs-prose__pull {
  font-family: var(--f-serif); font-style: italic;
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--navy-900); border-left: 2px solid var(--brass);
  padding-left: 22px; margin-top: 36px !important;
  line-height: 1.35;
}
.gs-prose__pull--light { color: var(--ivory); border-color: var(--brass); }

/* =========================================================
   SECTION 2 — GAPS
   ========================================================= */
.gs-gaps { counter-reset: gap; }
.gs-gap {
  position: relative; height: 100%;
  padding: 44px 32px; border-radius: 4px;
  background: rgba(244,237,223,0.04);
  border: 1px solid var(--line-light);
  transition: transform .5s cubic-bezier(.2,.7,.2,1), border-color .3s, background .3s;
  overflow: hidden;
}
.gs-gap::before {
  content: ''; position: absolute; left: 0; top: 0;
  width: 2px; height: 40px; background: var(--brass);
  transition: height .5s ease;
}
.gs-gap:hover { transform: translateY(-6px); background: rgba(244,237,223,0.07); border-color: rgba(194,154,91,0.4); }
.gs-gap:hover::before { height: 100%; }
.gs-gap__num {
  font-family: var(--f-serif); font-weight: 300;
  font-size: 46px; color: var(--brass);
  letter-spacing: -.02em; line-height: 1; margin-bottom: 22px;
}
.gs-gap__title {
  font-family: var(--f-serif); font-weight: 500;
  font-size: 26px; color: var(--ivory);
  margin: 0 0 14px; letter-spacing: -.01em;
}
.gs-gap p { color: rgba(244,237,223,0.75); font-size: 15.5px; line-height: 1.75; margin: 0; }

.gs-patterns__foot {
  margin-top: 72px; text-align: center;
  font-size: 16px; color: rgba(244,237,223,0.78);
  max-width: 900px; margin-inline: auto; line-height: 1.75;
}
.gs-patterns__foot strong { color: var(--brass); font-weight: 500; }

/* =========================================================
   SECTION 3 — STEPS
   ========================================================= */
.gs-steps { list-style: none; padding: 0; margin: 0; max-width: 980px; }
.gs-step {
  display: grid; grid-template-columns: 200px 1fr; gap: 40px;
  padding: 44px 0; border-bottom: 1px solid var(--line);
  align-items: start;
}
.gs-step:last-child { border-bottom: none; }
.gs-step__meta { display: flex; align-items: center; gap: 16px; }
.gs-step__no {
  font-family: var(--f-serif); font-style: italic; font-weight: 400;
  font-size: 20px; color: var(--brass-2);
  letter-spacing: .01em; white-space: nowrap;
}
.gs-step__line { flex: 1; height: 1px; background: var(--line); }
.gs-step__body h3 {
  font-family: var(--f-serif); font-weight: 500;
  font-size: clamp(24px, 2.4vw, 34px);
  color: var(--navy-900); margin: 0 0 14px;
  letter-spacing: -.01em; line-height: 1.15;
}
.gs-step__body p {
  color: var(--muted); font-size: 16.5px;
  line-height: 1.8; margin: 0; max-width: 66ch;
}
.gs-step:hover .gs-step__line { background: var(--brass); }
.gs-step { transition: padding .3s ease; }
@media (max-width: 780px) {
  .gs-step { grid-template-columns: 1fr; gap: 14px; padding: 32px 0; }
  .gs-step__line { display: none; }
}

/* =========================================================
   SECTION 4 — AUDIENCE
   ========================================================= */
.gs-audience { align-items: stretch; }
.gs-audcard {
  height: 100%; padding: 44px 34px;
  background: var(--paper); border-radius: 4px;
  border: 1px solid var(--line);
  transition: transform .5s cubic-bezier(.2,.7,.2,1), border-color .3s, box-shadow .3s;
  position: relative; overflow: hidden;
}
.gs-audcard::after {
  content: ''; position: absolute; left: 0; top: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--brass), transparent 70%);
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s ease;
}
.gs-audcard:hover { transform: translateY(-6px); border-color: rgba(194,154,91,.5); box-shadow: var(--shadow); }
.gs-audcard:hover::after { transform: scaleX(1); }
.gs-audcard__icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy-900); color: var(--brass);
  display: grid; place-items: center; font-size: 20px;
  margin-bottom: 24px;
}
.gs-audcard h3 {
  font-family: var(--f-serif); font-weight: 500;
  font-size: 22px; color: var(--navy-900);
  margin: 0 0 12px; letter-spacing: -.01em; line-height: 1.25;
}
.gs-audcard__roles {
  font-family: var(--f-serif); font-style: italic;
  font-size: 15px; color: var(--brass-2); margin: 0 0 16px;
}
.gs-audcard p { color: var(--muted); font-size: 15.5px; line-height: 1.75; margin: 0 0 12px; }

.gs-audience__foot {
  margin-top: 60px; text-align: center;
  font-size: 16.5px; line-height: 1.8; color: var(--muted);
  max-width: 950px; margin-inline: auto;
}
.gs-audience__foot strong { color: var(--navy-900); font-weight: 600; }

/* =========================================================
   SECTION 5 — SERVICES
   ========================================================= */
.gs-services { align-items: stretch; }
.gs-service {
  height: 100%; padding: 44px 34px;
  background: #fff; border-radius: 6px;
  border: 1px solid var(--line);
  transition: transform .5s cubic-bezier(.2,.7,.2,1), border-color .3s, box-shadow .3s;
  position: relative;
}
.gs-service:hover { transform: translateY(-6px); border-color: rgba(194,154,91,.5); box-shadow: var(--shadow); }
.gs-service--featured {
  background: var(--navy-900); color: var(--ivory);
  border-color: var(--navy-900);
}
.gs-service--featured .gs-service__title,
.gs-service--featured .gs-service__no { color: var(--brass); }
.gs-service--featured p { color: rgba(244,237,223,0.8); }
.gs-service--featured .gs-service__meta dt { color: var(--brass); }
.gs-service--featured .gs-service__meta dd { color: rgba(244,237,223,0.88); border-color: rgba(244,237,223,0.14); }
.gs-service__no {
  font-family: var(--f-serif); font-style: italic; font-weight: 400;
  font-size: 20px; color: var(--brass-2);
  margin-bottom: 14px;
}
.gs-service__title {
  font-family: var(--f-serif); font-weight: 500;
  font-size: 26px; color: var(--navy-900);
  margin: 0 0 16px; letter-spacing: -.01em; line-height: 1.2;
}
.gs-service__desc {
  font-family: var(--f-serif); font-style: italic;
  font-size: 17px; color: var(--muted);
  margin: 0 0 18px;
}
.gs-service p { color: var(--muted); font-size: 15.5px; line-height: 1.75; margin: 0 0 14px; }
.gs-service__meta {
  margin-top: 22px; padding-top: 22px;
  border-top: 1px solid var(--line);
}
.gs-service__meta dt {
  font-size: 11px; text-transform: uppercase; letter-spacing: .18em;
  color: var(--brass-2); font-weight: 600; margin-top: 12px;
}
.gs-service__meta dd {
  margin: 4px 0 0; font-size: 14.5px; line-height: 1.55;
  color: var(--ink); padding-bottom: 10px;
  border-bottom: 1px dashed var(--line);
}
.gs-service__meta dd:last-child { border-bottom: none; }

/* =========================================================
   FORMS (Contact + Book)
   ========================================================= */
.gs-form {
  background: #fff; padding: 44px 40px; border-radius: 8px;
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.gs-form--dark {
  background: rgba(244,237,223,0.04);
  border-color: var(--line-light); box-shadow: none;
  backdrop-filter: blur(10px);
}
.gs-form__title {
  font-family: var(--f-serif); font-weight: 500;
  font-size: 24px; color: var(--navy-900);
  margin: 0 0 24px; letter-spacing: -.01em;
}
.gs-form__title--light { color: var(--ivory); }
.gs-form label {
  display: block; font-size: 12px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 6px; font-weight: 600;
}
.gs-form label span { color: var(--brass-2); }
.gs-form--dark label { color: rgba(244,237,223,0.7); }
.gs-form input, .gs-form textarea, .gs-form select {
  width: 100%; padding: 12px 14px;
  background: var(--paper); color: var(--ink);
  border: 1px solid var(--line); border-radius: 4px;
  font-family: var(--f-sans); font-size: 15px;
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.gs-form--dark input, .gs-form--dark textarea, .gs-form--dark select {
  background: rgba(10,26,54,0.35); border-color: rgba(244,237,223,0.18); color: var(--ivory);
}
.gs-form input:focus, .gs-form textarea:focus, .gs-form select:focus {
  outline: none; border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(194,154,91,0.18);
}
.gs-form textarea { resize: vertical; min-height: 120px; }
.gs-form__note { font-size: 14px; color: var(--muted); min-height: 22px; }
.gs-form__note--light { color: rgba(244,237,223,0.75); }
.gs-form__note.is-error { color: #C0392B; }
.gs-form__note--light.is-error { color: #F1B8B0; }
.gs-form__note.is-success { color: #2f7a3d; }
.gs-form__note--light.is-success { color: #C5E5C5; }

.gs-contact__list {
  list-style: none; padding: 0; margin: 34px 0 0;
  display: flex; flex-direction: column; gap: 14px;
}
.gs-contact__list li {
  font-size: 15.5px; color: var(--ink);
  display: flex; align-items: center; gap: 14px;
}
.gs-contact__list i {
  width: 36px; height: 36px; display: grid; place-items: center;
  background: var(--navy-900); color: var(--brass);
  border-radius: 50%; font-size: 13px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.gs-footer {
  background: var(--navy-900); color: rgba(244,237,223,0.78);
  padding: 90px 0 30px;
}
.gs-footer__brand { display: flex; align-items: center; gap: 16px; }
.gs-footer__name { font-family: var(--f-serif); font-size: 22px; color: var(--ivory); font-weight: 500; }
.gs-footer__tag { font-family: var(--f-serif); font-style: italic; font-size: 15px; color: var(--brass); margin-top: 4px; }
.gs-footer__title {
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--brass); margin-bottom: 18px; font-weight: 600;
}
.gs-footer__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.gs-footer__list a:hover { color: var(--brass); }
.gs-footer__list--muted a { color: rgba(244,237,223,0.78); }
.gs-footer__list i { color: var(--brass); margin-right: 8px; width: 16px; text-align: center; }
.gs-footer__social { display: flex; gap: 12px; margin-top: 22px; }
.gs-footer__social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(244,237,223,0.08); color: var(--ivory);
  display: grid; place-items: center; transition: background .3s, color .3s;
}
.gs-footer__social a:hover { background: var(--brass); color: var(--navy-900); }
.gs-footer__bottom {
  border-top: 1px solid rgba(244,237,223,0.1);
  margin-top: 60px; padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: rgba(244,237,223,0.55);
}
.gs-footer__admin { color: rgba(244,237,223,0.6); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.gs-footer__admin:hover { color: var(--brass); }

/* =========================================================
   REVEAL animation
   ========================================================= */
[data-reveal] {
  opacity: 0; transform: translateY(24px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
}
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; }
}

/* =========================================================
   Utilities
   ========================================================= */
.gs-book .gs-form__title { color: var(--ivory); }
