@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --ink: #30211d;
  --ink-soft: #644c42;
  --paper: #fbf5ec;
  --paper-deep: #f0e3d3;
  --caramel: #c98148;
  --coffee: #6f3d28;
  --coffee-deep: #291914;
  --yellow: #f4c744;
  --line: rgba(48, 33, 29, 0.16);
  --shadow: 0 24px 60px rgba(55, 29, 18, 0.12);
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: 'Fraunces', serif;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
  text-wrap: balance;
}

p,
li,
dd {
  text-wrap: pretty;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 700;
  transition: transform 700ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 20;
  width: 100%;
}

.site-header--overlay {
  position: absolute;
  top: 0;
  left: 0;
  color: #fffaf1;
}

.site-header--solid {
  background: var(--paper);
  color: var(--ink);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1240px;
  min-height: 88px;
  margin: 0 auto;
  padding: 16px 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.brand-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--coffee-deep);
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 600;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy small {
  color: currentColor;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  opacity: 0.72;
  text-transform: uppercase;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  margin-right: 24px;
}

.desktop-nav a,
.footer-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a::after,
.footer-nav a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  content: '';
  transition: transform 700ms var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current='page']::after,
.footer-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-header--overlay .desktop-nav a[aria-current='page'] {
  color: var(--yellow);
}

.header-order {
  display: none;
}

.menu-toggle {
  position: relative;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 700ms var(--ease);
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded='true'] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded='true'] span:last-child {
  transform: rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 10;
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 96px 28px 32px;
  background: rgba(41, 25, 20, 0.97);
  color: #fffaf1;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-16px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.mobile-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-nav a {
  width: fit-content;
  color: #fffaf1;
  font-family: 'Fraunces', serif;
  font-size: 40px;
  line-height: 1;
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease), color 700ms var(--ease);
}

.mobile-nav.is-open a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav.is-open a:nth-child(1) { transition-delay: 100ms; }
.mobile-nav.is-open a:nth-child(2) { transition-delay: 150ms; }
.mobile-nav.is-open a:nth-child(3) { transition-delay: 200ms; }
.mobile-nav.is-open a:nth-child(4) { transition-delay: 250ms; }
.mobile-nav.is-open a:nth-child(5) { transition-delay: 300ms; }

.mobile-nav a:hover,
.mobile-nav a[aria-current='page'] {
  color: var(--yellow);
}

.mobile-nav-note {
  margin-top: 16px;
  color: rgba(255, 250, 241, 0.68);
  font-size: 14px;
}

.container {
  width: min(100% - 40px, 1200px);
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

.section--tight {
  padding: 64px 0;
}

.section--paper-deep {
  background: var(--paper-deep);
}

.section--dark {
  background: var(--coffee-deep);
  color: #fffaf1;
}

.section--dark h2,
.section--dark h3 {
  color: #fffaf1;
}

.eyebrow {
  color: var(--coffee);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--yellow);
}

.section-heading {
  max-width: 620px;
  margin-top: 16px;
  font-size: 40px;
}

.section-heading--large {
  font-size: 48px;
}

.section-copy {
  max-width: 520px;
  margin-top: 20px;
  color: var(--ink-soft);
}

.section--dark .section-copy {
  color: rgba(255, 250, 241, 0.7);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  transition: transform 700ms var(--ease), background 700ms var(--ease), color 700ms var(--ease), border-color 700ms var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(1px) scale(0.98);
}

.button--yellow {
  background: var(--yellow);
  color: var(--ink);
}

.button--yellow:hover {
  background: #ffd95f;
}

.button--light {
  background: #fffaf1;
  color: var(--ink);
}

.button--outline {
  border-color: currentColor;
  color: inherit;
}

.button--outline:hover {
  background: var(--yellow);
  color: var(--ink);
}

.button--small {
  min-height: 42px;
  padding: 8px 14px;
  font-size: 14px;
}

.hero {
  position: relative;
  display: flex;
  min-height: 720px;
  align-items: flex-end;
  overflow: hidden;
  background-color: var(--coffee-deep);
  background-image: url('/images/moka-hero.jpg');
  background-position: 68% center;
  background-size: cover;
  color: #fffaf1;
}

.hero::before {
  position: absolute;
  inset: 0;
  background: rgba(24, 18, 15, 0.46);
  content: '';
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 1200px);
  margin: 0 auto;
  padding: 144px 0 56px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-kicker::before {
  width: 24px;
  height: 2px;
  background: currentColor;
  content: '';
}

.hero h1 {
  max-width: 680px;
  margin-top: 20px;
  color: #fffaf1;
  font-size: 64px;
  line-height: 0.96;
}

.hero-subtitle {
  max-width: 580px;
  margin-top: 24px;
  color: rgba(255, 250, 241, 0.86);
  font-size: 18px;
}

.hero .button-row {
  margin-top: 32px;
}

.hero-address {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  color: rgba(255, 250, 241, 0.72);
  font-size: 14px;
  font-weight: 600;
}

.hero-address::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  content: '';
}

.intro-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

.intro-image {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 16px;
}

.intro-image img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  object-position: 62% center;
}

.intro-image::after {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 58px;
  height: 58px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  content: '☕';
  display: grid;
  place-items: center;
  color: var(--yellow);
  font-size: 22px;
}

.tagline-section {
  padding: 96px 0;
  background: var(--coffee);
}

.tagline {
  max-width: 900px;
  color: #fffaf1;
  font-family: 'Fraunces', serif;
  font-size: 48px;
  letter-spacing: -0.04em;
  line-height: 1.04;
  text-wrap: balance;
}

.tagline-word {
  display: inline-block;
  color: rgba(255, 250, 241, 0.3);
  transition: color 800ms var(--ease);
}

.tagline-word.is-visible {
  color: #fffaf1;
}

.favourites-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.favourites-grid {
  display: grid;
  gap: 16px;
  margin-top: 40px;
}

.favourite-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--coffee-deep);
  color: #fffaf1;
}

.favourite-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1000ms var(--ease);
}

.favourite-card::after {
  position: absolute;
  inset: 0;
  background: rgba(41, 25, 20, 0.46);
  content: '';
}

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

.favourite-card-content {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 1;
}

.favourite-card h3 {
  color: #fffaf1;
  font-size: 30px;
}

.favourite-card p {
  max-width: 300px;
  margin-top: 8px;
  color: rgba(255, 250, 241, 0.82);
  font-size: 14px;
}

.atmosphere {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background: var(--coffee-deep);
  color: #fffaf1;
}

.atmosphere img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
}

.atmosphere::after {
  position: absolute;
  inset: 0;
  background: rgba(41, 25, 20, 0.5);
  content: '';
}

.atmosphere-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 540px;
  align-items: flex-end;
  padding: 48px 0;
}

.atmosphere h2 {
  max-width: 560px;
  color: #fffaf1;
  font-size: 48px;
}

.food-grid {
  display: grid;
  gap: 16px;
  margin-top: 40px;
}

.food-card {
  overflow: hidden;
  border-radius: 16px;
  background: #fffaf1;
}

.food-card img {
  width: 100%;
  aspect-ratio: 1.3;
  object-fit: cover;
  transition: transform 1000ms var(--ease);
}

.food-card:hover img {
  transform: scale(1.04);
}

.food-card-body {
  padding: 20px;
}

.food-card h3 {
  font-size: 28px;
}

.food-card p {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 14px;
}

.community-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

.community-image {
  overflow: hidden;
  border-radius: 16px;
}

.community-image img {
  width: 100%;
  aspect-ratio: 1.1;
  object-fit: cover;
}

.community-list {
  display: grid;
  gap: 24px;
  margin-top: 32px;
  padding: 0;
  list-style: none;
}

.community-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.community-list span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.community-list strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.community-list p {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 14px;
}

.visit-panel {
  display: grid;
  gap: 32px;
  padding: 32px 0 0;
}

.visit-panel h2 {
  max-width: 520px;
  font-size: 44px;
}

.visit-details {
  display: grid;
  gap: 24px;
}

.visit-label {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.visit-details address,
.visit-details p {
  margin-top: 8px;
  color: rgba(255, 250, 241, 0.82);
  font-style: normal;
}

.hours-list {
  display: grid;
  gap: 8px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 250, 241, 0.82);
  font-size: 14px;
}

.hours-list li span:last-child {
  color: #fffaf1;
  font-weight: 600;
  text-align: right;
}

.map-proof {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.map-proof strong {
  color: var(--coffee);
  font-family: 'Fraunces', serif;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}

.map-proof span {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
}

.section--dark .map-proof {
  border-color: rgba(255, 250, 241, 0.18);
}

.section--dark .map-proof strong {
  color: var(--yellow);
}

.section--dark .map-proof span {
  color: rgba(255, 250, 241, 0.68);
}

.site-footer {
  background: #201410;
  color: #fffaf1;
}

.footer-main {
  display: grid;
  gap: 40px;
  padding: 64px 0 48px;
}

.footer-brand {
  color: #fffaf1;
}

.footer-brand p {
  max-width: 240px;
  margin-top: 16px;
  color: rgba(255, 250, 241, 0.64);
  font-size: 14px;
}

.footer-heading {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-list {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  color: rgba(255, 250, 241, 0.76);
  font-size: 14px;
  list-style: none;
}

.footer-nav {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 250, 241, 0.14);
  padding: 20px 0 24px;
  color: rgba(255, 250, 241, 0.52);
  font-size: 12px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.mobile-order {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 8;
  display: flex;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(41, 25, 20, 0.2);
}

.page-main {
  min-height: 60vh;
}

.page-hero {
  position: relative;
  display: flex;
  min-height: 420px;
  align-items: flex-end;
  overflow: hidden;
  background-color: var(--coffee-deep);
  background-position: center;
  background-size: cover;
  color: #fffaf1;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  background: rgba(41, 25, 20, 0.5);
  content: '';
}

.page-hero--menu { background-image: url('/images/pastries.jpg'); background-position: center 60%; }
.page-hero--about { background-image: url('/images/moka-community.jpg'); background-position: center 55%; }
.page-hero--visit { background-image: url('/images/barista-nitro.jpg'); background-position: center 42%; }

.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 1200px);
  margin: 0 auto;
  padding: 96px 0 48px;
}

.page-hero h1 {
  max-width: 640px;
  margin-top: 16px;
  color: #fffaf1;
  font-size: 56px;
}

.page-hero p {
  max-width: 560px;
  margin-top: 18px;
  color: rgba(255, 250, 241, 0.84);
}

.menu-layout {
  display: grid;
  gap: 40px;
}

.menu-index {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.menu-index::-webkit-scrollbar {
  display: none;
}

.menu-index a {
  flex: 0 0 auto;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  transition: background 700ms var(--ease), color 700ms var(--ease), border-color 700ms var(--ease);
}

.menu-index a:hover {
  border-color: var(--coffee);
  background: var(--coffee);
  color: #fffaf1;
}

.menu-sections {
  display: grid;
  gap: 56px;
}

.menu-section {
  scroll-margin-top: 24px;
}

.menu-section h2 {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 12px;
  font-size: 32px;
}

.menu-section h2 span {
  color: var(--caramel);
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-items {
  display: grid;
}

.menu-item {
  display: grid;
  gap: 4px;
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.menu-item h3 {
  font-size: 23px;
}

.menu-item p {
  max-width: 620px;
  color: var(--ink-soft);
  font-size: 14px;
}

.menu-note {
  border-radius: 16px;
  background: var(--yellow);
  padding: 24px;
}

.menu-note strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 24px;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.menu-note p {
  margin-top: 8px;
  color: rgba(48, 33, 29, 0.76);
  font-size: 14px;
}

.about-story {
  display: grid;
  gap: 40px;
  align-items: center;
}

.about-story img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
  object-fit: cover;
}

.about-story h2 {
  font-size: 42px;
}

.about-story p + p {
  margin-top: 16px;
}

.about-principles {
  display: grid;
  gap: 16px;
  margin-top: 40px;
}

.principle {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.principle-number {
  color: var(--caramel);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.principle h3 {
  margin-top: 8px;
  font-size: 26px;
}

.principle p {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 14px;
}

.visit-layout {
  display: grid;
  gap: 48px;
}

.visit-card {
  border-top: 2px solid var(--ink);
  padding-top: 20px;
}

.visit-card + .visit-card {
  margin-top: 32px;
}

.visit-card h2 {
  font-size: 34px;
}

.visit-card address {
  margin-top: 12px;
  font-style: normal;
}

.visit-card p {
  margin-top: 8px;
  color: var(--ink-soft);
}

.visit-action {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.faq-list {
  display: grid;
  gap: 0;
  margin-top: 32px;
}

.faq-list details {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  cursor: pointer;
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.03em;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  float: right;
  color: var(--caramel);
  content: '+';
  font-family: 'Manrope', sans-serif;
}

.faq-list details[open] summary::after {
  content: '×';
}

.faq-list details p {
  max-width: 640px;
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 14px;
}

.not-found {
  display: grid;
  min-height: 70vh;
  place-items: center;
  padding: 120px 0;
  text-align: center;
}

.not-found h1 {
  font-size: 72px;
}

.not-found p {
  max-width: 420px;
  margin: 16px auto 0;
  color: var(--ink-soft);
}

.not-found-actions {
  justify-content: center;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(48px);
  filter: blur(8px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease), filter 900ms var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (min-width: 680px) {
  .container,
  .hero-content,
  .page-hero-content {
    width: min(100% - 64px, 1200px);
  }

  .nav-wrap {
    padding-right: 32px;
    padding-left: 32px;
  }

  .section {
    padding: 96px 0;
  }

  .hero-content {
    padding-top: 176px;
    padding-bottom: 80px;
  }

  .intro-grid,
  .community-grid,
  .about-story,
  .visit-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-image {
    order: 2;
  }

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

  .favourite-card:first-child {
    grid-row: span 2;
    min-height: 736px;
  }

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

  .community-grid {
    gap: 64px;
  }

  .community-image {
    order: 2;
  }

  .visit-panel {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
    padding-top: 0;
  }

  .footer-main {
    grid-template-columns: 1.2fr 1fr 0.8fr;
  }

  .menu-layout {
    grid-template-columns: 180px minmax(0, 1fr);
    align-items: start;
  }

  .menu-index {
    position: sticky;
    top: 24px;
    display: grid;
    overflow: visible;
  }

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

@media (min-width: 980px) {
  .desktop-nav,
  .header-order {
    display: flex;
  }

  .menu-toggle,
  .mobile-nav {
    display: none;
  }

  .hero {
    min-height: 820px;
  }

  .hero h1 {
    font-size: 96px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .section-heading {
    font-size: 48px;
  }

  .tagline {
    font-size: 60px;
  }

  .page-hero {
    min-height: 520px;
  }

  .page-hero h1 {
    font-size: 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  [data-reveal],
  .mobile-nav a,
  .tagline-word {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
