:root {
  --cream: #f7f1e6;
  --paper: #fffdf8;
  --milk: #fbfaf4;
  --oat: #efe4d2;
  --ink: #151515;
  --muted: #6f655c;
  --coffee: #34231b;
  --red: #9e2f28;
  --sage: #a9b89a;
  --blue: #495b68;
  --line: rgba(21, 21, 21, 0.12);
  --shadow: 0 24px 70px rgba(40, 29, 18, 0.14);
  --display: "Barlow Condensed", Impact, sans-serif;
  --body: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 110px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.intro {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--cream);
  color: var(--coffee);
  animation: intro-curtain 1s cubic-bezier(0.83, 0, 0.17, 1) forwards;
  animation-delay: 1.85s;
  pointer-events: none;
}

.intro-stage {
  position: relative;
  display: grid;
  justify-items: center;
  gap: clamp(14px, 2vw, 22px);
  padding: 0 24px;
  text-align: center;
}

.intro-kicker,
.intro-meta {
  display: inline-block;
  overflow: hidden;
  font-family: var(--body);
  font-size: clamp(10px, 1vw, 12px);
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--muted);
}

.intro-kicker > span,
.intro-meta > span {
  display: inline-block;
  transform: translateY(110%);
  animation: intro-rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.intro-kicker > span {
  animation-delay: 0.35s;
}

.intro-meta > span {
  animation-delay: 1.05s;
}

.intro-wordmark {
  display: inline-flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(64px, 12vw, 160px);
  line-height: 0.95;
  letter-spacing: 0.04em;
  color: var(--coffee);
}

.intro-anchor {
  display: grid;
  width: clamp(40px, 7vw, 96px);
  place-items: center;
  opacity: 0;
  transform: translateY(18px) rotate(-8deg);
  animation: intro-anchor-in 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.55s;
}

.intro-anchor img {
  width: 100%;
  height: auto;
}

.intro-word {
  display: inline-block;
  overflow: hidden;
  padding: 0.08em 0.04em;
}

.intro-word > span {
  display: inline-block;
  transform: translateY(110%);
  animation: intro-rise 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.6s;
}

.intro-rule {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(52, 35, 27, 0.3);
  transform-origin: left center;
  transform: scaleX(0);
  animation: intro-rule-draw 1.4s cubic-bezier(0.83, 0, 0.17, 1) forwards;
  animation-delay: 0.4s;
}

.brand-word,
.footer-word {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(250px, 280px) 1fr auto;
  align-items: center;
  min-height: 86px;
  padding: 12px clamp(22px, 6vw, 96px);
  background: rgba(247, 241, 230, 0.94);
  border-top: 4px solid var(--ink);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 10px;
}

.brand-anchor {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
}

.brand-anchor img {
  width: 100%;
  height: auto;
}

.brand-word {
  display: inline-block;
  font-size: 36px;
  line-height: 1;
}

.nav-links,
.header-actions {
  display: flex;
  align-items: center;
}

.nav-links {
  justify-content: center;
  gap: clamp(16px, 1.8vw, 28px);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
}

.nav-links > a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-links > a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  justify-content: flex-end;
  gap: 16px;
}

.social-links {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.social-links a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(52, 35, 27, 0.34);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.45);
  color: var(--coffee);
  transition: transform 180ms ease, background 180ms ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  background: var(--paper);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.social-links svg path {
  fill: currentColor;
  stroke: none;
}

.mobile-socials {
  display: none;
}

.text-link {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.button,
.filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 30px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

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

.button-light {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--coffee);
}

.button-small {
  min-height: 40px;
  padding: 0 24px;
  font-size: 13px;
}

.section-band,
.section-white {
  padding: clamp(62px, 7vw, 108px) clamp(22px, 6vw, 96px);
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.9fr);
  align-items: center;
  gap: clamp(34px, 5vw, 64px);
  min-height: min(720px, calc(100vh - 86px));
}

.hero-media {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--coffee);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-copy,
.feature-copy,
.pastry-moment-copy,
.story-copy,
.visit-card,
.project-copy,
.project-list,
.concept-copy,
.concept-points,
.footer-brand {
  min-width: 0;
}

.hero-media video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transform: none;
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
}

h1,
.section-title,
.story h2,
.pastry-moment h2,
.visit h2 {
  font-family: var(--display);
  font-weight: 900;
  line-height: 0.88;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  font-size: clamp(54px, 5.55vw, 96px);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 20px 0;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.28;
}

@media (min-width: 1500px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(640px, 0.95fr);
    gap: clamp(56px, 5vw, 126px);
  }

  h1 {
    max-width: 960px;
    font-size: clamp(96px, 4.8vw, 136px);
  }

  .hero-copy > p:not(.eyebrow) {
    max-width: 760px;
    font-size: clamp(22px, 1.18vw, 30px);
    line-height: 1.25;
  }

  .hero .eyebrow {
    font-size: 15px;
  }
}

.hero-actions,
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.meta-row {
  margin-top: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.meta-row span::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: var(--sage);
}

.section-title {
  margin: 0 auto clamp(38px, 5vw, 58px);
  text-align: center;
  font-size: clamp(46px, 4.6vw, 72px);
}

.feature-row,
.story,
.visit {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(36px, 5vw, 72px);
  max-width: 1200px;
  margin: 0 auto;
}

.feature-image,
.visit-image,
.story-media img,
.story-media video {
  width: 100%;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: var(--shadow);
}

.feature-row {
  grid-template-columns: minmax(0, 1.34fr) minmax(290px, 0.76fr);
}

.feature-image {
  height: clamp(400px, 42vw, 560px);
  object-fit: cover;
  object-position: center center;
  background: var(--paper);
  animation: ken-burns-soft 20s ease-in-out infinite alternate;
}

.feature-copy h3 {
  margin-bottom: 20px;
  font-size: clamp(34px, 3vw, 52px);
  font-weight: 900;
  text-transform: uppercase;
}

.feature-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 8px 8px 30px 30px;
  background: var(--paper);
  box-shadow: 0 18px 44px rgba(42, 28, 18, 0.08);
  transition: transform 190ms ease, box-shadow 190ms ease, opacity 180ms ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 66px rgba(42, 28, 18, 0.15);
}

.product-card img {
  flex: 0 0 auto;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #f3eadc;
  transition: transform 240ms ease;
}

.product-card:hover img {
  transform: scale(1.045);
}

.product-card div {
  flex: 1 1 auto;
  min-height: 118px;
  display: grid;
  align-content: center;
  padding: 20px 22px 26px;
  text-align: center;
}

.product-card h3 {
  font-size: 16px;
  font-weight: 900;
  line-height: 1.18;
  text-transform: uppercase;
}

.product-card p {
  margin: 9px 0 0;
  color: var(--coffee);
  font-size: 15px;
}

.product-card.is-hidden {
  display: none;
}

.pastry-moment {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(420px, 1.25fr);
  align-items: center;
  gap: clamp(36px, 6vw, 86px);
  background: var(--cream);
}

.pastry-moment-copy {
  max-width: 520px;
}

.pastry-moment h2 {
  font-size: clamp(46px, 5vw, 78px);
}

.pastry-moment-copy p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.pastry-moment-media {
  overflow: hidden;
  border-radius: 8px;
  background: var(--coffee);
  box-shadow: var(--shadow);
}

.pastry-moment-media video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.concept-strip {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(420px, 640px);
  justify-content: center;
  gap: clamp(34px, 5vw, 74px);
  align-items: center;
  padding: clamp(58px, 7vw, 96px) clamp(22px, 6vw, 96px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(120deg, #eee2d1, #f8f3e9 55%, #e8eadf);
}

.concept-copy h2 {
  max-width: 540px;
  font-family: var(--display);
  font-size: clamp(52px, 4.3vw, 78px);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.concept-copy h2 span {
  display: block;
}

.concept-points {
  display: grid;
  gap: 0;
  border: 1px solid rgba(21, 21, 21, 0.15);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.66);
}

.concept-points p {
  margin: 0;
  padding: 22px 26px;
  border-bottom: 1px solid rgba(21, 21, 21, 0.12);
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}

.concept-points p:last-child {
  border-bottom: 0;
}

.concept-points strong {
  color: var(--ink);
}

.site-footer h3 {
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.category-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--coffee);
}

.category-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.08) 56%, rgba(0, 0, 0, 0.24));
}

.category-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.category-card:hover img,
.category-card:focus-visible img {
  transform: scale(1.045);
}

.category-card span {
  position: absolute;
  left: 30px;
  top: 30px;
  z-index: 1;
  display: block;
  max-width: calc(100% - 60px);
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(40px, 3.75vw, 58px);
  font-weight: 900;
  line-height: 1.12;
  text-transform: uppercase;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 1060px;
  margin: -22px auto 48px;
}

.filter {
  min-height: 36px;
  padding: 0 26px;
  background: var(--coffee);
  border-color: var(--coffee);
  font-size: 13px;
}

.filter:not(.active) {
  background: transparent;
  color: var(--coffee);
}

.menu-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  row-gap: 26px;
}

.story {
  grid-template-columns: minmax(620px, 1.18fr) minmax(0, 0.82fr);
  max-width: 1360px;
}

.story-copy h2,
.visit h2 {
  max-width: 560px;
  font-size: clamp(48px, 5vw, 78px);
}

.story-copy p:not(.eyebrow),
.visit-card dd,
.visit-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.story-media {
  display: block;
}

.story-media video {
  width: 100%;
  height: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 0.95fr;
  grid-auto-rows: 245px;
  grid-auto-flow: dense;
  gap: 20px;
  max-width: 1240px;
  margin: 0 auto;
}

.posts {
  border-top: 1px solid var(--line);
}

.section-kicker {
  max-width: 820px;
  margin: 0 auto clamp(34px, 5vw, 54px);
  text-align: center;
}

.section-kicker .section-title {
  margin-bottom: 0;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  max-width: 1240px;
  margin: 0 auto;
}

.post-card {
  overflow: hidden;
  border: 1px solid rgba(21, 21, 21, 0.1);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: 0 18px 46px rgba(42, 28, 18, 0.1);
}

.post-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  background: var(--oat);
}

.post-copy {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.post-copy span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.post-copy h3 {
  font-size: 21px;
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}

.post-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.gallery-card {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--coffee);
  box-shadow: var(--shadow);
}

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

.gallery-tall {
  grid-row: span 2;
}

.gallery-wide {
  grid-column: span 2;
}

.visit-card {
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
}

.visit-card dl {
  display: grid;
  gap: 18px;
  margin: 28px 0;
}

.visit-card div {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.visit-card dt {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
}

.visit-card dd {
  margin: 0;
}

.visit-image {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  animation: ken-burns-soft 20s ease-in-out infinite alternate;
}

.visit-visual {
  display: grid;
  gap: 18px;
}

.visit-visual .visit-image {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid rgba(21, 21, 21, 0.14);
  border-radius: 8px;
  background: #efe4d2;
  box-shadow: var(--shadow);
}

.map-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) sepia(0.08) contrast(0.96);
}

.map-caption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: grid;
  gap: 2px;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 18px 45px rgba(40, 29, 18, 0.2);
}

.map-caption strong {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 900;
  line-height: 0.9;
}

.map-caption span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.map-credit {
  position: absolute;
  right: 12px;
  bottom: 10px;
  padding: 3px 6px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.84);
  color: rgba(52, 35, 27, 0.7);
  font-size: 10px;
  font-weight: 800;
}

.project-section {
  display: grid;
  grid-template-columns: minmax(320px, 470px) minmax(420px, 760px);
  justify-content: center;
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  padding-top: clamp(54px, 5vw, 78px);
  padding-bottom: clamp(54px, 5vw, 78px);
  background: var(--coffee);
  color: var(--paper);
}

.project-section .eyebrow {
  color: #e8b2a7;
}

.project-copy h2 {
  max-width: 540px;
  font-family: var(--display);
  font-size: clamp(46px, 4.2vw, 70px);
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
}

.project-copy p:not(.eyebrow) {
  max-width: 540px;
  color: rgba(255, 253, 248, 0.76);
  font-size: 16px;
  line-height: 1.62;
}

.project-button {
  margin-top: 10px;
}

.project-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 253, 248, 0.22);
  border-bottom: 1px solid rgba(255, 253, 248, 0.22);
}

.project-list article {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 253, 248, 0.18);
}

.project-list article:last-child {
  border-bottom: 0;
}

.project-list strong {
  color: var(--paper);
  font-family: var(--display);
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
}

.project-list span {
  color: rgba(255, 253, 248, 0.74);
  font-size: 16px;
  line-height: 1.55;
}

.site-footer {
  padding: 0 clamp(22px, 6vw, 96px) clamp(58px, 7vw, 92px);
  background: #ede2d1;
}

.footer-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(34px, 7vw, 96px);
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(54px, 7vw, 92px) 0;
}

.footer-hero img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.footer-brand {
  display: grid;
  gap: 28px;
}

.footer-word {
  font-size: clamp(46px, 4.6vw, 82px);
  line-height: 1;
}

.footer-brand strong {
  max-width: 580px;
  font-family: var(--display);
  font-size: clamp(48px, 5vw, 82px);
  font-weight: 900;
  line-height: 0.88;
  text-transform: uppercase;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 0.7fr 1fr;
  gap: clamp(34px, 8vw, 120px);
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 42px;
  border-top: 1px solid rgba(21, 21, 21, 0.18);
}

.footer-grid h3 {
  margin-bottom: 24px;
  font-family: var(--display);
}

.footer-grid p,
.footer-grid a {
  display: block;
  margin: 0 0 9px;
  color: var(--coffee);
  font-size: 15px;
}

.footer-grid a.button {
  display: inline-flex;
  width: auto;
  color: var(--paper);
}

.footer-grid .social-links a {
  display: grid;
  margin: 0;
}

.footer-credit p {
  margin-bottom: 18px;
  font-size: 16px;
  font-weight: 600;
}

.footer-credit p a {
  display: inline;
  margin: 0;
  color: var(--coffee);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 180ms ease;
}

.footer-credit p a:hover {
  color: var(--red);
}

.socials {
  margin-top: 18px;
}

.menu-toggle {
  display: none;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 580ms ease, transform 580ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes intro-rise {
  to {
    transform: translateY(0);
  }
}

@keyframes intro-anchor-in {
  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}

@keyframes intro-rule-draw {
  to {
    transform: scaleX(1);
  }
}

@keyframes intro-curtain {
  0% {
    transform: translateY(0);
    visibility: visible;
  }
  100% {
    transform: translateY(-101%);
    visibility: hidden;
  }
}

@keyframes ken-burns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.075);
  }
}

@keyframes ken-burns-soft {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.035);
  }
}

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

  .feature-image,
  .product-card img,
  .category-card img,
  .story-media img,
  .gallery-card img,
  .visit-image,
  .footer-hero img {
    transform: none !important;
  }

  .intro {
    display: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: minmax(220px, 240px) 1fr auto;
  }

  .header-actions .text-link {
    display: none;
  }

  .nav-links {
    gap: 16px;
    font-size: 12px;
  }

  .hero,
  .feature-row,
  .pastry-moment,
  .story,
  .visit,
  .footer-hero,
  .project-section,
  .concept-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .feature-row,
  .visit-visual,
  .footer-hero {
    overflow-x: clip;
  }

  .hero-copy {
    order: 1;
  }

  .hero-media {
    order: 2;
  }

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

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 72px;
    width: 100%;
    max-width: 100vw;
    padding: 9px 16px;
  }

  [id] {
    scroll-margin-top: 86px;
  }

  .brand-anchor {
    width: 23px;
    height: 23px;
  }

  .brand-word {
    font-size: 30px;
  }

  .menu-toggle {
    position: relative;
    display: grid;
    grid-column: 2;
    place-items: center;
    justify-self: end;
    width: 54px;
    height: 42px;
    border: 1px solid var(--ink);
    border-radius: 999px;
    background: var(--ink);
    cursor: pointer;
  }

  .menu-toggle span {
    position: absolute;
    left: 50%;
    width: 22px;
    height: 2px;
    background: var(--paper);
    transition: transform 180ms ease;
    transform: translateX(-50%);
  }

  .menu-toggle span:first-child {
    transform: translate(-50%, -4px);
  }

  .menu-toggle span:last-child {
    transform: translate(-50%, 4px);
  }

  body.menu-open .menu-toggle span:first-child {
    transform: translate(-50%, 0) rotate(45deg);
  }

  body.menu-open .menu-toggle span:last-child {
    transform: translate(-50%, 0) rotate(-45deg);
  }

  .nav-links,
  .header-actions {
    position: absolute;
    left: 0;
    right: 0;
    display: flex;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .nav-links {
    top: 100%;
    height: calc(100dvh - 72px);
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    padding: 22px 18px 96px;
    background: var(--cream);
    font-family: var(--display);
    font-size: 42px;
    line-height: 0.9;
    z-index: 65;
  }

  .header-actions {
    top: calc(100dvh - 84px);
    justify-content: center;
    padding: 18px;
    background: var(--cream);
    border-top: 1px solid var(--line);
    z-index: 65;
  }

  .header-actions .button-small {
    width: auto;
    min-height: 38px;
  }

  .desktop-socials,
  .header-actions .text-link {
    display: none;
  }

  .mobile-socials {
    display: inline-flex;
    margin-top: 12px;
  }

  body.menu-open .nav-links,
  body.menu-open .header-actions {
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateY(0);
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: calc(100svh - 72px);
    min-height: calc(100dvh - 72px);
    gap: 18px;
  }

  .hero-copy {
    flex: 0 0 auto;
  }

  .hero-media {
    flex: 1 1 0;
    min-height: 160px;
    width: 100%;
  }

  .hero-media video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
  }

  .pastry-moment-media video {
    aspect-ratio: auto;
    height: auto;
    object-fit: contain;
  }

  .pastry-moment-media {
    order: 2;
  }

  .pastry-moment-copy {
    order: 1;
  }

  .hero-copy {
    width: 100%;
    max-width: calc(100vw - 36px);
  }

  .hero-media,
  .hero-actions,
  .meta-row {
    max-width: calc(100vw - 36px);
  }

  .button {
    width: 100%;
    max-width: calc(100vw - 36px);
  }

  .section-band,
  .section-white {
    padding: 54px 18px;
  }

  .hero.section-band {
    padding-top: 14px;
    padding-bottom: 16px;
  }

  .section-title {
    margin-bottom: 32px;
  }

  .category-grid,
  .post-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 300px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-rows: auto;
  }

  .gallery-card,
  .gallery-tall,
  .gallery-wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 270px;
    aspect-ratio: 1.15 / 1;
  }

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

  .post-card img {
    height: 230px;
  }

  .story-media {
    grid-template-columns: 1fr;
  }

  .project-list article {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .map-card {
    min-height: 220px;
  }

}

@media (max-width: 560px) {
  .hero-copy,
  .hero-media,
  .hero-actions,
  .meta-row,
  .button {
    max-width: min(100%, calc(100vw - 36px), 354px);
  }

  h1 {
    max-width: min(100%, calc(100vw - 36px), 354px);
    width: min(100%, calc(100vw - 36px), 354px);
    font-size: clamp(32px, 9vw, 40px);
    line-height: 0.94;
  }

  .hero-copy > p:not(.eyebrow) {
    max-width: min(100%, calc(100vw - 36px), 354px);
    margin: 14px 0;
    font-size: 16px;
    line-height: 1.34;
  }

  .hero .meta-row {
    margin-top: 16px;
  }

  .hero .hero-actions {
    gap: 10px;
  }

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

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

  .post-card img {
    height: auto;
    aspect-ratio: 1.12 / 1;
  }

  .compact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .compact-grid .product-card div {
    min-height: 104px;
    padding: 14px;
  }

  .compact-grid .product-card h3 {
    font-size: 13px;
  }

  .concept-strip {
    padding: 48px 18px;
  }

  .concept-points p {
    padding: 18px;
  }

  .visit-card div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer-hero {
    padding-top: 46px;
  }
}
