@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin-variable-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 400 900;
  font-display: swap;
}

@font-face {
  font-family: "Laila";
  src: url("../fonts/laila-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --pink: #f14673;
  --turquoise: #1aaee4;
  --indigo: #303377;
  --light: #fff6f8;
  --paper: #ffffff;
  --text: #1f2144;
  --muted: #5f6183;
  --line: rgba(48, 51, 119, 0.18);
  --display: "Laila", Georgia, "Times New Roman", serif;
  --body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 20px 60px rgba(48, 51, 119, 0.18);
  --motion-fast: 160ms;
  --motion-medium: 280ms;
  --motion-slow: 520ms;
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
  color-scheme: light;
}

* { box-sizing: border-box; }
html { font-family: var(--body); color: var(--text); background: var(--light); scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; }
img { display: block; max-width: 100%; }
a { color: inherit; }
[hidden] { display: none !important; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.site-shell { overflow: hidden; }
.wrap { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 246, 248, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  transition: background-color var(--motion-medium) ease, box-shadow var(--motion-medium) ease;
}
.site-header.is-scrolled { background: rgba(255, 246, 248, 0.98); box-shadow: 0 8px 24px rgba(48, 51, 119, 0.1); }

.nav { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: grid; gap: 1px; text-decoration: none; font-weight: 800; color: var(--indigo); transition: color var(--motion-fast) ease; }
.brand:hover,
.brand:focus-visible { color: var(--pink); }
.brand small { color: var(--pink); font-size: 0.78rem; font-weight: 700; }
.nav-links { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 2px solid var(--indigo);
  border-radius: 50%;
  background: transparent;
  color: var(--indigo);
  cursor: pointer;
  transition: color var(--motion-fast) ease, background-color var(--motion-fast) ease, transform var(--motion-fast) var(--motion-ease);
}
.nav-toggle:hover,
.nav-toggle:focus-visible { background: var(--indigo); color: white; outline: 3px solid rgba(26, 174, 228, 0.38); outline-offset: 2px; }
.nav-toggle:active { transform: scale(0.94); }
.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after { width: 21px; height: 2px; border-radius: 2px; background: currentColor; transition: transform var(--motion-medium) var(--motion-ease), opacity var(--motion-fast) ease; }
.nav-toggle-icon { position: relative; display: block; }
.nav-toggle-icon::before,
.nav-toggle-icon::after { content: ""; position: absolute; left: 0; }
.nav-toggle-icon::before { transform: translateY(-7px); }
.nav-toggle-icon::after { transform: translateY(7px); }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after { transform: rotate(-45deg); }
.nav-links a,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 0.7rem 1rem;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.1;
  transition: color var(--motion-fast) ease, background-color var(--motion-fast) ease, border-color var(--motion-fast) ease, box-shadow var(--motion-medium) ease, transform var(--motion-fast) var(--motion-ease);
}
.nav-links a { color: var(--indigo); }
.nav-links a:hover,
.nav-links a:focus-visible { border-color: var(--turquoise); outline: none; }
.nav-links a[aria-current="page"] { background: var(--indigo); color: white; }
.button { background: var(--indigo); color: white; box-shadow: 0 10px 24px rgba(48, 51, 119, 0.18); }
.button:hover,
.button:focus-visible { transform: translateY(-1px); outline: 3px solid rgba(26, 174, 228, 0.38); outline-offset: 2px; }
.button:active { transform: translateY(1px) scale(0.985); }
.button.secondary { background: white; color: var(--indigo); border-color: var(--indigo); box-shadow: none; }
.button.pink { background: var(--pink); }
.button.disabled { cursor: not-allowed; opacity: 0.62; }

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 46px 0 36px;
  background: linear-gradient(135deg, #fff 0%, #fff6f8 46%, #dff7ff 100%);
}
.hero::before,
.page-hero::after,
.section.icon-pattern::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 230px;
  aspect-ratio: 1248 / 3324;
  background: url("../../images/hg-icons.png") center / contain no-repeat;
  filter: invert(1);
  mix-blend-mode: multiply;
  opacity: 0.095;
  pointer-events: none;
}
.hero::before { top: 42px; right: -34px; }
.hero > .wrap,
.page-hero > .wrap,
.section.icon-pattern > .wrap { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: minmax(240px, 350px) 1fr; gap: clamp(28px, 5vw, 72px); align-items: start; }
.cover-frame { position: relative; transform: rotate(-1.5deg); }
.cover-frame::after { content: ""; position: absolute; inset: 24px -14px -18px 18px; background: var(--turquoise); border-radius: 8px; z-index: 0; }
.cover-frame img { position: relative; z-index: 1; border-radius: 8px; box-shadow: var(--shadow); }
.cover-frame.product-shot { transform: none; }
.cover-frame.product-shot::after { display: none; }
.cover-frame.product-shot img {
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  transform-origin: 50% 70%;
  transition: transform var(--motion-slow) var(--motion-ease), filter var(--motion-medium) ease;
}
.age-sticker {
  position: absolute;
  top: -7%;
  right: -10px;
  z-index: 3;
  width: 112px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 6px solid var(--turquoise);
  border-radius: 50%;
  background: #eaff00;
  box-shadow: 0 10px 26px rgba(48, 51, 119, 0.28), inset 0 0 0 3px white;
  color: var(--indigo);
  font-weight: 900;
  line-height: 0.95;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-8deg);
  transform-origin: center;
  animation: sticker-pulse 3.6s cubic-bezier(0.45, 0, 0.55, 1) infinite;
  will-change: transform;
}
.age-sticker span { font-size: 0.9rem; }
.age-sticker strong { margin-top: 3px; font-size: 0.82rem; }
.age-sticker b { margin-top: 3px; font-family: var(--display); font-size: 2.35rem; line-height: 1; }
.eyebrow { margin: 0 0 14px; color: var(--pink); font-weight: 900; text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.82rem; }
h1, h2, h3 { color: var(--indigo); letter-spacing: 0; }
h1,
.section-header h2,
.page-hero h1,
.prose h2,
.quote-panel blockquote,
.map-placeholder-copy h2,
.map-placeholder-copy h3,
.region-band h2,
.portrait strong,
.cta-band h2,
.book-mood h2,
.sample p,
.legal-content h2 {
  font-weight: 400;
}
h1 { margin: 0; font-family: var(--display); font-size: clamp(3rem, 8vw, 6.8rem); line-height: 0.94; }
.subtitle { max-width: 720px; margin: 18px 0 0; font-size: clamp(1.35rem, 2.5vw, 2rem); line-height: 1.18; color: var(--pink); font-weight: 900; }
.lead { max-width: 680px; margin: 22px 0 0; font-size: 1.08rem; line-height: 1.7; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.spice-meter {
  width: min(390px, 100%);
  height: auto;
  margin-top: 18px;
  mix-blend-mode: multiply;
}

.section { padding: 70px 0; }
.section.tint { background: white; }
.book-facts-band { padding: 42px 0; background: var(--indigo); color: white; }
.book-facts-layout { display: grid; grid-template-columns: minmax(240px, 0.75fr) 1.65fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.book-facts-heading .eyebrow { color: #eaff00; }
.book-facts-heading h2 { margin: 0; color: white; font-family: var(--display); font-size: clamp(1.9rem, 3.6vw, 3rem); font-weight: 400; line-height: 1.08; }
.book-facts-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 28px; margin: 0; }
.book-facts-list div { padding: 12px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
.book-facts-list dt { margin-bottom: 4px; color: #aeeaff; font-size: 0.76rem; font-weight: 900; text-transform: uppercase; }
.book-facts-list dd { margin: 0; line-height: 1.45; }
.book-facts-list a { color: white; text-underline-offset: 0.2em; }
.section-header { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.section-header h2,
.page-hero h1 { margin: 0; font-family: var(--display); font-size: clamp(2.25rem, 5vw, 4.6rem); line-height: 1.02; }
.section-header p,
.page-hero p { max-width: 680px; margin: 12px 0 0; color: var(--muted); line-height: 1.7; font-size: 1.04rem; }
.intro-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 42px; align-items: start; }
.prose h2 { margin-top: 2.2rem; font-family: var(--display); font-size: clamp(1.8rem, 3vw, 2.7rem); line-height: 1.12; }
.prose h2:first-of-type { margin-top: 0; }
.prose p { line-height: 1.75; font-size: 1.08rem; }
.quote-panel { position: relative; padding: 8px 0 8px 35px; }
.quote-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 9px;
  background: var(--pink);
  transform-origin: top;
}
.quote-panel blockquote { margin: 0; font-family: var(--body); font-style: italic; font-weight: 400; font-size: clamp(1.55rem, 3vw, 2.6rem); line-height: 1.12; color: var(--indigo); }
.quote-panel cite { display: block; margin-top: 14px; color: var(--pink); font-style: normal; font-weight: 900; }

.book-map { height: min(68vh, 620px); min-height: 420px; border: 4px solid var(--indigo); border-radius: 8px; overflow: hidden; background: #dff7ff; }
.book-map.compact { height: 420px; min-height: 360px; }
.map-placeholder {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  padding: clamp(28px, 5vw, 64px);
  overflow: hidden;
  background: var(--paper);
  box-shadow: inset 0 -12px 0 var(--turquoise);
  transition: opacity var(--motion-medium) ease, transform var(--motion-medium) var(--motion-ease), filter var(--motion-medium) ease;
}
.map-placeholder::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid var(--line);
  pointer-events: none;
}
.map-placeholder-background { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.2; filter: saturate(0.8); }
.map-placeholder-copy { position: relative; z-index: 1; max-width: 620px; }
.map-placeholder-copy h2,
.map-placeholder-copy h3 { margin: 0; font-family: var(--display); font-size: clamp(1.8rem, 4vw, 3.2rem); line-height: 1.1; }
.map-placeholder-copy > p:not(.eyebrow) { max-width: 580px; line-height: 1.6; }
.map-placeholder-copy .button { margin-top: 10px; font: inherit; }
.map-privacy-note { margin: 12px 0 0; color: var(--muted); font-size: 0.86rem; }
.map-noscript { color: var(--pink); font-weight: 800; }
.map-static-attribution { position: absolute; right: 12px; bottom: 12px; z-index: 1; margin: 0; padding: 3px 6px; background: rgba(255, 255, 255, 0.82); color: var(--muted); font-size: 0.68rem; }
.book-map.is-loaded { background: #dff7ff; box-shadow: none; }
.book-map.is-loading-map .map-placeholder { opacity: 0; transform: scale(0.985); filter: blur(2px); }
.book-map.is-loaded.leaflet-container { animation: map-enter var(--motion-medium) var(--motion-ease) both; }
.map-unavailable { display: grid; place-items: center; padding: 2rem; text-align: center; color: var(--indigo); font-weight: 800; }
.leaflet-container { font-family: var(--body); }
.book-marker { width: 42px !important; height: 42px !important; border-radius: 50%; display: grid !important; place-items: center; background: var(--pink); color: white; border: 4px solid var(--turquoise); box-shadow: 0 8px 20px rgba(48, 51, 119, 0.3); font-weight: 900; font-size: 0.86rem; }
.popup-title { margin: 0 0 4px; color: var(--indigo); font-weight: 900; text-transform: uppercase; }
.popup-quote { margin: 8px 0 0; color: var(--muted); line-height: 1.45; }
.location-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 30px; }
.location-card { background: white; border: 1px solid var(--line); border-radius: 8px; padding: 20px; }
.location-card:target,
.location-card:focus { outline: 4px solid var(--turquoise); outline-offset: 4px; }
.location-card { scroll-margin-top: 100px; }
.location-card h3,
.location-card h2 { margin: 0 0 12px; color: var(--indigo); font-size: 1.25rem; }
.location-card p { margin: 0; color: var(--muted); line-height: 1.6; }
.location-card blockquote { margin: 16px 0 0; color: var(--pink); font-family: var(--body); font-style: italic; font-weight: 400; line-height: 1.35; font-size: 1.1rem; }
.location-card .todo { margin-top: 18px; padding-top: 12px; border-top: 1px solid var(--line); font-size: 0.84rem; }
.number { color: var(--turquoise); font-weight: 900; margin-right: 8px; }
.region-band { padding: 42px 0; border-top: 1px solid var(--line); }
.region-band:nth-child(even) { background: white; }
.region-band h2 { margin: 0 0 18px; font-family: var(--display); font-size: clamp(2rem, 4vw, 3.3rem); line-height: 1.1; }

.author-section { display: grid; grid-template-columns: minmax(220px, 340px) 1fr; gap: 42px; align-items: center; }
.author-profile { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(240px, 0.7fr); gap: clamp(32px, 6vw, 72px); align-items: start; }
.author-facts { padding: 26px; border-left: 9px solid var(--turquoise); background: white; }
.author-facts dl { margin: 0; }
.author-facts dl div { padding: 13px 0; border-bottom: 1px solid var(--line); }
.author-facts dl div:last-child { border-bottom: 0; }
.author-facts dt { color: var(--pink); font-size: 0.78rem; font-weight: 900; text-transform: uppercase; }
.author-facts dd { margin: 4px 0 0; color: var(--indigo); line-height: 1.5; }
.interview-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px 46px; }
.interview-answer { padding-top: 20px; border-top: 4px solid var(--turquoise); }
.interview-answer h3 { margin: 0 0 10px; font-size: 1.2rem; line-height: 1.3; }
.interview-answer p { margin: 0; line-height: 1.7; }
.portrait { min-height: 360px; border-radius: 8px; background: var(--indigo); color: white; display: grid; place-items: end start; padding: 24px; border-bottom: 12px solid var(--turquoise); }
.portrait strong { font-family: var(--display); font-size: 2rem; line-height: 1; }
.cta-band { background: var(--indigo); color: white; padding: 48px 0; }
.cta-band .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.cta-band h2 { color: white; margin: 0; font-family: var(--display); font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.08; }
.book-mood {
  position: relative;
  width: 100%;
  min-height: 560px;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--indigo);
  color: white;
}
.book-mood-media,
.book-mood-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.book-mood-media img { object-fit: cover; object-position: center center; }
.book-mood-content { position: relative; z-index: 1; padding-bottom: clamp(36px, 6vw, 78px); }
.book-mood-content > div { max-width: 520px; margin-left: auto; text-align: right; }
.book-mood .actions { justify-content: flex-end; }
.book-mood .eyebrow { color: white; }
.book-mood h2 {
  margin: 0;
  max-width: 620px;
  color: white;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.05;
  text-shadow: 0 3px 18px rgba(31, 33, 68, 0.78);
}
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 56px 0 36px;
  background: linear-gradient(135deg, white 0%, #fff6f8 60%, #dff7ff 100%);
}
.page-hero::after { top: -155px; right: 3%; width: 190px; opacity: 0.08; }
.section.icon-pattern { position: relative; isolation: isolate; overflow: hidden; }
.section.icon-pattern::after { bottom: -190px; left: -42px; width: 205px; opacity: 0.07; }
.sample { max-width: 820px; margin: 0 auto; }
.sample p { font-family: var(--display); font-size: clamp(1.3rem, 2.6vw, 2rem); line-height: 1.45; color: var(--indigo); }
.site-footer { padding: 34px 0; background: white; border-top: 1px solid var(--line); color: var(--muted); }
.site-footer .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.site-footer a { font-weight: 800; color: var(--indigo); text-underline-offset: 0.2em; }
.site-footer a:hover,
.site-footer a:focus-visible { color: var(--pink); }
.legal-content { max-width: 820px; }
.legal-content h2 { margin: 2.5rem 0 0.75rem; font-family: var(--display); font-size: clamp(1.7rem, 3vw, 2.5rem); line-height: 1.12; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { margin: 1.75rem 0 0.5rem; font-size: 1.2rem; }
.legal-content p,
.legal-content li { line-height: 1.75; }
.legal-content ul { padding-left: 1.25rem; }
.motion-intro { animation: intro-rise var(--motion-slow) var(--motion-ease) both; animation-delay: var(--motion-delay, 0ms); }
.motion-ready .reveal-item {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--motion-slow) ease, transform var(--motion-slow) var(--motion-ease);
  transition-delay: var(--reveal-delay, 0ms);
}
.motion-ready .reveal-item.is-visible { opacity: 1; transform: translateY(0); }
.motion-ready .quote-panel.reveal-item::before {
  transform: scaleY(0);
  transition: transform 620ms var(--motion-ease) 120ms;
}
.motion-ready .quote-panel.reveal-item.is-visible::before { transform: scaleY(1); }
.motion-ready .location-card.reveal-item .number {
  display: inline-block;
  transform: scale(0.82);
  transition: transform 420ms var(--motion-ease);
}
.motion-ready .location-card.reveal-item.is-visible .number { transform: scale(1); }

@keyframes intro-rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes map-enter {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes sticker-pulse {
  0%, 100% { transform: rotate(-8deg) scale(1); }
  50% { transform: rotate(-8deg) scale(1.028); }
}

@media (hover: hover) and (pointer: fine) {
  .cover-frame.product-shot:hover img { transform: translateY(-4px) rotate(0.5deg) scale(1.01); filter: drop-shadow(0 18px 20px rgba(48, 51, 119, 0.16)); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; transition-delay: 0ms !important; }
  .motion-ready .reveal-item { opacity: 1; transform: none; }
  .motion-ready .quote-panel.reveal-item::before { transform: scaleY(1); }
  .motion-ready .location-card.reveal-item .number { transform: none; }
}

@media (max-width: 820px) {
  .nav { min-height: 0; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 10px 16px; padding: 12px 0; }
  .nav-links { grid-column: 1 / -1; justify-content: flex-start; }
  .nav-enhanced .nav-toggle { display: grid; }
  .nav-enhanced .nav-links {
    width: 100%;
    max-height: 0;
    display: grid;
    gap: 5px;
    overflow: hidden;
    padding: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: max-height var(--motion-medium) var(--motion-ease), opacity var(--motion-fast) ease, transform var(--motion-medium) var(--motion-ease), padding var(--motion-medium) ease;
  }
  .nav-enhanced .nav-links.is-open { max-height: 310px; padding: 4px 0 8px; opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-enhanced .nav-links a { width: 100%; justify-content: flex-start; padding-inline: 12px; }
  .hero-grid,
  .intro-grid,
  .book-facts-layout,
  .author-section,
  .author-profile { grid-template-columns: 1fr; }
  .cover-frame { max-width: 300px; margin: 0 auto; }
  .section-header,
  .cta-band .wrap { display: block; }
  .location-list { grid-template-columns: 1fr; }
  .book-facts-list { grid-template-columns: 1fr; }
  .interview-grid { grid-template-columns: 1fr; }
  .book-map,
  .book-map.compact { min-height: 360px; height: 62vh; }
  .book-map:not(.is-loaded) { height: auto; min-height: 420px; }
  .book-map:not(.is-loaded) .map-placeholder { min-height: 420px; }
  .map-placeholder { padding: 30px; }
  .book-mood { min-height: 0; aspect-ratio: auto; display: block; }
  .book-mood-media { position: relative; display: block; aspect-ratio: 2000 / 904; }
  .book-mood-media img { object-fit: contain; object-position: center; }
  .book-mood-content { padding-top: 30px; padding-bottom: 38px; }
  .book-mood-content > div { max-width: 100%; margin-left: 0; text-align: left; }
  .book-mood .actions { justify-content: flex-start; }
  .book-mood h2 { font-size: 1.75rem; line-height: 1.1; overflow-wrap: anywhere; }
}

@media (max-width: 520px) {
  .wrap { width: min(100% - 22px, 1120px); }
  .nav-links {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }
  .nav-links a {
    width: auto;
    flex: 0 0 auto;
    padding: 0.6rem 0.45rem;
    font-size: 0.84rem;
  }
  .button { width: 100%; }
  .actions { display: grid; }
  .hero { padding-top: 24px; }
  h1 { font-size: clamp(2.7rem, 19vw, 4.5rem); }
}
