 

@font-face {
  font-family: "Grove Slab";
  src: url("../fonts/grove-slab-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Grove Slab";
  src: url("../fonts/grove-slab-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Grove Slab";
  src: url("../fonts/grove-slab-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Grove Sans";
  src: url("../fonts/grove-sans-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Grove Sans";
  src: url("../fonts/grove-sans-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Grove Sans";
  src: url("../fonts/grove-sans-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Grove Sans";
  src: url("../fonts/grove-sans-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --terracotta: #9a4b2e;
  --terracotta-deep: #7a3920;
  --clay: #c1693f;
  --moss: #6f8f4e;
  --moss-deep: #4f6b39;
  --forest: #3c4a2b;
  --sand: #f3e9d8;
  --sand-soft: #f8f1e4;
  --parchment: #fbf6ec;
  --bark: #2c2018;
  --bark-soft: #4a3a2d;
  --honey: #e0b15a;
  --honey-deep: #c9923a;
  --line: #e3d6bf;
  --shadow-soft: 0 0.75rem 2rem rgba(60, 40, 24, 0.12);
  --shadow-lift: 0 1.25rem 3rem rgba(60, 40, 24, 0.18);
  --radius-sm: 0.6rem;
  --radius: 1rem;
  --radius-lg: 1.6rem;
  --wrap: 75rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Grove Sans", system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--bark);
  background-color: var(--parchment);
  background-image:
    radial-gradient(circle at 12% 8%, rgba(154, 75, 46, 0.06), transparent 38%),
    radial-gradient(circle at 88% 22%, rgba(111, 143, 78, 0.07), transparent 42%);
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--terracotta);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
h1,
h2,
h3,
h4 {
  font-family: "Grove Slab", Georgia, serif;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--bark);
  margin-top: 0;
}
p {
  margin-top: 0;
}
:focus-visible {
  outline: 0.18rem solid var(--terracotta);
  outline-offset: 0.18rem;
  border-radius: 0.25rem;
}

.g-wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.g-section {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}
.g-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Grove Sans", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.9rem;
}
.g-eyebrow svg {
  width: 1.1rem;
  height: 1.1rem;
}
.g-h2 {
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  margin-bottom: 0.6rem;
}
.g-lede {
  font-size: 1.12rem;
  color: var(--bark-soft);
  max-width: 44rem;
}
.g-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.g-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: "Grove Sans", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  padding-top: 0.95rem;
  padding-bottom: 0.95rem;
  padding-left: 1.6rem;
  padding-right: 1.6rem;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
  text-decoration: none;
}
.g-btn svg {
  width: 1.15rem;
  height: 1.15rem;
}
.g-btn--primary {
  background-color: var(--terracotta);
  color: var(--parchment);
  box-shadow: 0 0.65rem 1.4rem rgba(122, 57, 32, 0.32);
}
.g-btn--primary:hover {
  background-color: var(--terracotta-deep);
  transform: translateY(-2px);
  text-decoration: none;
}
.g-btn--ghost {
  background-color: transparent;
  color: var(--bark);
  border: 0.13rem solid var(--line);
}
.g-btn--ghost:hover {
  border-color: var(--moss);
  color: var(--moss-deep);
  text-decoration: none;
  transform: translateY(-2px);
}

.g-top {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(251, 246, 236, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 0.08rem solid var(--line);
}
.g-top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}
.g-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Grove Slab", serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--bark);
  letter-spacing: -0.01em;
}
.g-brand:hover {
  text-decoration: none;
}
.g-brand__mark {
  width: 2.3rem;
  height: 2.3rem;
  flex: 0 0 auto;
}
.g-brand strong {
  color: var(--terracotta);
}
.g-nav {
  display: flex;
  align-items: center;
  gap: 1.7rem;
}
.g-nav__list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.g-nav__list a {
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--bark-soft);
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
}
.g-nav__list a:hover,
.g-nav__list a[aria-current="page"] {
  color: var(--terracotta);
  text-decoration: none;
}
.g-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.32rem;
  width: 2.9rem;
  height: 2.9rem;
  border: 0.1rem solid var(--line);
  border-radius: var(--radius-sm);
  background-color: var(--sand-soft);
  cursor: pointer;
  padding: 0;
}
.g-burger span {
  display: block;
  width: 1.35rem;
  height: 0.15rem;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--bark);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.g-hero {
  position: relative;
  overflow: hidden;
}
.g-hero::before {
  content: "";
  position: absolute;
  top: -8rem;
  right: -6rem;
  width: 26rem;
  height: 26rem;
  background: radial-gradient(circle, rgba(224, 177, 90, 0.28), transparent 68%);
  z-index: 0;
}
.g-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding-top: 4rem;
  padding-bottom: 4.5rem;
}
.g-hero__title {
  font-size: clamp(2.3rem, 5.4vw, 3.8rem);
  margin-bottom: 1.1rem;
}
.g-hero__title em {
  font-style: normal;
  color: var(--terracotta);
  position: relative;
}
.g-hero__lede {
  font-size: 1.18rem;
  color: var(--bark-soft);
  margin-bottom: 1.8rem;
  max-width: 32rem;
}
.g-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.8rem;
}
.g-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  padding-top: 1.5rem;
  border-top: 0.08rem solid var(--line);
}
.g-hero__stat strong {
  display: block;
  font-family: "Grove Slab", serif;
  font-size: 1.7rem;
  color: var(--moss-deep);
  line-height: 1;
}
.g-hero__stat span {
  font-size: 0.85rem;
  color: var(--bark-soft);
}
.g-hero__visual {
  position: relative;
}
.g-hero__frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  border: 0.4rem solid var(--parchment);
  transform: rotate(1.4deg);
}
.g-hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 11;
}
.g-hero__badge {
  position: absolute;
  bottom: -1.2rem;
  left: -1.2rem;
  background-color: var(--moss);
  color: var(--parchment);
  font-family: "Grove Slab", serif;
  font-weight: 600;
  border-radius: var(--radius);
  padding: 0.85rem 1.2rem;
  box-shadow: var(--shadow-soft);
  transform: rotate(-3deg);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.g-hero__badge svg {
  width: 1.5rem;
  height: 1.5rem;
}
.g-hero__badge small {
  display: block;
  font-family: "Grove Sans", sans-serif;
  font-weight: 500;
  font-size: 0.72rem;
  opacity: 0.85;
}

.g-strip {
  background-color: var(--forest);
  color: var(--sand);
}
.g-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
}
.g-strip__item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.95rem;
  font-weight: 500;
}
.g-strip__item svg {
  width: 1.4rem;
  height: 1.4rem;
  color: var(--honey);
  flex: 0 0 auto;
}

.g-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(17.5rem, 1fr));
  gap: 1.6rem;
  margin-top: 2.6rem;
}
.g-rev {
  background-color: var(--sand-soft);
  border: 0.08rem solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.g-rev:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: var(--moss);
}
.g-rev__head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}
.g-rev__crest {
  width: 4rem;
  height: 4rem;
  border-radius: 1.05rem;
  box-shadow: 0 0.4rem 0.9rem rgba(60, 40, 24, 0.2);
  flex: 0 0 auto;
}
.g-rev__name {
  font-family: "Grove Slab", serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.15rem;
}
.g-rev__genre {
  font-size: 0.82rem;
  color: var(--bark-soft);
}
.g-rev__stars {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.85rem;
}
.g-rev__stars svg {
  width: 1.05rem;
  height: 1.05rem;
  color: var(--honey-deep);
}
.g-rev__score {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--bark);
  margin-left: 0.25rem;
}
.g-rev__body {
  font-size: 0.97rem;
  color: var(--bark-soft);
  margin-bottom: 1.25rem;
  flex: 1 1 auto;
}
.g-rev__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.g-rev__tag {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  background-color: var(--sand);
  color: var(--moss-deep);
  border: 0.06rem solid var(--line);
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
}
.g-rev__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--parchment);
  background-color: var(--moss-deep);
  border-radius: 999px;
  padding: 0.7rem 1.1rem;
  transition: background-color 0.18s ease, transform 0.18s ease;
}
.g-rev__link:hover {
  background-color: var(--forest);
  text-decoration: none;
  transform: translateY(-2px);
}
.g-rev__link svg {
  width: 1.05rem;
  height: 1.05rem;
}

.g-feat {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  background-color: var(--bark);
  margin-top: 2.6rem;
}
.g-feat__media {
  position: relative;
  min-height: 20rem;
}
.g-feat__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.g-feat__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(44, 32, 24, 0.1), rgba(44, 32, 24, 0.55));
}
.g-feat__body {
  padding: 2.6rem;
  color: var(--sand);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.g-feat__body .g-eyebrow {
  color: var(--honey);
}
.g-feat__body h3 {
  color: var(--parchment);
  font-size: 1.85rem;
  margin-bottom: 0.7rem;
}
.g-feat__body p {
  color: rgba(243, 233, 216, 0.82);
  margin-bottom: 1.5rem;
}

.g-board {
  background-color: var(--sand-soft);
  border: 0.08rem solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  margin-top: 2.6rem;
}
.g-board__scroll {
  width: 100%;
  overflow-x: auto;
}
.g-board table {
  width: 100%;
  border-collapse: collapse;
  min-width: 34rem;
}
.g-board thead {
  background-color: var(--forest);
  color: var(--sand);
}
.g-board th {
  font-family: "Grove Sans", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: left;
  padding: 1rem 1.2rem;
}
.g-board td {
  padding: 0.95rem 1.2rem;
  border-bottom: 0.06rem solid var(--line);
  font-size: 0.97rem;
  vertical-align: middle;
}
.g-board tbody tr:last-child td {
  border-bottom: 0;
}
.g-board tbody tr:nth-child(odd) {
  background-color: rgba(243, 233, 216, 0.45);
}
.g-board__rank {
  font-family: "Grove Slab", serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--terracotta);
  width: 3rem;
}
.g-board__game {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
}
.g-board__game img {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.55rem;
  flex: 0 0 auto;
}
.g-board__bar {
  position: relative;
  height: 0.5rem;
  background-color: var(--line);
  border-radius: 999px;
  min-width: 5rem;
}
.g-board__bar span {
  position: absolute;
  inset: 0 auto 0 0;
  background: linear-gradient(90deg, var(--moss), var(--honey-deep));
  border-radius: 999px;
}

.g-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.6rem;
  margin-top: 2.6rem;
  counter-reset: step;
}
.g-step {
  position: relative;
  background-color: var(--parchment);
  border: 0.08rem solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.6rem 1.6rem;
  box-shadow: var(--shadow-soft);
}
.g-step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -1.1rem;
  left: 1.4rem;
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  font-family: "Grove Slab", serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--parchment);
  background-color: var(--terracotta);
  border-radius: 50%;
  box-shadow: 0 0.4rem 0.9rem rgba(122, 57, 32, 0.3);
}
.g-step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}
.g-step p {
  font-size: 0.95rem;
  color: var(--bark-soft);
  margin-bottom: 0;
}

.g-about {
  background-color: var(--sand);
  position: relative;
}
.g-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.g-about__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  border: 0.4rem solid var(--parchment);
  transform: rotate(-1.2deg);
}
.g-about__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.g-about__list {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}
.g-about__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.98rem;
  color: var(--bark-soft);
}
.g-about__list svg {
  width: 1.3rem;
  height: 1.3rem;
  color: var(--moss);
  flex: 0 0 auto;
  margin-top: 0.18rem;
}

.g-faq {
  max-width: 50rem;
  margin-top: 2.4rem;
  margin-left: auto;
  margin-right: auto;
}
.g-faq__item {
  background-color: var(--sand-soft);
  border: 0.08rem solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 0.9rem;
  overflow: hidden;
}
.g-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  font-family: "Grove Slab", serif;
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--bark);
  background-color: transparent;
  border: 0;
  cursor: pointer;
  padding: 1.2rem 1.4rem;
}
.g-faq__q svg {
  width: 1.2rem;
  height: 1.2rem;
  flex: 0 0 auto;
  color: var(--terracotta);
  transition: transform 0.25s ease;
}
.g-faq__q[aria-expanded="true"] svg {
  transform: rotate(45deg);
}
.g-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.g-faq__a p {
  padding: 0 1.4rem 1.3rem;
  margin: 0;
  font-size: 0.97rem;
  color: var(--bark-soft);
}

.g-join {
  position: relative;
  background:
    linear-gradient(135deg, rgba(122, 57, 32, 0.96), rgba(79, 107, 57, 0.96));
  color: var(--sand);
  overflow: hidden;
}
.g-join::before {
  content: "";
  position: absolute;
  bottom: -6rem;
  left: -4rem;
  width: 22rem;
  height: 22rem;
  background: radial-gradient(circle, rgba(224, 177, 90, 0.25), transparent 70%);
}
.g-join__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 2.6rem;
  align-items: stretch;
}
.g-join__info h2 {
  color: var(--parchment);
}
.g-join__info p {
  color: rgba(243, 233, 216, 0.88);
}
.g-contacts {
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
}
.g-contacts li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.g-contacts svg {
  width: 1.5rem;
  height: 1.5rem;
  flex: 0 0 auto;
  color: var(--honey);
  margin-top: 0.15rem;
}
.g-contacts span {
  display: block;
}
.g-contacts strong {
  display: block;
  font-family: "Grove Slab", serif;
  font-size: 1rem;
  color: var(--parchment);
}
.g-contacts a {
  color: var(--sand);
}

.g-form {
  background-color: var(--parchment);
  color: var(--bark);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-lift);
}
.g-form h3 {
  font-size: 1.45rem;
  margin-bottom: 0.4rem;
}
.g-form p.g-form__sub {
  font-size: 0.95rem;
  color: var(--bark-soft);
  margin-bottom: 1.4rem;
}
.g-field {
  margin-bottom: 1rem;
}
.g-field label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
  color: var(--bark);
}
.g-field input[type="text"],
.g-field input[type="tel"],
.g-field input[type="email"] {
  width: 100%;
  font-family: "Grove Sans", sans-serif;
  font-size: 1rem;
  color: var(--bark);
  background-color: var(--sand-soft);
  border: 0.1rem solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.g-field input:focus {
  outline: none;
  border-color: var(--moss);
  box-shadow: 0 0 0 0.2rem rgba(111, 143, 78, 0.22);
}
.g-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--bark-soft);
  margin-bottom: 1.3rem;
}
.g-consent input {
  margin-top: 0.25rem;
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
  accent-color: var(--moss);
}
.g-consent a {
  color: var(--terracotta);
  font-weight: 600;
}
.g-form .g-btn {
  width: 100%;
}
.g-success {
  display: none;
  margin-top: 1rem;
  padding: 0.9rem 1.1rem;
  background-color: rgba(111, 143, 78, 0.16);
  border: 0.1rem solid var(--moss);
  border-radius: var(--radius-sm);
  color: var(--moss-deep);
  font-weight: 600;
  font-size: 0.92rem;
}
.g-success.show {
  display: block;
}

.g-rail {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  margin-top: 2.4rem;
  scroll-snap-type: x mandatory;
}
.g-rail__card {
  flex: 0 0 16rem;
  scroll-snap-align: start;
  background-color: var(--sand-soft);
  border: 0.08rem solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow-soft);
}
.g-rail__card .g-rail__icn {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 0.7rem;
  display: grid;
  place-items: center;
  background-color: var(--moss);
  color: var(--parchment);
  margin-bottom: 0.9rem;
}
.g-rail__card .g-rail__icn svg {
  width: 1.5rem;
  height: 1.5rem;
}
.g-rail__card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}
.g-rail__card p {
  font-size: 0.92rem;
  color: var(--bark-soft);
  margin-bottom: 0;
}

.g-foot {
  background-color: var(--bark);
  color: rgba(243, 233, 216, 0.78);
  padding-top: 3.5rem;
  padding-bottom: 2rem;
}
.g-foot__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.2rem;
}
.g-foot__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Grove Slab", serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--parchment);
  margin-bottom: 0.9rem;
}
.g-foot__brand:hover {
  text-decoration: none;
}
.g-foot__brand svg {
  width: 2.2rem;
  height: 2.2rem;
}
.g-foot p {
  font-size: 0.92rem;
  line-height: 1.6;
}
.g-foot h4 {
  color: var(--parchment);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.g-foot ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}
.g-foot ul a {
  color: rgba(243, 233, 216, 0.78);
  font-size: 0.92rem;
}
.g-foot ul a:hover {
  color: var(--honey);
  text-decoration: none;
}
.g-foot__contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
  font-size: 0.9rem;
}
.g-foot__contact svg {
  width: 1.15rem;
  height: 1.15rem;
  color: var(--honey);
  flex: 0 0 auto;
  margin-top: 0.18rem;
}
.g-foot__bar {
  margin-top: 2.6rem;
  padding-top: 1.5rem;
  border-top: 0.08rem solid rgba(243, 233, 216, 0.14);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
}
.g-foot__bar nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.g-phead {
  background-color: var(--forest);
  color: var(--sand);
  position: relative;
  overflow: hidden;
  padding-top: 3.4rem;
  padding-bottom: 3.4rem;
}
.g-phead::before {
  content: "";
  position: absolute;
  top: -5rem;
  right: -3rem;
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle, rgba(224, 177, 90, 0.22), transparent 70%);
}
.g-phead h1 {
  color: var(--parchment);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  margin-bottom: 0.6rem;
  position: relative;
  z-index: 1;
}
.g-phead p {
  color: rgba(243, 233, 216, 0.86);
  max-width: 40rem;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.g-crumb {
  font-size: 0.85rem;
  color: var(--honey);
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 1;
}
.g-crumb a {
  color: rgba(243, 233, 216, 0.8);
}

.g-prose {
  max-width: 50rem;
}
.g-prose h2 {
  font-size: 1.5rem;
  margin-top: 2.4rem;
  margin-bottom: 0.7rem;
}
.g-prose h3 {
  font-size: 1.15rem;
  margin-top: 1.6rem;
  margin-bottom: 0.5rem;
}
.g-prose p,
.g-prose li {
  color: var(--bark-soft);
}
.g-prose ul {
  padding-left: 1.3rem;
}
.g-prose li {
  margin-bottom: 0.5rem;
}
.g-prose a {
  font-weight: 600;
}
.g-callout {
  background-color: var(--sand-soft);
  border-left: 0.3rem solid var(--moss);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.2rem 1.4rem;
  margin-top: 1.6rem;
  margin-bottom: 1.6rem;
}
.g-callout p {
  margin-bottom: 0;
}

.g-cgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.4rem;
  margin-top: 2.4rem;
}
.g-ccard {
  background-color: var(--sand-soft);
  border: 0.08rem solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-soft);
}
.g-ccard__icn {
  width: 3rem;
  height: 3rem;
  border-radius: 0.8rem;
  display: grid;
  place-items: center;
  background-color: var(--terracotta);
  color: var(--parchment);
  margin-bottom: 0.9rem;
}
.g-ccard__icn svg {
  width: 1.5rem;
  height: 1.5rem;
}
.g-ccard h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}
.g-ccard p {
  font-size: 0.95rem;
  color: var(--bark-soft);
  margin-bottom: 0;
}
.g-ccard a {
  font-weight: 600;
}

.g-oops {
  min-height: 62vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.g-oops__num {
  font-family: "Grove Slab", serif;
  font-weight: 700;
  font-size: clamp(5rem, 18vw, 10rem);
  line-height: 0.9;
  color: var(--terracotta);
  margin-bottom: 0.5rem;
}

.g-cookie {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--bark);
  color: var(--sand);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  padding: 1.3rem 1.5rem;
  display: none;
}
.g-cookie.show {
  display: block;
}
.g-cookie p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: rgba(243, 233, 216, 0.88);
}
.g-cookie p a {
  color: var(--honey);
  font-weight: 600;
}
.g-cookie__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.g-cookie .g-btn {
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  font-size: 0.92rem;
}
.g-cookie__decline {
  background-color: transparent;
  color: var(--sand);
  border: 0.1rem solid rgba(243, 233, 216, 0.4);
}
.g-cookie__decline:hover {
  border-color: var(--honey);
  color: var(--honey);
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 64rem) {
  .g-hero__grid {
    grid-template-columns: 1fr;
    gap: 2.6rem;
  }
  .g-hero__visual {
    order: -1;
  }
  .g-feat {
    grid-template-columns: 1fr;
  }
  .g-feat__media {
    min-height: 14rem;
  }
  .g-about__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .g-join__grid {
    grid-template-columns: 1fr;
  }
  .g-foot__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
  }
}

@media (max-width: 48rem) {
  .g-burger {
    display: flex;
  }
  .g-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background-color: var(--parchment);
    border-bottom: 0.08rem solid var(--line);
    box-shadow: var(--shadow-soft);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s ease;
  }
  .g-nav.open {
    max-height: 32rem;
  }
  .g-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1.5rem 0.4rem;
  }
  .g-nav__list li {
    border-bottom: 0.06rem solid var(--line);
  }
  .g-nav__list li:last-child {
    border-bottom: 0;
  }
  .g-nav__list a {
    display: block;
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
    font-size: 1.04rem;
  }
  .g-nav__cta {
    display: flex;
    margin: 0.9rem 1.5rem 1.2rem;
  }
  .g-nav__cta .g-btn {
    width: 100%;
  }
  .g-section {
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
  }
  .g-hero__frame {
    transform: none;
  }
  .g-hero__badge {
    left: 0.6rem;
    bottom: -1rem;
  }
  .g-foot__grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
  .g-foot__bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 30rem) {
  body {
    font-size: 1rem;
  }
  .g-wrap {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }
  .g-hero__cta .g-btn {
    width: 100%;
  }
  .g-hero__stats {
    gap: 1.2rem;
  }
  .g-form {
    padding: 1.6rem;
  }
}

@media (min-width: 48.01rem) {
  .g-nav__cta {
    display: none;
  }
  .g-nav {
    position: static;
    max-height: none;
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: visible;
  }
}
