:root {
  color-scheme: light;
  --paper: #f1f3ee;
  --paper-soft: #e2e9e2;
  --ink: #14352b;
  --ink-deep: #0d261f;
  --ink-soft: #4a625a;
  --accent: #9c463a;
  --accent-soft: #df846d;
  --blush: #e9bdb1;
  --line: rgba(20, 53, 43, 0.2);
  --white: #fffdf9;
  --radius: 4px;
  --shell: min(1180px, calc(100vw - 40px));
  --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);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.is-locked {
  position: fixed;
  left: 0;
  right: 0;
  overflow: hidden;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

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

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  text-decoration: none;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px max(20px, calc((100vw - 1180px) / 2));
  color: var(--white);
  border-bottom: 1px solid rgba(255, 253, 249, 0.2);
  transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-solid,
.site-header.is-open {
  background: rgba(241, 243, 238, 0.96);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: 0 8px 24px rgba(13, 38, 31, 0.08);
  backdrop-filter: blur(12px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  color: inherit;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-link img {
  width: 46px;
  height: 46px;
  display: block;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255, 253, 249, 0.4);
}

.header-socials {
  display: none;
  align-items: center;
  gap: 2px;
}

.header-socials a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: inherit;
  text-decoration: none;
  transition: transform 140ms var(--ease-out), opacity 180ms ease;
}

.header-socials svg {
  width: 19px;
  height: 19px;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  position: relative;
  color: inherit;
  font-size: 0.84rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  content: "";
  inset: auto 0 -7px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: currentColor;
  transition: transform 180ms ease;
}

.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-nav .nav-cta {
  padding: 9px 16px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  transition: transform 140ms var(--ease-out), background-color 180ms ease, color 180ms ease;
}

.site-nav .nav-cta:active {
  transform: scale(0.97);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: transform 140ms var(--ease-out);
}

.nav-toggle:active {
  transform: scale(0.94);
}

.nav-toggle svg,
.lightbox svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.icon {
  width: 1em;
  height: 1em;
  display: block;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.icon-sm {
  width: 16px;
  height: 16px;
}

.icon-md {
  width: 18px;
  height: 18px;
}

.icon-lg {
  width: 22px;
  height: 22px;
}

.hero {
  position: relative;
  min-height: 100svh;
  min-height: max(100svh, 100dvh);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: #26362f;
  color: var(--white);
}

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

.hero-media {
  z-index: -3;
  display: block;
  object-fit: cover;
  object-position: 62% center;
}

.hero-mask {
  z-index: -2;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.14) 42%, rgba(13, 38, 31, 0.56) 100%);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  top: -24%;
  right: -12%;
  width: min(72vw, 980px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 253, 249, 0.2) 0%, rgba(255, 253, 249, 0.07) 38%, transparent 68%);
  opacity: 0.8;
  pointer-events: none;
  will-change: transform, opacity;
  animation: hero-glow-drift 9s var(--ease-in-out) infinite alternate;
}

.hero-stamp-wrap {
  position: absolute;
  z-index: 2;
  right: max(20px, calc((100vw - 1180px) / 2));
  top: 98px;
  width: clamp(142px, 12vw, 184px);
  aspect-ratio: 1;
  pointer-events: none;
  will-change: transform;
}

.hero-stamp {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--white);
}

.hero-stamp svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  animation: stamp-spin 18s linear infinite;
}

.hero-stamp circle {
  stroke: rgba(255, 253, 249, 0.6);
  stroke-width: 1;
}

.hero-stamp text {
  fill: var(--white);
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 1.6px;
}

.hero-stamp span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: var(--shell);
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(320px, 0.8fr);
  align-items: end;
  gap: clamp(48px, 5vw, 64px);
  margin-inline: auto;
  padding: 150px 0 clamp(60px, 9vh, 96px);
}

.hero-heading {
  min-width: 0;
}

.hero-side {
  align-self: end;
  min-width: 0;
  padding-bottom: 4px;
  text-align: right;
}

.hero-side .hero-copy {
  max-width: 34ch;
  margin: 0 0 0 auto;
}

.hero-side .hero-actions {
  justify-content: flex-end;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero .eyebrow,
.day-feature .eyebrow {
  color: var(--white);
}

.hero h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 900px;
  font-size: clamp(3rem, 6vw, 5.5rem);
  text-wrap: balance;
}

.hero-copy {
  max-width: 620px;
  margin: 26px 0 0;
  font-size: clamp(1.02rem, 1.8vw, 1.25rem);
  line-height: 1.5;
  text-wrap: balance;
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 150ms var(--ease-out), background-color 180ms ease, color 180ms ease;
}

.button .icon {
  margin-right: 9px;
}

.button:active {
  transform: scale(0.97);
}

.button-primary {
  background: var(--accent-soft);
  color: #231713;
}

.button-light {
  border-color: rgba(255, 253, 249, 0.76);
  background: rgba(255, 253, 249, 0.08);
  color: var(--white);
  backdrop-filter: blur(8px);
}

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

.ratio-media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper-soft);
}

.ratio-media > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

h2 {
  font-size: clamp(2.7rem, 5vw, 5.4rem);
  text-wrap: balance;
}

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

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(52px, 8vw, 124px);
}

.story-image {
  width: min(100%, 470px);
  justify-self: end;
}

.story-image img {
  object-position: 46% center;
}

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

.lead {
  max-width: 62ch;
  margin: 32px 0 16px;
  color: var(--ink);
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  line-height: 1.5;
}

.story-copy > p:not(.eyebrow):not(.lead) {
  max-width: 65ch;
  color: var(--ink-soft);
}

.day-rhythm {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
  padding-block: 18px;
  border-block: 1px solid var(--line);
}

.day-rhythm > div {
  min-width: 0;
  padding-inline: 18px;
  border-left: 1px solid var(--line);
}

.day-rhythm > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.day-rhythm > div > span:not(.day-rhythm-icon),
.day-rhythm strong {
  display: block;
}

.day-rhythm > div > span:not(.day-rhythm-icon) {
  color: var(--accent);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.day-rhythm-icon {
  width: 22px;
  height: 22px;
  margin-bottom: 9px;
  color: var(--accent-soft);
}

.day-rhythm strong {
  margin-top: 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.3;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-weight: 800;
  text-decoration: none;
}

.day-feature {
  position: relative;
  min-height: clamp(620px, 80svh, 880px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background: var(--ink-deep);
}

.day-feature > img,
.day-feature > picture,
.day-feature > picture img,
.day-feature-mask {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.day-feature > picture {
  z-index: -2;
}

.day-feature > img,
.day-feature > picture img {
  z-index: 0;
  display: block;
  object-fit: cover;
  object-position: center 48%;
}

.day-feature-mask {
  z-index: -1;
  background: linear-gradient(180deg, rgba(13, 38, 31, 0.06) 20%, rgba(13, 38, 31, 0.76) 100%);
}

.day-feature-light {
  position: absolute;
  z-index: 0;
  top: -30%;
  bottom: -30%;
  left: -22%;
  width: 34%;
  transform: translate3d(-140%, 0, 0) rotate(10deg);
  background: linear-gradient(90deg, transparent, rgba(255, 253, 249, 0.15), transparent);
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
  animation: room-light-sweep 12s var(--ease-in-out) infinite;
}

.day-feature-copy {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(64px, 9vw, 112px);
}

.day-feature-copy h2 {
  max-width: 850px;
  font-size: clamp(2.8rem, 5.6vw, 5.8rem);
}

.day-feature-copy > p:last-child {
  max-width: 60ch;
  margin: 24px 0 0;
  color: rgba(255, 253, 249, 0.84);
  font-size: 1.05rem;
}

.menu-section {
  background: var(--ink);
  color: var(--white);
}

.menu-section .eyebrow {
  color: var(--accent-soft);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.55fr);
  align-items: end;
  gap: clamp(36px, 8vw, 110px);
  margin-bottom: clamp(48px, 7vw, 80px);
}

.section-heading > p:last-child {
  max-width: 58ch;
  margin: 0 0 6px;
  color: rgba(255, 253, 249, 0.72);
  font-size: 1.05rem;
}

.motion-marquee {
  width: 100vw;
  margin: 0 0 clamp(54px, 7vw, 82px) calc(50% - 50vw);
  overflow: hidden;
  border-block: 1px solid rgba(255, 253, 249, 0.2);
}

.motion-marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  color: rgba(255, 253, 249, 0.88);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
  will-change: transform;
  animation: marquee-flow 24s linear infinite;
}

.motion-marquee-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}

.motion-marquee-track span {
  flex: 0 0 auto;
  padding: 20px 12px 22px 0;
}

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

.menu-card {
  min-width: 0;
}

.menu-image {
  width: 100%;
  will-change: transform;
  animation: menu-card-float 7s var(--ease-in-out) infinite alternate;
}

.menu-card:nth-child(2) .menu-image {
  animation-delay: -2.4s;
}

.menu-card:nth-child(3) .menu-image {
  animation-delay: -4.8s;
}

.menu-image img {
  transition: transform 260ms var(--ease-out);
}

.menu-card-copy {
  padding: 24px 2px 0;
}

.menu-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  color: var(--accent-soft);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.menu-kicker .icon {
  width: 17px;
  height: 17px;
  stroke-width: 1.8;
}

.menu-card h3,
.review-card h3,
.welcome-row h3 {
  margin: 0;
}

.menu-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.menu-card-copy > p:last-child {
  max-width: 54ch;
  margin: 14px 0 0;
  color: rgba(255, 253, 249, 0.7);
}

.menu-category-bar {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: clamp(52px, 7vw, 82px);
  border-block: 1px solid rgba(255, 253, 249, 0.22);
}

.menu-category-bar span {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 12px;
  border-left: 1px solid rgba(255, 253, 249, 0.16);
  color: rgba(255, 253, 249, 0.86);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.menu-category-bar .icon {
  color: var(--accent-soft);
  stroke-width: 1.8;
}

.menu-category-bar span:first-child {
  border-left: 0;
}

.menu-note {
  margin: 20px 0 0;
  color: rgba(255, 253, 249, 0.56);
  font-size: 0.82rem;
}

.welcome-section {
  position: relative;
  overflow: hidden;
  background: var(--blush);
}

.welcome-watermark {
  position: absolute;
  z-index: 0;
  top: 28px;
  left: 0;
  width: 100%;
  overflow: hidden;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.5rem, 10vw, 9.5rem);
  letter-spacing: -0.04em;
  line-height: 0.9;
  opacity: 0.075;
  pointer-events: none;
  white-space: nowrap;
}

.welcome-watermark::before {
  content: "COME AS YOU ARE • STAY FOR ANOTHER COFFEE • COME AS YOU ARE • STAY FOR ANOTHER COFFEE • ";
  width: max-content;
  display: block;
  will-change: transform;
  animation: marquee-flow-reverse 30s linear infinite;
}

.welcome-section .eyebrow,
.welcome-number {
  color: #6e3027;
}

.welcome-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: clamp(56px, 10vw, 140px);
}

.welcome-intro {
  position: sticky;
  top: 118px;
}

.welcome-intro h2 {
  max-width: 620px;
}

.welcome-intro > p:last-child {
  max-width: 48ch;
  margin: 28px 0 0;
  color: rgba(20, 53, 43, 0.86);
  font-size: 1.05rem;
}

.welcome-details {
  border-top: 1px solid rgba(20, 53, 43, 0.28);
}

.welcome-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 24px;
  padding-block: clamp(26px, 4vw, 38px);
  border-bottom: 1px solid rgba(20, 53, 43, 0.28);
}

.welcome-number {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 8px;
  padding-top: 4px;
}

.welcome-index {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.welcome-number .icon {
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
}

.welcome-row h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 400;
  line-height: 1.15;
}

.welcome-row p {
  max-width: 58ch;
  margin: 10px 0 0;
  color: rgba(20, 53, 43, 0.86);
}

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

.gallery-heading {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  align-items: end;
  gap: 40px;
  margin-bottom: clamp(44px, 7vw, 76px);
}

.gallery-heading p {
  max-width: 40ch;
  margin: 0 0 5px;
  color: var(--ink-soft);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
  gap: clamp(14px, 2vw, 26px);
}

.gallery-item {
  grid-column: span 4;
  width: 100%;
  padding: 0;
  border: 0;
  cursor: zoom-in;
  transition: transform 150ms var(--ease-out);
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(5) {
  margin-top: clamp(52px, 7vw, 96px);
}

.gallery-item:nth-child(3),
.gallery-item:nth-child(4) {
  margin-top: clamp(18px, 2.5vw, 34px);
}

.gallery-item::before {
  position: absolute;
  z-index: 1;
  content: "";
  inset: 0;
  transform: translate3d(-145%, 0, 0) skewX(-18deg);
  background: linear-gradient(90deg, transparent 22%, rgba(255, 253, 249, 0.24) 50%, transparent 78%);
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
  animation: gallery-light 11s var(--ease-in-out) infinite;
}

.gallery-item:nth-child(2n)::before {
  animation-delay: -5.5s;
}

.gallery-item:nth-child(3n)::before {
  animation-duration: 14s;
  animation-delay: -8s;
}

.gallery-item::after {
  position: absolute;
  z-index: 2;
  content: "+";
  right: 16px;
  bottom: 16px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 253, 249, 0.68);
  border-radius: 50%;
  background: rgba(20, 53, 43, 0.7);
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 300;
  transition: transform 180ms ease, background-color 180ms ease;
}

.gallery-item:focus-visible::after {
  transform: rotate(90deg);
  background: var(--ink);
}

.gallery-item img {
  transition: transform 260ms var(--ease-out);
}

.gallery-item:active img {
  transform: scale(0.98);
  transition-duration: 120ms;
}

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

.reviews-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 40px;
  margin-bottom: 52px;
}

.reviews-heading h2 {
  max-width: 830px;
}

.rating-lockup {
  min-width: 174px;
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.rating-lockup strong,
.rating-lockup span {
  display: block;
}

.rating-lockup strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.9;
  transform-origin: left bottom;
  will-change: transform;
  animation: rating-breathe 4.8s var(--ease-in-out) infinite alternate;
}

.rating-lockup .stars {
  margin-top: 10px;
  will-change: opacity;
  animation: star-shimmer 2.4s var(--ease-in-out) infinite alternate;
}

.rating-lockup > span:last-child {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.reviews-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.review-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: clamp(30px, 4vw, 46px);
  border-bottom: 1px solid var(--line);
}

.review-card:nth-child(3) {
  border-bottom: 0;
}

.review-featured {
  position: relative;
  grid-row: 1 / span 2;
  overflow: hidden;
  padding: clamp(36px, 5vw, 64px);
  border-right: 1px solid rgba(255, 253, 249, 0.16);
  border-bottom: 0;
  background: var(--ink);
  color: var(--white);
}

.review-featured::after {
  position: absolute;
  z-index: 0;
  content: "";
  right: -120px;
  bottom: -120px;
  width: 330px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(from 30deg, transparent 0 24%, rgba(223, 132, 109, 0.44) 25% 27%, transparent 28% 49%, rgba(255, 253, 249, 0.22) 50% 52%, transparent 53% 74%, rgba(223, 132, 109, 0.44) 75% 77%, transparent 78%);
  opacity: 0.48;
  pointer-events: none;
  will-change: transform;
  animation: stamp-spin 18s linear infinite reverse;
}

.review-featured > * {
  position: relative;
  z-index: 1;
}

.review-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-top img {
  width: 52px;
  height: 52px;
  display: block;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 50%;
}

.review-card h3 {
  font-size: 0.95rem;
  line-height: 1.3;
}

.stars {
  margin: 3px 0 0;
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.review-featured .stars {
  color: var(--accent-soft);
}

.review-card blockquote {
  max-width: 62ch;
  margin: 28px 0 24px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 1.7vw, 1.38rem);
  line-height: 1.42;
}

.review-featured blockquote {
  margin-block: clamp(42px, 7vw, 82px) 34px;
  color: var(--white);
  font-size: clamp(1.75rem, 3.4vw, 3.25rem);
  line-height: 1.14;
}

.review-card > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin-top: auto;
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(430px, 0.94fr);
  min-height: 820px;
  background: var(--paper);
}

.visit-map,
.visit-map iframe {
  min-height: 820px;
}

.visit-map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.visit-copy {
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(68px, 8vw, 118px) max(28px, calc((100vw - 1180px) / 2));
  padding-left: clamp(44px, 6vw, 92px);
}

.visit-copy::before {
  position: absolute;
  z-index: -1;
  content: "";
  top: 70px;
  right: -165px;
  width: 340px;
  aspect-ratio: 1;
  border: 1px dashed rgba(156, 70, 58, 0.38);
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
  animation: stamp-spin 28s linear infinite;
}

.visit-copy::after {
  position: absolute;
  z-index: -1;
  content: "";
  top: 148px;
  right: 54px;
  width: 76px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(233, 189, 177, 0.64);
  pointer-events: none;
  will-change: transform;
  animation: visit-orbit 8s var(--ease-in-out) infinite alternate;
}

.visit-copy > div {
  max-width: 540px;
}

.visit-label {
  margin: 0 0 20px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

.visit-copy address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 48ch;
  margin-top: 30px;
  color: var(--ink-soft);
  font-style: normal;
}

.visit-copy address .icon {
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--accent);
}

.hours {
  margin: 30px 0 0;
  padding-block: 15px;
  border-block: 1px solid var(--line);
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.hours dt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}

.hours dt .icon {
  color: var(--accent);
}

.hours dd {
  margin: 0;
}

.visit-facts {
  margin-top: 6px;
}

.visit-facts > div {
  display: grid;
  grid-template-columns: minmax(104px, 0.42fr) minmax(0, 1fr);
  gap: 20px;
  padding-block: 13px;
  border-bottom: 1px solid var(--line);
}

.visit-facts > div > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visit-facts > div > span .icon {
  stroke-width: 1.8;
}

.visit-facts strong {
  font-size: 0.86rem;
  line-height: 1.45;
}

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

.button-outline {
  border-color: var(--ink);
  color: var(--ink);
}

.access-note {
  max-width: 65ch;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.5;
}

.site-footer {
  padding: 88px 0 24px;
  background: var(--ink-deep);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr 0.75fr;
  gap: 48px;
  padding-bottom: 66px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-brand img {
  width: 92px;
  height: 92px;
  display: block;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 50%;
  will-change: transform;
  animation: footer-mark-float 6s var(--ease-in-out) infinite alternate;
}

.footer-brand p {
  margin: 0;
  color: rgba(255, 253, 249, 0.64);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-transform: uppercase;
}

.footer-brand .footer-heading {
  margin-bottom: 10px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  text-transform: none;
}

.footer-main nav,
.footer-contact {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 10px;
}

.footer-main nav a,
.footer-contact > a {
  color: rgba(255, 253, 249, 0.8);
  font-size: 0.88rem;
  text-decoration: none;
}

.footer-contact > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-contact > a .icon {
  color: var(--accent-soft);
  stroke-width: 1.8;
}

.social-links {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.social-links a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 253, 249, 0.38);
  border-radius: 50%;
  color: var(--white);
  transition: transform 140ms var(--ease-out), background-color 180ms ease, color 180ms ease;
}

.social-links a:active {
  transform: scale(0.94);
}

.social-links svg {
  width: 21px;
  height: 21px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 253, 249, 0.16);
  color: rgba(255, 253, 249, 0.55);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

.lightbox {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) 60px;
  align-items: center;
  padding: 74px 24px 26px;
  visibility: hidden;
  opacity: 0;
  background: rgba(0, 0, 0, 0.9);
  color: var(--white);
  transition: opacity 180ms var(--ease-out), visibility 0s linear 180ms;
}

.lightbox.is-active {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.lightbox.no-motion,
.lightbox.no-motion .lightbox-stage,
.site-header.no-motion .site-nav {
  transition: none;
}

.lightbox-close,
.lightbox-nav {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 253, 249, 0.42);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
  color: var(--white);
  cursor: pointer;
  transition: transform 140ms var(--ease-out), background-color 180ms ease;
}

.lightbox-close:active,
.lightbox-nav:active {
  transform: scale(0.94);
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
}

.lightbox-prev {
  justify-self: start;
}

.lightbox-next {
  justify-self: end;
}

.lightbox-stage {
  min-width: 0;
  max-width: min(1100px, 100%);
  height: calc(100dvh - 110px);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  justify-self: center;
  margin: 0;
  opacity: 0;
  transform: scale(0.97);
  transition: transform 240ms var(--ease-out), opacity 180ms var(--ease-out);
}

.lightbox.is-active .lightbox-stage {
  opacity: 1;
  transform: scale(1);
}

.lightbox-stage img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.lightbox-stage figcaption {
  min-height: 30px;
  padding-top: 8px;
  color: rgba(255, 253, 249, 0.72);
  font-size: 0.78rem;
  text-align: center;
}

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

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: transform 720ms var(--ease-out), opacity 520ms var(--ease-out);
}

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

.motion-ready .menu-card:nth-child(2),
.motion-ready .welcome-row:nth-child(2),
.motion-ready .gallery-item:nth-child(2),
.motion-ready .review-card:nth-child(2) {
  transition-delay: 60ms;
}

.motion-ready .menu-card:nth-child(3),
.motion-ready .welcome-row:nth-child(3),
.motion-ready .gallery-item:nth-child(3),
.motion-ready .review-card:nth-child(3) {
  transition-delay: 120ms;
}

.motion-ready .welcome-row:nth-child(4),
.motion-ready .gallery-item:nth-child(4) {
  transition-delay: 180ms;
}

.motion-ready .gallery-item:nth-child(5) {
  transition-delay: 240ms;
}

.motion-ready .gallery-item:nth-child(6) {
  transition-delay: 300ms;
}

.motion-ready .hero-content > * {
  animation: hero-enter 760ms var(--ease-out) both;
}

.motion-ready .hero-content h1 {
  animation-delay: 70ms;
}

.motion-ready .hero-side {
  animation-delay: 140ms;
}

.motion-ready .hero-copy {
  animation-delay: 140ms;
}

.motion-ready .hero-actions {
  animation-delay: 210ms;
}

@keyframes hero-enter {
  from { opacity: 0.1; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-glow-drift {
  from { opacity: 0.48; transform: translate3d(-4%, 8%, 0) scale(0.9); }
  to { opacity: 0.88; transform: translate3d(7%, -4%, 0) scale(1.08); }
}

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

@keyframes room-light-sweep {
  0%, 18% { opacity: 0; transform: translate3d(-140%, 0, 0) rotate(10deg); }
  28%, 48% { opacity: 0.9; }
  66%, 100% { opacity: 0; transform: translate3d(430%, 0, 0) rotate(10deg); }
}

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

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

@keyframes menu-card-float {
  from { transform: translate3d(0, 5px, 0); }
  to { transform: translate3d(0, -7px, 0); }
}

@keyframes gallery-light {
  0%, 26% { opacity: 0; transform: translate3d(-145%, 0, 0) skewX(-18deg); }
  34%, 48% { opacity: 0.72; }
  60%, 100% { opacity: 0; transform: translate3d(145%, 0, 0) skewX(-18deg); }
}

@keyframes rating-breathe {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(0, -3px, 0) scale(1.07); }
}

@keyframes star-shimmer {
  from { opacity: 0.58; }
  to { opacity: 1; }
}

@keyframes visit-orbit {
  from { transform: translate3d(-34px, -12px, 0) scale(0.92); }
  to { transform: translate3d(24px, 54px, 0) scale(1.08); }
}

@keyframes footer-mark-float {
  from { transform: translate3d(0, 4px, 0) rotate(-1deg); }
  to { transform: translate3d(0, -7px, 0) rotate(2deg); }
}

@media (hover: hover) and (pointer: fine) {
  .site-nav a:not(.nav-cta):hover::after {
    transform: scaleX(1);
  }

  .site-nav .nav-cta:hover {
    background: var(--white);
    color: var(--ink);
  }

  .site-header.is-solid .site-nav .nav-cta:hover,
  .site-header.is-open .site-nav .nav-cta:hover {
    background: var(--ink);
    color: var(--white);
  }

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

  .button-primary:hover {
    background: #eba089;
  }

  .button-light:hover {
    background: var(--white);
    color: var(--ink);
  }

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

  .gallery-item:hover::after {
    transform: rotate(90deg) scale(1.08);
    background: var(--ink);
  }

  .gallery-item:hover img {
    transform: scale(1.04);
  }

  .button-dark:hover {
    background: #285044;
  }

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

  .footer-main nav a:hover,
  .footer-contact > a:hover {
    color: var(--white);
  }

  .social-links a:hover {
    transform: translateY(-3px);
    background: var(--white);
    color: var(--ink);
  }

  .lightbox-close:hover,
  .lightbox-nav:hover {
    transform: scale(1.06);
    background: rgba(255, 253, 249, 0.14);
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 32px, 720px);
  }

  .site-header {
    padding-inline: 16px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    inset: 72px 0 auto;
    max-height: calc(100dvh - 72px);
    display: grid;
    gap: 0;
    overflow: auto;
    visibility: hidden;
    opacity: 0;
    padding: 16px;
    transform: translateY(-12px);
    background: var(--paper);
    color: var(--ink);
    box-shadow: 0 16px 34px rgba(20, 53, 43, 0.12);
    transition: opacity 180ms var(--ease-out), transform 220ms var(--ease-drawer), visibility 0s linear 220ms;
  }

  .site-header.is-open .site-nav {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .hero-stamp-wrap {
    top: 104px;
    right: 22px;
    bottom: auto;
  }

  .hero-content {
    display: block;
  }

  .hero-side {
    padding-bottom: 0;
    text-align: left;
  }

  .hero-side .hero-copy {
    max-width: 340px;
    margin: 20px 0 0;
  }

  .hero-side .hero-actions {
    justify-content: flex-start;
  }

  .hero-glow {
    top: -10%;
    right: -38%;
    width: min(120vw, 900px);
  }

  .site-nav a {
    min-height: 50px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .nav-cta {
    min-height: 48px;
    justify-content: center;
    margin-top: 12px;
    padding: 10px 16px;
    border: 0;
    background: var(--ink);
    color: var(--white);
  }

  .story-layout,
  .welcome-layout,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .story-layout {
    gap: 54px;
  }

  .story-image {
    width: min(82vw, 500px);
    justify-self: start;
  }

  .day-feature {
    min-height: 680px;
  }

  .section-heading {
    gap: 26px;
  }

  .section-heading > p:last-child {
    margin: 0;
  }

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

  .menu-card {
    max-width: 620px;
  }

  .menu-card:nth-child(even) {
    justify-self: end;
  }

  .menu-card + .menu-card {
    margin-top: 56px;
  }

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

  .menu-category-bar span:nth-child(4) {
    border-left: 0;
  }

  .menu-category-bar span:nth-child(n + 4) {
    border-top: 1px solid rgba(255, 253, 249, 0.16);
  }

  .welcome-layout {
    gap: 48px;
  }

  .welcome-intro {
    position: static;
  }

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

  .gallery-item {
    grid-column: auto;
  }

  .gallery-item:nth-child(2),
  .gallery-item:nth-child(5) {
    margin-top: 64px;
  }

  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4) {
    margin-top: 0;
  }

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

  .review-card,
  .review-card:nth-child(3) {
    border-bottom: 1px solid var(--line);
  }

  .review-card:last-child {
    border-bottom: 0;
  }

  .review-featured {
    grid-row: auto;
    border-right: 0;
  }

  .visit-section {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .visit-map,
  .visit-map iframe {
    min-height: 540px;
  }

  .visit-copy {
    padding: 80px 16px;
  }

  .visit-copy > div {
    width: var(--shell);
    max-width: none;
    margin-inline: auto;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .site-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 8px;
    padding-inline: clamp(16px, 5.5vw, 30px);
  }

  .brand-link span {
    display: block;
    max-width: 112px;
    overflow: hidden;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-socials {
    display: flex;
    justify-self: end;
    margin-right: 2px;
  }

  .header-socials a:active {
    transform: scale(0.9);
  }

  .hero-content {
    width: calc(100% - clamp(40px, 11vw, 60px));
    padding-top: 126px;
    padding-bottom: 48px;
  }

  .hero-media {
    object-position: 78% center;
  }

  .hero-mask {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.1) 42%, rgba(13, 38, 31, 0.68) 100%);
  }

  .hero-stamp-wrap {
    top: 96px;
    right: 16px;
    width: 116px;
  }

  .hero-stamp text {
    font-size: 9px;
  }

  .hero-stamp span {
    font-size: 1.35rem;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 12vw, 3.85rem);
    line-height: 0.99;
  }

  .hero h1 br {
    display: none;
  }

  .hero-copy {
    max-width: 340px;
    margin-top: 20px;
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 28px;
  }

  .button {
    min-height: 56px;
    padding-inline: 12px;
    letter-spacing: 0.05em;
  }

  .hero-actions .button-primary {
    background: var(--white);
    color: var(--ink);
  }

  .hero-actions .button-light {
    background: rgba(13, 38, 31, 0.14);
    backdrop-filter: none;
  }

  .section {
    padding-block: 84px;
  }

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

  .story-image {
    width: 100%;
  }

  .day-rhythm {
    grid-template-columns: 1fr;
  }

  .day-rhythm > div,
  .day-rhythm > div:first-child {
    padding: 12px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .day-rhythm > div:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .day-rhythm > div:last-child {
    padding-bottom: 0;
  }

  .day-feature {
    min-height: 620px;
  }

  .day-feature > img {
    object-position: 58% center;
  }

  .day-feature-copy {
    padding-bottom: 54px;
  }

  .day-feature-copy h2 {
    font-size: clamp(2.6rem, 12.5vw, 3.65rem);
  }

  .motion-marquee-track {
    font-size: 1.25rem;
  }

  .motion-marquee-track span {
    padding-block: 17px 19px;
  }

  .welcome-watermark {
    top: 20px;
    font-size: 4.5rem;
  }

  .menu-card {
    width: 100%;
  }

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

  .menu-category-bar span:nth-child(odd) {
    border-left: 0;
  }

  .menu-category-bar span:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 253, 249, 0.16);
  }

  .menu-category-bar span:nth-child(4) {
    border-left: 1px solid rgba(255, 253, 249, 0.16);
  }

  .welcome-row {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 14px;
  }

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

  .gallery-heading {
    gap: 18px;
    margin-bottom: 38px;
  }

  .gallery-heading p {
    max-width: none;
  }

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

  .gallery-item,
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5) {
    margin-top: 0;
  }

  .gallery-item + .gallery-item {
    margin-top: 0;
  }

  .reviews-heading {
    align-items: start;
    gap: 30px;
  }

  .rating-lockup {
    padding: 22px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .review-featured blockquote {
    font-size: clamp(1.7rem, 8vw, 2.25rem);
  }

  .visit-map,
  .visit-map iframe {
    min-height: 430px;
  }

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

  .hours div,
  .footer-bottom {
    display: grid;
  }

  .hours dd {
    margin-top: 4px;
  }

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

  .visit-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .footer-brand {
    grid-column: auto;
    align-items: flex-start;
  }

  .lightbox {
    grid-template-columns: 54px minmax(0, 1fr) 54px;
    padding-inline: 8px;
  }

  .lightbox-close,
  .lightbox-nav {
    width: 44px;
    height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .motion-ready .reveal,
  .motion-ready .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .motion-ready .hero-content > *,
  .hero-glow,
  .hero-stamp svg,
  .day-feature-light,
  .motion-marquee-track,
  .menu-image,
  .welcome-watermark::before,
  .gallery-item::before,
  .rating-lockup strong,
  .rating-lockup .stars,
  .review-featured::after,
  .visit-copy::before,
  .visit-copy::after,
  .footer-brand img {
    animation: none;
    transform: none;
  }

  .hero-glow,
  .day-feature-light,
  .gallery-item::before {
    opacity: 0;
  }

  .button:active,
  .nav-toggle:active,
  .site-nav .nav-cta:active,
  .gallery-item:active img,
  .social-links a:active,
  .lightbox-close:active,
  .lightbox-nav:active {
    transform: none;
  }

  .site-nav {
    transform: none;
    transition: opacity 140ms ease, visibility 0s linear 140ms;
  }

  .lightbox {
    transition: opacity 160ms ease, visibility 0s linear 160ms;
  }

  .lightbox-stage,
  .lightbox.is-active .lightbox-stage {
    transform: none;
    transition: opacity 160ms ease;
  }
}
