:root {
  color-scheme: light;
  --paper: #f7f7f0;
  --ink: #253f35;
  --forest: #294f43;
  --muted: #596b61;
  --line: #dce3d7;
  --sage: #e9eee2;
  font-family:
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
body {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}
a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible,
summary:focus-visible {
  outline: 3px solid #b57952;
  outline-offset: 6px;
  border-radius: 4px;
}
a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.18;
  font-weight: 600;
}
h1,
h2 {
  letter-spacing: -0.045em;
}
svg {
  flex: none;
}
.container {
  width: min(1160px, calc(100% - 64px));
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  z-index: 10;
  top: -100px;
  left: 20px;
  padding: 12px 20px;
  background: var(--forest);
  color: white;
  border-radius: 10px;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: 100px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 25px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -1px;
}
.brand:hover {
  text-decoration: none;
}
.brand img {
  width: 34px;
  height: 34px;
}
.brand-light {
  font-weight: 400;
}
.brand-dot {
  color: #b97755;
}
.header-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  font-size: 13px;
  font-weight: 600;
}
.header-tools {
  display: flex;
  align-items: center;
  gap: 24px;
}
.language-links {
  display: flex;
  gap: 13px;
  align-items: center;
  font-size: 12px;
}
.language-links a {
  color: var(--muted);
}
.language-links [aria-current='page'] {
  color: var(--forest);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  border-radius: 9px;
  padding: 12px 21px;
  background: var(--forest);
  color: #fff;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.4;
  transition: background 0.15s;
}
.button:hover {
  background: #203e33;
  text-decoration: none;
}
.button svg {
  width: 17px;
  height: 17px;
}
.header-tools .button {
  min-height: 41px;
  padding: 10px 15px;
  font-size: 12px;
}
.eyebrow {
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.17em;
  color: #52725a;
  line-height: 1.6;
}
.hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 66px;
  padding-top: 90px;
  padding-bottom: 88px;
}
.hero h1 {
  margin-top: 24px;
  font-size: clamp(48px, 5.4vw, 70px);
}
.hero h1 em {
  display: block;
  margin-top: 6px;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  color: #647c56;
  letter-spacing: -0.055em;
}
.hero-description {
  max-width: 465px;
  color: var(--muted);
  margin-top: 27px;
  font-size: 16px;
  line-height: 1.85;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.text-link {
  font-size: 12px;
  font-weight: 650;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.preview-disclosure {
  margin-top: 28px;
  max-width: 430px;
  padding-left: 15px;
  border-left: 2px solid #c7d3bc;
  font-size: 11px;
  line-height: 1.75;
  color: var(--muted);
}
.preview-disclosure strong {
  display: block;
  font-size: 11px;
  color: #466248;
  margin-bottom: 3px;
}
.journal-figure {
  min-width: 0;
  padding: 28px 0 14px;
  position: relative;
}
.journal-figure:before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0 -18px 50px;
  border-radius: 48% 44% 46% 38%;
  background: #e9eedf;
  transform: rotate(-7deg);
}
.example-journal {
  position: relative;
  padding: 31px;
  background: #fdfdf9;
  border: 1px solid #e2e6dc;
  border-radius: 17px;
  box-shadow:
    0 14px 38px #344b3820,
    0 3px 8px #344b3808;
  transform: rotate(1.3deg);
}
.example-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
.example-top .brand {
  font-size: 17px;
  gap: 7px;
}
.example-top .brand img {
  width: 25px;
  height: 25px;
}
.example-top > span {
  font-size: 8px;
  letter-spacing: 0.1em;
  font-weight: 650;
  color: var(--muted);
}
.example-journal h2 {
  font-size: 24px;
  letter-spacing: -0.6px;
}
.example-subtitle {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
}
.example-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 23px;
  padding: 20px;
  background: #edf2e6;
  border-radius: 10px;
}
.example-total p {
  font-size: 10px;
  color: #527154;
}
.example-total strong {
  font-size: 35px;
  font-weight: 500;
  letter-spacing: -1px;
}
.example-total small {
  font-size: 11px;
  color: var(--muted);
  margin-left: 5px;
}
.example-total svg {
  color: #759266;
}
.example-meals {
  list-style: none;
  margin: 9px 0 0;
  padding: 0;
}
.example-meals li {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 17px 0;
  border-bottom: 1px solid #e9ede4;
}
.meal-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #9b7658;
  background: #f4e9df;
}
.meal-icon.sage {
  background: #e8eee2;
  color: #608157;
}
.example-meals strong {
  font-size: 11px;
  font-weight: 650;
  display: block;
}
.example-meals p {
  font-size: 10px;
  color: var(--muted);
  margin-top: 2px;
}
.meal-value {
  margin-left: auto;
  color: #466149;
  font-size: 12px;
}
.example-weight {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 21px;
  font-size: 10px;
}
.example-weight span {
  color: var(--muted);
}
.example-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 24px;
  padding-top: 17px;
  border-top: 1px dashed #d6dfcd;
  color: #67845a;
  font-size: 10px;
}
.journal-figure figcaption {
  margin: 20px auto 0;
  max-width: 350px;
  text-align: center;
  font-size: 10px;
  color: var(--muted);
  line-height: 1.65;
}
.introduction {
  padding: 63px 0 71px;
  border-top: 1px solid var(--line);
}
.section-heading {
  max-width: 620px;
}
.section-heading h2 {
  font-size: 36px;
  margin-top: 15px;
}
.section-heading > p:last-child {
  margin-top: 17px;
  color: var(--muted);
  max-width: 540px;
  font-size: 14px;
  line-height: 1.85;
}
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  margin-top: 44px;
}
.feature-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: #e9eee1;
  color: #557a53;
  margin-bottom: 19px;
}
.feature:nth-child(2) .feature-icon {
  background: #f2e7df;
  color: #a37b5e;
}
.feature:nth-child(3) .feature-icon {
  background: #eae8ef;
  color: #83798f;
}
.feature h3 {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.3px;
}
.feature p {
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
  margin-top: 10px;
}
.choices-section {
  background: #e9eee3;
  border-block: 1px solid #e0e6d8;
  padding: 72px 0;
}
.choices-grid {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 95px;
  align-items: start;
}
.choices-grid h2 {
  font-size: 43px;
  margin-top: 19px;
  white-space: pre-line;
}
.choices-description {
  color: var(--muted);
  font-size: 14px;
  max-width: 360px;
  margin-top: 21px;
  line-height: 1.85;
}
.choices-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.choices-list li {
  display: flex;
  gap: 20px;
  padding: 0 0 25px;
  margin-bottom: 24px;
  border-bottom: 1px solid #d4dfcb;
}
.choices-list li:last-child {
  border: 0;
  padding: 0;
  margin-bottom: 0;
}
.choice-number {
  flex: none;
  color: #809175;
  font-size: 11px;
  font-weight: 650;
  padding-top: 4px;
}
.choices-list h3 {
  font-size: 15px;
  line-height: 1.5;
}
.choices-list p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}
.data-section {
  padding-top: 74px;
  padding-bottom: 76px;
}
.data-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.data-card {
  padding: 30px;
  background: #fdfdf8;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  gap: 21px;
  align-items: start;
}
.data-card > svg {
  color: #719066;
  margin-top: 4px;
}
.data-card h3 {
  font-size: 16px;
  line-height: 1.5;
}
.data-card p {
  font-size: 13px;
  line-height: 1.85;
  color: var(--muted);
  margin-top: 10px;
}
.preview-section {
  background: #294f43;
  color: #f7f7ef;
  border-radius: 17px;
  padding: 44px 46px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 56px;
  align-items: center;
  margin-bottom: 72px;
}
.preview-section .eyebrow {
  color: #c6d7b6;
}
.preview-section h2 {
  font-size: 30px;
  margin-top: 14px;
  letter-spacing: -0.025em;
}
.preview-section p:not(.eyebrow) {
  font-size: 13px;
  line-height: 1.9;
  color: #d6e0d5;
  margin-top: 16px;
}
.preview-section .upcoming {
  color: #d6e0d5;
  font-size: 12px !important;
}
.preview-action {
  text-align: center;
}
.preview-action .button {
  background: #eff3e7;
  color: #294f43;
  width: 100%;
}
.preview-action .button:hover {
  background: white;
}
.preview-action p {
  font-size: 11px !important;
}
.site-footer {
  border-top: 1px solid var(--line);
  padding: 35px 0 30px;
}
.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.footer-main .brand {
  font-size: 21px;
}
.footer-main .brand img {
  width: 28px;
  height: 28px;
}
.footer-main p {
  font-size: 11px;
  color: var(--muted);
  margin-top: 10px;
}
.footer-languages {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 11px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-languages > span {
  color: var(--muted);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 10px;
  color: var(--muted);
  margin-top: 30px;
}
html[lang='ka'] .eyebrow {
  letter-spacing: 0.035em;
}
html[lang='ka'] h1,
html[lang='ka'] h2 {
  letter-spacing: -0.025em;
}
html[lang='ka'] .hero h1 {
  font-size: clamp(37px, 3.9vw, 51px);
  line-height: 1.35;
}
html[lang='ka'] .hero h1 em {
  font-family: inherit;
  letter-spacing: -0.025em;
  font-size: 0.92em;
  font-style: normal;
}
html[lang='ka'] .example-journal h2 {
  font-size: 20px;
  line-height: 1.4;
}
html[lang='ka'] .choices-grid h2 {
  font-size: 32px;
  line-height: 1.5;
}
html[lang='ka'] .section-heading h2 {
  line-height: 1.4;
  font-size: 29px;
}
html[lang='ka'] .header-links {
  font-size: 11px;
  gap: 19px;
}
html[lang='ka'] .preview-section h2 {
  line-height: 1.4;
}
@media (max-width: 1000px) {
  .header-inner {
    gap: 20px;
  }
  .header-links {
    gap: 18px;
  }
  .header-tools {
    gap: 18px;
  }
  .hero {
    gap: 40px;
    padding-top: 70px;
  }
  .hero h1 {
    font-size: 52px;
  }
  .example-journal {
    padding: 23px;
  }
  .choices-grid {
    gap: 55px;
  }
  .preview-section {
    grid-template-columns: 1fr 225px;
    gap: 34px;
  }
}
@media (max-width: 800px) {
  .container {
    width: calc(100% - 40px);
  }
  .header-inner {
    min-height: 82px;
    justify-content: space-between;
  }
  .header-links {
    display: none;
  }
  .header-tools {
    margin-left: auto;
    gap: 16px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 52px;
    padding-bottom: 48px;
  }
  .hero-copy {
    max-width: 600px;
  }
  .hero h1 {
    font-size: 64px;
  }
  .hero-description {
    max-width: 520px;
  }
  .journal-figure {
    width: min(100%, 430px);
    justify-self: center;
    padding-inline: 8px;
  }
  .journal-figure:before {
    inset: 0 0 50px;
    transform: none;
  }
  .example-journal {
    padding: 29px;
  }
  .features {
    gap: 24px;
  }
  .choices-grid {
    grid-template-columns: 1fr;
    gap: 33px;
  }
  .choices-description {
    max-width: 560px;
  }
  .data-card {
    padding: 24px;
    gap: 15px;
  }
  .preview-section {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 35px;
  }
  .preview-action {
    text-align: left;
    max-width: 320px;
  }
  html[lang='ka'] .hero h1 {
    font-size: 46px;
  }
}
@media (max-width: 540px) {
  .brand {
    font-size: 22px;
    gap: 8px;
  }
  .brand img {
    width: 29px;
    height: 29px;
  }
  .header-inner {
    flex-wrap: wrap;
    gap: 17px;
    padding-block: 19px;
  }
  .header-tools {
    gap: 14px;
  }
  .header-tools .button {
    display: none;
  }
  .language-links {
    gap: 10px;
    font-size: 11px;
  }
  .hero {
    padding-top: 43px;
  }
  .hero h1 {
    font-size: 46px;
    letter-spacing: -0.047em;
  }
  .hero .eyebrow {
    font-size: 9px;
  }
  .hero-description {
    font-size: 14px;
    line-height: 1.9;
    margin-top: 23px;
  }
  .hero-actions {
    gap: 20px;
  }
  .hero-actions .button {
    padding-inline: 18px;
  }
  .text-link {
    font-size: 11px;
  }
  .preview-disclosure {
    font-size: 10px;
  }
  .journal-figure {
    margin-top: 1px;
  }
  .example-journal {
    padding: 23px;
  }
  .example-journal h2 {
    font-size: 22px;
  }
  .example-top > span {
    font-size: 7px;
  }
  .example-total {
    padding: 17px;
  }
  .introduction {
    padding-block: 46px;
  }
  .section-heading h2 {
    font-size: 30px;
  }
  .features {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 31px;
  }
  .feature {
    display: grid;
    grid-template-columns: 44px 1fr;
    column-gap: 19px;
  }
  .feature-icon {
    grid-row: 1/3;
    margin: 0;
  }
  .feature p {
    margin-top: 7px;
  }
  .choices-section {
    padding-block: 46px;
  }
  .choices-grid h2 {
    font-size: 37px;
  }
  .choices-list li {
    gap: 15px;
  }
  .data-section {
    padding-block: 48px;
  }
  .data-cards {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 26px;
  }
  .preview-section {
    padding: 28px 25px;
    margin-bottom: 45px;
  }
  .preview-section h2 {
    font-size: 27px;
  }
  .footer-main {
    align-items: start;
    flex-direction: column;
    gap: 21px;
  }
  .footer-languages {
    justify-content: flex-start;
  }
  .footer-bottom {
    font-size: 9px;
    gap: 15px;
    margin-top: 25px;
  }
  html[lang='ka'] .hero h1 {
    font-size: 34px;
  }
  html[lang='ka'] .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }
  html[lang='ka'] .section-heading h2 {
    font-size: 26px;
  }
  html[lang='ka'] .choices-grid h2 {
    font-size: 27px;
  }
  html[lang='ka'] .example-journal h2 {
    font-size: 18px;
  }
  html[lang='ka'] .example-weight {
    align-items: start;
    flex-direction: column;
    gap: 4px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .button {
    transition: none;
  }
}
