:root {
  --bg: #14100c;
  --surface: #1e1712;
  --accent: #c99a63;
  --ink: #f4ecdf;
  --muted: #a5988a;
  --hairline: #35291d;
  --font-display: "Cabinet Grotesk", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Inter Tight", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color-scheme: dark;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

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

.icon {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon--accent {
  color: var(--accent);
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.muted {
  color: var(--muted);
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ---------- reveal ---------- */
@keyframes lattio-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu-reveal {
  animation: lattio-rise 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@media (prefers-reduced-motion: reduce) {
  .menu-reveal {
    animation: none;
  }
}

/* ---------- nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
}

@media (min-width: 768px) {
  .nav {
    padding: 1rem 2.5rem;
  }
}

.nav__mark {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink);
  text-decoration: none;
}

.nav__call-mobile {
  display: inline-flex;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--accent) 50%, transparent);
  color: var(--accent);
  text-decoration: none;
}

@media (min-width: 640px) {
  .nav__call-mobile {
    display: none;
  }
}

.nav__call {
  display: none;
}

@media (min-width: 640px) {
  .nav__call {
    display: inline-flex;
  }
}

/* ---------- CTAs ---------- */
.route-cta {
  --pull-x: 0px;
  --pull-y: 0px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  transform: translate(var(--pull-x), var(--pull-y));
  transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.25, 1), background-color 0.2s ease;
}

.route-cta:hover {
  background: color-mix(in srgb, var(--accent) 88%, white 12%);
}

.route-cta:active {
  transform: translate(var(--pull-x), var(--pull-y)) scale(0.97);
}

.route-cta__icon {
  display: inline-flex;
  transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.25, 1);
}

.route-cta:hover .route-cta__icon {
  transform: translate(2px, -2px);
}

.route-cta:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.call-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.35rem;
  border: 1px solid color-mix(in srgb, var(--accent) 55%, transparent);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.call-cta:hover {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 10%, transparent);
}

.call-cta:active {
  transform: scale(0.98);
}

.call-cta__icon-wrap {
  position: relative;
  display: inline-flex;
  color: var(--accent);
}

.call-cta__ripple {
  position: absolute;
  inset: -0.6rem;
  border: 1.5px solid var(--accent);
  border-radius: 999px;
  animation: call-cta-ripple 0.5s ease-out;
}

@keyframes call-cta-ripple {
  from {
    opacity: 0.9;
    transform: scale(0.4);
  }
  to {
    opacity: 0;
    transform: scale(1.4);
  }
}

@media (prefers-reduced-motion: reduce) {
  .route-cta,
  .route-cta__icon,
  .call-cta__ripple {
    transition: none;
    animation: none;
  }
}

/* ---------- scroll-scrub ---------- */
.scroll-scrub {
  --ss-progress: 0;
  position: relative;
  isolation: isolate;
  background: var(--bg);
}

.scroll-scrub__stage {
  position: sticky;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  background: var(--bg);
}

.scroll-scrub__media,
.scroll-scrub__layer,
.scroll-scrub__layer picture,
.scroll-scrub__poster,
.scroll-scrub__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.scroll-scrub__layer {
  margin: 0;
  overflow: hidden;
  opacity: 0;
  will-change: opacity;
}

.scroll-scrub__poster,
.scroll-scrub__video {
  display: block;
  object-fit: cover;
  object-position: 50% 50%;
}

.scroll-scrub__poster {
  z-index: 0;
}

.scroll-scrub__video {
  z-index: 1;
}

.scroll-scrub__layer[data-video-painted="true"] .scroll-scrub__poster {
  visibility: hidden;
}

.scroll-scrub__progress {
  position: absolute;
  z-index: 5;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: color-mix(in srgb, var(--ink) 14%, transparent);
  pointer-events: none;
}

.scroll-scrub__progress span {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
}

.scroll-scrub__route {
  position: absolute;
  z-index: 6;
  top: clamp(1rem, 3vw, 2rem);
  right: clamp(1rem, 4vw, 4rem);
  left: clamp(1rem, 4vw, 4rem);
  display: flex;
  justify-content: flex-end;
  gap: 0.25rem;
}

.scroll-scrub__route-button {
  min-height: 2.75rem;
  padding: 0.65rem 0.9rem;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.scroll-scrub__route-button:hover,
.scroll-scrub__route-button[aria-current="step"] {
  color: var(--ink);
}

.scroll-scrub__route-button[aria-current="step"] {
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 0.15em;
  text-underline-offset: 0.3em;
}

.scroll-scrub__story {
  position: relative;
  z-index: 3;
  margin-top: -100dvh;
  pointer-events: none;
}

.scroll-scrub__chapter {
  position: relative;
}

.scroll-scrub__chapter-pin {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  min-height: 100dvh;
  padding: clamp(5rem, 9vw, 8rem) clamp(1.25rem, 6vw, 6rem);
  pointer-events: none;
}

.scroll-scrub__chapter[data-align="right"] .scroll-scrub__chapter-pin {
  justify-content: flex-end;
}

.scroll-scrub__copy {
  position: relative;
  width: min(40rem, 48vw);
  pointer-events: auto;
}

.scroll-scrub__copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -3rem -5rem;
  background: radial-gradient(
    ellipse at center,
    color-mix(in srgb, var(--bg) 88%, transparent) 0%,
    color-mix(in srgb, var(--bg) 58%, transparent) 52%,
    transparent 76%
  );
}

.scroll-scrub__title {
  max-width: 13ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 6.75rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.scroll-scrub__body {
  max-width: 42ch;
  margin: 1.5rem 0 0;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.55;
  color: var(--muted);
}

.scroll-scrub__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

@media (max-width: 860px) {
  .scroll-scrub__route {
    right: max(0.75rem, env(safe-area-inset-right));
    left: max(0.75rem, env(safe-area-inset-left));
    justify-content: flex-start;
    overflow-x: auto;
  }

  .scroll-scrub__route-button {
    flex: 0 0 auto;
  }

  .scroll-scrub__chapter-pin,
  .scroll-scrub__chapter[data-align="right"] .scroll-scrub__chapter-pin {
    align-items: flex-end;
    justify-content: flex-start;
    padding: 6.5rem max(1.25rem, env(safe-area-inset-right)) calc(4rem + env(safe-area-inset-bottom)) max(1.25rem, env(safe-area-inset-left));
  }

  .scroll-scrub__copy {
    width: min(100%, 36rem);
  }

  .scroll-scrub__copy::before {
    inset: -3rem -2rem;
    background: linear-gradient(to top, var(--bg) 0%, color-mix(in srgb, var(--bg) 82%, transparent) 58%, transparent 100%);
  }

  .scroll-scrub__title {
    max-width: 14ch;
    font-size: clamp(2.3rem, 11vw, 4.5rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-scrub__chapter {
    min-height: 100dvh !important;
  }
}

/* ---------- menu ---------- */
.menu-section {
  padding: 6rem 1.25rem;
  background: var(--bg);
}

@media (min-width: 768px) {
  .menu-section {
    padding: 8rem 2.5rem;
  }
}

.menu-section__grid {
  margin: 0 auto;
  max-width: 72rem;
  display: grid;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 768px) {
  .menu-section__grid {
    grid-template-columns: 0.85fr 1.15fr;
  }
}

.menu-section__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.02em;
  font-size: clamp(3.5rem, 9vw, 7rem);
  color: var(--ink);
}

.menu-section__lede {
  margin-top: 1.5rem;
  max-width: 32ch;
  color: var(--muted);
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.menu-item {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .menu-item {
    flex-direction: row;
    align-items: center;
  }

  .menu-item--reverse {
    flex-direction: row-reverse;
    text-align: right;
  }
}

.menu-frame {
  position: relative;
  flex-shrink: 0;
  width: 100%;
}

@media (min-width: 640px) {
  .menu-frame {
    width: 14rem;
  }
}

.menu-frame::before {
  content: "";
  position: absolute;
  inset: 10px -10px -10px 10px;
  z-index: -1;
  border: 1px solid color-mix(in srgb, var(--accent) 45%, transparent);
  border-radius: 4px;
}

.menu-frame img {
  aspect-ratio: 1 / 1;
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
}

.menu-item h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
}

.menu-item p {
  margin-top: 0.5rem;
  max-width: 36ch;
  font-size: 0.9rem;
  color: var(--muted);
}

/* ---------- gallery ---------- */
.gallery-section {
  padding: 6rem 1.25rem;
  background: var(--bg);
}

@media (min-width: 768px) {
  .gallery-section {
    padding: 8rem 2.5rem;
  }
}

.gallery-section__inner {
  margin: 0 auto;
  max-width: 72rem;
}

.gallery-section__title {
  margin: 0 0 3rem;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  color: var(--ink);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 11rem;
  gap: 0.85rem;
}

.gallery-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
}

.gallery-grid img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-grid figure:hover img {
  transform: scale(1.05);
}

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

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

@media (max-width: 720px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 8.5rem;
  }
}

/* ---------- location ---------- */
.location-section {
  padding: 6rem 1.25rem;
  background: var(--bg);
}

@media (min-width: 768px) {
  .location-section {
    padding: 8rem 2.5rem;
  }
}

.location-section__grid {
  margin: 0 auto;
  max-width: 72rem;
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .location-section__grid {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }
}

.location-section__photo {
  position: relative;
}

.location-section__photo img {
  height: 18rem;
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .location-section__photo img {
    height: 100%;
  }
}

.location-section__wordmark {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--ink);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
}

.location-section__map {
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--hairline);
}

.location-section__map iframe {
  width: 100%;
  height: 16rem;
  filter: grayscale(1) invert(0.92) contrast(0.9);
}

@media (min-width: 768px) {
  .location-section__map iframe {
    height: 18rem;
  }
}

.location-section__card {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 4px;
  background: var(--surface);
  padding: 1.5rem;
}

.location-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.location-row p {
  margin: 0;
}

.phone-link {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--hairline);
  text-underline-offset: 4px;
}

.location-section__cta {
  margin-top: 0.5rem;
  align-self: flex-start;
}

/* ---------- reviews ---------- */
.reviews-section {
  padding: 6rem 1.25rem;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .reviews-section {
    padding: 8rem 2.5rem;
  }
}

.reviews-section__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.reviews-numeral {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(6rem, 16vw, 13rem);
  line-height: 0.85;
  letter-spacing: -0.03em;
  color: var(--accent);
}

.reviews-section__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.reviews-stars {
  display: flex;
  gap: 0.25rem;
  color: var(--accent);
}

.reviews-stars .icon {
  width: 1.25rem;
  height: 1.25rem;
}

.reviews-section__meta p {
  margin: 0;
  text-align: left;
  color: var(--ink);
}

.reviews-section__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

/* ---------- footer ---------- */
.site-footer {
  border-top: 1px solid var(--hairline);
  background: var(--bg);
  padding: 4rem 1.25rem;
}

@media (min-width: 768px) {
  .site-footer {
    padding: 4rem 2.5rem;
  }
}

.site-footer__top {
  margin: 0 auto;
  max-width: 72rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .site-footer__top {
    flex-direction: row;
    align-items: flex-start;
  }
}

.site-footer__brand {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.site-footer__logo {
  margin-top: 0.25rem;
  height: 3rem;
  width: auto;
  flex-shrink: 0;
  opacity: 0.9;
}

.site-footer__brand h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--ink);
}

.site-footer__brand p {
  margin-top: 0.75rem;
  max-width: 30ch;
  font-size: 0.9rem;
  color: var(--muted);
}

.site-footer__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.site-footer__bottom {
  margin: 0 auto;
  max-width: 72rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid var(--hairline);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  font-size: 0.75rem;
  color: var(--muted);
}

@media (min-width: 640px) {
  .site-footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.site-footer__bottom p {
  margin: 0;
}
