/* Learn From An MBA */
:root {
  --ink: #1c1917;
  --ink-soft: #3f3833;
  --muted: #6b625b;
  --line: rgba(28, 25, 23, 0.12);
  --paper: #f7f3ef;
  --paper-2: #ebe4dc;
  --white: #ffffff;
  --rose: #d18f7f;
  --rose-deep: #b56f5f;
  --rose-soft: #f3e4df;
  --forest: #243d36;
  --max: 1160px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 20px 50px rgba(28, 25, 23, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 1.05rem;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(100% - 3rem, var(--max));
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--rose-deep);
  margin-bottom: 0.85rem;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.25rem);
}

h2 {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

.lede {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 38rem;
}

.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  margin-bottom: 2.5rem;
}

.section-head .lede {
  margin: 0;
}

/* Promo */
.promo-bar {
  background: var(--forest);
  color: #f3f7f5;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.7rem 1rem;
}

.promo-bar a {
  display: inline-block;
  margin-left: 0.45rem;
  font-weight: 800;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

/* Header: matches live site hierarchy (social row, logo, compact nav) */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 243, 239, 0.97);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(28, 25, 23, 0.06);
}

.site-header.is-menu-open {
  border-bottom-color: var(--line);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
}

.header-social {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.header-social a {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, color 0.2s ease;
}

.header-social a:hover {
  background: var(--rose-soft);
  color: var(--rose-deep);
}

.header-main {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  align-items: center;
  gap: 1.5rem 2rem;
  padding: 0.85rem 0 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand img {
  width: min(168px, 38vw);
  height: auto;
}

.brand-text {
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.15rem 0.15rem;
}

.nav > a,
.nav-item > .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.85rem;
  border: 0;
  background: transparent;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 650;
  color: var(--ink-soft);
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav > a:hover,
.nav-item > .nav-link:hover,
.nav > a[aria-current="page"],
.nav-item > .nav-link[aria-current="page"],
.nav-item.is-open > .nav-link {
  background: var(--rose-soft);
  color: var(--ink);
}

.nav-shop {
  display: none;
}

.nav-item {
  position: relative;
}

.nav-item .caret {
  width: 0.45rem;
  height: 0.45rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.7;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 0;
  min-width: 280px;
  padding: 0.55rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 20;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown,
.nav-item.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.nav-dropdown a {
  display: block;
  padding: 0.75rem 0.9rem;
  border-radius: 0.75rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
  white-space: normal;
  line-height: 1.35;
}

.nav-dropdown a:hover,
.nav-dropdown a[aria-current="page"] {
  background: var(--paper);
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  justify-content: flex-end;
}

.menu-toggle {
  display: none;
  position: relative;
  z-index: 120;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  transition: transform 0.25s var(--ease), opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(28, 25, 23, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.nav-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.menu-open {
  overflow: hidden;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 3rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s var(--ease), background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--rose-deep);
  color: #fff;
}

.btn-primary:hover {
  background: var(--ink);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-dark:hover {
  background: var(--forest);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.btn-ghost:hover {
  background: #fff;
  color: var(--ink);
}

.btn-outline {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn-outline:hover {
  border-color: var(--ink);
  background: var(--white);
}

.btn-sm {
  min-height: 2.6rem;
  padding: 0.65rem 1.15rem;
  font-size: 0.9rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(86vh, 740px);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.03);
  animation: hero-zoom 18s var(--ease) infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(28, 25, 23, 0.2) 0%, rgba(28, 25, 23, 0.35) 40%, rgba(28, 25, 23, 0.78) 100%),
    radial-gradient(ellipse at 18% 20%, rgba(209, 143, 127, 0.28), transparent 42%);
}

.hero-content {
  padding: clamp(4rem, 10vw, 6.5rem) 0 clamp(3.5rem, 8vw, 5rem);
  max-width: 40rem;
}

.hero h1 {
  margin-bottom: 1rem;
  animation: rise 0.9s var(--ease) both;
}

.hero p {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 34rem;
  animation: rise 0.9s var(--ease) 0.16s both;
}

.hero .btn-row {
  animation: rise 0.9s var(--ease) 0.24s both;
}

@keyframes hero-zoom {
  from { transform: scale(1.03); }
  to { transform: scale(1.09); }
}

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

/* Journey */
.journey {
  background:
    linear-gradient(140deg, rgba(243, 228, 223, 0.7), rgba(235, 228, 220, 0.35)),
    var(--paper);
}

.journey-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) 1.15fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.journey-photo {
  border-radius: 1.6rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--rose-soft);
}

.journey-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.journey-copy p {
  color: var(--muted);
  margin: 0 0 1rem;
  max-width: 40rem;
}

/* Products */
.product-grid,
.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.35rem;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  overflow: hidden;
  position: relative;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--rose-soft);
}

.product-card .body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.product-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
  min-height: 2.6em;
}

.stars {
  color: var(--rose-deep);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.45rem;
}

.price {
  font-weight: 800;
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
}

.price .was {
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 600;
  font-size: 0.9rem;
}

.badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  background: var(--forest);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
}

/* Pathways */
.path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
}

.path-card {
  position: relative;
  isolation: isolate;
  min-height: 260px;
  border-radius: 1.5rem;
  overflow: hidden;
  display: grid;
  align-content: end;
  gap: 0.55rem;
  padding: 1.75rem;
  color: #fff;
}

.path-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 0.6s var(--ease);
}

.path-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(165deg, rgba(36, 61, 54, 0.15), rgba(28, 25, 23, 0.84));
}

.path-card.alt::before {
  background: linear-gradient(165deg, rgba(181, 111, 95, 0.22), rgba(28, 25, 23, 0.84));
}

.path-card:hover img {
  transform: scale(1.05);
}

.path-card h3 {
  margin: 0;
}

.path-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  max-width: 28rem;
}

/* Stories */
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.story-card {
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.story-card .thumb {
  border-radius: 1.25rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--paper-2);
}

.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.story-card:hover img {
  transform: scale(1.05);
}

.story-card .cat {
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose-deep);
}

.story-card h3 {
  font-size: 1.2rem;
  margin: 0;
}

.story-card p {
  margin: 0;
  color: var(--muted);
}

/* Community / videos / newsletter */
.band {
  border-radius: 1.75rem;
  padding: clamp(2rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 1.5rem;
  align-items: center;
  background:
    radial-gradient(circle at 90% 10%, rgba(209, 143, 127, 0.3), transparent 35%),
    linear-gradient(135deg, var(--forest), #1a2e28);
  color: #fff;
}

.band p {
  margin: 0.55rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  max-width: 38rem;
}

.video-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 1.35rem;
}

.video-main {
  border-radius: 1.35rem;
  overflow: hidden;
  background: var(--ink);
  aspect-ratio: 16 / 10;
}

.video-main iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-side {
  display: grid;
  gap: 1.35rem;
}

.video-side a {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  min-height: 150px;
  color: #fff;
  background: var(--ink);
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 150px;
  opacity: 0.85;
}

.video-label {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.newsletter {
  background: linear-gradient(180deg, rgba(243, 228, 223, 0.55), transparent);
}

.newsletter-box {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-box form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.newsletter-box input[type="email"] {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 0.95rem 1.2rem;
}

.newsletter-box .consent {
  grid-column: 1 / -1;
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  text-align: left;
  font-size: 0.88rem;
  color: var(--muted);
}

.form-note {
  grid-column: 1 / -1;
  margin: 0.25rem 0 0;
  color: var(--forest);
  font-weight: 600;
}

.instagram-note {
  text-align: center;
  padding: 2.25rem 1.5rem;
  border: 1px dashed rgba(28, 25, 23, 0.18);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.55);
  color: var(--muted);
}

/* Inner pages */
.page-hero {
  padding: clamp(3.25rem, 7vw, 5rem) 0 2.25rem;
  background:
    radial-gradient(circle at 88% 12%, rgba(209, 143, 127, 0.22), transparent 40%),
    linear-gradient(180deg, var(--rose-soft), var(--paper));
}

.page-hero p {
  color: var(--muted);
  max-width: 42rem;
  font-size: 1.1rem;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.resource-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  padding: 1.4rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.resource-card:hover {
  border-color: rgba(181, 111, 95, 0.45);
  transform: translateY(-2px);
}

.resource-card h3 {
  margin-bottom: 0.45rem;
}

.resource-card p {
  margin: 0;
  color: var(--muted);
}

.content-stack {
  display: grid;
  gap: 1rem;
  max-width: 720px;
}

.content-stack p,
.content-stack li {
  color: var(--ink-soft);
}

.hub-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
}

.hub-list a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1rem;
  font-weight: 650;
}

.hub-list a span {
  color: var(--muted);
  font-weight: 500;
}

.split-2 {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
}

.contact-form,
.side-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  padding: clamp(1.4rem, 3vw, 2rem);
}

.contact-form label,
.side-card label {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 0.95rem;
  font-weight: 650;
  font-size: 0.92rem;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  padding: 0.85rem 1rem;
  background: var(--paper);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.facts {
  columns: 2;
  gap: 1.5rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.facts li {
  break-inside: avoid;
  margin-bottom: 0.85rem;
  padding-left: 1rem;
  border-left: 3px solid var(--rose);
  color: var(--ink-soft);
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
  padding: 4rem 0 2rem;
  margin-top: 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 2.25rem;
  margin-bottom: 2.75rem;
}

.site-footer h3 {
  color: #fff;
}

.site-footer .brand img {
  width: 150px;
  filter: invert(1);
}

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

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.1rem;
}

.socials a {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 1100px) {
  .header-main {
    grid-template-columns: 160px 1fr auto;
    gap: 1rem;
  }

  .nav > a,
  .nav-item > .nav-link {
    padding: 0.5rem 0.65rem;
    font-size: 0.86rem;
  }
}

@media (max-width: 960px) {
  .product-grid,
  .shop-grid,
  .story-grid,
  .resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journey-grid,
  .video-grid,
  .band,
  .split-2,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .header-top {
    display: none;
  }

  .header-main {
    grid-template-columns: 1fr auto;
    padding: 0.75rem 0;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    z-index: 110;
    width: min(340px, 86vw);
    max-width: 100%;
    margin: 0;
    padding: 5.75rem 1.25rem 2rem;
    background: var(--paper);
    border-left: 1px solid var(--line);
    box-shadow: -18px 0 50px rgba(28, 25, 23, 0.18);
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.2rem;
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(105%);
    visibility: hidden;
    transition: transform 0.3s var(--ease), visibility 0.3s;
  }

  .nav.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  .nav > a,
  .nav-item > .nav-link {
    width: 100%;
    justify-content: space-between;
    border-radius: 0.85rem;
    padding: 0.95rem 1rem;
    white-space: normal;
    text-align: left;
  }

  .nav-item {
    width: 100%;
  }

  .nav-item .caret {
    transition: transform 0.2s ease;
  }

  .nav-item.is-open .caret {
    transform: rotate(225deg) translateY(-1px);
  }

  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    background: transparent;
    display: none;
    min-width: 0;
    padding: 0.15rem 0 0.45rem 0.55rem;
  }

  .nav-item:hover .nav-dropdown,
  .nav-item:focus-within .nav-dropdown {
    display: none;
  }

  .nav-item.is-open .nav-dropdown,
  .nav-item.is-open:hover .nav-dropdown,
  .nav-item.is-open:focus-within .nav-dropdown {
    display: grid;
    gap: 0.15rem;
  }

  .nav-dropdown a {
    padding: 0.7rem 0.85rem;
  }

  .nav-shop {
    display: inline-flex;
    margin-top: 0.75rem;
    justify-content: center;
    background: var(--ink);
    color: #fff !important;
  }

  .nav-shop:hover,
  .nav-shop[aria-current="page"] {
    background: var(--rose-deep);
    color: #fff !important;
  }

  .header-actions .btn {
    display: none;
  }

  .facts {
    columns: 1;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.75rem, var(--max));
  }

  .product-grid,
  .shop-grid,
  .story-grid,
  .resource-grid,
  .path-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-box form {
    grid-template-columns: 1fr;
  }

  .product-card h3 {
    min-height: 0;
  }

  .hero {
    min-height: 74vh;
  }
}
