/* ==========================================================================
   Try Fit — Priscila Degobbi
   Design system nativo — sem frameworks, sem builders.
   ========================================================================== */

@font-face {
  font-family: 'Fraunces';
  src: local('Fraunces');
  font-display: swap;
}

:root{
  /* ---- Cor: derivada do verde real da marca (#14C850) + grafite (#4B4B4D) ---- */
  /* Estratégia: Committed — verde grafite carrega identidade em blocos alternados */
  --ink:            oklch(17.8% 0.0063 156.5);   /* quase-preto, leve matiz verde — texto principal */
  --ink-soft:       oklch(38.1% 0.0074 170.0);   /* grafite quente — subtítulos */
  --muted:          oklch(54.5% 0.0090 177.1);   /* texto secundário sobre claro, 4.9:1 */
  --muted-on-dark:  oklch(74% 0.014 165);        /* texto secundário sobre escuro */

  --paper:          oklch(98.0% 0.0025 165.1);   /* fundo claro, quase-branco, tint verde mínimo */
  --paper-alt:      oklch(95.7% 0.0066 160.1);   /* seção alternada clara */
  --white:          #ffffff;

  --deep:           oklch(26.8% 0.0590 152.0);   /* verde-grafite profundo — seções âncora */
  --deep-2:         oklch(21% 0.0500 154);       /* variação mais escura, gradação sutil */

  --accent:         oklch(72.7% 0.2091 147.5);   /* #14C850 — verde vivo, ícones/links/detalhe sobre claro/escuro */
  --accent-solid:   oklch(55.4% 0.1720 149.5);   /* #0A7A32 — verde escurecido, texto branco 5.46:1 */
  --accent-solid-hover: oklch(48% 0.160 150);

  --line: oklch(89% 0.008 165);                  /* divisórias sutis */
  --line-on-dark: oklch(40% 0.03 155);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px oklch(20% 0.02 160 / 0.06), 0 1px 1px oklch(20% 0.02 160 / 0.04);
  --shadow-md: 0 12px 32px -12px oklch(20% 0.05 155 / 0.28);
  --shadow-lg: 0 24px 60px -20px oklch(18% 0.06 155 / 0.35);

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);

  --container: 1240px;
  --pad-section: clamp(4.5rem, 3rem + 6vw, 8rem);
}

/* z-index scale */
:root{
  --z-dropdown: 10;
  --z-sticky: 100;
  --z-overlay: 200;
  --z-modal: 300;
  --z-toast: 400;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
}

body{
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
}

img{ max-width: 100%; display: block; }

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

h1, h2, h3, h4{
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}

p{ margin: 0; }

.container{
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 1rem + 2vw, 3rem);
}

section{ position: relative; }

.eyebrow{
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent-solid);
  letter-spacing: 0.02em;
}

.lede{
  font-size: clamp(1.0625rem, 1rem + 0.3vw, 1.1875rem);
  line-height: 1.6;
  color: var(--muted);
  max-width: 62ch;
  text-wrap: pretty;
}

/* ---------------------------------------------------------------------- */
/* Skip link + focus                                                      */
/* ---------------------------------------------------------------------- */
.skip-link{
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  z-index: var(--z-toast);
  transition: top 0.2s var(--ease-out-quart);
}
.skip-link:focus{ top: 1rem; }

:focus-visible{
  outline: 2px solid var(--accent-solid);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------------------------------------------------------------------- */
/* Header                                                                  */
/* ---------------------------------------------------------------------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: oklch(98% 0.0025 165 / 0.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease-out-quart), box-shadow 0.3s var(--ease-out-quart);
}
.site-header.is-scrolled{
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 oklch(20% 0.02 160 / 0.02), 0 8px 24px -16px oklch(20% 0.05 155 / 0.15);
}

.nav-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 1.05rem;
}

.brand{
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.brand img{ height: 30px; width: auto; }

.nav-links{
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a{
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding-block: 0.25rem;
}
.nav-links a::after{
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--accent-solid);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out-quart);
}
.nav-links a:hover::after,
.nav-links a:focus-visible::after{
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions{ display: flex; align-items: center; gap: 1rem; }

.nav-cta{
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-solid);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  transition: background 0.25s var(--ease-out-quart), transform 0.25s var(--ease-out-quart), box-shadow 0.25s var(--ease-out-quart);
  white-space: nowrap;
}
.nav-cta:hover{
  background: var(--accent-solid-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.menu-toggle{
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--ink);
}
.menu-toggle svg{ width: 24px; height: 24px; }

/* ---------------------------------------------------------------------- */
/* Hero                                                                    */
/* ---------------------------------------------------------------------- */
.hero{
  padding-top: clamp(3.5rem, 2.5rem + 4vw, 5.5rem);
  padding-bottom: clamp(3rem, 2rem + 3vw, 5rem);
  overflow: clip;
  background:
    radial-gradient(ellipse 60% 50% at 88% 8%, oklch(72.7% 0.15 147 / 0.16), transparent 65%),
    var(--paper);
}

.hero-grid{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 2rem + 2vw, 4rem);
  align-items: center;
}

.hero-copy{ max-width: 640px; }

.hero-kicker{
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent-solid);
  background: oklch(72.7% 0.15 147 / 0.1);
  border: 1px solid oklch(72.7% 0.15 147 / 0.22);
  padding: 0.4rem 0.85rem 0.4rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.hero-kicker .dot{
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px oklch(72.7% 0.2 147 / 0.25);
}

.hero h1{
  font-size: clamp(2.5rem, 1.9rem + 2.6vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}
.hero h1 em{
  font-style: italic;
  color: var(--accent-solid);
}

.hero-sub{
  font-size: clamp(1.0625rem, 1rem + 0.3vw, 1.1875rem);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 54ch;
  margin-bottom: 2.5rem;
  text-wrap: pretty;
}

.hero-ctas{
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.75rem;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 1.75rem;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  transition: transform 0.25s var(--ease-out-quart), box-shadow 0.25s var(--ease-out-quart), background 0.25s var(--ease-out-quart), color 0.25s var(--ease-out-quart), border-color 0.25s var(--ease-out-quart);
  white-space: nowrap;
}
.btn-primary{
  background: var(--accent-solid);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover{
  background: var(--accent-solid-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-primary svg{ transition: transform 0.3s var(--ease-out-quart); }
.btn-primary:hover svg{ transform: translateX(3px); }

.btn-ghost{
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover{
  border-color: var(--ink-soft);
  background: var(--white);
  transform: translateY(-2px);
}

.btn-on-dark{
  background: var(--white);
  color: var(--deep);
}
.btn-on-dark:hover{
  background: var(--paper-alt);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-ghost-on-dark{
  background: transparent;
  color: var(--white);
  border: 1.5px solid oklch(100% 0 0 / 0.28);
}
.btn-ghost-on-dark:hover{
  border-color: oklch(100% 0 0 / 0.55);
  background: oklch(100% 0 0 / 0.06);
}

.hero-proof{
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.hero-proof-avatars{
  display: flex;
}
.hero-proof-avatars img{
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2.5px solid var(--paper);
  object-fit: cover;
  margin-left: -10px;
}
.hero-proof-avatars img:first-child{ margin-left: 0; }
.hero-proof-text{
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.4;
}
.hero-proof-text strong{ color: var(--ink); }

.hero-visual{
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-visual-frame{
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 869 / 1024;
  border-radius: 32px;
  overflow: clip;
  background: linear-gradient(160deg, var(--deep), var(--deep-2));
  box-shadow: var(--shadow-lg);
}
.hero-visual-frame img{
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero-badge{
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.1rem;
  box-shadow: var(--shadow-lg);
  font-size: 0.8125rem;
  line-height: 1.3;
}
.hero-badge-top{
  top: -1.25rem;
  right: -1.25rem;
  max-width: 220px;
}
.hero-badge-bottom{
  bottom: 1.75rem;
  left: -2rem;
  max-width: 210px;
}
.hero-badge-icon{
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: oklch(72.7% 0.15 147 / 0.14);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-solid);
}
.hero-badge-icon svg{ width: 20px; height: 20px; }
.hero-badge strong{ display: block; color: var(--ink); font-weight: 700; font-size: 0.9375rem; }
.hero-badge span{ color: var(--muted); }

/* ---------------------------------------------------------------------- */
/* Credibility bar                                                        */
/* ---------------------------------------------------------------------- */
.credibility{
  padding-block: clamp(2.5rem, 2rem + 1.5vw, 3.5rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.credibility-label{
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  margin-bottom: 1.75rem;
  letter-spacing: 0.01em;
}
.credibility-row{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(1.75rem, 1.5rem + 2vw, 3.75rem);
}
.credibility-item{
  font-family: 'Fraunces', serif;
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.25rem);
  font-weight: 500;
  color: var(--ink-soft);
  opacity: 0.72;
  transition: opacity 0.25s var(--ease-out-quart);
  white-space: nowrap;
}
.credibility-item:hover{ opacity: 1; }

/* ---------------------------------------------------------------------- */
/* Routing / perfil cards                                                  */
/* ---------------------------------------------------------------------- */
.routing{
  padding-block: var(--pad-section);
}
.section-head{
  max-width: 720px;
  margin-bottom: clamp(2.5rem, 2rem + 2vw, 4rem);
}
.section-head h2{
  font-size: clamp(2rem, 1.7rem + 1.2vw, 2.75rem);
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: 1rem;
}

.routing-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.route-card{
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.75rem, 1.5rem + 1vw, 2.25rem);
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease-out-quart), box-shadow 0.4s var(--ease-out-quart), border-color 0.4s var(--ease-out-quart);
}
.route-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.route-card--featured{
  background: linear-gradient(165deg, var(--deep) 0%, var(--deep-2) 100%);
  border-color: transparent;
  color: var(--white);
}

.route-tag{
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-solid);
  margin-bottom: 1.1rem;
}
.route-card--featured .route-tag{ color: var(--accent); }

.route-card h3{
  font-size: 1.375rem;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.route-card p{
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 1.75rem;
  flex-grow: 1;
}
.route-card--featured p{ color: var(--muted-on-dark); }

.route-link{
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--ink);
  margin-top: auto;
}
.route-link svg{ width: 17px; height: 17px; transition: transform 0.3s var(--ease-out-quart); }
.route-card:hover .route-link svg{ transform: translateX(4px); }
.route-card--featured .route-link{ color: var(--white); }

.route-number{
  position: absolute;
  top: clamp(1.75rem, 1.5rem + 1vw, 2.25rem);
  right: clamp(1.75rem, 1.5rem + 1vw, 2.25rem);
  font-family: 'Fraunces', serif;
  font-size: 0.9375rem;
  color: var(--line);
  font-weight: 500;
}
.route-card--featured .route-number{ color: oklch(100% 0 0 / 0.25); }

/* ---------------------------------------------------------------------- */
/* Método / pilares                                                        */
/* ---------------------------------------------------------------------- */
.method{
  padding-block: var(--pad-section);
  background: var(--paper-alt);
}
.method-inner{
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 2rem + 2vw, 5rem);
  align-items: start;
}
.method-intro{ position: sticky; top: 6.5rem; }
.method-intro h2{
  font-size: clamp(2rem, 1.7rem + 1.2vw, 2.75rem);
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: 1.25rem;
}
.method-intro p{
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 46ch;
}

.pillars{
  display: flex;
  flex-direction: column;
}
.pillar{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding-block: 2rem;
  border-top: 1px solid var(--line);
}
.pillar:first-child{ border-top: none; padding-top: 0; }
.pillar:last-child{ padding-bottom: 0; }

.pillar-icon{
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.pillar-icon img{ width: 26px; height: 26px; object-fit: contain; }

.pillar h3{
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.pillar h3 .pillar-index{
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--accent-solid);
  margin-right: 0.6rem;
  vertical-align: middle;
}
.pillar p{
  font-size: 0.9688rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 56ch;
}

/* ---------------------------------------------------------------------- */
/* Prova social                                                            */
/* ---------------------------------------------------------------------- */
.social-proof{
  padding-block: var(--pad-section);
  background: var(--deep);
  color: var(--white);
  overflow: clip;
}
.social-proof .section-head h2{ color: var(--white); }
.social-proof .section-head p{ color: var(--muted-on-dark); }
.social-proof .eyebrow{ color: var(--accent); }

.testimonials-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: clamp(2.5rem, 2rem + 2vw, 3.5rem);
}

.testimonial{
  background: oklch(100% 0 0 / 0.045);
  border: 1px solid oklch(100% 0 0 / 0.1);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 1.5rem + 1vw, 2.25rem);
  display: flex;
  flex-direction: column;
  transition: background 0.3s var(--ease-out-quart), transform 0.3s var(--ease-out-quart);
}
.testimonial:hover{
  background: oklch(100% 0 0 / 0.075);
  transform: translateY(-4px);
}
.testimonial-quote{
  font-family: 'Fraunces', serif;
  font-size: 1.0625rem;
  line-height: 1.5;
  font-weight: 400;
  font-style: italic;
  color: oklch(97% 0.01 160);
  margin-bottom: 1.75rem;
  flex-grow: 1;
}
.testimonial-author{
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.testimonial-avatar{
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--accent-solid);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 0.9375rem;
  flex-shrink: 0;
}
.testimonial-author-name{
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--white);
}
.testimonial-author-role{
  font-size: 0.8125rem;
  color: var(--muted-on-dark);
}

.social-proof-band{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: clamp(2rem, 1.5rem + 1.5vw, 3rem);
  border-top: 1px solid oklch(100% 0 0 / 0.12);
}
.stat{
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.stat-value{
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 1.7rem + 1vw, 2.75rem);
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.stat-label{
  font-size: 0.875rem;
  color: var(--muted-on-dark);
}
.stats-row{
  display: flex;
  gap: clamp(2rem, 1.5rem + 2vw, 4rem);
  flex-wrap: wrap;
}

/* ---------------------------------------------------------------------- */
/* Reveal on scroll                                                        */
/* ---------------------------------------------------------------------- */
[data-reveal]{
  opacity: 0;
  transform: translateY(22px);
}
.js-ready [data-reveal]{
  transition: opacity 0.7s var(--ease-out-quart), transform 0.7s var(--ease-out-quart);
}
[data-reveal].is-visible{
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce){
  [data-reveal]{ opacity: 1; transform: none; }
}

/* stagger via inline custom property, set by JS as fallback-safe default */
[data-reveal]{ transition-delay: calc(var(--stagger, 0) * 70ms); }

/* ---------------------------------------------------------------------- */
/* Footer teaser (minimal, since only 5 sections requested)                */
/* ---------------------------------------------------------------------- */
.mini-footer{
  padding-block: 2.5rem;
  background: var(--ink);
  color: var(--muted-on-dark);
  font-size: 0.875rem;
  text-align: center;
}
.mini-footer strong{ color: var(--white); }

/* ---------------------------------------------------------------------- */
/* Responsive                                                              */
/* ---------------------------------------------------------------------- */
@media (max-width: 1080px){
  .method-inner{ grid-template-columns: 1fr; }
  .method-intro{ position: static; }
}

@media (max-width: 900px){
  .nav-links{ display: none; }
  .menu-toggle{ display: inline-flex; }

  .hero-grid{ grid-template-columns: 1fr; }
  .hero-visual{ order: -1; margin-bottom: 1rem; }
  .hero-visual-frame{ width: min(78vw, 340px); }
  .hero-copy{ max-width: none; }

  .routing-grid{ grid-template-columns: 1fr; }
  .testimonials-grid{ grid-template-columns: 1fr; }

  .social-proof-band{ flex-direction: column; align-items: flex-start; gap: 1.5rem; }
}

@media (max-width: 640px){
  .hero-badge{ display: none; }
  .credibility-row{ gap: 1.5rem 2rem; }
  .pillar{ grid-template-columns: 1fr; }
  .pillar-icon{ margin-bottom: 0.25rem; }
}

/* ---------------------------------------------------------------------- */
/* Mobile menu drawer                                                      */
/* ---------------------------------------------------------------------- */
.mobile-menu{
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: var(--z-modal);
  display: flex;
  flex-direction: column;
  padding: 1.5rem clamp(1.25rem, 1rem + 2vw, 3rem);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out-expo);
}
.mobile-menu.is-open{ transform: translateX(0); }
.mobile-menu-head{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}
.mobile-menu-close{
  background: none; border: none; cursor: pointer; color: var(--ink); padding: 0.5rem;
}
.mobile-menu-close svg{ width: 26px; height: 26px; }
.mobile-menu-links{
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 0.25rem;
}
.mobile-menu-links a{
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.75rem;
  padding-block: 0.65rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.mobile-menu-cta{ margin-top: 2rem; }
