:root {
  --bg: #12100f;
  --bg-soft: #1a1715;
  --bg-panel: #231d1a;
  --bg-card: #2c221f;
  --bg-card-strong: #342724;
  --bg-card-soft: rgba(255, 255, 255, 0.03);
  --line: rgba(255, 167, 109, 0.1);
  --line-strong: rgba(255, 132, 72, 0.32);
  --text: #f6f1ea;
  --muted: #c7b8aa;
  --muted-soft: #a08e7f;
  --accent: #ff6a3d;
  --accent-strong: #ff8a44;
  --accent-soft: rgba(255, 106, 61, 0.16);
  --accent-hot: #ff4d65;
  --accent-alt: #ffc277;
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.38);
  --shadow-md: 0 14px 36px rgba(0, 0, 0, 0.28);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: min(1160px, calc(100vw - 32px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.7;
  background:
    radial-gradient(circle at top center, rgba(255, 122, 72, 0.12), transparent 28%),
    linear-gradient(180deg, #2a211d 0%, #151210 16%, #100e0d 46%, #171310 100%);
}

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

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

p,
li,
td {
  color: var(--muted);
}

ul,
ol {
  margin: 0;
  padding-left: 1.2rem;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

th {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

details summary {
  cursor: pointer;
  list-style: none;
}

details summary::-webkit-details-marker {
  display: none;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(14, 12, 11, 0.82);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.2rem;
  align-items: center;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.16rem;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand span {
  color: var(--accent-alt);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}

.site-nav {
  justify-content: center;
}

.site-nav a,
.mobile-menu a {
  color: var(--text);
  font-weight: 700;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-nav a:hover,
.mobile-menu a:hover,
.footer-links a:hover,
.inline-link:hover {
  color: var(--accent-alt);
}

.site-nav .is-current,
.mobile-menu .is-current {
  color: var(--accent-strong);
}

.button,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.82rem 1.25rem;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.button:hover,
.button-link:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #fff;
  box-shadow: 0 12px 24px rgba(255, 106, 61, 0.28);
}

.button-soft {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.button-soft:hover {
  border-color: var(--line-strong);
  background: rgba(255, 106, 61, 0.08);
}

.button-link {
  color: var(--accent-alt);
  font-weight: 700;
}

.mobile-nav {
  display: none;
  grid-column: 1 / -1;
}

.mobile-nav summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 800;
}

.mobile-nav summary::after {
  content: "+";
  margin-left: 0.45rem;
  color: var(--accent-alt);
}

.mobile-nav[open] summary::after {
  content: "-";
}

.mobile-menu {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.9rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  background: rgba(35, 29, 26, 0.98);
  box-shadow: var(--shadow-lg);
}

.mobile-menu .button,
.mobile-menu .button-link {
  justify-content: flex-start;
}

main {
  padding: 1.6rem 0 4rem;
}

.hero,
.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 1.4rem;
  align-items: stretch;
}

.hero-home {
  grid-template-columns: 1fr;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.hero-panel,
.page-hero {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.hero-panel {
  min-height: 640px;
  background:
    linear-gradient(90deg, rgba(16, 13, 12, 0.92) 0%, rgba(16, 13, 12, 0.78) 45%, rgba(16, 13, 12, 0.24) 100%),
    radial-gradient(circle at top left, rgba(255, 106, 61, 0.18), transparent 28%),
    url("images/hero-bg1.jpg") center right / cover no-repeat;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 24%);
}

.hero-panel-home {
  min-height: 710px;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(120, 59, 26, 0.72) 0%, rgba(215, 122, 42, 0.56) 38%, rgba(156, 69, 25, 0.68) 100%),
    radial-gradient(circle at center, rgba(255, 193, 93, 0.34), transparent 28%),
    linear-gradient(180deg, rgba(255, 170, 63, 0.12), rgba(67, 28, 11, 0.22)),
    url("images/headhome.jpg") 76% center / cover no-repeat;
}

.hero-panel-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(73, 30, 12, 0.62) 0%, rgba(120, 53, 17, 0.22) 34%, rgba(112, 45, 15, 0.48) 100%),
    radial-gradient(circle at center, rgba(255, 197, 95, 0.34), transparent 24%);
}

.hero-panel-home::after {
  background:
    linear-gradient(180deg, rgba(255, 240, 213, 0.07), transparent 24%),
    linear-gradient(0deg, rgba(66, 28, 11, 0.18), rgba(66, 28, 11, 0.18));
}

.hero-copy,
.page-hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 2.15rem;
}

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

.hero-copy-home {
  max-width: 920px;
  min-height: 100%;
  margin: 0 auto;
  align-content: center;
  justify-items: center;
  text-align: center;
  gap: 1.25rem;
  padding: 3rem 2.25rem 2.6rem;
}

.hero-copy-home .eyebrow {
  color: #fff0d5;
  text-shadow: 0 1px 12px rgba(93, 37, 10, 0.4);
}

.hero-copy-home h1 {
  max-width: 13ch;
  font-size: clamp(3.3rem, 7vw, 5.9rem);
  line-height: 1.04;
  text-shadow: 0 8px 24px rgba(82, 31, 9, 0.44);
}

.hero-copy-home .lead,
.hero-note {
  max-width: 760px;
  color: #fff2dd;
  text-shadow: 0 2px 16px rgba(87, 35, 10, 0.35);
}

.hero-copy-home .lead {
  font-size: 1.2rem;
}

.hero-note {
  margin: 0;
  font-size: 1.02rem;
}

.hero-copy-home .hero-actions {
  justify-content: center;
  margin-top: 0.5rem;
}

.hero-copy-home .button-primary {
  min-width: 280px;
  min-height: 60px;
  font-size: 1.12rem;
  letter-spacing: 0.02em;
  box-shadow: 0 18px 34px rgba(255, 111, 37, 0.34);
}

.hero-copy-home .button-soft {
  color: #fff5e5;
  border-color: rgba(255, 241, 213, 0.28);
  background: rgba(84, 37, 13, 0.18);
}

.hero-copy-home .hero-points {
  width: 100%;
  max-width: 980px;
  margin-top: 0.8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-copy-home .point-card {
  text-align: left;
  border-color: rgba(255, 241, 213, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    rgba(58, 28, 14, 0.34);
  backdrop-filter: blur(5px);
}

.hero-copy-home .point-card strong {
  color: #fff3dd;
}

.hero-copy-home .point-card p {
  color: rgba(255, 243, 221, 0.84);
  font-size: 0.95rem;
}

.page-hero {
  background:
    radial-gradient(circle at top left, rgba(255, 122, 72, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(42, 33, 29, 0.98), rgba(19, 15, 14, 0.98));
}

.page-hero-media,
.feature-media {
  overflow: hidden;
  min-height: 100%;
}

.page-hero-media img,
.feature-media img,
.showcase-image,
.mosaic-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eyebrow,
.mini-label,
.badge,
.icon-label {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: var(--accent-alt);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  line-height: 1.08;
  font-family: "Arial Narrow", Arial, sans-serif;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.9rem, 6.1vw, 5rem);
}

h2 {
  font-size: clamp(1.95rem, 4vw, 3rem);
  margin-bottom: 0.9rem;
}

h3 {
  font-size: 1.34rem;
  margin-bottom: 0.7rem;
}

.lead {
  max-width: 57ch;
  font-size: 1.06rem;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-points,
.trust-grid,
.card-grid,
.feature-grid,
.faq-grid,
.footer-grid,
.split-grid,
.mosaic-grid,
.metric-list {
  display: grid;
  gap: 1rem;
}

.hero-points {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-side {
  display: grid;
  gap: 1rem;
}

.point-card,
.trust-card,
.content-card,
.faq-card,
.callout,
.table-wrap,
.cta-banner,
.footer-cta,
.showcase-card,
.profile-checklist,
.tip-list,
.notice-card,
.side-card {
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 100%),
    var(--bg-card);
  box-shadow: var(--shadow-md);
}

.point-card,
.trust-card,
.content-card,
.faq-card,
.callout,
.profile-checklist,
.tip-list,
.notice-card,
.side-card {
  padding: 1.25rem;
}

.point-card strong,
.trust-card strong,
.notice-card strong,
.metric-item strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.45rem;
}

.metric-list {
  gap: 0.8rem;
}

.metric-item {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.section {
  position: relative;
  padding: 2.6rem 0 0;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.014), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.section:nth-of-type(odd) .section-shell {
  background:
    radial-gradient(circle at top center, rgba(255, 122, 72, 0.06), transparent 30%),
    linear-gradient(180deg, rgba(33, 27, 24, 0.9), rgba(18, 15, 13, 0.9));
}

.section:nth-of-type(even) .section-shell {
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.02), transparent 24%),
    linear-gradient(180deg, rgba(19, 16, 15, 0.95), rgba(15, 13, 12, 0.95));
}

.section-shell {
  position: relative;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
}

.section-header {
  max-width: 68ch;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.section-header p {
  color: var(--muted-soft);
}

.trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-grid,
.footer-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.split-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.content-card p:last-child,
.trust-card p:last-child,
.point-card p:last-child,
.faq-card p:last-child,
.showcase-copy p:last-child,
.callout p:last-child {
  margin-bottom: 0;
}

.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 0.95rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 106, 61, 0.18), rgba(255, 194, 119, 0.08));
  color: var(--accent-strong);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.icon-box svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
}

.showcase-card {
  overflow: hidden;
}

.showcase-image {
  aspect-ratio: 1.12 / 1;
}

.showcase-copy {
  display: grid;
  gap: 0.5rem;
  padding: 1rem 1rem 1.15rem;
}

.showcase-copy p {
  font-size: 0.95rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
}

.badge {
  padding: 0.34rem 0.68rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  letter-spacing: 0.08em;
}

.badge-hot {
  background: rgba(255, 77, 101, 0.16);
  color: #ffb6bd;
}

.badge-cool {
  background: rgba(255, 194, 119, 0.14);
  color: #ffd59d;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.64rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--accent-alt);
  font-size: 0.8rem;
  font-weight: 700;
}

.inline-link {
  color: var(--accent-alt);
  font-weight: 700;
}

.feature-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.2rem;
  align-items: stretch;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(43, 34, 30, 0.98), rgba(23, 19, 17, 0.98));
  box-shadow: var(--shadow-lg);
}

.feature-panel.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.feature-copy {
  display: grid;
  align-content: start;
  gap: 0.8rem;
  padding: 0.35rem 0.15rem;
}

.feature-media {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.step-list {
  display: grid;
  gap: 0.9rem;
  padding-left: 0;
  counter-reset: step;
}

.step-list li {
  list-style: none;
  position: relative;
  padding: 1.1rem 1.1rem 1.1rem 4.15rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.step-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #1b140f;
  background: linear-gradient(135deg, var(--accent-alt) 0%, var(--accent-strong) 100%);
}

.list-plain {
  display: grid;
  gap: 0.68rem;
}

.list-plain li::marker,
.tip-list li::marker,
.profile-checklist li::marker {
  color: var(--accent);
}

.table-wrap {
  overflow-x: auto;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-list details {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
}

.faq-list summary {
  color: var(--text);
  font-weight: 800;
}

.faq-list p {
  margin: 0.85rem 0 0;
}

.cta-banner,
.footer-cta {
  padding: 1.5rem;
  background:
    radial-gradient(circle at top right, rgba(255, 194, 119, 0.1), transparent 26%),
    linear-gradient(135deg, rgba(255, 106, 61, 0.14), rgba(255, 255, 255, 0.03)),
    rgba(41, 32, 29, 0.98);
}

.cta-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
}

.mosaic-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.mosaic-grid img {
  min-height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.mosaic-grid img:nth-child(1),
.mosaic-grid img:nth-child(4) {
  grid-column: span 6;
}

.mosaic-grid img:nth-child(2),
.mosaic-grid img:nth-child(3),
.mosaic-grid img:nth-child(5),
.mosaic-grid img:nth-child(6) {
  grid-column: span 3;
}

.site-footer {
  padding: 3rem 0 2.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: #11100f;
}

.footer-cta {
  margin-bottom: 1.4rem;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
}

.footer-note {
  margin-top: 1.1rem;
  color: var(--muted-soft);
  font-size: 0.94rem;
}

.table-note,
.section-note {
  font-size: 0.95rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .hero,
  .page-hero,
  .feature-panel,
  .feature-panel.reverse,
  .cta-banner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .hero-panel,
  .page-hero {
    min-height: auto;
  }

  .hero-copy,
  .page-hero-copy,
  .section-shell {
    padding: 1.45rem;
  }

  .hero-panel-home {
    min-height: 640px;
    background:
      linear-gradient(90deg, rgba(120, 59, 26, 0.72) 0%, rgba(215, 122, 42, 0.54) 38%, rgba(156, 69, 25, 0.68) 100%),
      radial-gradient(circle at center, rgba(255, 193, 93, 0.28), transparent 28%),
      linear-gradient(180deg, rgba(255, 170, 63, 0.12), rgba(67, 28, 11, 0.22)),
      url("images/headhome.jpg") 72% center / cover no-repeat;
  }

  .trust-grid,
  .card-grid,
  .feature-grid,
  .faq-grid,
  .footer-grid,
  .split-grid,
  .hero-points,
  .hero-copy-home .hero-points {
    grid-template-columns: 1fr;
  }

  .mosaic-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mosaic-grid img,
  .mosaic-grid img:nth-child(1),
  .mosaic-grid img:nth-child(2),
  .mosaic-grid img:nth-child(3),
  .mosaic-grid img:nth-child(4),
  .mosaic-grid img:nth-child(5),
  .mosaic-grid img:nth-child(6) {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  main {
    padding-top: 1.2rem;
  }

  .header-inner {
    min-height: 74px;
  }

  .hero-panel {
    min-height: 520px;
    background:
      linear-gradient(180deg, rgba(16, 13, 12, 0.88) 0%, rgba(16, 13, 12, 0.58) 38%, rgba(16, 13, 12, 0.92) 100%),
      radial-gradient(circle at top left, rgba(255, 106, 61, 0.16), transparent 28%),
      url("images/hero-bg1.jpg") 64% center / cover no-repeat;
  }

  .hero-panel-home {
    min-height: 560px;
    background:
      linear-gradient(180deg, rgba(150, 67, 24, 0.78) 0%, rgba(213, 122, 42, 0.54) 32%, rgba(94, 38, 13, 0.82) 100%),
      radial-gradient(circle at center, rgba(255, 202, 112, 0.22), transparent 28%),
      url("images/headhome.jpg") 72% center / cover no-repeat;
  }

  .hero-copy-home {
    padding: 2.3rem 1.15rem 1.5rem;
    gap: 1rem;
  }

  .hero-copy-home h1 {
    max-width: 100%;
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .hero-copy-home .lead {
    font-size: 1.04rem;
  }

  .hero-note {
    font-size: 0.96rem;
  }

  .hero-copy-home .button-primary {
    min-width: 0;
    min-height: 54px;
    font-size: 1rem;
  }

  .button,
  .button-link {
    width: 100%;
  }

  .hero-actions,
  .button-row {
    flex-direction: column;
  }

  .point-card,
  .trust-card,
  .content-card,
  .faq-card,
  .callout,
  .profile-checklist,
  .tip-list,
  .notice-card,
  .side-card,
  .cta-banner,
  .footer-cta {
    padding: 1rem;
  }

  .mosaic-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2.4rem, 12vw, 3.4rem);
  }

  h2 {
    font-size: clamp(1.8rem, 10vw, 2.5rem);
  }
}
