:root {
  --ink: #2a1d20;
  --paper: #fff0f6;
  --white: #fff9fc;
  --pink: #e94392;
  --pink-dark: #a91f62;
  --pink-soft: #f8cfe2;
  --line: rgba(71, 42, 48, 0.18);
  --shadow: 0 24px 80px rgba(72, 34, 53, 0.18);
  --radius: 12px;
  --shell: min(1180px, calc(100% - 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);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

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

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

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

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

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

:focus-visible {
  outline: 3px solid #f2b544;
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  top: -120px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink);
  border-radius: 6px;
}

.skip-link:focus-visible {
  top: 12px;
}

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

.section {
  padding: clamp(88px, 10vw, 148px) 0;
}

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

h1,
h2,
h3,
.wordmark,
.footer-brand {
  font-family: "Arial Narrow", "Aptos Display", Arial, sans-serif;
  font-stretch: condensed;
}

h2 {
  max-width: 14ch;
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 7vw, 5.7rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.55rem, 2.8vw, 2.25rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.site-header {
  position: fixed;
  inset: 18px 0 auto;
  z-index: 30;
  width: min(1180px, calc(100% - 32px));
  min-height: 68px;
  margin-inline: auto;
  padding: 10px 12px 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  background: rgba(233, 67, 146, 0.94);
  color: var(--white);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
  animation: header-enter 720ms var(--ease-out) 120ms backwards;
  transition: transform 260ms var(--ease-out), background-color 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
  will-change: transform;
}

.site-header.is-compact {
  transform: translateY(-6px) scale(0.985);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(233, 67, 146, 0.98);
  box-shadow: 0 8px 24px rgba(139, 26, 77, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.wordmark,
.footer-brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 0.9;
}

.wordmark span,
.footer-brand span {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.wordmark small,
.footer-brand small {
  margin-top: 5px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.21em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav > a:not(.social-link) {
  position: relative;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
}

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

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

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

.social-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.social-link:focus-visible {
  transform: translateY(-3px) rotate(-7deg) scale(1.08);
  background: rgba(255, 255, 255, 0.16);
}

.social-link:active,
.button:active,
.gallery-item:active {
  transform: translateY(1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  cursor: pointer;
  transition: transform 140ms var(--ease-out), background-color 180ms ease;
}

.menu-toggle:active {
  transform: scale(0.92);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

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

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

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 20;
  padding: 124px 24px 32px;
  background: rgba(233, 67, 146, 0.98);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-2.5%) scale(0.985);
  transform-origin: calc(100% - 34px) 42px;
  transition: opacity 190ms ease, transform 280ms var(--ease-drawer);
}

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

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu nav > a {
  padding: 12px 0;
  text-decoration: none;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: clamp(2.1rem, 10vw, 3.8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  opacity: 0;
  transform: translateY(22px) rotate(1.5deg);
  transition: opacity 180ms ease, transform 320ms var(--ease-out);
}

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

.mobile-menu.is-open nav > a:nth-child(1) { transition-delay: 40ms; }
.mobile-menu.is-open nav > a:nth-child(2) { transition-delay: 80ms; }
.mobile-menu.is-open nav > a:nth-child(3) { transition-delay: 120ms; }
.mobile-menu.is-open nav > a:nth-child(4) { transition-delay: 160ms; }
.mobile-menu.is-open nav > a:nth-child(5) { transition-delay: 200ms; }
.mobile-menu.is-open nav > a:nth-child(6) { transition-delay: 240ms; }
}

.mobile-social {
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.mobile-menu nav > a.mobile-social {
  margin-top: 12px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
}

.mobile-social svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.30), rgba(0, 0, 0, 0.10) 55%, rgba(0, 0, 0, 0.10));
  pointer-events: none;
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.hero-media {
  will-change: transform;
}

.hero-media img {
  object-fit: cover;
  object-position: center 46%;
  animation: hero-settle 1500ms var(--ease-out) both;
}

.hero-content {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  padding: clamp(130px, 18vh, 190px) 0 clamp(56px, 8vh, 88px);
}

.eyebrow {
  margin-bottom: 18px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: hero-copy-enter 720ms var(--ease-out) 260ms both;
}

.hero h1 {
  max-width: none;
  margin-bottom: 22px;
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.075em;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
  animation: hero-title-enter 920ms var(--ease-out) both;
}

.hero h1 span:first-child {
  animation-delay: 300ms;
}

.hero h1 span:last-child {
  animation-delay: 390ms;
}

.hero-copy {
  max-width: 520px;
  margin-bottom: 28px;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.45;
  animation: hero-copy-enter 760ms var(--ease-out) 500ms both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: hero-copy-enter 760ms var(--ease-out) 590ms both;
}

.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 48px;
  padding: 13px 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: transform 160ms var(--ease-out), background-color 180ms ease, color 180ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-105%) skewX(-14deg);
  transition: transform 260ms var(--ease-out);
}

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

.button-primary {
  background: var(--pink);
  color: var(--white);
}

.button-primary:focus-visible {
  background: #d83282;
  transform: translateY(-3px) scale(1.025);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(42, 29, 32, 0.24);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-3px) scale(1.025);
}

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

.button-dark:focus-visible {
  background: var(--pink-dark);
  transform: translateY(-3px) scale(1.025);
}

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

.service-ribbon {
  width: 100%;
  margin: 0 auto;
  padding: 32px max(20px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--pink-soft);
  border-bottom: 1px solid var(--line);
}

.service-ribbon div {
  padding: 0 28px;
  border-left: 1px solid var(--line);
}

.service-ribbon div:first-child {
  padding-left: 0;
  border-left: 0;
}

.service-ribbon strong,
.service-ribbon span {
  display: block;
}

.service-ribbon strong {
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-ribbon span {
  color: #6b595b;
  font-size: 0.9rem;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(44px, 8vw, 120px);
  align-items: center;
}

.media-portrait {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

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

.about-image {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-image img {
  object-position: center 50%;
}

.about-copy p {
  max-width: 62ch;
  margin-bottom: 26px;
  color: #624f52;
  font-size: clamp(1.02rem, 1.6vw, 1.16rem);
}

.text-link {
  display: inline-block;
  padding-bottom: 3px;
  border-bottom: 2px solid currentColor;
  color: var(--pink-dark);
  text-decoration: none;
  font-weight: 800;
}

.text-link:hover {
  color: var(--ink);
}

.menu-section {
  background: var(--pink-soft);
}

.section-heading {
  margin-bottom: clamp(38px, 6vw, 70px);
}

.section-heading p {
  max-width: 50ch;
  margin-bottom: 0;
  color: #57484f;
  font-size: 1.08rem;
}

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

.menu-feature {
  padding-top: 16px;
  border-top: 2px solid var(--ink);
}

.menu-feature .media-portrait {
  border-radius: var(--radius);
  transform-origin: center 70%;
  transition: transform 420ms var(--ease-out), box-shadow 420ms ease;
  will-change: transform;
}

.menu-feature .media-portrait img {
  transition: transform 600ms var(--ease-out), filter 320ms ease;
  will-change: transform;
}

.menu-feature-copy {
  transition: transform 320ms var(--ease-out);
}

.menu-feature:nth-child(1) img {
  object-position: center 48%;
}

.menu-feature:nth-child(2) img {
  object-position: center 50%;
}

.menu-feature:nth-child(3) img {
  object-position: center 48%;
}

.menu-feature-copy {
  padding: 22px 4px 0;
}

.menu-feature-copy p {
  margin-bottom: 0;
  color: #57484f;
}

.menu-callout {
  margin-top: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(71, 42, 48, 0.26);
}

.menu-callout p {
  margin-bottom: 0;
  font-size: 1.2rem;
  font-weight: 800;
}

.shopfront-section {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(380px, 0.65fr);
  background: var(--pink);
  color: var(--white);
}

.shopfront-media {
  min-height: 680px;
}

.shopfront-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.shopfront-copy {
  padding: clamp(54px, 7vw, 100px) clamp(32px, 6vw, 84px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.service-list {
  display: grid;
  gap: 0;
}

.service-list span {
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  font-weight: 700;
}

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

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

.gallery-item {
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: zoom-in;
}

.gallery-item .media-portrait {
  display: block;
  border-radius: var(--radius);
  background: #f1dfe5;
  transform-style: preserve-3d;
  transition: transform 260ms var(--ease-out), box-shadow 260ms ease;
  will-change: transform;
}

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

.gallery-item:nth-child(1) img { object-position: 48% 46%; }
.gallery-item:nth-child(2) img { object-position: center; }
.gallery-item:nth-child(3) img { object-position: 52% 50%; }
.gallery-item:nth-child(4) img { object-position: 50% 50%; }
.gallery-item:nth-child(5) img { object-position: 44% 56%; }
.gallery-item:nth-child(6) img { object-position: 53% 50%; }

.gallery-caption {
  display: block;
  padding-top: 10px;
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform 240ms var(--ease-out), color 180ms ease;
}

.reviews-section {
  background: #f9e1eb;
}

.reviews-heading {
  margin-bottom: 48px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.reviews-heading h2 {
  margin-bottom: 10px;
}

.reviews-heading p {
  margin-bottom: 0;
  color: #6b595b;
}

.reviews-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 22px;
}

.review {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.78);
  transition: transform 260ms var(--ease-out), background-color 220ms ease;
}

.review-featured {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(30px, 5vw, 54px);
  background: var(--white);
}

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

.review-meta strong,
.review-meta span {
  display: block;
}

.review-meta strong {
  line-height: 1.2;
}

.review-meta div > span {
  margin-top: 4px;
  color: var(--pink-dark);
  letter-spacing: 0.08em;
}

.review-avatar {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border-radius: 50%;
}

.review-avatar:empty {
  display: none;
}

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

.review blockquote {
  margin: 26px 0;
  font-size: 1.06rem;
  line-height: 1.55;
}

.review-featured blockquote {
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: clamp(1.65rem, 3.4vw, 2.85rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.review > a {
  font-weight: 800;
  text-underline-offset: 4px;
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.22fr);
  min-height: 720px;
  background: #fff7fa;
}

.visit-details {
  padding: clamp(70px, 8vw, 120px) clamp(24px, 7vw, 96px);
}

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

.visit-details address {
  margin-bottom: 18px;
  font-style: normal;
  font-size: 1.08rem;
}

.phone-link {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--pink-dark);
  font-size: 1.35rem;
  font-weight: 800;
}

.hours {
  max-width: 440px;
  margin-bottom: 34px;
}

.hours div {
  padding: 9px 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.hours strong {
  text-align: right;
}

.map-wrap {
  min-height: 580px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 580px;
  display: block;
  border: 0;
}

.site-footer {
  padding: 42px max(20px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  gap: 36px;
  align-items: center;
  background: var(--pink);
  color: var(--white);
}

.footer-brand span {
  font-size: 1.7rem;
}

.footer-contact p {
  max-width: 38ch;
  margin-bottom: 4px;
}

.footer-contact a,
.site-footer nav > a:not(.social-link) {
  text-underline-offset: 4px;
}

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

.footer-social {
  color: var(--white);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  padding: 72px 90px 38px;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 70px;
  align-items: center;
  gap: 18px;
  background: rgba(39, 25, 29, 0.95);
  color: var(--white);
  opacity: 0;
  transition: opacity 180ms ease;
}

.lightbox[hidden] {
  display: none;
}

.lightbox.is-open {
  opacity: 1;
}

.lightbox figure {
  min-width: 0;
  max-width: min(100%, 1200px);
  max-height: calc(100svh - 110px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(24px) scale(0.94);
  transition: opacity 200ms ease, transform 300ms var(--ease-out), filter 240ms ease;
}

.lightbox.is-open figure {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.lightbox figure img {
  max-width: 100%;
  max-height: calc(100svh - 150px);
  width: auto;
  height: auto;
  object-fit: contain;
}

.lightbox figcaption {
  margin-top: 10px;
  font-size: 0.9rem;
}

.lightbox button {
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  transition: transform 160ms var(--ease-out), background-color 160ms ease;
}

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

.lightbox-control {
  width: 70px;
  height: 70px;
  font-size: 0.78rem;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 22px;
  padding: 0 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(44px) rotate(0.7deg) scale(0.975);
  transition: opacity 680ms ease, transform 880ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes header-enter {
  from {
    opacity: 0;
    transform: translateY(-130%) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes hero-settle {
  from { transform: scale(1.1); }
  to { transform: scale(1); }
}

@keyframes hero-title-enter {
  from {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    transform: translateY(65%) rotate(2deg);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateY(0) rotate(0);
  }
}

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

@media (hover: hover) and (pointer: fine) {
  .social-link:hover {
    transform: translateY(-3px) rotate(-7deg) scale(1.08);
    background: rgba(255, 255, 255, 0.16);
  }

  .button:hover::before {
    transform: translateX(0) skewX(0);
  }

  .button-primary:hover {
    background: #d83282;
    transform: translateY(-3px) scale(1.025);
  }

  .button-ghost:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-3px) scale(1.025);
  }

  .button-dark:hover {
    background: var(--pink-dark);
    transform: translateY(-3px) scale(1.025);
  }

  .button:hover:active {
    transform: scale(0.965);
  }

  .social-link:hover:active,
  .lightbox button:hover:active {
    transform: scale(0.94);
  }

  .menu-feature:hover .media-portrait {
    transform: translateY(-10px) rotate(-1.2deg) scale(1.015);
    box-shadow: 0 14px 28px rgba(72, 34, 53, 0.18);
  }

  .menu-feature:nth-child(even):hover .media-portrait {
    transform: translateY(-10px) rotate(1.2deg) scale(1.015);
  }

  .menu-feature:hover .media-portrait img {
    transform: scale(1.075);
    filter: saturate(1.08);
  }

  .menu-feature:hover .menu-feature-copy {
    transform: translateX(8px);
  }

  .gallery-item:hover img {
    transform: scale(1.075);
    filter: saturate(1.08);
  }

  .gallery-item:hover .gallery-caption {
    color: var(--pink-dark);
    transform: translateX(9px);
  }

  .review:hover {
    transform: translateY(-8px) scale(1.012);
    background: var(--white);
  }

  .lightbox button:hover {
    transform: scale(1.06);
    background: rgba(255, 255, 255, 0.18);
  }
}

@media (max-width: 900px) {
  .shopfront-section,
  .visit-section {
    grid-template-columns: 1fr;
  }

  .shopfront-media {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 520px;
  }

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

  .site-footer nav {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  :root {
    --shell: min(100% - 28px, 620px);
    --radius: 10px;
  }

  .section {
    padding: 80px 0;
  }

  .reveal {
    transform: translateY(38px) scale(0.98);
  }

  h2 {
    font-size: clamp(2.65rem, 13vw, 4.2rem);
  }

  .site-header {
    inset: 12px 0 auto;
    width: calc(100% - 24px);
    min-height: 60px;
    padding: 7px 8px 7px 14px;
  }

  .wordmark span {
    font-size: 1.05rem;
  }

  .wordmark small {
    font-size: 0.55rem;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-content {
    width: calc(100% - 28px);
    padding-bottom: max(38px, 6svh);
  }

  .hero-media img {
    object-position: 34% 46%;
  }

  .hero h1 {
    max-width: 100%;
    margin-bottom: 18px;
    font-size: clamp(3rem, 12vw, 4rem);
    line-height: 0.84;
  }

  .hero-copy {
    max-width: 34ch;
    margin-bottom: 22px;
    font-size: 1rem;
  }

  .hero-actions {
    gap: 8px;
  }

  .button {
    min-height: 46px;
    padding-inline: 18px;
  }

  .service-ribbon {
    width: 100%;
    padding: 24px 14px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-ribbon div,
  .service-ribbon div:first-child {
    padding: 0 0 14px;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-ribbon div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .about-image {
    width: min(100%, 520px);
  }

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

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

  .menu-grid {
    gap: 44px;
  }

  .menu-callout {
    align-items: flex-start;
    flex-direction: column;
  }

  .shopfront-copy {
    padding: 56px 22px 64px;
  }

  .gallery-grid {
    gap: 18px;
  }

  .reviews-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .review-featured {
    grid-row: auto;
  }

  .review-featured blockquote {
    font-size: 1.7rem;
  }

  .visit-details {
    padding: 76px 18px 64px;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 480px;
  }

  .site-footer {
    padding: 44px 20px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer nav {
    grid-column: auto;
    flex-wrap: wrap;
    gap: 18px;
  }

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

  .lightbox-control {
    width: 48px;
    height: 56px;
    overflow: hidden;
    font-size: 0;
  }

  .lightbox-prev::before {
    content: "‹";
    font-size: 2rem;
  }

  .lightbox-next::before {
    content: "›";
    font-size: 2rem;
  }
}

@media (max-width: 390px) {
  .hero-actions .button {
    flex: 1 1 auto;
  }

  .hours div {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }

  .hours strong {
    text-align: left;
  }
}

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

  .site-header,
  .hero-media img,
  .eyebrow,
  .hero h1 span,
  .hero-copy,
  .hero-actions {
    animation: none;
  }

  .site-header,
  .site-header.is-compact,
  .hero-media,
  .mobile-menu,
  .mobile-menu nav > a,
  .lightbox figure,
  .lightbox.is-open figure {
    transform: none;
    filter: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: opacity 150ms ease;
  }

  .menu-feature .media-portrait,
  .menu-feature .media-portrait img,
  .gallery-item .media-portrait,
  .gallery-item img,
  .review,
  .button {
    transition: opacity 150ms ease, color 150ms ease, background-color 150ms ease;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header,
  .button-ghost {
    background: rgba(233, 67, 146, 0.98);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
