@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/geist-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("/assets/cormorant-garamond-latin.woff2") format("woff2");
}

:root {
  --font-cormorant: "Cormorant Garamond";
  --sans: "Geist", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --coral-deep: #e95642;
}

html { scroll-behavior: smooth; background: #07140f; }
body { margin: 0; background: #f7f2e8; color: #17241e; font-family: var(--sans); font-size: 16px; line-height: 1.5; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
button, a, summary { font: inherit; }
a { color: inherit; text-decoration: none; }
::selection { color: #07140f; background: #ff6d52; }
:where(a, button, summary, [tabindex]):focus-visible { outline: 3px solid var(--coral-deep); outline-offset: 4px; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 1000; padding: 10px 15px; border-radius: 8px; background: #f4f6f3; color: #080a16; transform: translateY(-150%); transition: transform 160ms ease; }
.skip-link:focus { top: 10px; transform: translateY(0); }

.gj-site {
  --gj-ivory: #f7f2e8;
  --gj-paper: #fffdf7;
  --gj-forest: #113326;
  --gj-forest-deep: #07140f;
  --gj-canopy: #315c42;
  --gj-moss: #789267;
  --gj-mist: #c9d8ce;
  --gj-line: #d8d5c9;
  --gj-coral: #ff6d52;
  --gj-ink: #17241e;
  --gj-muted: #637067;
  --gj-serif: var(--font-cormorant), "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --gj-sans: var(--sans);
  --hero-scroll: 0;
  --journey-scroll: 0;
  min-width: 0;
  overflow: clip;
  color: var(--gj-ink);
  background: var(--gj-ivory);
  font-family: var(--gj-sans);
}

.gj-site :where(h1, h2, h3, p) { margin-top: 0; }
.gj-site :where(button, a, summary) { -webkit-tap-highlight-color: transparent; }

.gj-nav {
  position: sticky;
  top: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
  padding: 0 clamp(22px, 3.6vw, 62px);
  color: var(--gj-forest);
  background: rgba(247, 242, 232, 0.97);
  border-bottom: 1px solid rgba(17, 51, 38, 0.12);
  backdrop-filter: blur(18px);
}

.gj-logo {
  display: inline-flex;
  align-items: center;
  width: max-content;
}

.gj-logo img { width: auto; height: 60px; object-fit: contain; }

.gj-mark {
  position: relative;
  display: inline-block;
  width: 31px;
  height: 25px;
  flex: 0 0 auto;
}

.gj-mark::before,
.gj-mark::after,
.gj-mark i {
  position: absolute;
  content: "";
}

.gj-mark::before,
.gj-mark::after {
  width: 15px;
  height: 15px;
  border: 2px solid var(--gj-coral);
  border-radius: 50% 50% 48% 52%;
}

.gj-mark::before { top: 3px; left: 2px; height: 16px; transform: rotate(-36deg); }
.gj-mark::after { top: 5px; right: 1px; width: 16px; height: 14px; transform: rotate(29deg); }
.gj-mark i {
  top: 11px;
  left: 8px;
  width: 15px;
  height: 2px;
  background: var(--gj-coral);
  transform: rotate(-39deg);
  transform-origin: center;
}

.gj-mark i::after {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 4px;
  height: 4px;
  content: "";
  border-radius: 50%;
  background: #ffd4c9;
  box-shadow: 0 0 0 2px rgba(255, 109, 82, 0.18);
}

.gj-nav nav {
  display: flex;
  align-items: center;
  gap: clamp(28px, 3vw, 48px);
  font-size: 14px;
}

.gj-nav nav a { color: rgba(17, 51, 38, 0.72); transition: color 180ms ease; }
.gj-footer a { color: rgba(255, 255, 255, 0.72); transition: color 180ms ease; }

.gj-nav nav a:hover,
.gj-nav nav a:focus-visible { color: var(--gj-forest); }
.gj-footer a:hover,
.gj-footer a:focus-visible { color: #fff; }

.gj-nav-action {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 7px 8px 7px 17px;
  border: 1px solid var(--gj-forest);
  border-radius: 12px;
  color: var(--gj-paper);
  background: var(--gj-forest);
  font-size: 13px;
  transition: background 180ms ease, color 180ms ease;
}

.gj-nav-action:hover,
.gj-nav-action:focus-visible { color: #fff; background: var(--gj-forest-deep); }

.gj-arrow {
  display: inline-grid;
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--gj-forest);
  font-size: 12px;
  line-height: 1;
}

.gj-nav-action .gj-arrow { color: var(--gj-forest-deep); background: #fff; }
.gj-nav-action:hover .gj-arrow { color: #fff; background: var(--gj-forest-deep); }
.gj-menu { display: none; }

.gj-hero {
  position: relative;
  min-height: max(780px, calc(100svh - 76px));
  overflow: hidden;
  isolation: isolate;
  background: var(--gj-ivory);
}

.gj-hero__landscape,
.gj-cta__media img {
  position: absolute;
  inset: 0;
  z-index: -5;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.gj-hero__media {
  position: absolute;
  inset: 0;
}

.gj-hero__landscape {
  height: calc(100% + 55px);
  transform: translate3d(0, calc(var(--hero-scroll) * 30px), 0) scale(1.035);
  transform-origin: center 60%;
  will-change: transform;
}

.gj-hero__mist {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(ellipse at 50% 27%, rgba(255, 253, 247, 0.98) 0 24%, rgba(255, 253, 247, 0.72) 39%, transparent 66%),
    linear-gradient(180deg, rgba(247, 242, 232, 0.64), transparent 39%);
  transform: translate3d(0, calc(var(--hero-scroll) * -18px), 0);
  pointer-events: none;
}

.gj-hero__veil {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(247, 242, 232, 0.12), transparent 22% 78%, rgba(247, 242, 232, 0.1)),
    linear-gradient(180deg, rgba(247, 242, 232, 0.08) 55%, rgba(7, 20, 15, 0.11));
  pointer-events: none;
}

.gj-hero__content {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: min(880px, calc(100% - 44px));
  margin: 0 auto;
  padding-top: clamp(72px, 10vh, 122px);
  text-align: center;
}

.gj-eyebrow,
.gj-kicker {
  color: var(--gj-canopy);
  font-size: 11px;
  font-weight: 680;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.gj-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 37px;
  padding: 0 18px;
  border: 1px solid rgba(49, 92, 66, 0.22);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.7);
  backdrop-filter: blur(10px);
}

.gj-hero h1 {
  max-width: 900px;
  margin: 21px 0 0;
  color: var(--gj-forest);
  font-family: var(--gj-serif);
  font-size: clamp(72px, 6.25vw, 112px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.gj-hero__content > p {
  max-width: 650px;
  margin: 28px 0 0;
  color: #2e3d35;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.52;
}

.gj-hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
}

.gj-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-height: 54px;
  padding: 8px 10px 8px 24px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 620;
  box-shadow: 0 12px 28px rgba(17, 51, 38, 0.12);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.gj-button--primary { color: #fff; background: var(--gj-forest); }
.gj-button--primary:hover,
.gj-button--primary:focus-visible {
  background: #184c38;
  box-shadow: 0 16px 34px rgba(17, 51, 38, 0.2);
  transform: translateY(-2px);
}

.gj-button .gj-arrow { color: var(--gj-forest); background: #fff; }

.gj-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  color: var(--gj-forest);
  font-size: 14px;
  font-weight: 620;
}

.gj-text-link .gj-arrow { color: var(--gj-forest); background: rgba(17, 51, 38, 0.09); }

.gj-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  width: fit-content;
  max-width: 100%;
  margin-top: 31px;
  padding: 11px 16px;
  border: 1px solid rgba(17, 51, 38, 0.12);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.74);
  box-shadow: 0 10px 35px rgba(17, 51, 38, 0.06);
  backdrop-filter: blur(15px);
  color: #405148;
  font-size: 11px;
}

.gj-proof span { display: inline-flex; align-items: center; gap: 7px; }
.gj-proof i {
  display: inline-grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  color: var(--gj-forest);
  background: rgba(120, 146, 103, 0.18);
  font-style: normal;
  font-weight: 700;
}

.gj-studio-preview {
  overflow: hidden;
  border: 1px solid rgba(17, 51, 38, 0.16);
  border-radius: 20px;
  background: rgba(255, 253, 247, 0.96);
  box-shadow: 0 32px 70px rgba(16, 49, 36, 0.2);
  backdrop-filter: blur(18px);
}

.gj-studio-preview__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(17, 51, 38, 0.11);
  color: var(--gj-muted);
  font-size: 10px;
}

.gj-studio-preview__bar > div { display: flex; align-items: center; gap: 3px; }
.gj-studio-preview__bar .gj-mark { transform: scale(0.58); }
.gj-studio-preview__bar strong { color: var(--gj-forest); font-size: 11px; }
.gj-studio-preview__bar > a { display: inline-flex; align-items: center; gap: 4px; min-height: 36px; color: var(--gj-forest); font-size: 9px; font-weight: 700; }
.gj-studio-preview__workspace {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 11px;
  align-items: center;
  min-height: 240px;
  padding: 17px;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(17, 51, 38, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 51, 38, 0.055) 1px, transparent 1px);
  background-size: 27px 27px;
}

.gj-photo-tile,
.gj-preview-output {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(17, 51, 38, 0.14);
  border-radius: 10px;
  background: rgba(255, 253, 247, 0.96);
  box-shadow: 0 10px 25px rgba(17, 51, 38, 0.08);
}

.gj-photo-tile {
  top: 42%;
  left: 6%;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 8px;
  align-items: center;
  width: 126px;
  padding: 7px;
  color: var(--gj-muted);
  font-size: 9px;
}

.gj-photo-tile i {
  width: 34px;
  height: 41px;
  border-radius: 7px;
  background: linear-gradient(145deg, var(--gj-mist), #ede8dc);
}

.gj-preview-output { top: 14%; right: 5%; width: 62%; padding: 7px; }
.gj-preview-output > span { display: block; padding: 5px 4px 1px; color: var(--gj-muted); font-size: 8px; }

.gj-landscape-preview {
  position: relative;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  border-radius: 7px;
  background: linear-gradient(180deg, #f4eee3 0 42%, #c7d7c5 43% 100%);
}

.gj-landscape-preview__mist {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 56% 35%, rgba(255,255,255,.86), transparent 33%);
}

.gj-landscape-preview__hill {
  position: absolute;
  right: -8%;
  bottom: -19%;
  width: 74%;
  height: 76%;
  border-radius: 55% 20% 0 0;
  background: #57755d;
  transform: rotate(-8deg);
}

.gj-landscape-preview__hill--two {
  right: auto;
  left: -13%;
  bottom: -24%;
  width: 68%;
  height: 70%;
  background: #315748;
  transform: rotate(7deg);
}

.gj-landscape-preview__path {
  position: absolute;
  bottom: -12%;
  left: 47%;
  width: 13%;
  height: 75%;
  border-radius: 50%;
  background: rgba(255, 248, 222, 0.9);
  transform: rotate(15deg);
}

.gj-landscape-preview__sun {
  position: absolute;
  top: 19%;
  right: 19%;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #d5b96e;
  box-shadow: 0 0 22px rgba(213,185,110,.5);
}

.gj-preview-thread {
  position: absolute;
  top: 56%;
  left: 34%;
  z-index: 2;
  width: 28%;
  height: 20px;
  border-top: 2px solid var(--gj-coral);
  border-radius: 50%;
  transform: rotate(-7deg);
}

.gj-preview-conversation { position: relative; z-index: 3; display: grid; grid-template-columns: 29px minmax(0, 1fr); gap: 7px; align-items: start; }
.gj-preview-conversation > span { display: grid; width: 29px; height: 29px; place-items: center; border: 1px solid rgba(17,51,38,.13); border-radius: 9px; background: var(--gj-paper); box-shadow: 0 5px 14px rgba(17,51,38,.07); }
.gj-preview-conversation .gj-mark { transform: scale(.44); }
.gj-preview-conversation > div { display: grid; gap: 5px; }
.gj-preview-conversation small { color: var(--gj-coral); font-size: 6px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.gj-preview-conversation strong { color: var(--gj-forest); font-size: 12px; font-weight: 620; line-height: 1.15; }
.gj-preview-conversation p { margin: 4px 0 0; padding: 9px 8px; border: 1px solid rgba(17,51,38,.12); border-radius: 9px; color: var(--gj-muted); background: var(--gj-paper); font-size: 7px; line-height: 1.35; }
.gj-studio-preview .gj-preview-output { position: relative; top: auto; right: auto; z-index: 3; display: flex; aspect-ratio: 2 / 1; width: 100%; padding: 13px 11px 11px; align-items: center; flex-direction: column; justify-content: flex-start; border: 0; border-radius: 11px; color: var(--gj-forest); text-align: center; background-image: linear-gradient(180deg, rgba(255,253,247,.08), transparent 48%), url("/assets/memorial-banner-sample-1200.jpg"); background-size: cover; background-position: center; box-shadow: 0 10px 25px rgba(17,51,38,.12); overflow: hidden; }
.gj-studio-preview .gj-preview-output::after { position: absolute; inset: 8px; border: 1px solid rgba(17,51,38,.14); border-radius: 7px; content: ""; }
.gj-studio-preview .gj-preview-output i { position: absolute; top: 8px; left: 8px; padding: 3px 5px; border-radius: 999px; color: var(--gj-paper); background: rgba(17,51,38,.72); font-size: 4.5px; font-style: normal; font-weight: 740; letter-spacing: .07em; text-transform: uppercase; }
.gj-studio-preview .gj-preview-output > span { position: relative; z-index: 1; display: block; max-width: 66%; padding: 0; color: var(--gj-forest); font-family: var(--gj-serif); font-size: 15px; line-height: 1; text-shadow: 0 1px 8px rgba(255,253,247,.9); }
.gj-studio-preview .gj-preview-output > small { position: relative; z-index: 1; margin-top: 3px; color: rgba(17,51,38,.7); font-size: 5.5px; }
.gj-studio-preview__controls { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(17,51,38,.11); }
.gj-studio-preview__controls span { display: flex; min-height: 45px; align-items: center; gap: 6px; padding: 11px 9px; color: var(--gj-muted); font-size: 7px; line-height: 1.25; }
.gj-studio-preview__controls i { display: grid; width: 16px; height: 16px; flex: 0 0 auto; place-items: center; border-radius: 50%; color: var(--gj-forest); background: rgba(120,146,103,.13); font-size: 6px; font-style: normal; font-weight: 750; }
.gj-studio-preview__controls span + span { border-left: 1px solid rgba(17,51,38,.1); }

.gj-variation {
  display: grid;
  grid-template-columns: minmax(180px, .3fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: 30px clamp(22px, 6vw, 96px);
  color: #fff;
  background: var(--gj-forest-deep);
}

.gj-variation span { color: #a4bca9; font-size: 11px; font-weight: 680; letter-spacing: .17em; text-transform: uppercase; }
.gj-variation p { max-width: 950px; margin: 0; color: rgba(255,255,255,.74); font-size: 14px; line-height: 1.65; }

.gj-journey,
.gj-studio,
.gj-exact,
.gj-faq {
  padding: clamp(100px, 11vw, 176px) clamp(22px, 6vw, 96px);
}

.gj-section-heading { max-width: 980px; }
.gj-section-heading .gj-kicker { margin-bottom: 25px; }
.gj-section-heading h2,
.gj-care h2,
.gj-cta h2 {
  margin-bottom: 0;
  color: var(--gj-forest);
  font-family: var(--gj-serif);
  font-size: clamp(54px, 6.3vw, 96px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.gj-section-heading > p,
.gj-section-heading--split > p { max-width: 610px; margin: 29px 0 0; color: var(--gj-muted); font-size: 16px; line-height: 1.7; }

.gj-journey { background: var(--gj-paper); }
.gj-journey__layout {
  display: grid;
  grid-template-columns: minmax(160px, .3fr) minmax(0, .7fr);
  gap: clamp(50px, 9vw, 150px);
  max-width: 1240px;
  margin: 90px auto 0;
}

.gj-journey__rail {
  position: sticky;
  top: 165px;
  justify-self: center;
  width: 90px;
  height: min(560px, 68vh);
}

.gj-journey__line,
.gj-journey__progress {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  border-radius: 3px;
  background: var(--gj-line);
  transform: translateX(-50%);
}

.gj-journey__progress {
  height: calc(var(--journey-scroll) * 100%);
  background: linear-gradient(var(--gj-coral), var(--gj-moss));
  box-shadow: 0 0 18px rgba(120,146,103,.3);
  transition: height 120ms linear;
}

.gj-journey__rail i {
  position: absolute;
  left: 50%;
  width: 15px;
  height: 15px;
  border: 3px solid var(--gj-paper);
  border-radius: 50%;
  background: var(--gj-moss);
  box-shadow: 0 0 0 1px rgba(17,51,38,.2);
  transform: translate(-50%, -50%);
}
.gj-journey__rail i:nth-of-type(1) { top: 0; }
.gj-journey__rail i:nth-of-type(2) { top: 33.33%; }
.gj-journey__rail i:nth-of-type(3) { top: 66.66%; }
.gj-journey__rail i:nth-of-type(4) { top: 100%; }

.gj-journey__steps { display: grid; gap: 26px; }
.gj-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 28px;
  min-height: 295px;
  padding: clamp(30px, 4vw, 58px);
  border: 1px solid rgba(17,51,38,.12);
  border-radius: 28px;
  background: var(--gj-ivory);
  box-shadow: 0 22px 70px rgba(17,51,38,.055);
}

.gj-step > span { color: var(--gj-coral); font-family: var(--gj-serif); font-size: 32px; }
.gj-step small { color: var(--gj-canopy); font-size: 10px; font-weight: 690; letter-spacing: .15em; text-transform: uppercase; }
.gj-step h3 { max-width: 650px; margin: 16px 0 0; color: var(--gj-forest); font-family: var(--gj-serif); font-size: clamp(35px, 3.6vw, 54px); font-weight: 400; letter-spacing: -.045em; line-height: 1; }
.gj-step p { max-width: 630px; margin: 24px 0 0; color: var(--gj-muted); line-height: 1.7; }

.gj-studio { background: var(--gj-ivory); }
.gj-section-heading--split { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(290px, .55fr); gap: 70px; align-items: end; max-width: none; }
.gj-section-heading--split > p { margin-bottom: 8px; }
.gj-conversation-showcase { max-width: 1420px; margin: 76px auto 0; overflow: hidden; border: 1px solid rgba(17,51,38,.15); border-radius: 26px; background: var(--gj-paper); box-shadow: 0 45px 110px rgba(17,51,38,.12); }
.gj-conversation-showcase__bar { display: flex; align-items: center; justify-content: space-between; min-height: 64px; padding: 0 22px; border-bottom: 1px solid rgba(17,51,38,.11); color: var(--gj-muted); font-size: 11px; }
.gj-conversation-showcase__bar > div { display: flex; align-items: center; gap: 7px; }
.gj-conversation-showcase__bar .gj-mark { transform: scale(.7); }
.gj-conversation-showcase__bar strong { color: var(--gj-forest); letter-spacing: .03em; }
.gj-conversation-showcase__bar > span { display: inline-flex; align-items: center; gap: 8px; }
.gj-conversation-showcase__bar > span i { width: 7px; height: 7px; border-radius: 50%; background: var(--gj-coral); box-shadow: 0 0 0 5px rgba(255,109,82,.1); }
.gj-conversation-showcase__body { display: grid; grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr); min-height: 620px; }
.gj-conversation-showcase__chat { padding: clamp(42px, 5.5vw, 80px); border-right: 1px solid rgba(17,51,38,.1); background: #fbf8f1; }
.gj-conversation-showcase__step { color: var(--gj-muted); font-size: 11px; font-weight: 690; letter-spacing: .1em; text-transform: uppercase; }
.gj-conversation-showcase__question { display: grid; grid-template-columns: 44px minmax(0, 1fr); gap: 15px; margin-top: 42px; }
.gj-conversation-showcase__question > span { display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid rgba(17,51,38,.13); border-radius: 14px; background: var(--gj-paper); box-shadow: 0 8px 22px rgba(17,51,38,.06); }
.gj-conversation-showcase__question .gj-mark { transform: scale(.62); }
.gj-conversation-showcase__question small { color: #a64232; font-size: 11px; font-weight: 730; letter-spacing: .08em; text-transform: uppercase; }
.gj-conversation-showcase__question h3 { margin: 8px 0 0; color: var(--gj-forest); font-size: clamp(33px, 3.2vw, 50px); font-weight: 590; letter-spacing: -.045em; line-height: 1.02; }
.gj-conversation-showcase__question p { max-width: 600px; margin: 15px 0 0; color: var(--gj-muted); line-height: 1.65; }
.gj-conversation-showcase__choices { display: grid; gap: 9px; margin: 30px 0 0 59px; }
.gj-conversation-showcase__choices > div { display: grid; grid-template-columns: 20px 1fr; gap: 12px; min-height: 75px; padding: 15px; border: 1px solid rgba(17,51,38,.13); border-radius: 15px; background: var(--gj-paper); }
.gj-conversation-showcase__choices > div > i { width: 19px; height: 19px; border: 1px solid rgba(17,51,38,.3); border-radius: 50%; }
.gj-conversation-showcase__choices > div.is-selected { border-color: rgba(17,51,38,.42); box-shadow: 0 0 0 3px rgba(17,51,38,.05); }
.gj-conversation-showcase__choices > div.is-selected > i { box-shadow: inset 0 0 0 5px var(--gj-paper); background: var(--gj-coral); }
.gj-conversation-showcase__choices span { display: grid; gap: 4px; }
.gj-conversation-showcase__choices strong { color: var(--gj-forest); font-size: 13px; }
.gj-conversation-showcase__choices small { color: var(--gj-muted); font-size: 11px; }
.gj-conversation-showcase__summary { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 24px 0 0 59px; padding-top: 19px; border-top: 1px solid rgba(17,51,38,.12); }
.gj-conversation-showcase__summary > span { grid-column: 1 / -1; color: var(--gj-muted); font-size: 10px; font-weight: 690; letter-spacing: .09em; text-transform: uppercase; }
.gj-conversation-showcase__summary > div { display: grid; gap: 2px; padding: 12px; border: 1px solid rgba(17,51,38,.1); border-radius: 11px; background: var(--gj-paper); }
.gj-conversation-showcase__summary small { color: var(--gj-muted); font-size: 9px; }
.gj-conversation-showcase__summary strong { color: var(--gj-forest); font-size: 11px; }
.gj-conversation-showcase__preview { align-self: center; margin: clamp(22px, 3vw, 48px); overflow: hidden; border: 1px solid rgba(17,51,38,.13); border-radius: 20px; background: var(--gj-paper); box-shadow: 0 22px 55px rgba(17,51,38,.09); }
.gj-conversation-showcase__preview-bar { display: flex; align-items: center; justify-content: space-between; min-height: 64px; padding: 0 18px; border-bottom: 1px solid rgba(17,51,38,.1); }
.gj-conversation-showcase__preview-bar > span { display: grid; }
.gj-conversation-showcase__preview-bar small { color: var(--gj-muted); font-size: 9px; text-transform: uppercase; }
.gj-conversation-showcase__preview-bar strong { color: var(--gj-forest); font-size: 12px; }
.gj-conversation-showcase__preview-bar > i { padding: 5px 8px; border: 1px solid rgba(17,51,38,.12); border-radius: 8px; color: var(--gj-muted); font-size: 9px; font-style: normal; }
.gj-conversation-showcase__banner { position: relative; display: flex; aspect-ratio: 2 / 1; margin: 16px; padding: 24px; align-items: center; justify-content: flex-start; flex-direction: column; overflow: hidden; border-radius: 13px; color: var(--gj-forest); text-align: center; background-image: linear-gradient(180deg, rgba(255,253,247,.08), transparent 50%), url("/assets/memorial-banner-sample-1200.jpg"); background-size: cover; background-position: center; }
.gj-conversation-showcase__banner::after { position: absolute; inset: 6%; border: 1px solid rgba(17,51,38,.14); border-radius: 8px; content: ""; }
.gj-conversation-showcase__banner > i { position: absolute; top: 8%; left: 5%; z-index: 2; padding: 5px 8px; border-radius: 999px; color: var(--gj-paper); background: rgba(17,51,38,.72); font-size: 6px; font-style: normal; font-weight: 740; letter-spacing: .08em; text-transform: uppercase; }
.gj-conversation-showcase__banner > span { position: relative; z-index: 1; color: rgba(17,51,38,.68); font-size: 8px; font-weight: 730; letter-spacing: .12em; text-transform: uppercase; }
.gj-conversation-showcase__banner > strong { position: relative; z-index: 1; max-width: 58%; margin-top: 3px; font-family: var(--gj-serif); font-size: clamp(25px, 2.8vw, 43px); font-weight: 500; line-height: 1; text-shadow: 0 1px 12px rgba(255,253,247,.92); }
.gj-conversation-showcase__banner > small { position: relative; z-index: 1; margin-top: 5px; color: rgba(17,51,38,.68); font-size: 9px; }
.gj-conversation-showcase__facts { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(17,51,38,.1); }
.gj-conversation-showcase__facts span { display: flex; min-height: 62px; align-items: center; gap: 7px; padding: 12px; color: var(--gj-forest); font-size: 10px; font-weight: 650; }
.gj-conversation-showcase__facts span + span { border-left: 1px solid rgba(17,51,38,.1); }
.gj-conversation-showcase__facts i { display: grid; width: 18px; height: 18px; place-items: center; border-radius: 50%; color: #fff; background: var(--gj-forest); font-size: 8px; font-style: normal; }
.gj-conversation-showcase__footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 18px 22px; border-top: 1px solid rgba(17,51,38,.11); }
.gj-conversation-showcase__footer p { color: var(--gj-muted); font-size: 12px; }

.gj-exact { background: var(--gj-paper); }
.gj-exact__grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: 16px; margin-top: 72px; }
.gj-exact__grid article { position: relative; min-height: 500px; overflow: hidden; padding: 38px; border: 1px solid rgba(17,51,38,.12); border-radius: 26px; background: var(--gj-ivory); }
.gj-exact__grid article > span { color: var(--gj-canopy); font-size: 10px; font-weight: 690; letter-spacing: .15em; text-transform: uppercase; }
.gj-exact__grid h3 { margin: 20px 0 0; color: var(--gj-forest); font-family: var(--gj-serif); font-size: clamp(34px, 3.3vw, 52px); font-weight: 400; letter-spacing: -.05em; line-height: 1; }
.gj-exact__grid p { margin: 20px 0 0; color: var(--gj-muted); line-height: 1.65; }
.gj-name-field { position: absolute; right: 32px; bottom: 36px; left: 32px; padding: 16px; border: 1px solid rgba(17,51,38,.14); border-radius: 15px; background: var(--gj-paper); box-shadow: 0 16px 40px rgba(17,51,38,.08); }
.gj-name-field small { display: block; color: var(--gj-muted); font-size: 9px; }
.gj-name-field strong { display: block; margin-top: 8px; color: var(--gj-forest); font-family: var(--gj-serif); font-size: 31px; font-weight: 400; }
.gj-name-field i { position: absolute; right: 15px; bottom: 17px; width: 8px; height: 8px; border-radius: 50%; background: var(--gj-moss); box-shadow: 0 0 0 5px rgba(120,146,103,.12); }
.gj-version-stack { position: absolute; right: 35px; bottom: 38px; left: 35px; height: 160px; }
.gj-version-stack i { position: absolute; inset: 0; border: 1px solid rgba(17,51,38,.15); border-radius: 16px; background: var(--gj-paper); box-shadow: 0 15px 35px rgba(17,51,38,.06); }
.gj-version-stack i:nth-child(1) { transform: translateY(-25px) scale(.88); opacity: .45; }
.gj-version-stack i:nth-child(2) { transform: translateY(-12px) scale(.94); opacity: .7; }
.gj-version-stack b { position: absolute; bottom: 20px; left: 20px; color: var(--gj-forest); font-size: 13px; }
.gj-ratio { position: absolute; right: 35px; bottom: 53px; left: 35px; display: flex; align-items: center; justify-content: center; gap: 13px; min-height: 115px; border: 1px solid rgba(17,51,38,.13); border-radius: 17px; background: var(--gj-paper); }
.gj-ratio b { color: var(--gj-forest); font-family: var(--gj-serif); font-size: 63px; font-weight: 400; }
.gj-ratio span { color: var(--gj-coral); font-size: 28px; }

.gj-care { display: grid; grid-template-columns: minmax(0, .92fr) minmax(380px, .68fr); gap: clamp(65px, 10vw, 150px); align-items: center; padding: clamp(100px, 11vw, 176px) clamp(22px, 7vw, 112px); color: #fff; background: var(--gj-forest-deep); }
.gj-care .gj-kicker { color: #a6c1ad; }
.gj-care h2 { margin-top: 25px; color: #fff; }
.gj-care__copy p { max-width: 680px; margin: 30px 0 0; color: rgba(255,255,255,.68); font-size: 16px; line-height: 1.75; }
.gj-care__checks { border-top: 1px solid rgba(255,255,255,.14); }
.gj-care__checks > div { display: grid; grid-template-columns: 48px 1fr; gap: 20px; align-items: center; min-height: 96px; border-bottom: 1px solid rgba(255,255,255,.14); }
.gj-care__checks span { color: var(--gj-coral); font-family: var(--gj-serif); font-size: 20px; }
.gj-care__checks p { margin: 0; color: rgba(255,255,255,.8); line-height: 1.55; }

.gj-faq { display: grid; grid-template-columns: minmax(320px, .7fr) minmax(0, 1fr); gap: clamp(60px, 9vw, 140px); background: var(--gj-ivory); }
.gj-faq .gj-section-heading { position: sticky; top: 140px; align-self: start; }
.gj-faq__list { border-top: 1px solid rgba(17,51,38,.16); }
.gj-faq details { border-bottom: 1px solid rgba(17,51,38,.16); }
.gj-faq summary { display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center; min-height: 104px; color: var(--gj-forest); font-family: var(--gj-serif); font-size: 23px; line-height: 1.2; cursor: pointer; list-style: none; }
.gj-faq summary::-webkit-details-marker { display: none; }
.gj-faq summary span { display: grid; width: 30px; height: 30px; place-items: center; border: 1px solid rgba(17,51,38,.16); border-radius: 50%; font-family: var(--gj-sans); font-size: 15px; transition: transform 180ms ease; }
.gj-faq details[open] summary span { transform: rotate(45deg); }
.gj-faq details p { max-width: 700px; margin: -8px 50px 31px 0; color: var(--gj-muted); line-height: 1.7; }

.gj-cta { position: relative; display: grid; min-height: 720px; place-items: center; overflow: hidden; isolation: isolate; text-align: center; }
.gj-cta__media img { transform: scale(1.04); }
.gj-cta__veil { position: absolute; inset: 0; z-index: -3; background: radial-gradient(ellipse at 50% 43%, rgba(255,253,247,.94) 0 18%, rgba(255,253,247,.74) 39%, rgba(7,20,15,.08) 78%); }
.gj-cta > div:last-child { display: flex; align-items: center; flex-direction: column; width: min(780px, calc(100% - 44px)); }
.gj-cta > div > span { margin-top: 10px; color: var(--gj-canopy); font-size: 11px; font-weight: 680; letter-spacing: .15em; text-transform: uppercase; }
.gj-cta h2 { margin-top: 22px; }
.gj-cta p { margin: 24px 0 28px; color: #405148; font-size: 17px; }

.gj-footer { display: grid; grid-template-columns: 1fr auto auto auto; gap: 32px; align-items: center; min-height: 110px; padding: 24px clamp(22px, 5vw, 80px); color: #fff; background: var(--gj-forest-deep); }
.gj-footer p,
.gj-footer > span { margin: 0; color: rgba(255,255,255,.55); font-size: 11px; }
.gj-footer > div { display: flex; gap: 24px; font-size: 11px; }

.has-js .gj-site [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity 780ms cubic-bezier(.2,.72,.2,1), transform 880ms cubic-bezier(.2,.72,.2,1);
}

.has-js .gj-site [data-reveal].is-visible { opacity: 1; transform: none; }
.has-js .gj-hero__content [data-reveal]:nth-child(2) { transition-delay: 80ms; }
.has-js .gj-hero__content [data-reveal]:nth-child(3) { transition-delay: 140ms; }
.has-js .gj-hero__content [data-reveal]:nth-child(4) { transition-delay: 200ms; }
.has-js .gj-hero__content [data-reveal]:nth-child(5) { transition-delay: 260ms; }

@media (max-width: 1120px) {
  .gj-nav { grid-template-columns: 1fr auto; }
  .gj-nav nav,
  .gj-nav-action { display: none; }
  .gj-menu { justify-self: end; display: inline-flex; align-items: center; gap: 10px; min-width: 76px; min-height: 44px; padding: 0 10px; border: 1px solid rgba(17,51,38,.28); border-radius: 11px; color: var(--gj-forest); background: rgba(255,253,247,.68); }
  .gj-menu i { display: block; width: 14px; height: 10px; border-top: 1px solid currentColor; border-bottom: 1px solid currentColor; }
  .gj-nav nav.is-open { position: absolute; top: 76px; right: 0; left: 0; display: grid; gap: 0; padding: 8px 20px 18px; background: rgba(247,242,232,.98); border-bottom: 1px solid rgba(17,51,38,.12); }
  .gj-nav nav.is-open a { display: flex; align-items: center; min-height: 50px; border-bottom: 1px solid rgba(17,51,38,.09); }
  .gj-conversation-showcase__body { grid-template-columns: 1fr; }
  .gj-conversation-showcase__chat { border-right: 0; border-bottom: 1px solid rgba(17,51,38,.1); }
  .gj-conversation-showcase__preview { width: min(680px, calc(100% - 56px)); justify-self: center; }
  .gj-exact__grid { grid-template-columns: 1fr 1fr; }
  .gj-exact__grid article:first-child { grid-column: 1 / -1; }
  .gj-care { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  .gj-nav { min-height: 70px; padding-inline: 18px; }
  .gj-logo img { height: 54px; }
  .gj-nav nav.is-open { top: 70px; }
  .gj-hero { min-height: max(760px, calc(100svh - 70px)); }
  .gj-hero__landscape { object-position: 49% center; }
  .gj-hero__mist { background: radial-gradient(ellipse at 50% 25%, rgba(255,253,247,.98) 0 28%, rgba(255,253,247,.75) 48%, transparent 74%); }
  .gj-hero__content { padding-top: 60px; }
  .gj-hero h1 { margin-top: 20px; font-size: clamp(57px, 15.6vw, 79px); line-height: .91; }
  .gj-hero__content > p { margin-top: 24px; font-size: 16px; }
  .gj-hero__actions { align-items: stretch; flex-direction: column; width: min(100%, 330px); gap: 8px; }
  .gj-text-link { justify-content: center; }
  .gj-proof { display: grid; gap: 8px; width: min(100%, 330px); border-radius: 18px; }
  .gj-studio-preview__workspace { min-height: 190px; }
  .gj-variation { grid-template-columns: 1fr; gap: 12px; padding-block: 26px; }
  .gj-journey,
  .gj-studio,
  .gj-exact,
  .gj-faq { padding: 88px 18px; }
  .gj-section-heading h2,
  .gj-care h2,
  .gj-cta h2 { font-size: clamp(48px, 13vw, 66px); }
  .gj-journey__layout { grid-template-columns: 1fr; margin-top: 58px; }
  .gj-journey__rail { display: none; }
  .gj-step { grid-template-columns: 45px 1fr; gap: 12px; min-height: 0; padding: 28px 20px; border-radius: 21px; }
  .gj-step > span { font-size: 24px; }
  .gj-step h3 { font-size: 36px; }
  .gj-section-heading--split { grid-template-columns: 1fr; gap: 0; }
  .gj-conversation-showcase { margin-top: 50px; border-radius: 18px; }
  .gj-conversation-showcase__bar > span { display: none; }
  .gj-conversation-showcase__chat { padding: 34px 20px; }
  .gj-conversation-showcase__question { grid-template-columns: 38px 1fr; gap: 10px; margin-top: 28px; }
  .gj-conversation-showcase__question > span { width: 38px; height: 38px; border-radius: 12px; }
  .gj-conversation-showcase__question h3 { font-size: 36px; }
  .gj-conversation-showcase__choices,
  .gj-conversation-showcase__summary { margin-left: 48px; }
  .gj-conversation-showcase__summary { grid-template-columns: 1fr; }
  .gj-conversation-showcase__summary > span { grid-column: auto; }
  .gj-conversation-showcase__preview { width: calc(100% - 28px); margin: 14px; }
  .gj-conversation-showcase__footer { align-items: stretch; flex-direction: column; }
  .gj-conversation-showcase__footer .gj-button { width: 100%; }
  .gj-exact__grid { grid-template-columns: 1fr; margin-top: 50px; }
  .gj-exact__grid article:first-child { grid-column: auto; }
  .gj-exact__grid article { min-height: 450px; padding: 29px 23px; }
  .gj-care { padding: 88px 18px; }
  .gj-care__checks > div { grid-template-columns: 39px 1fr; }
  .gj-faq { grid-template-columns: 1fr; gap: 50px; }
  .gj-faq .gj-section-heading { position: static; }
  .gj-faq summary { min-height: 94px; font-size: 20px; }
  .gj-cta { min-height: 620px; }
  .gj-cta__veil { background: radial-gradient(ellipse at 50% 40%, rgba(255,253,247,.95) 0 23%, rgba(255,253,247,.77) 50%, rgba(7,20,15,.08) 83%); }
  .gj-footer { grid-template-columns: 1fr; gap: 15px; padding-block: 34px; }
  .gj-footer > div { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  .gj-hero__landscape,
  .gj-hero__mist { transform: none; }
  .has-js .gj-site [data-reveal] { opacity: 1; transform: none; transition: none; }
  .gj-journey__progress { height: 100%; transition: none; }
}
