:root {
  color-scheme: light;
  --bg: oklch(96% 0.018 145);
  --surface: oklch(92% 0.035 84);
  --surface-2: oklch(87% 0.05 82);
  --text: oklch(24% 0.035 55);
  --muted: oklch(45% 0.03 70);
  --line: oklch(27% 0.03 55 / 0.18);
  --accent: oklch(54% 0.15 42);
  --accent-ink: oklch(98% 0.01 90);
  --ink-deep: oklch(18% 0.03 55);
  --radius: 3px;
  --header-height: 86px;
  --shell: min(1240px, 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);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 24px); }

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: Aptos, "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

img { max-width: 100%; }

a { color: inherit; }

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

button { font: inherit; }

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

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--accent);
  color: var(--accent-ink);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-160%);
}

.skip-link:focus-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

section[id] { scroll-margin-top: calc(var(--header-height) + 24px); }

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

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

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

h1,
h2,
h3 {
  font-family: "Trebuchet MS", "Avenir Next", "Segoe UI", sans-serif;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 800px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 8vw, 6.6rem);
  font-weight: 800;
  line-height: 0.93;
}

h2 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 5.5vw, 4.8rem);
  font-weight: 760;
  line-height: 0.98;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.1;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 22px;
  font-size: 0.92rem;
  font-weight: 760;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transform: translateZ(0);
  transition: transform 160ms var(--ease-out), background-color 180ms ease, border-color 180ms ease;
}

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

.button-primary { background: var(--accent); color: var(--accent-ink); }
.button-primary:hover { background: oklch(60% 0.14 42); }

.button-ghost {
  border-color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.14);
  color: var(--text);
  backdrop-filter: blur(8px);
}

.button-ghost:hover { background: rgba(255, 255, 255, 0.28); }

.text-link {
  display: inline-block;
  color: var(--text);
  font-weight: 720;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  min-height: var(--header-height);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 10px max(20px, calc((100vw - 1320px) / 2));
  border-bottom: 1px solid transparent;
  background: transparent;
  backdrop-filter: none;
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: var(--bg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.site-header.is-scrolled .desktop-nav,
.site-header.is-scrolled .header-actions { color: var(--text); }
.site-header:not(.is-scrolled) .desktop-nav,
.site-header:not(.is-scrolled) .header-actions { color: var(--accent-ink); }
.site-header.is-scrolled .brand-link img,
body.menu-open .site-header .brand-link img { filter: invert(1); }

body.menu-open .site-header {
  border-bottom-color: var(--line);
  background: var(--bg);
}

.scroll-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.brand-link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: 92px;
  height: 68px;
  transition: transform 220ms var(--ease-out);
}

.brand-link img { display: block; width: 100%; height: 100%; border-radius: var(--radius); }

.desktop-nav { display: flex; gap: clamp(22px, 3vw, 42px); }
.desktop-nav { position: relative; z-index: 2; }

.desktop-nav a,
.site-footer nav a {
  position: relative;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
}

.desktop-nav a::after,
.site-footer nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 220ms var(--ease-out);
}

.desktop-nav a:hover,
.site-footer nav a:hover { color: var(--accent); }

.header-actions {
  position: relative;
  z-index: 2;
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 12px;
}

.social-link {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: var(--text);
  transition: color 180ms ease, border-color 180ms ease, transform 180ms var(--ease-out), background-color 180ms ease;
}

.social-link:hover { border-color: var(--accent); color: var(--accent); }

.social-link svg { width: 24px; height: 24px; fill: currentColor; stroke: none; }
.social-link svg rect,
.social-link svg circle:not(.social-dot) { fill: none; stroke: currentColor; stroke-width: 1.8; }
.social-link svg .social-dot { fill: currentColor; stroke: none; }

.menu-toggle {
  display: none;
  width: 54px;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: transform 160ms var(--ease-out), border-color 180ms ease, background-color 180ms ease;
}

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

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transform-origin: center;
  transition: transform 220ms var(--ease-out), width 220ms var(--ease-out);
}

.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: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(100svh - var(--header-height));
  overflow-y: auto;
  padding: 38px 20px;
  background: var(--bg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-18px) scale(0.985);
  transform-origin: top center;
  transition: opacity 180ms ease, transform 260ms var(--ease-drawer), visibility 0s linear 260ms;
  visibility: hidden;
}

.mobile-menu[hidden] { display: none; }
.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transition-delay: 0s;
  visibility: visible;
}
.mobile-menu nav { display: grid; margin-bottom: 36px; }

.mobile-menu nav a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.7rem;
  font-weight: 760;
  text-decoration: none;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 180ms ease, transform 240ms var(--ease-out), color 160ms ease;
}

.mobile-menu.is-open nav a { opacity: 1; transform: translateY(0); }
.mobile-menu.is-open nav a:nth-child(1) { transition-delay: 45ms; }
.mobile-menu.is-open nav a:nth-child(2) { transition-delay: 80ms; }
.mobile-menu.is-open nav a:nth-child(3) { transition-delay: 115ms; }
.mobile-menu.is-open nav a:nth-child(4) { transition-delay: 150ms; }

.mobile-socials { display: flex; gap: 8px; margin-top: 28px; }

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: end;
  overflow: hidden;
  background: var(--bg);
}

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

.hero-image {
  display: block;
  object-fit: cover;
  object-position: center 48%;
  animation: hero-in 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
  will-change: transform;
}

.hero-scrim {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.12) 42%, rgba(0, 0, 0, 0.30));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: var(--shell);
  margin-inline: auto;
  padding: calc(var(--header-height) + 44px) 0 clamp(58px, 9vh, 96px);
  animation: content-in 760ms 100ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-content > p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 28px;
  color: #f3f0e7;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.45;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.hero h1 {
  color: oklch(98% 0.01 90);
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.34);
}

.hero .eyebrow { color: oklch(86% 0.12 78); }
.hero .button-ghost { color: oklch(98% 0.01 90); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.intro { background: var(--bg); }

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: clamp(50px, 10vw, 150px);
}

.intro-copy { padding-left: clamp(0px, 6vw, 80px); }

.intro-copy p {
  max-width: 580px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.2rem);
}

.ratio-frame {
  display: block;
  aspect-ratio: 3 / 4;
  margin: 0;
  overflow: hidden;
}

.ratio-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 560ms var(--ease-out), filter 300ms ease;
}

.image-frame { background: var(--surface-2); border-radius: var(--radius); }

.service-ribbon {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: clamp(64px, 9vw, 120px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-ribbon span {
  display: grid;
  min-height: 76px;
  align-items: center;
  padding: 16px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 680;
  text-align: center;
}

.service-ribbon span:last-child { border-right: 0; }

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

.section-heading { margin-bottom: clamp(38px, 6vw, 72px); }
.section-heading p { max-width: 540px; margin-bottom: 0; color: var(--muted); font-size: 1.08rem; }

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

.menu-panel { min-width: 0; transform-origin: center bottom; }
.menu-panel:nth-child(2) { margin-top: 72px; }
.menu-panel .ratio-frame { margin-bottom: 24px; transition: transform 360ms var(--ease-out), box-shadow 360ms ease; }
.menu-panel h3 { transition: color 180ms ease, transform 260ms var(--ease-out); }
.menu-panel p { max-width: 34ch; margin-bottom: 0; color: var(--muted); }

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

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

.gallery-item {
  display: block;
  min-width: 0;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
  perspective: 900px;
}

.gallery-item .image-frame {
  position: relative;
  transition: transform 420ms var(--ease-out), filter 240ms ease;
  transform-style: preserve-3d;
}
.gallery-item .image-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.26), transparent 42%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}
.gallery-item:active .image-frame { transform: scale(0.975); }
.gallery-item .position-interior { object-position: center 58%; }

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

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(56px, 9vw, 130px);
}

.reviews-heading { position: sticky; top: 120px; align-self: start; }
.rating-summary { color: var(--muted); }
.rating-summary strong { display: block; margin-bottom: 4px; color: var(--accent); font-size: 2.2rem; }

.reviews-list { display: grid; }

.review {
  padding: 34px 0 42px;
  border-bottom: 1px solid var(--line);
}

.review:first-child { padding-top: 0; }

.review-author { display: flex; align-items: center; gap: 14px; }
.review-author img { display: block; width: 52px; height: 52px; border-radius: 50%; object-fit: cover; background: var(--surface-2); }
.review-author h3 { margin: 0 0 2px; font-family: inherit; font-size: 1rem; letter-spacing: 0; }
.stars { color: var(--accent); font-size: 0.9rem; letter-spacing: 0.08em; }

.review blockquote {
  max-width: 720px;
  margin: 22px 0 18px;
  color: var(--text);
  font-size: clamp(1.18rem, 2.4vw, 1.75rem);
  font-weight: 560;
  line-height: 1.4;
}

.review .text-link { font-size: 0.88rem; }

.visit-section { padding-bottom: 0; background: var(--bg); }

.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(56px, 9vw, 130px);
  padding-bottom: clamp(70px, 9vw, 120px);
}

address { color: var(--muted); font-style: normal; }
.visit-details address { margin-bottom: 28px; font-size: clamp(1.08rem, 2vw, 1.3rem); }
.visit-details .button { margin-bottom: 30px; }

.fsa-link {
  display: block;
  max-width: 360px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  text-decoration: none;
}

.fsa-link strong,
.fsa-link span { display: block; }
.fsa-link strong { color: var(--accent); }
.fsa-link span { color: var(--muted); font-size: 0.9rem; }

.hours h3 { margin-bottom: 24px; }
.hours dl { margin: 0; }
.hours dl div { display: grid; grid-template-columns: 1fr auto; gap: 20px; padding: 10px 0; }
.hours dt { color: var(--muted); }
.hours dd { margin: 0; font-variant-numeric: tabular-nums; }

.map-wrap {
  width: 100%;
  min-height: 520px;
  background: var(--surface-2);
}

.map-wrap iframe { display: block; width: 100%; height: 520px; border: 0; filter: grayscale(0.18) contrast(0.96); }

.site-footer { padding-block: 54px; border-top: 1px solid var(--line); background: var(--bg); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr auto;
  align-items: start;
  gap: 40px;
}

.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-brand img { display: block; width: 76px; height: 76px; border-radius: var(--radius); }
.footer-brand p { max-width: 180px; margin: 0; font-weight: 780; line-height: 1.2; }
.site-footer nav { display: grid; gap: 10px; }
.footer-socials { display: flex; gap: 8px; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(72px, 1fr) minmax(0, 1040px) minmax(72px, 1fr);
  align-items: center;
  gap: 18px;
  padding: 76px 24px 28px;
  background: rgba(10, 11, 9, 0.96);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 0s linear 220ms;
  visibility: hidden;
}

.lightbox[hidden] { display: none; }
.lightbox.is-open { opacity: 1; pointer-events: auto; transition-delay: 0s; visibility: visible; }
.lightbox figure {
  display: grid;
  max-height: calc(100svh - 110px);
  margin: 0;
  opacity: 0;
  place-items: center;
  transform: translateY(22px) scale(0.955);
  transition: opacity 220ms ease, transform 280ms var(--ease-out);
}
.lightbox.is-open figure { opacity: 1; transform: translateY(0) scale(1); }
.lightbox figure img { display: block; max-width: 100%; max-height: calc(100svh - 148px); object-fit: contain; touch-action: pan-y; user-select: none; }
.lightbox figcaption { margin-top: 10px; color: var(--muted); text-align: center; }

.lightbox-close,
.lightbox-nav {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  transition: transform 160ms var(--ease-out), border-color 180ms ease, background-color 180ms ease;
}

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

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  min-height: 44px;
  padding: 8px 14px;
}

.lightbox-nav { min-height: 52px; padding: 10px 14px; }

[data-reveal] {
  opacity: 0;
  transform: translateY(38px) scale(0.985);
  transition: opacity 620ms ease, transform 760ms var(--ease-out);
  transition-delay: calc(var(--reveal-order, 0) * 60ms);
}

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

[data-reveal] .image-frame {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 840ms var(--ease-in-out), transform 420ms var(--ease-out), box-shadow 360ms ease;
}

[data-reveal].is-visible .image-frame { clip-path: inset(0 0 0 0); }

@keyframes hero-in {
  from { opacity: 0.55; transform: scale(1.085); filter: saturate(0.82); }
  to { opacity: 1; transform: scale(1.045); filter: saturate(1); }
}

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

@media (max-width: 900px) {
  :root { --shell: min(100% - 32px, 760px); }
  .site-header { grid-template-columns: 1fr auto; padding-inline: 16px; }
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .intro-grid,
  .reviews-layout,
  .visit-grid { grid-template-columns: 1fr; }
  .intro-copy { padding-left: 0; }
  .about-image { width: min(100%, 520px); justify-self: end; }
  .service-ribbon { grid-template-columns: repeat(3, 1fr); }
  .service-ribbon span:nth-child(3) { border-right: 0; }
  .service-ribbon span:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .menu-grid { gap: 18px; }
  .menu-panel:nth-child(2) { margin-top: 40px; }
  .reviews-heading { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  :root { --shell: calc(100% - 32px); --header-height: 78px; }
  .section-pad { padding-block: 80px; }
  h1 { font-size: clamp(2.65rem, 10.9vw, 3rem); }
  h2 { font-size: clamp(2.35rem, 11vw, 3.5rem); }
  .header-actions .social-link { display: none; }
  .hero-content { padding-bottom: 42px; }
  .hero-image { object-position: 51% center; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; max-width: 390px; }
  .intro-grid { gap: 44px; }
  .about-image { width: 100%; }
  .service-ribbon {
    display: flex;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .service-ribbon::-webkit-scrollbar { display: none; }
  .service-ribbon span {
    min-width: 44vw;
    min-height: 68px;
    flex: 0 0 auto;
    border-bottom: 0 !important;
    scroll-snap-align: start;
  }
  .menu-grid { grid-template-columns: 1fr; gap: 58px; }
  .menu-panel:nth-child(2) { margin-top: 0; }
  .menu-panel p { max-width: 42ch; }
  .gallery-grid { grid-template-columns: 1fr; gap: 14px; }
  .review blockquote { font-size: 1.2rem; }
  .visit-grid { gap: 64px; }
  .map-wrap,
  .map-wrap iframe { height: 430px; min-height: 430px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .lightbox { grid-template-columns: 1fr; padding: 70px 16px 82px; }
  .lightbox-nav { position: absolute; bottom: 18px; min-width: 118px; }
  .lightbox-prev { left: 16px; }
  .lightbox-next { right: 16px; }
}

@media (hover: hover) and (pointer: fine) {
  .button:hover { transform: translateY(-3px); }
  .button:hover:active { transform: scale(0.97); }
  .brand-link:hover { transform: rotate(-4deg) scale(1.08); }
  .desktop-nav a:hover::after,
  .site-footer nav a:hover::after { transform: scaleX(1); transform-origin: left center; }
.social-link:hover { background: oklch(54% 0.15 42 / 0.12); transform: translateY(-3px) rotate(-3deg); }
  .social-link:hover:active { transform: scale(0.95); }
  .menu-panel:hover .ratio-frame { transform: translateY(-9px) rotate(0.4deg); box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22); }
  .menu-panel:hover .ratio-frame img { transform: scale(1.055); }
  .menu-panel:hover h3 { color: var(--accent); transform: translateX(6px); }
  .gallery-item:hover .image-frame { transform: translateY(-8px) rotateX(1.5deg) scale(1.012); filter: saturate(1.08); }
  .gallery-item:hover:active .image-frame { transform: scale(0.975); }
  .gallery-item:hover .image-frame img { transform: scale(1.065); }
  .gallery-item:hover .image-frame::after { opacity: 1; }
  .lightbox-close:hover,
  .lightbox-nav:hover { border-color: var(--accent); background: var(--surface-2); transform: translateY(-2px); }
  .lightbox-close:hover:active,
  .lightbox-nav:hover:active { transform: scale(0.95); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  [data-reveal] .image-frame { clip-path: none; }
  .hero-image { transform: none !important; }
}
