:root {
  --ink: #3f4a47;
  --muted: #6c7772;
  --rose: #c76473;
  --rose-dark: #b35263;
  --sage: #5d6b62;
  --sage-dark: #4e5a52;
  --paper: #fbf8f5;
  --line: #d8cfc8;
  --shadow-soft: 0 10px 24px rgba(91, 79, 70, 0.08);
  --shadow-hover: 0 16px 30px rgba(91, 79, 70, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, sans-serif;
  color: var(--ink);
  background-color: #f6f1ea;
  background-image: url("texture.png");
  background-repeat: repeat;
  background-size: 320px 320px;
  background-blend-mode: multiply;
}

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

a {
  color: inherit;
}

strong {
  color: var(--rose);
  font-weight: 700;
}

.page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.35)),
    repeating-linear-gradient(90deg, rgba(216, 207, 200, 0.1) 0 2px, transparent 2px 30px);
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 66px 0;
}

.section-sm {
  padding: 52px 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(248, 243, 238, 0.9);
  border-bottom: 1px solid rgba(216, 207, 200, 0.6);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding: 14px 0;
}

.logo img {
  height: 38px;
  width: auto;
}

.menu {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
  align-items: center;
  margin-left: 18px;
}

.menu a {
  text-decoration: none;
  color: var(--muted);
  transition: color 0.2s ease;
}

.menu a:hover,
.menu a.active {
  color: var(--ink);
  font-weight: 600;
}

.menu-dropdown {
  position: relative;
}

.menu-dropdown-toggle {
  color: var(--muted);
  font: inherit;
  display: inline-block;
  transition: color 0.2s ease;
}

.menu-dropdown-toggle:hover,
.menu-dropdown-toggle:focus-visible,
.menu-dropdown.active .menu-dropdown-toggle,
.menu-dropdown-toggle.active {
  color: var(--ink);
  font-weight: 600;
  outline: none;
}

.menu-dropdown-toggle::after {
  content: "▾";
  margin-left: 6px;
  font-size: 0.72rem;
}

.menu-dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  display: grid;
  gap: 3px;
  padding: 8px;
  margin-top: 2px;
  border-radius: 12px;
  border: 1px solid rgba(216, 207, 200, 0.88);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-soft);
  z-index: 40;
}

.menu-dropdown:not(:hover):not(:focus-within) .menu-dropdown-list {
  display: none;
}

.menu-dropdown-list a {
  text-decoration: none;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 8px;
  line-height: 1.25;
}

.menu-dropdown-list a:hover,
.menu-dropdown-list a:focus-visible {
  background: rgba(93, 107, 98, 0.08);
  color: var(--ink);
  outline: none;
}

.actions {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  margin-left: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 20px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

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

.btn-primary {
  background: var(--rose);
  border-color: var(--rose);
  color: #fff;
  box-shadow: 0 8px 18px rgba(199, 100, 115, 0.25);
}

.btn-primary:hover {
  background: var(--rose-dark);
  border-color: var(--rose-dark);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.62);
  border-color: #c9bcb3;
  color: var(--ink);
}

.btn-back-pillars {
  margin-top: 10px;
  background: var(--rose);
  border-color: var(--rose);
  color: #fff;
  box-shadow: 0 8px 18px rgba(199, 100, 115, 0.25);
}

.btn-back-pillars:hover {
  background: var(--rose-dark);
  border-color: var(--rose-dark);
}

.btn-sage {
  background: var(--sage);
  border-color: var(--sage);
  color: #fff;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Playfair Display", serif;
  color: var(--ink);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.3rem, 4.3vw, 3.6rem);
}

.section-title {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin: 0 0 22px;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  text-align: center;
}

.section-title::before,
.section-title::after {
  content: "";
  height: 1px;
  background: var(--line);
  flex: 1;
}

.section-title-left {
  justify-content: flex-start;
  text-align: left;
  font-size: clamp(1.55rem, 2.5vw, 2rem);
}

.section-title-left::before,
.section-title-left::after {
  display: none;
}

.section-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 24px;
  color: var(--muted);
  line-height: 1.68;
}

.page-banner-wrap {
  padding: 26px 0 18px;
}

.page-banner-title {
  text-align: center;
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 3vw, 2.25rem);
}

.page-banner {
  width: 100%;
  aspect-ratio: 18 / 4;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(216, 207, 200, 0.78);
  box-shadow: var(--shadow-soft);
}

.page-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero {
  padding: 84px 0 94px;
  min-height: 560px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(216, 207, 200, 0.5);
  background:
    linear-gradient(90deg, rgba(248, 243, 238, 0.96) 0%, rgba(248, 243, 238, 0.9) 44%, rgba(248, 243, 238, 0.34) 73%, rgba(248, 243, 238, 0.08) 100%),
    url("banner.png") center top / cover no-repeat;
}

.hero-copy {
  max-width: 580px;
  margin: 0;
  padding: 24px 0;
  text-align: center;
}

.hero-logo {
  width: min(100%, 520px);
  margin: 0 auto 12px;
}

.hero-copy p {
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
  color: var(--muted);
  font-size: 1.02rem;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-kicker {
  margin: 0 0 10px;
  color: var(--sage-dark);
  font-size: 0.82rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-headline {
  margin: 0 0 12px;
  max-width: 640px;
}

.recognition-band {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(247, 240, 234, 0.76));
  border-top: 1px solid rgba(216, 207, 200, 0.58);
  border-bottom: 1px solid rgba(216, 207, 200, 0.58);
}

.recognition-layout {
  max-width: 860px;
  margin: 0 auto;
}

.recognition-layout p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.72;
}

.recognition-copy {
  text-align: left;
}

.recognition-copy .section-title-left {
  text-align: left;
  justify-content: flex-start;
}

.philosophy-band {
  background: rgba(255, 255, 255, 0.55);
  border-top: 1px solid rgba(216, 207, 200, 0.55);
  border-bottom: 1px solid rgba(216, 207, 200, 0.55);
}

.video-band {
  background: var(--sage);
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.video-stage {
  max-width: 920px;
  margin: 0 auto;
}

.video-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  border: 1px dashed #c9bcb3;
  background: linear-gradient(135deg, #f4ece5, #e8ddd5);
  color: var(--sage-dark);
  font-family: "Playfair Display", serif;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(93, 107, 98, 0.25);
}

.philosophy-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.philosophy-tags span {
  background: var(--sage);
  border: 1px solid var(--sage-dark);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(93, 107, 98, 0.24);
  padding: 9px 14px;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

.home-transition {
  background: linear-gradient(180deg, rgba(247, 240, 234, 0.72), rgba(255, 255, 255, 0.48));
  border-top: 1px solid rgba(216, 207, 200, 0.55);
  border-bottom: 1px solid rgba(216, 207, 200, 0.55);
}

.home-surface {
  background: rgba(255, 255, 255, 0.52);
  border-top: 1px solid rgba(216, 207, 200, 0.55);
  border-bottom: 1px solid rgba(216, 207, 200, 0.55);
}

.home-about {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: start;
}

.home-about p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.7;
}

.about-points {
  background: var(--paper);
  border: 1px solid rgba(216, 207, 200, 0.76);
  box-shadow: var(--shadow-soft);
  border-radius: 14px;
  padding: 18px;
}

.about-points h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.about-points ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.65;
}

.about-points li + li {
  margin-top: 8px;
}

.momentum-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.momentum-card {
  background: var(--paper);
  border: 1px solid rgba(216, 207, 200, 0.76);
  box-shadow: var(--shadow-soft);
  border-radius: 14px;
  padding: 18px;
}

.momentum-card h3 {
  font-size: 1.25rem;
  margin: 0 0 8px;
}

.momentum-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.trust-layout {
  max-width: 920px;
  margin: 0 auto;
}

.trust-scene {
  background:
    linear-gradient(180deg, rgba(246, 241, 234, 0.8), rgba(246, 241, 234, 0.62)),
    url("floral.png") center / cover no-repeat;
  border-top: 1px solid rgba(216, 207, 200, 0.55);
  border-bottom: 1px solid rgba(216, 207, 200, 0.55);
}

.trust-scene .trust-layout {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(216, 207, 200, 0.78);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.trust-copy {
  text-align: center;
  color: var(--muted);
  margin: 0 0 18px;
  line-height: 1.7;
}

.trust-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.trust-point {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(216, 207, 200, 0.76);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
  color: var(--muted);
  line-height: 1.58;
}

.trust-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(216, 207, 200, 0.76);
  margin: 0 0 10px;
}

.pillars-preview-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.pillars-preview-card {
  background: var(--sage);
  border: 1px solid var(--sage-dark);
  border-radius: 12px;
  padding: 14px 12px;
  text-align: left;
  box-shadow: 0 10px 22px rgba(93, 107, 98, 0.24);
  color: rgba(255, 255, 255, 0.92);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.pillars-preview-card h3 {
  margin: 0 0 6px;
  font-size: 1.08rem;
  color: #fff;
}

.pillars-preview-card p {
  margin: 0;
  line-height: 1.56;
  font-size: 0.92rem;
}

.pillars-preview-card a {
  margin-top: auto;
  padding-top: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 0.86rem;
  opacity: 0.96;
}

.pillars-preview-card a:hover {
  color: #ffe7eb;
}

.section-cta {
  margin-top: 22px;
  text-align: center;
}

.shop-wrap {
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(216, 207, 200, 0.72);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.shop-scene {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(247, 240, 234, 0.76));
  border-top: 1px solid rgba(216, 207, 200, 0.58);
  border-bottom: 1px solid rgba(216, 207, 200, 0.58);
}

.shop-scene .shop-wrap {
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(2px);
}

.start-here-band {
  background:
    linear-gradient(180deg, rgba(246, 241, 234, 0.78), rgba(246, 241, 234, 0.64)),
    url("flowers.png") center / cover no-repeat;
  border-top: 1px solid rgba(216, 207, 200, 0.55);
  border-bottom: 1px solid rgba(216, 207, 200, 0.55);
}

.start-here-card {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(216, 207, 200, 0.76);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  padding: 24px;
}

.start-here-card h2 {
  margin-bottom: 10px;
  font-size: clamp(1.6rem, 2.8vw, 2rem);
}

.start-here-card p {
  margin: 0 auto 18px;
  color: var(--muted);
  line-height: 1.72;
  max-width: 700px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 6px;
}

.card {
  background: var(--paper);
  border: 1px solid rgba(216, 207, 200, 0.76);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.thumb {
  height: 190px;
  overflow: hidden;
  background: #efe6dd;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content {
  padding: 16px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  flex: 1;
}

.content h4 {
  font-size: 1.2rem;
  margin: 0;
}

.content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.95rem;
}

.content .btn {
  margin-top: auto;
  min-width: 132px;
  padding: 8px 18px;
  font-size: 0.84rem;
}

.pillars-list {
  display: grid;
  gap: 16px;
}

.pillar-jump-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0 30px;
}

.pillar-jump {
  text-decoration: none;
  padding: 12px 10px;
  text-align: center;
  font-size: 0.93rem;
  border-radius: 12px;
  background: var(--sage);
  border: 1px solid var(--sage);
  color: #fff;
  box-shadow: 0 8px 18px rgba(93, 107, 98, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.pillar-jump:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.pillar-item {
  background: var(--paper);
  border: 1px solid rgba(216, 207, 200, 0.74);
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--shadow-soft);
  scroll-margin-top: 92px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 22px;
  align-items: start;
}

.pillar-item h3 {
  font-size: 1.45rem;
  margin-bottom: 10px;
}

.pillar-left {
  grid-column: 1;
}

.pillar-right {
  grid-column: 2;
}

.pillar-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  border: 1px solid rgba(216, 207, 200, 0.82);
  background: #efe6dd;
  overflow: hidden;
  margin: 0 0 14px;
}

.pillar-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pillar-right p:first-of-type {
  margin-top: 0;
}

.pillar-subtitle {
  display: block;
  margin-bottom: 5px;
  font-family: "Playfair Display", serif;
  color: var(--ink);
  font-size: 1.05rem;
}

.pillar-item p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.7;
}

.pillar-item ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.pillar-item li {
  margin-bottom: 8px;
}

.pillar-detail-link {
  display: inline-block;
  margin-top: 12px;
  text-decoration: none;
  color: var(--sage-dark);
  font-weight: 700;
  font-size: 0.9rem;
}

.pillar-detail-link:hover {
  color: var(--rose-dark);
}

.info-wrap {
  width: min(900px, 92vw);
  margin: 0 auto;
}

.info-copy p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.03rem;
}

.detail-content h2 {
  margin: 18px 0 8px;
  font-size: 1.28rem;
}

.detail-content p {
  margin: 0 0 12px;
}

.research-block {
  margin-top: 18px;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.research-block h2 {
  margin-top: 0;
}

.research-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.research-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 243, 238, 0.92));
  border: 1px solid rgba(216, 207, 200, 0.84);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  padding: 14px;
}

.research-card h3 {
  font-size: 1.02rem;
  margin: 0 0 8px;
}

.research-card p {
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.94rem;
}

.research-why {
  font-size: 0.9rem;
}

.research-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid #c9bcb3;
  background: rgba(255, 255, 255, 0.86);
  color: var(--sage-dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.8rem;
}

.research-link:hover {
  color: var(--rose-dark);
}

.founders {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.founder-stories {
  display: grid;
  gap: 22px;
}

.founder-story {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
  background: var(--paper);
  border: 1px solid rgba(216, 207, 200, 0.76);
  box-shadow: var(--shadow-soft);
  padding: 18px;
}

.founder-story-reverse {
  grid-template-columns: 2fr 1fr;
}

.founder-story-reverse .founder-body {
  grid-column: 1;
  grid-row: 1;
}

.founder-story-reverse .founder-media {
  grid-column: 2;
  grid-row: 1;
}

.founder-body h3 {
  font-size: 1.35rem;
  margin: 0 0 10px;
}

.founder-card {
  background: var(--paper);
  border: 1px solid rgba(216, 207, 200, 0.76);
  box-shadow: var(--shadow-soft);
  padding: 18px;
}

.founder-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, #f4ece5, #e8ddd5);
  border: 1px dashed #c9bcb3;
  overflow: hidden;
  margin-bottom: 14px;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 24px;
}

.contact-card,
.form-card {
  background: var(--paper);
  border: 1px solid rgba(216, 207, 200, 0.76);
  box-shadow: var(--shadow-soft);
  padding: 20px;
}

.contact-card p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.65;
}

.contact-email {
  color: var(--rose-dark);
  font-weight: 700;
  text-decoration: none;
}

.form-row {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.form-row label {
  font-weight: 600;
  color: var(--sage-dark);
}

.form-row input,
.form-row textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--line);
  padding: 11px 12px;
  background: #fff;
  font-family: inherit;
  color: var(--ink);
  font-size: 0.95rem;
}

.form-row textarea {
  min-height: 160px;
  resize: vertical;
}

.form-note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.footer {
  padding: 24px 0 38px;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  background: var(--sage);
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 10px;
}

.footer-links a,
.social-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
}

.footer-links a:hover,
.social-links a:hover {
  color: #ffe7eb;
}

.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 12px;
}

@media (max-width: 980px) {
  .cards,
  .momentum-grid,
  .trust-points,
  .pillars-preview-grid,
  .research-grid,
  .founder-story,
  .founder-story-reverse,
  .founders,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .pillar-item {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .pillar-left,
  .pillar-right {
    grid-column: 1;
  }

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

  .founder-story-reverse .founder-body,
  .founder-story-reverse .founder-media {
    grid-column: 1;
    grid-row: auto;
  }

  .menu {
    gap: 14px;
    font-size: 0.9rem;
  }

  .trust-scene .trust-layout {
    padding: 18px;
  }

  .recognition-copy p {
    font-size: 1rem;
  }
}

@media (max-width: 700px) {
  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .menu {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    border-top: 1px solid rgba(216, 207, 200, 0.7);
    padding-top: 10px;
    margin-left: 0;
  }

  .menu-dropdown {
    width: 100%;
    text-align: center;
  }

  .menu-dropdown-list {
    position: static;
    min-width: 0;
    width: min(440px, 96vw);
    margin: 8px auto 0;
  }

  .actions {
    margin-left: 0;
  }

  .hero {
    min-height: 500px;
    padding: 72px 0;
    background:
      linear-gradient(180deg, rgba(248, 243, 238, 0.96) 0%, rgba(248, 243, 238, 0.82) 58%, rgba(248, 243, 238, 0.18) 100%),
      url("banner.png") center top / cover no-repeat;
  }

  .hero-copy {
    margin: 0 auto;
    text-align: center;
  }

  .hero-logo,
  .hero-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .section-title::before,
  .section-title::after {
    display: none;
  }

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

  .pillar-jump-grid {
    grid-template-columns: 1fr;
  }

  .thumb {
    height: 210px;
  }

  .page-banner {
    aspect-ratio: 8 / 3;
  }
}
