:root {
  --paper: #f2ebe3;
  --paper-deep: rgba(0, 0, 0, 0.05);
  --forest: #a8b95d;
  --forest-deep: #2c2b25;
  --ink: #000000;
  --muted: rgba(0, 0, 0, 0.68);
  --line: rgba(0, 0, 0, 0.18);
  --orange: #ffb979;
  --white: #f2ebe3;
  --radius: 4px;
  --header-height: 72px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  background: var(--paper);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.no-scroll {
  overflow: hidden;
}

img,
svg,
iframe {
  display: block;
}

figure {
  margin: 0;
}

img {
  max-width: 100%;
}

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

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

button {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--forest-deep);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-weight: 700;
}

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

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
  will-change: transform;
}

.wrap {
  width: min(100% - 40px, 1240px);
  margin-inline: auto;
}

.section {
  padding-block: clamp(84px, 11vw, 156px);
}

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

h1,
h2 {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 6vw, 5.75rem);
  line-height: 0.98;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.eyebrow,
.hero-kicker {
  margin-bottom: 22px;
  font-size: 0.73rem;
  line-height: 1.2;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  font-weight: 800;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: clamp(20px, 4vw, 56px);
  color: var(--white);
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(0);
  transition: background 220ms var(--ease-out), color 180ms var(--ease-out), border-color 220ms var(--ease-out), backdrop-filter 220ms var(--ease-out);
}

.site-header.is-scrolled {
  color: var(--forest-deep);
  background: var(--forest);
  border-bottom-color: rgba(44, 43, 37, 0.24);
  backdrop-filter: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
}

.brand-logo {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  object-fit: contain;
  transition: transform 180ms var(--ease-out);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  font-size: 0.92rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.brand-copy strong {
  font-weight: 800;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 38px);
  height: 100%;
  font-size: 0.84rem;
  font-weight: 700;
}

.desktop-nav > a:not(.social-link) {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 44px;
}

.desktop-nav > a:not(.social-link)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 7px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms var(--ease-out);
}

.desktop-nav > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.social-link {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  transition: background 180ms ease, color 180ms ease, transform 140ms var(--ease-out);
}

.social-link svg,
.mobile-social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-link:focus-visible {
  color: var(--forest-deep);
  background: var(--white);
}

.social-link:active,
.button:active,
.menu-toggle:active {
  transform: scale(0.97);
}

.gallery-item:active {
  transform: scale(0.98);
}

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

.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  overflow: hidden;
  isolation: isolate;
  background: var(--forest-deep);
  color: var(--white);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -2;
  object-fit: cover;
  object-position: center 54%;
  transform: scale(1.035) translate3d(0, 0, 0);
  animation: hero-drift 22s var(--ease-in-out) infinite alternate;
  will-change: transform;
}

.hero-shade {
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.14) 48%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-shade::after {
  content: "";
  position: absolute;
  inset: -18%;
  background:
    radial-gradient(circle at 24% 38%, rgba(255, 185, 121, 0.28), transparent 31%),
    radial-gradient(circle at 78% 58%, rgba(168, 185, 93, 0.16), transparent 28%);
  opacity: 0.58;
  transform: translate3d(-4%, -2%, 0) scale(1.03);
  animation: hero-light 16s var(--ease-in-out) infinite alternate;
  will-change: transform, opacity;
}

.hero-seal {
  position: absolute;
  right: clamp(22px, 5vw, 76px);
  bottom: clamp(30px, 5vw, 66px);
  z-index: 2;
  width: clamp(104px, 11vw, 148px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--white);
  filter: drop-shadow(0 8px 26px rgba(0, 0, 0, 0.28));
  pointer-events: none;
  animation: seal-float 7s ease-in-out infinite alternate;
}

.hero-seal svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  animation: seal-spin 30s linear infinite;
}

.hero-seal circle {
  fill: rgba(44, 43, 37, 0.34);
  stroke: currentColor;
  stroke-width: 0.8;
}

.hero-seal text {
  fill: currentColor;
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 7.3px;
  font-weight: 800;
  letter-spacing: 1.15px;
}

.hero-seal > span {
  position: relative;
  z-index: 1;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(1.3rem, 2vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.05em;
}

.hero-content {
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: var(--header-height);
  padding-bottom: clamp(46px, 6.5vw, 80px);
}

.hero-kicker {
  margin-bottom: 14px;
  color: var(--white);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.4);
  animation: rise-in 700ms 140ms var(--ease-out) both;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.8rem, 9vw, 7.6rem);
  line-height: 0.82;
  text-shadow: 0 2px 26px rgba(0, 0, 0, 0.24);
  animation: rise-in 850ms 80ms var(--ease-out) both;
}

.hero h1 span {
  display: block;
}

.hero-intro {
  max-width: 480px;
  margin: 24px 0 22px;
  font-size: clamp(0.92rem, 1.35vw, 1.14rem);
  line-height: 1.45;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.38);
  animation: rise-in 700ms 260ms var(--ease-out) both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  animation: rise-in 700ms 360ms var(--ease-out) both;
}

.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-scroll-cue i {
  position: relative;
  width: 1px;
  height: 26px;
  overflow: hidden;
  background: rgba(242, 235, 227, 0.36);
}

.hero-scroll-cue i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--orange);
  transform: translateY(-110%);
  animation: scroll-pulse 2.2s var(--ease-in-out) infinite;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  min-height: 46px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 140ms var(--ease-out);
}

.button-primary {
  background: var(--orange);
  color: var(--forest-deep);
}

.button-primary:focus-visible {
  background: var(--orange);
}

.button-ghost {
  border-color: rgba(242, 235, 227, 0.86);
  background: rgba(0, 0, 0, 0.18);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.button-ghost:focus-visible {
  background: var(--white);
  color: var(--forest-deep);
}

.button-dark {
  background: var(--forest-deep);
  color: var(--white);
}

.button-dark:focus-visible {
  background: var(--orange);
  color: var(--forest-deep);
}

.brand-marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding-block: 13px;
  border-block: 1px solid rgba(44, 43, 37, 0.2);
  background: var(--orange);
  color: var(--forest-deep);
}

.brand-marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: marquee-flow 26s linear infinite;
}

.brand-marquee-group {
  display: flex;
  flex: none;
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
  padding-right: clamp(28px, 4vw, 64px);
}

.brand-marquee-group span {
  display: inline-flex;
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
  white-space: nowrap;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.brand-marquee-group span::after {
  content: "✦";
  font-family: Georgia, serif;
  font-size: 0.62em;
}

.story {
  background: var(--paper);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(48px, 10vw, 150px);
}

.story-copy {
  max-width: 680px;
}

.story-copy h2 {
  max-width: 760px;
}

.story-copy > p:not(.eyebrow) {
  max-width: 62ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--orange);
  font-weight: 800;
}

.text-link span {
  transition: transform 160ms var(--ease-out);
}

.portrait-frame {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper-deep);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.story .portrait-frame {
  position: relative;
  box-shadow: var(--shadow);
}

.story .portrait-frame::after {
  content: "";
  position: absolute;
  inset: -35% auto -35% -42%;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  opacity: 0;
  transform: translate3d(-140%, 0, 0) rotate(12deg);
  animation: image-glint 9s var(--ease-in-out) infinite;
  pointer-events: none;
  will-change: transform, opacity;
}

.menu-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--forest);
  color: var(--forest-deep);
}

.menu-section > .wrap,
.coffee-feature > .wrap,
.reviews-section > .wrap {
  position: relative;
  z-index: 1;
}

.menu-section::before,
.menu-section::after,
.coffee-feature::before,
.reviews-section::before {
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform, opacity;
}

.menu-section::before {
  top: -22vw;
  right: -12vw;
  width: min(52vw, 760px);
  aspect-ratio: 1;
  background: rgba(255, 185, 121, 0.3);
  opacity: 0.74;
  animation: ambient-orbit-a 17s var(--ease-in-out) infinite alternate;
}

.menu-section::after {
  left: -13vw;
  bottom: -18vw;
  width: min(42vw, 600px);
  aspect-ratio: 1;
  border: 1px solid rgba(44, 43, 37, 0.28);
  opacity: 0.72;
  animation: ambient-orbit-b 21s linear infinite;
}

.section-heading {
  max-width: 800px;
  margin-bottom: clamp(44px, 7vw, 82px);
}

.section-heading p {
  max-width: 54ch;
  margin: 0;
  color: rgba(0, 0, 0, 0.92);
  font-size: 1.06rem;
}

.gallery-section .section-heading p {
  color: var(--muted);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 30px);
  align-items: start;
}

.menu-card {
  border-top: 1px solid rgba(242, 235, 227, 0.46);
  padding-top: 16px;
}

.menu-card:nth-child(2) {
  margin-top: 64px;
}

.menu-card .portrait-frame {
  margin-bottom: 24px;
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

.menu-card .portrait-frame img {
  transform: scale(1.025) translate3d(0, 0, 0);
  animation: menu-image-drift 14s var(--ease-in-out) infinite alternate;
  will-change: transform;
}

.menu-card:nth-child(2) .portrait-frame img {
  animation-delay: -4.5s;
  animation-duration: 16s;
}

.menu-card:nth-child(3) .portrait-frame img {
  animation-delay: -8s;
  animation-duration: 18s;
}

.menu-card-copy {
  padding-right: 10px;
}

.menu-card h3 {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  letter-spacing: -0.035em;
}

.menu-card p {
  min-height: 3.2em;
  color: rgba(0, 0, 0, 0.92);
}

.menu-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.82rem;
  font-weight: 700;
}

.menu-card li {
  padding-bottom: 3px;
  border-bottom: 2px solid var(--orange);
}

.coffee-feature {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--paper-deep);
}

.coffee-feature::before {
  right: -12vw;
  bottom: -26vw;
  width: min(58vw, 820px);
  aspect-ratio: 1;
  border: clamp(26px, 4vw, 58px) solid rgba(255, 185, 121, 0.18);
  opacity: 0.86;
  animation: ambient-orbit-a 20s var(--ease-in-out) infinite alternate-reverse;
}

.coffee-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(38px, 6vw, 72px);
}

.coffee-feature-image {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.coffee-feature-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coffee-bean-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-template-rows: clamp(220px, 30vw, 360px);
  gap: 10px;
  aspect-ratio: auto;
  overflow: visible;
  border-radius: 0;
  box-shadow: none;
}

.coffee-bean-tile {
  min-width: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  animation: bean-float 8s var(--ease-in-out) infinite alternate;
  will-change: transform;
}

.coffee-bean-tile:nth-child(2) { animation-delay: -1.7s; animation-duration: 9.5s; }
.coffee-bean-tile:nth-child(3) { animation-delay: -3.1s; animation-duration: 7.4s; }
.coffee-bean-tile:nth-child(4) { animation-delay: -4.8s; animation-duration: 10.2s; }
.coffee-bean-tile:nth-child(5) { animation-delay: -6.2s; animation-duration: 8.8s; }

.coffee-bean-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms var(--ease-out), filter 220ms ease;
}

.coffee-feature-copy h2 {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}

.coffee-feature-copy > p {
  max-width: 56ch;
  margin-inline: auto;
  color: var(--muted);
  font-size: 1.08rem;
  text-align: center;
}

.service-notes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  margin-top: 38px;
}

.service-notes span {
  padding-bottom: 5px;
  border-bottom: 2px solid var(--orange);
  font-size: 0.86rem;
  font-weight: 800;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.gallery-item {
  appearance: none;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
  transition: transform 140ms var(--ease-out);
}

.gallery-item .portrait-frame {
  transform-style: preserve-3d;
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
  will-change: transform;
}

.gallery-item[data-tilting="true"] .portrait-frame {
  transition: none;
}

.gallery-item:focus-visible .portrait-frame {
  transform: scale(0.985);
}

.reviews-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #91a443;
  color: var(--forest-deep);
}

.reviews-section::before {
  top: -24vw;
  left: 42%;
  width: min(58vw, 820px);
  aspect-ratio: 1;
  background: rgba(242, 235, 227, 0.2);
  opacity: 0.66;
  animation: ambient-orbit-b 19s var(--ease-in-out) infinite alternate;
}

.reviews-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: clamp(46px, 7vw, 80px);
}

.reviews-heading h2,
.reviews-heading p {
  margin-bottom: 0;
}

.reviews-heading > p {
  color: rgba(44, 43, 37, 0.84);
}

.google-score {
  margin: 0 0 14px;
  color: rgba(44, 43, 37, 0.84);
  font-size: 0.88rem;
}

.google-score strong {
  color: var(--forest-deep);
  font-size: 1.45rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
}

.review {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(44, 43, 37, 0.28);
  border-radius: var(--radius);
  transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.review-featured {
  grid-row: span 2;
  min-height: 500px;
  background: var(--orange);
  color: var(--forest-deep);
  border-color: transparent;
}

.stars {
  color: var(--forest-deep);
  letter-spacing: 0.12em;
  font-size: 0.9rem;
  animation: star-breathe 4.8s ease-in-out infinite;
}

.review:nth-child(2) .stars { animation-delay: -1.6s; }
.review:nth-child(3) .stars { animation-delay: -3.2s; }

.review-featured .stars {
  color: var(--forest-deep);
}

.review blockquote {
  margin: 28px 0;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(1.45rem, 2.6vw, 2.8rem);
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.review:not(.review-featured) blockquote {
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
}

.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.82rem;
}

.review-author {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  object-fit: cover;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.review-footer a {
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
}

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

.visit-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(42px, 8vw, 120px);
  align-items: stretch;
}

.visit-copy {
  padding-block: 20px;
}

.visit-copy h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
}

address {
  color: var(--muted);
  font-style: normal;
}

.hours {
  margin: 42px 0 38px;
}

.hours h3 {
  margin-bottom: 18px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hours dl {
  margin: 0;
}

.hours dl > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.hours dt,
.hours dd {
  margin: 0;
}

.hours dd {
  font-weight: 800;
}

.map-frame {
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper-deep);
  box-shadow: var(--shadow);
  transition: transform 240ms var(--ease-out), box-shadow 240ms var(--ease-out);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 620px;
  border: 0;
}

.site-footer {
  padding: 82px 0 30px;
  background: var(--forest);
  color: var(--forest-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 0.7fr 0.5fr;
  gap: 44px;
}

.footer-brand p {
  max-width: 34ch;
  margin: 26px 0 0;
  color: rgba(0, 0, 0, 0.88);
}

.footer-brand .brand-logo {
  width: 84px;
  height: 84px;
  animation: logo-breathe 8s ease-in-out infinite alternate;
}

.footer-grid strong {
  display: block;
  margin-bottom: 16px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-address address {
  color: rgba(0, 0, 0, 0.88);
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-links a {
  margin-bottom: 9px;
  color: rgba(0, 0, 0, 0.88);
}

.footer-social .social-link {
  color: var(--forest-deep);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 72px;
  padding-top: 24px;
  border-top: 1px solid rgba(242, 235, 227, 0.3);
  color: rgba(0, 0, 0, 0.88);
  font-size: 0.75rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  gap: 12px;
  padding: 36px;
  background: rgba(0, 0, 0, 0.94);
  color: var(--white);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-figure {
  min-width: 0;
  max-width: min(78vw, 940px);
  max-height: 88vh;
  margin: auto;
  text-align: center;
  transform-origin: center;
}

.lightbox-figure img {
  width: auto;
  max-width: 100%;
  max-height: 82vh;
  margin: auto;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-figure figcaption {
  margin-top: 14px;
  color: rgba(242, 235, 227, 0.82);
  font-size: 0.82rem;
}

.lightbox button {
  appearance: none;
  border: 1px solid rgba(242, 235, 227, 0.62);
  border-radius: var(--radius);
  background: rgba(242, 235, 227, 0.12);
  color: var(--white);
  cursor: pointer;
  transition: background 160ms ease, transform 140ms var(--ease-out);
}

.lightbox button:active {
  transform: scale(0.96);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-nav {
  width: 56px;
  height: 64px;
  justify-self: center;
  font-size: 2.4rem;
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms var(--ease-out), transform 650ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes hero-drift {
  0% { transform: scale(1.035) translate3d(-0.6%, 0, 0); }
  50% { transform: scale(1.065) translate3d(0.35%, -0.45%, 0); }
  100% { transform: scale(1.09) translate3d(1.1%, 0.35%, 0); }
}

@keyframes hero-light {
  from { opacity: 0.48; transform: translate3d(-4%, -2%, 0) scale(1.03); }
  to { opacity: 0.72; transform: translate3d(5%, 3%, 0) scale(1.12); }
}

@keyframes seal-spin {
  to { transform: rotate(360deg); }
}

@keyframes seal-float {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(0, -7px, 0) scale(1.018); }
}

@keyframes scroll-pulse {
  0% { opacity: 0; transform: translateY(-110%); }
  24% { opacity: 1; }
  72% { opacity: 1; }
  100% { opacity: 0; transform: translateY(110%); }
}

@keyframes marquee-flow {
  to { transform: translate3d(-50%, 0, 0); }
}

@keyframes image-glint {
  0%, 62% { opacity: 0; transform: translate3d(-140%, 0, 0) rotate(12deg); }
  70% { opacity: 0.5; }
  84%, 100% { opacity: 0; transform: translate3d(560%, 0, 0) rotate(12deg); }
}

@keyframes ambient-orbit-a {
  from { opacity: 0.62; transform: translate3d(-2%, 0, 0) rotate(-4deg) scale(0.96); }
  to { opacity: 0.82; transform: translate3d(6%, 5%, 0) rotate(8deg) scale(1.08); }
}

@keyframes ambient-orbit-b {
  from { transform: translate3d(0, 0, 0) rotate(0deg) scale(0.96); }
  to { transform: translate3d(5%, -4%, 0) rotate(360deg) scale(1.06); }
}

@keyframes menu-image-drift {
  from { transform: scale(1.025) translate3d(-0.5%, 0.4%, 0); }
  to { transform: scale(1.075) translate3d(1.1%, -0.8%, 0); }
}

@keyframes menu-image-drift-mobile {
  from { transform: scale(1.02) translate3d(-0.25%, 0.2%, 0); }
  to { transform: scale(1.045) translate3d(0.55%, -0.4%, 0); }
}

@keyframes bean-float {
  from { transform: translate3d(0, 2px, 0) rotate(-0.2deg); }
  to { transform: translate3d(0, -8px, 0) rotate(0.35deg); }
}

@keyframes bean-float-mobile {
  from { transform: translate3d(0, 1px, 0) rotate(-0.1deg); }
  to { transform: translate3d(0, -4px, 0) rotate(0.18deg); }
}

@keyframes hero-drift-mobile {
  from { transform: scale(1.04) translate3d(-0.25%, 0, 0); }
  to { transform: scale(1.065) translate3d(0.45%, -0.25%, 0); }
}

@keyframes star-breathe {
  0%, 100% { opacity: 0.74; transform: scale(0.985); }
  50% { opacity: 1; transform: scale(1.02); }
}

@keyframes logo-breathe {
  from { transform: rotate(-1deg) scale(1); }
  to { transform: rotate(1deg) scale(1.035); }
}

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

@media (hover: hover) and (pointer: fine) {
  .brand:hover .brand-logo {
    transform: rotate(-3deg) scale(1.045);
  }

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

  .social-link:hover {
    color: var(--forest-deep);
    background: var(--white);
    transform: translateY(-2px);
  }

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

  .button-primary:hover {
    background: var(--orange);
  }

  .button-ghost:hover {
    background: var(--white);
    color: var(--forest-deep);
  }

  .button-dark:hover {
    background: var(--orange);
    color: var(--forest-deep);
  }

  .text-link:hover span {
    transform: translateX(4px);
  }

  .menu-card:hover .portrait-frame {
    transform: translateY(-6px) rotate(-0.35deg);
    box-shadow: 0 24px 54px rgba(44, 43, 37, 0.16);
  }

  .menu-card:nth-child(2):hover .portrait-frame {
    transform: translateY(-6px) rotate(0.35deg);
  }

  .coffee-bean-tile:hover img {
    transform: scale(1.045);
    filter: saturate(1.06);
  }

  .gallery-item:hover .portrait-frame {
    transform: scale(0.985);
    box-shadow: 0 24px 56px rgba(44, 43, 37, 0.16);
  }

  .review:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(44, 43, 37, 0.12);
  }

  .map-frame:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 74px rgba(44, 43, 37, 0.16);
  }

  .hero-scroll-cue:hover i::after {
    animation-duration: 1.2s;
  }

  .lightbox button:hover {
    background: rgba(242, 235, 227, 0.22);
    transform: scale(1.04);
  }
}

.is-page-hidden .hero-image,
.is-page-hidden .hero-shade::after,
.is-page-hidden .hero-seal,
.is-page-hidden .hero-seal svg,
.is-page-hidden .brand-marquee-track,
.is-page-hidden .story .portrait-frame::after,
.is-page-hidden .menu-section::before,
.is-page-hidden .menu-section::after,
.is-page-hidden .coffee-feature::before,
.is-page-hidden .reviews-section::before,
.is-page-hidden .menu-card .portrait-frame img,
.is-page-hidden .coffee-bean-tile,
.is-page-hidden .stars,
.is-page-hidden .footer-brand .brand-logo {
  animation-play-state: paused;
}

@media (max-width: 980px) {
  .story-grid,
  .visit-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .coffee-feature-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .menu-grid {
    gap: 16px;
  }

  .menu-card:nth-child(2) {
    margin-top: 34px;
  }

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

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

  .footer-social {
    grid-column: 3;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 66px;
  }

  .hero-image {
    object-position: 68% 54%;
    animation-name: hero-drift-mobile;
    animation-duration: 18s;
  }

  .hero-seal {
    top: calc(var(--header-height) + 16px);
    right: 14px;
    bottom: auto;
    width: 88px;
    opacity: 0.82;
  }

  .hero-scroll-cue {
    display: none;
  }

  .brand-marquee {
    padding-block: 10px;
  }

  .brand-marquee-track {
    animation-duration: 22s;
  }

  .brand-marquee-group,
  .brand-marquee-group span {
    gap: 24px;
  }

  .brand-marquee-group {
    padding-right: 24px;
  }

  .brand-marquee-group span {
    font-size: 1.12rem;
  }

  .wrap {
    width: min(100% - 28px, 640px);
  }

  .section {
    padding-block: 84px;
  }

  h2 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 32;
    display: grid;
    place-content: center;
    gap: 7px;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(242, 235, 227, 0.64);
    border-radius: var(--radius);
    background: transparent;
    color: var(--white);
  }

  .menu-toggle span {
    width: 20px;
    height: 2px;
    background: currentColor;
    transition: transform 180ms var(--ease-out);
  }

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

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

  .mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 31;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 22px;
    padding: 90px 28px 42px;
    background: var(--forest-deep);
    color: var(--white);
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav > a:not(.mobile-social) {
    font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
    font-size: clamp(2.6rem, 14vw, 4.2rem);
    line-height: 0.9;
    letter-spacing: -0.045em;
  }

  .mobile-social {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 48px;
    margin-top: 18px;
    font-weight: 800;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 17.5vw, 5.2rem);
    line-height: 0.84;
  }

  .hero-kicker {
    font-size: 0.74rem;
  }

  .hero-content {
    padding-bottom: 38px;
  }

  .hero-intro {
    max-width: 300px;
    margin: 20px 0 20px;
    font-size: 0.95rem;
  }

  .hero-actions {
    width: 100%;
  }

  .button {
    min-width: 116px;
    min-height: 44px;
    padding-inline: 16px;
    font-size: 0.78rem;
  }

  .story-grid,
  .coffee-feature-grid,
  .visit-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .story .portrait-frame {
    width: min(88%, 460px);
    margin-inline: auto;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .menu-card:nth-child(2) {
    margin-top: 0;
  }

  .menu-card p {
    min-height: 0;
  }

  .menu-card .portrait-frame img {
    animation-name: menu-image-drift-mobile;
  }

  .coffee-feature-grid {
    display: flex;
    flex-direction: column;
  }

  .coffee-feature-image {
    width: min(88%, 460px);
    align-self: flex-start;
  }

  .coffee-bean-gallery {
    width: min(100%, 460px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: auto;
  }

  .coffee-bean-tile {
    height: auto;
    aspect-ratio: 1;
    animation-name: bean-float-mobile;
  }

  .coffee-feature-copy h2,
  .coffee-feature-copy > p {
    text-align: left;
  }

  .service-notes {
    justify-content: flex-start;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .reviews-heading {
    display: block;
  }

  .reviews-heading > p {
    margin-top: 18px;
  }

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

  .review,
  .review-featured {
    min-height: 320px;
    grid-row: auto;
  }

  .review blockquote,
  .review:not(.review-featured) blockquote {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
  }

  .visit-copy {
    padding-block: 0;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 440px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
    margin-bottom: 24px;
  }

  .footer-social {
    grid-column: auto;
  }

  .lightbox {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    gap: 2px;
    padding: 72px 8px 24px;
  }

  .lightbox-nav {
    width: 42px;
    height: 54px;
  }
}

@media (max-width: 420px) {
  .brand-logo {
    width: 52px;
    height: 52px;
  }

  .brand-copy {
    font-size: 0.8rem;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 19vw, 4.9rem);
  }

  .hero-seal {
    top: calc(var(--header-height) + 12px);
    width: 78px;
  }

  .hero-actions .button {
    flex: 1;
    padding-inline: 14px;
  }

  .review-footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: opacity 180ms ease !important;
  }

  .hero-image {
    animation: none !important;
    transform: scale(1.02);
  }

  .hero-shade::after,
  .menu-section::before,
  .menu-section::after,
  .coffee-feature::before,
  .reviews-section::before {
    animation: none !important;
    transform: none;
  }

  .hero-seal,
  .hero-seal svg,
  .story .portrait-frame::after,
  .menu-card .portrait-frame img,
  .coffee-bean-tile,
  .stars,
  .footer-brand .brand-logo {
    animation: none !important;
    transform: none;
  }

  .hero-scroll-cue i::after {
    animation: none !important;
    opacity: 1;
    transform: translateY(50%);
  }

  .brand-marquee-track {
    width: 100%;
    animation: none !important;
    transform: none;
  }

  .brand-marquee-group {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    padding-inline: 18px;
  }

  .brand-marquee-group[aria-hidden="true"] {
    display: none;
  }

  .button:hover,
  .social-link:hover,
  .menu-card:hover .portrait-frame,
  .gallery-item:hover .portrait-frame,
  .review:hover,
  .map-frame:hover {
    transform: none !important;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header,
  .button-ghost {
    backdrop-filter: none;
  }

  .site-header {
    color: var(--forest-deep);
    background: var(--forest);
  }
}
