/* Norte Bakery shared styles
   Playful Cherry brand system: #E63946 on warm cream, Fraunces + Nunito Sans.
   Design language from the brand board: serif lockup, dotted separators,
   four-point star, thin rules, blush bands with the oval emblem. */

:root {
  /* Palette */
  --cream: #fbf1ec;
  --cloth: #fffaf7;
  --label-cream: #fdf4ef; /* exact background of the brand art PNGs */
  --blush: #f9e1dc;
  --blush-deep: #f3cfc6;
  --line: #ecc5bb;
  --cherry: #e63946;
  --cherry-dark: #b71c2b;
  --cherry-deep: #66131c;
  --rose: #e1848c;
  --ink: #3d2427;

  /* Legacy aliases */
  --caramel: var(--cherry-dark);
  --crust: var(--cherry-dark);
  --butter: var(--blush);
  --ember: var(--cherry);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --band-pad: clamp(3.25rem, 7vw, 5.25rem);

  --shadow-soft: 0 10px 30px -12px rgba(102, 19, 28, 0.18);
  --shadow-lift: 0 18px 44px -18px rgba(102, 19, 28, 0.28);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Nunito Sans", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0425rem;
  line-height: 1.7;
}

::selection {
  background: var(--blush-deep);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  color: var(--cherry-dark);
  line-height: 1.12;
  margin: 0 0 var(--space-2);
  font-weight: 600;
}

h1 {
  font-size: clamp(2.5rem, 5.5vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.75rem, 3.4vw, 2.4rem);
}

h3 {
  font-size: 1.3rem;
}

p {
  margin: 0 0 var(--space-2);
}

a {
  color: var(--cherry-dark);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--cherry);
  outline-offset: 3px;
  border-radius: 2px;
}

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

/* Layout: full-bleed bands with a shared container */

main {
  min-height: 60vh;
}

.band {
  padding-block: var(--band-pad);
}

.band--blush {
  background: var(--blush);
  position: relative;
}

/* Scalloped "piping" edge on blush bands */
.band--blush::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -9px;
  height: 9px;
  background-image: radial-gradient(
    circle at 9px 9px,
    var(--blush) 7px,
    rgba(0, 0, 0, 0) 7.6px
  );
  background-size: 18px 9px;
  background-position: 50% 0;
  pointer-events: none;
}

.container {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2rem);
}

/* Type helpers */

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--cherry);
  margin-bottom: var(--space-2);
}

.eyebrow::before {
  content: "\2022\00a0\00a0";
}

.eyebrow::after {
  content: "\00a0\00a0\2022";
}

.script {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--cherry);
  margin-bottom: var(--space-1);
}

.lede {
  font-size: 1.2rem;
  max-width: 48ch;
}

/* Thin brand rule under headings, like the board's underline */
.ruled::after {
  content: "";
  display: block;
  width: 46px;
  height: 2px;
  border-radius: 2px;
  background: var(--cherry);
  margin: 0.95rem 0 0;
}

.centered {
  text-align: center;
}

.centered.ruled::after {
  margin-inline: auto;
}

.section-head {
  margin-bottom: var(--space-4);
}

/* Star ornament */

.star {
  display: inline-block;
  width: 26px;
  height: 26px;
  color: var(--cherry);
}

/* Buttons and text links */

.btn {
  display: inline-block;
  background: var(--cherry);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
  line-height: 1;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  padding: 1rem 1.9rem;
  box-shadow: 0 10px 22px -10px rgba(183, 28, 43, 0.55);
  cursor: pointer;
  transition:
    background 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.btn:hover,
.btn:focus-visible {
  background: var(--cherry-dark);
  transform: translateY(-1px);
  box-shadow: 0 14px 26px -12px rgba(183, 28, 43, 0.6);
}

.text-link {
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--cherry-dark);
  text-decoration: underline;
  text-decoration-color: var(--rose);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  transition: color 0.15s ease;
}

.text-link:hover {
  color: var(--cherry);
  text-decoration-color: var(--cherry);
}

/* Header */

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-2);
  padding: 0.9rem clamp(1.25rem, 4vw, 2rem);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--cherry);
  line-height: 1;
  text-decoration: none;
}

.site-header .wordmark {
  flex-direction: row;
  gap: 0.7rem;
}

.brand-mark {
  width: auto;
  height: 42px;
  flex: 0 0 auto;
}

.wordmark-text {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

.wordmark-name {
  font-size: 1.45rem;
  letter-spacing: 0.22em;
  text-indent: 0.22em; /* balance the trailing tracking */
}

.wordmark-subtitle {
  margin-top: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.42em;
  text-indent: 0.42em;
  color: var(--cherry-dark);
}

.wordmark-subtitle::before {
  content: "\2022\00a0\00a0";
  color: var(--cherry);
}

.wordmark-subtitle::after {
  content: "\00a0\00a0\2022";
  color: var(--cherry);
}

.site-nav {
  display: flex;
  gap: clamp(1.25rem, 3vw, 2.4rem);
}

.site-nav a {
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink);
  text-decoration: none;
  padding-bottom: 0.3rem;
  border-bottom: 2px solid transparent;
  transition:
    color 0.15s ease,
    border-color 0.15s ease;
}

.site-nav a:hover {
  color: var(--cherry);
}

.site-nav a.active {
  color: var(--cherry-dark);
  border-bottom-color: var(--cherry);
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--cherry);
  border-radius: 999px;
  padding: 0.45rem 1.15rem;
  font: inherit;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--cherry-dark);
  cursor: pointer;
}

@media (max-width: 699px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    flex-basis: 100%;
    gap: 0;
    padding-top: var(--space-1);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 0.7rem 0.25rem;
    border-bottom: 1px dotted var(--line);
  }

  .site-nav a.active {
    border-bottom: 1px dotted var(--line);
    color: var(--cherry);
  }

  .site-nav a:last-child {
    border-bottom: none;
  }
}

@media (min-width: 700px) {
  /* Centered lockup, board-style */
  .site-header {
    flex-direction: column;
    gap: 0.9rem;
    padding-top: 1.5rem;
    padding-bottom: 1.1rem;
  }

  .site-header .wordmark {
    flex-direction: column;
    gap: 0.55rem;
  }

  .brand-mark {
    height: 58px;
  }

  .wordmark-name {
    font-size: 1.7rem;
  }
}

/* Footer */

.site-footer {
  background: var(--cherry-deep);
  color: var(--cream);
  padding: var(--space-5) clamp(1.25rem, 4vw, 2rem) var(--space-4);
  position: relative;
  text-align: center;
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -9px;
  height: 9px;
  background-image: radial-gradient(
    circle at 9px 9px,
    var(--cherry-deep) 7px,
    rgba(0, 0, 0, 0) 7.6px
  );
  background-size: 18px 9px;
  background-position: 50% 0;
  pointer-events: none;
}

.footer-brand {
  margin-bottom: var(--space-4);
}

.footer-brand .star {
  color: var(--rose);
  width: 22px;
  height: 22px;
  margin-bottom: 0.9rem;
}

.footer-wordmark {
  color: var(--cream);
  margin-bottom: var(--space-2);
}

.footer-wordmark .wordmark-name {
  font-size: 1.6rem;
}

.footer-wordmark .wordmark-subtitle {
  color: var(--rose);
}

.footer-wordmark .wordmark-subtitle::before,
.footer-wordmark .wordmark-subtitle::after {
  color: var(--rose);
}

.footer-tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--blush);
  margin: 0;
}

.site-footer h2 {
  color: var(--rose);
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  margin-bottom: var(--space-2);
}

.site-footer a {
  color: var(--cream);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
  text-decoration-color: var(--rose);
}

.site-footer a:hover {
  text-decoration-color: var(--cream);
}

.site-footer a:focus-visible {
  outline-color: var(--cream);
}

.site-footer p {
  margin-bottom: 0.35rem;
}

.footer-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
  max-width: 900px;
  margin: 0 auto var(--space-4);
}

.footer-fine {
  border-top: 1px dotted rgba(249, 225, 220, 0.35);
  max-width: 900px;
  margin: 0 auto;
  padding-top: var(--space-3);
  font-size: 0.88rem;
  opacity: 0.85;
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Branded placeholder tiles (photos to come) */

.ph {
  position: relative;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blush);
  border-radius: var(--radius-md);
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.ph::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(183, 28, 43, 0.3);
  border-radius: calc(var(--radius-md) - 6px);
  pointer-events: none;
  z-index: 1;
}

.ph::after {
  content: "";
  position: absolute;
  width: 30%;
  aspect-ratio: 228 / 270;
  background: url("../assets/brand/mark-cherry-alpha.png") center / contain
    no-repeat;
  opacity: 0.22;
}

.ph-label {
  position: relative;
  z-index: 1;
  align-self: flex-end;
  margin-bottom: 1.9rem;
  padding-inline: var(--space-3);
  font-weight: 800;
  font-size: 0.72rem;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  text-align: center;
  color: var(--cherry-dark);
}

.ph-label::before {
  content: "\2022\00a0\00a0";
  color: var(--cherry);
}

.ph-label::after {
  content: "\00a0\00a0\2022";
  color: var(--cherry);
}

.ph--alt {
  background: var(--blush-deep);
}

.ph--square {
  aspect-ratio: 1 / 1;
}

.ph--portrait {
  aspect-ratio: 5 / 4;
}

/* Blush tiles sitting on a blush band get a cloth background instead */
.band--blush .ph {
  background: var(--cloth);
}

.band--blush .ph--alt {
  background: var(--cream);
}

/* Page intro (menu, about, order) */

.page-intro {
  text-align: center;
}

.page-intro::after {
  display: none;
}

.page-intro .container::before {
  content: "";
  display: block;
  width: 44px;
  aspect-ratio: 228 / 270;
  margin: 0 auto var(--space-2);
  background: url("../assets/brand/mark-cherry-alpha.png") center / contain
    no-repeat;
}

.page-intro h1 {
  margin-bottom: var(--space-1);
}

.page-intro .lede {
  margin-inline: auto;
  margin-bottom: 0;
}

/* Home: hero */

.hero-grid {
  display: grid;
  gap: var(--space-4);
  align-items: center;
}

.hero-copy .lede {
  font-size: clamp(1.15rem, 2.2vw, 1.3rem);
  font-weight: 600;
}

.hero-copy .btn {
  margin-top: var(--space-1);
}

.hero-art {
  position: relative;
  transform: rotate(1.75deg);
  margin: var(--space-2) auto 0;
  max-width: 560px;
}

.hero-frame {
  background: #fff;
  padding: 10px;
  border-radius: 14px;
  box-shadow: var(--shadow-lift);
}

.hero-image {
  border-radius: 8px;
}

.hero-art .star--a {
  position: absolute;
  top: -16px;
  left: -14px;
  width: 34px;
  height: 34px;
  color: var(--cherry);
  transform: rotate(-12deg);
}

.hero-art .star--b {
  position: absolute;
  bottom: -14px;
  right: -12px;
  width: 24px;
  height: 24px;
  color: var(--rose);
  transform: rotate(18deg);
}

@media (min-width: 800px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: var(--space-5);
  }

  .hero-art {
    margin-top: 0;
  }
}

/* Home: product cards */

.card-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }
}

.card {
  background: var(--cloth);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card .ph {
  border-radius: 0;
  aspect-ratio: 16 / 10;
  background: var(--cream);
}

.card .ph::before {
  border-radius: 0;
  border-width: 0 0 1px;
  inset: auto 0 0;
  border-color: var(--line);
}

.card-body {
  padding: var(--space-3) var(--space-3) var(--space-4);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}

.card h3 {
  margin-bottom: var(--space-1);
}

.card p {
  margin-bottom: var(--space-3);
}

.card .text-link {
  margin-top: auto;
}

/* Home: story teaser */

.story-grid {
  display: grid;
  gap: var(--space-4);
  align-items: center;
}

@media (min-width: 800px) {
  .story-grid {
    grid-template-columns: 1fr 0.9fr;
    gap: var(--space-5);
  }
}

/* Home: how ordering works */

.step-list {
  list-style: none;
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
  margin: 0;
  padding: 0;
}

.step-list h3 {
  margin-bottom: var(--space-1);
  font-size: 1.2rem;
}

.step-list p {
  margin-bottom: 0;
}

.step-list li + li {
  border-top: 2px dotted rgba(183, 28, 43, 0.25);
  padding-top: var(--space-3);
}

@media (min-width: 700px) {
  .step-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }

  .step-list li {
    padding-inline: var(--space-3);
  }

  .step-list li:first-child {
    padding-left: 0;
  }

  .step-list li:last-child {
    padding-right: 0;
  }

  .step-list li + li {
    border-top: none;
    border-left: 2px dotted rgba(183, 28, 43, 0.25);
    padding-top: 0;
  }
}

/* Menu page */

.menu-grid {
  display: grid;
  gap: var(--space-4);
  align-items: center;
}

@media (min-width: 800px) {
  .menu-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: var(--space-5);
  }

  .menu-grid--flip > :first-child {
    order: 2;
  }
}

/* The product-line lockup, presented like a label on the cake box */
.menu-label {
  background: var(--label-cream);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  max-width: 24rem;
  margin-inline: auto;
  transform: rotate(-2deg);
  position: relative;
}

.menu-label::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px dotted rgba(183, 28, 43, 0.35);
  border-radius: calc(var(--radius-lg) - 6px);
  pointer-events: none;
}

.product-line-art {
  width: 100%;
}

.size-list {
  list-style: none;
  margin: 0 0 var(--space-3);
  padding: 0;
}

.size-list li {
  padding: 0.8rem 0.2rem;
  border-bottom: 1px solid var(--line);
}

.size-list .size-row {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
}

.size-desc {
  margin: 0.45rem 0 0;
  font-size: 0.95rem;
  max-width: 56ch;
}

.size-list li:first-child {
  border-top: 1px solid var(--line);
}

.size-name strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--cherry-dark);
}

.leader {
  flex: 1;
  min-width: 2rem;
  border-bottom: 2px dotted rgba(183, 28, 43, 0.35);
  transform: translateY(-0.3em);
}

.price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--cherry-dark);
}

.starting-at {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--cherry-dark);
}

.note {
  font-size: 0.95rem;
  background: var(--blush);
  border-radius: var(--radius-sm);
  padding: var(--space-2) var(--space-3);
}

.band--blush .note {
  background: var(--cloth);
}

.gallery-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
}

@media (min-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Order page */

.order-layout {
  display: grid;
  gap: var(--space-4);
  align-items: start;
}

@media (min-width: 900px) {
  .order-layout {
    grid-template-columns: minmax(0, 680px) minmax(0, 1fr);
    gap: var(--space-5);
  }

  .order-side {
    position: sticky;
    top: var(--space-3);
  }
}

.order-form {
  display: grid;
  gap: var(--space-3);
  background: var(--cloth);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.field label {
  display: block;
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--blush-deep);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.95rem;
  transition: border-color 0.15s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8a655e;
  opacity: 1;
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4' fill='none' stroke='%23b71c2b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 16px;
  padding-right: 2.6rem;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: var(--rose);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 3px solid var(--cherry);
  outline-offset: 1px;
  border-color: var(--cherry-dark);
}

.order-form .btn {
  justify-self: start;
  margin-top: var(--space-1);
}

.reassurance {
  font-weight: 600;
  background: var(--blush);
  border-radius: var(--radius-md);
  padding: var(--space-3);
}

.square-placeholder {
  background: var(--cloth);
  border: 2px dashed var(--rose);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  margin-bottom: var(--space-2);
}

.square-placeholder h3 {
  margin-bottom: var(--space-1);
}

.square-placeholder p {
  margin-bottom: 0;
}

.fallback {
  font-size: 0.95rem;
}

/* About page */

.about-grid {
  display: grid;
  gap: var(--space-4);
  align-items: center;
}

@media (min-width: 800px) {
  .about-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: var(--space-5);
  }
}

.why-copy {
  max-width: 62ch;
  margin-inline: auto;
  margin-bottom: 0;
}

.about-details {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
}

@media (min-width: 800px) {
  .about-details {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
  }
}

.hours-card {
  background: var(--blush);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-3) var(--space-4);
}

.hours-card h2 {
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--cherry-dark);
  margin-bottom: var(--space-2);
}

.hours-card h2::before {
  content: "\2022\00a0\00a0";
  color: var(--cherry);
}

.hours-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hours-card li {
  display: flex;
  justify-content: space-between;
  gap: var(--space-2);
  padding-block: 0.45rem;
  border-bottom: 1px dotted rgba(183, 28, 43, 0.3);
}

.hours-card li:last-child {
  border-bottom: none;
}

.hours-card p:last-child {
  margin-bottom: 0;
}

/* Motion preferences */

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}

/* Hero font size swap (Begum, 2026-08-31): she meant size, not style/weight
   (previous pass swapped the wrong attribute). Welcome line takes the
   headline's size, headline takes the welcome line's size. Scoped to the
   hero; the footer tagline keeps .script as-is. */
.hero .script {
  font-size: clamp(2.5rem, 5.5vw, 3.75rem);
  line-height: 1.1;
}

.hero h1 {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

/* Begum 2026-08-31: About Us heading sized to match the hero headline */
.story-teaser .eyebrow {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

/* Begum 2026-08-31: ordering CTA replaces the three-step list */
.ordering-cta {
  max-width: 46rem;
  margin: 0 auto;
  text-align: center;
}

.ordering-cta .btn {
  margin-top: var(--space-2);
}

/* a11y utility */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
