:root {
  --ink: #191b17;
  --cream: #f2efe7;
  --paper: #faf9f5;
  --brick: #c95737;
  --brick-dark: #a83f25;
  --lime: #d9ef62;
  --line: rgba(25, 27, 23, .16);
  --muted: #74766f;
  --pad: clamp(22px, 5vw, 76px);
}

* { box-sizing: border-box; }
html {
  width: 100%;
  max-width: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-x: clip;
}
body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
  overflow-x: clip;
}
body.intro-lock { overflow: hidden; }
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.site-intro {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--cream);
  overflow: hidden;
  animation: introCurtain 3s cubic-bezier(.7,0,.2,1) forwards;
}
.site-intro::before, .site-intro::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(25,27,23,.14);
}
.site-intro::before { top: 26%; }
.site-intro::after { bottom: 26%; }
.intro-wordmark {
  position: relative;
  width: min(76vw, 760px);
  aspect-ratio: 678 / 179;
  opacity: 0;
  animation: wordmarkIntro 2.35s cubic-bezier(.2,.7,.2,1) forwards;
  will-change: transform, opacity;
  transform: translateZ(0);
}
.intro-wordmark img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  backface-visibility: hidden;
}
.wordmark-blur {
  opacity: .72;
  filter: blur(12px);
  transform: scale(1.025) translateZ(0);
  animation: blurredLayer 1.05s ease-out forwards;
}
.wordmark-sharp {
  opacity: 0;
  transform: translateZ(0);
  animation: sharpLayer .75s .12s ease-out forwards;
}
.intro-bike {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 50%;
  width: clamp(180px, 20vw, 300px);
  aspect-ratio: 2.25 / 1;
  background: url("assets/logo.png") top center / 100% auto no-repeat;
  transform: translate(105vw, -70%);
  filter: drop-shadow(0 15px 20px rgba(0,0,0,.18));
  animation: bikeRide 1.45s 1.05s cubic-bezier(.35,.05,.6,.95) forwards;
}
@keyframes wordmarkIntro {
  0% { opacity: 0; transform: translate3d(0,18px,0) scale(.98); }
  18%, 48% { opacity: 1; transform: translate3d(0,0,0) scale(1); }
  68%, 100% { opacity: 0; transform: translate3d(-35px,0,0) scale(1); }
}
@keyframes blurredLayer {
  0%, 28% { opacity: .72; }
  100% { opacity: 0; }
}
@keyframes sharpLayer {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes bikeRide {
  0% { transform: translate(105vw, -70%) rotate(1deg); }
  48% { transform: translate(43vw, -70%) rotate(-1deg); }
  100% { transform: translate(-35vw, -70%) rotate(1deg); }
}
@keyframes introCurtain {
  0%, 83% { opacity: 1; visibility: visible; }
  100% { opacity: 0; visibility: hidden; }
}
.skip-link { position: fixed; left: 12px; top: -60px; z-index: 999; background: white; padding: 12px 18px; }
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 94px;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 210px 1fr 210px;
  align-items: center;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,.22);
  transition: .35s ease;
}
.site-header.scrolled {
  height: 76px;
  color: var(--ink);
  background: rgba(250,249,245,.94);
  border-color: var(--line);
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 35px rgba(0,0,0,.05);
}
.brand img { width: 156px; filter: invert(1) brightness(3); transition: .35s ease; }
.site-header.scrolled .brand img { filter: none; width: 138px; }
.desktop-nav { display: flex; justify-content: center; gap: clamp(24px, 3vw, 52px); font-size: 13px; font-weight: 700; }
.desktop-nav a { position: relative; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--brick); transition: .25s; }
.desktop-nav a:hover::after { right: 0; }
.header-call { justify-self: end; display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 800; letter-spacing: .02em; }
.pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgba(217,239,98,.18); }
.site-header.scrolled .pulse { background: var(--brick); box-shadow: 0 0 0 5px rgba(201,87,55,.12); }
.menu-toggle, .mobile-nav { display: none; }

.hero { position: relative; min-height: 760px; height: 100svh; color: white; isolation: isolate; }
.hero-media, .hero-video, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-video { object-fit: cover; opacity: 0; transition: opacity 1.1s ease; }
.hero-video.active { opacity: 1; }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(10,12,9,.83) 0%, rgba(10,12,9,.52) 45%, rgba(10,12,9,.12) 75%),
    linear-gradient(0deg, rgba(10,12,9,.62) 0%, transparent 42%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: clamp(180px, 25vh, 260px) var(--pad) 140px;
}
.hero-content > * { opacity: 0; transform: translateY(26px); animation: heroIn .85s cubic-bezier(.2,.7,.2,1) forwards; }
.hero-content > :nth-child(1) { animation-delay: .15s; }
.hero-content > :nth-child(2) { animation-delay: .28s; }
.hero-content > :nth-child(3) { animation-delay: .42s; }
.hero-content > :nth-child(4) { animation-delay: .56s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }
.eyebrow { margin: 0 0 24px; color: var(--lime); font-size: 11px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
.eyebrow::before { content: ""; display: inline-block; width: 32px; height: 1px; background: currentColor; margin: 0 12px 4px 0; }
.eyebrow.dark { color: var(--brick); }
.hero h1, h2 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -.035em;
  line-height: .93;
}
.hero h1 { font-size: clamp(66px, 9.3vw, 145px); }
.hero h1 { text-shadow: 0 14px 40px rgba(0,0,0,.25); }
h1 em, h2 em { color: var(--brick); font-style: normal; }
.hero h1 em { color: var(--lime); }
.hero-copy { max-width: 620px; margin: 28px 0 35px; color: rgba(255,255,255,.82); font-size: clamp(16px, 1.45vw, 21px); line-height: 1.65; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.button { min-height: 56px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: center; gap: 24px; border: 1px solid rgba(255,255,255,.35); font-size: 12px; font-weight: 800; transition: .25s; }
.button { position: relative; overflow: hidden; box-shadow: 0 12px 28px rgba(0,0,0,.14); }
.button::before { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,.22) 50%, transparent 75%); transform: translateX(-130%); transition: transform .6s ease; }
.button:hover::before { transform: translateX(130%); }
.button-primary { background: var(--brick); border-color: var(--brick); }
.button-primary:hover { background: var(--brick-dark); transform: translateY(-2px); }
.button-ghost {
  color: #fff;
  background: rgba(10,12,9,.28);
  border-color: rgba(255,255,255,.72);
  text-shadow: 0 1px 7px rgba(0,0,0,.85);
  backdrop-filter: blur(5px);
}
.button-ghost:hover { background: white; color: var(--ink); text-shadow: none; }
.hero-bottom {
  position: absolute;
  z-index: 3;
  left: var(--pad);
  right: var(--pad);
  bottom: 30px;
  padding-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  border-top: 1px solid rgba(255,255,255,.28);
}
.hero-location {
  position: absolute;
  z-index: 4;
  right: var(--pad);
  bottom: 82px;
  display: flex;
  gap: 14px;
  align-items: center;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  text-align: left;
  animation: addressIn .9s .75s cubic-bezier(.2,.7,.2,1) both;
  transition: color .25s ease, transform .25s ease;
}
.hero-location strong { display: block; margin-bottom: 4px; color: white; }
.hero-location .marker { color: var(--lime); font-size: 18px; }
.hero-location i { margin-left: 8px; color: var(--lime); font-size: 17px; font-style: normal; }
.hero-location:hover { color: white; transform: translateX(-5px); }
@keyframes addressIn { from { opacity: 0; transform: translateX(35px); } to { opacity: 1; transform: none; } }
.video-controls { display: flex; gap: 10px; }
.video-dot { width: 54px; height: 20px; padding: 9px 0; border: 0; background: none; cursor: pointer; }
.video-dot span { display: block; height: 2px; background: rgba(255,255,255,.3); overflow: hidden; }
.video-dot.active span { background: var(--lime); }
.scroll-hint { justify-self: end; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; animation: floatHint 2s ease-in-out infinite; }
.scroll-hint span { margin-left: 12px; color: var(--lime); }
@keyframes floatHint { 50% { transform: translateY(5px); } }

.section { padding: clamp(90px, 11vw, 160px) var(--pad); }
.section-heading h2, .about h2, .gallery h2, .contact h2 { text-shadow: 0 10px 28px rgba(25,27,23,.08); }
.intro { background: var(--cream); display: grid; grid-template-columns: 1fr 1fr; column-gap: 7vw; }
.section-heading h2, .about h2, .gallery h2, .contact h2 { font-size: clamp(52px, 6vw, 94px); }
.intro-copy { align-self: end; max-width: 610px; padding-bottom: 8px; }
.intro-copy p { margin: 0 0 36px; font-size: clamp(18px, 1.55vw, 23px); line-height: 1.65; }
.text-link { padding-bottom: 8px; border-bottom: 1px solid var(--ink); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.text-link span { margin-left: 26px; }
.offer-grid { grid-column: 1 / -1; margin-top: 80px; display: grid; grid-template-columns: repeat(4, 1fr); }
.offer-grid { perspective: 1500px; }
.offer-card { position: relative; min-height: 400px; padding: 32px; border: 1px solid var(--line); border-right: 0; background: var(--paper); transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease; }
.offer-card:not(.image-card):hover { z-index: 2; transform: translateY(-12px); border-color: rgba(201,87,55,.38); box-shadow: 0 25px 60px rgba(31,30,25,.14); }
.offer-card::before { content: ""; position: absolute; left: 18px; top: 18px; width: 16px; height: 16px; border-left: 1px solid var(--brick); border-top: 1px solid var(--brick); opacity: .55; }
.offer-card:last-child { border-right: 1px solid var(--line); }
.offer-card.warm { background: #e9dfd1; }
.offer-card.dark-card { color: white; background: var(--ink); }
.card-number { font-size: 10px; font-weight: 800; letter-spacing: .16em; opacity: .55; }
.offer-card svg { width: 110px; margin: 80px auto 62px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.offer-card h3 { margin: 0 0 15px; font-family: "Oswald", sans-serif; font-size: 27px; text-transform: uppercase; }
.offer-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.dark-card p { color: rgba(255,255,255,.6); }
.image-card { padding: 0; overflow: hidden; }
.image-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.image-card:hover img { transform: scale(1.04); }
.image-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(15,16,14,.8), transparent 70%); }
.image-card-label { position: absolute; z-index: 2; left: 28px; bottom: 28px; color: white; font-size: 18px; line-height: 1.35; }
.image-card::after, .image-card-label { pointer-events: none; }
.image-card-label strong { color: var(--lime); font-family: "Oswald"; font-size: 27px; text-transform: uppercase; }

.about { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 9vw, 150px); align-items: center; }
.about-image { position: relative; height: min(720px, 75vw); filter: drop-shadow(0 30px 35px rgba(25,27,23,.16)); }
.about-image::before { content: ""; position: absolute; z-index: -1; inset: 24px -24px -24px 24px; border: 1px solid var(--brick); }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.stamp {
  position: absolute;
  right: -50px;
  bottom: 45px;
  width: 155px;
  height: 155px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  background: var(--brick);
  border-radius: 50%;
  transform: rotate(-9deg);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  overflow: hidden;
}
.stamp::after {
  content: "";
  position: absolute;
  inset: -35%;
  background: linear-gradient(105deg, transparent 38%, rgba(255,255,255,.92) 50%, transparent 62%);
  transform: translateX(-160%) rotate(15deg);
}
.about-image.visible .stamp { animation: stampSpin 2s 1.05s cubic-bezier(.18,.75,.25,1) both; }
.about-image.visible .stamp::after { animation: stampFlash .72s 3.05s ease-out both; }
@keyframes stampSpin {
  0% { opacity: 0; transform: scale(.25) rotate(-1080deg); }
  70% { opacity: 1; transform: scale(1.12) rotate(14deg); }
  86% { transform: scale(.96) rotate(-13deg); }
  100% { transform: scale(1) rotate(-9deg); }
}
@keyframes stampFlash {
  from { transform: translateX(-160%) rotate(15deg); }
  to { transform: translateX(160%) rotate(15deg); }
}
.stamp strong { margin-top: 4px; font-family: "Oswald"; font-size: 21px; letter-spacing: 0; }
.about-content { max-width: 710px; }
.about-content h2 { margin-bottom: 45px; }
.about-content > p:not(.eyebrow) { color: #5d6058; font-size: 15px; line-height: 1.85; }
.about-points { margin-top: 42px; padding-top: 28px; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr; gap: 20px; font-size: 12px; font-weight: 700; }
.about-points i { display: inline-grid; place-items: center; width: 22px; height: 22px; margin-right: 9px; color: white; background: var(--brick); border-radius: 50%; font-style: normal; }
.about-enter {
  opacity: 0;
  filter: blur(4px);
  transition: opacity 1.05s cubic-bezier(.2,.7,.2,1), transform 1.05s cubic-bezier(.2,.7,.2,1), filter 1.05s ease;
  transition-delay: var(--about-delay, 0ms);
}
.about-enter.enter-left { transform: translateX(-90px) rotate(-1.5deg); }
.about-enter.enter-right { transform: translateX(90px) rotate(1.5deg); }
.about-enter.visible { opacity: 1; filter: none; transform: none; }

.gallery { color: white; background: var(--ink); }
.gallery-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 10vw; align-items: end; margin-bottom: 70px; }
.gallery-heading > p { margin: 0 0 8px; color: rgba(255,255,255,.55); font-size: 14px; line-height: 1.8; }
.gallery-grid { display: grid; grid-template-columns: 1.55fr .75fr; grid-template-rows: 310px 210px; gap: 18px; }
.gallery-grid figure { position: relative; margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.13); box-shadow: 0 24px 60px rgba(0,0,0,.22); }
.gallery-grid figure::after { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(255,255,255,.22); pointer-events: none; transition: inset .4s ease, border-color .4s ease; }
.gallery-grid figure:hover::after { inset: 9px; border-color: var(--lime); }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.gallery-grid figure:hover img { transform: scale(1.035); }
.gallery-grid figure.reveal {
  opacity: 0;
  filter: blur(5px);
  transition: opacity 1.45s ease, transform 1.45s cubic-bezier(.14,.78,.18,1), filter 1.25s ease;
}
.gallery-main.reveal {
  transform: translateX(-120px) rotate(-12deg) scale(.88);
  transform-origin: left bottom;
}
.gallery-small.reveal {
  transform: translateX(120px) rotate(14deg) scale(.88);
  transform-origin: right top;
}
.gallery-grid figure.reveal.visible {
  opacity: 1;
  filter: none;
  transform: none;
}
.gallery-main { grid-row: 1 / 3; }
.gallery-small { grid-column: 2; }
.gallery-cta { padding: 30px; display: flex; flex-direction: column; justify-content: space-between; background: var(--brick); }
.gallery-cta > span { color: rgba(255,255,255,.75); font-size: 12px; }
.gallery-cta a { display: flex; align-items: end; justify-content: space-between; font-size: 12px; }
.gallery-cta strong { display: block; margin-top: 7px; font-family: "Oswald"; font-size: clamp(24px, 2.4vw, 38px); }
.gallery-cta i { font-size: 28px; font-style: normal; }

.contact { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(55px, 8vw, 130px); background: var(--cream); }
.contact-details h2 { margin-bottom: 55px; }
.contact-list { border-top: 1px solid var(--line); }
.contact-list > * { min-height: 96px; padding: 18px 0; display: grid; grid-template-columns: 45px 1fr auto; align-items: center; border-bottom: 1px solid var(--line); transition: .3s ease; }
.contact-list > *.contact-cylinder {
  opacity: 0;
  transform: perspective(900px) rotateX(82deg) translateY(42px);
  transform-origin: center top;
  filter: blur(5px);
  transition: opacity 1.15s ease, transform 1.15s cubic-bezier(.16,.78,.2,1), filter 1.15s ease;
  transition-delay: var(--contact-delay, 0ms);
}
.contact-list > *.contact-cylinder.visible { opacity: 1; transform: none; filter: none; }
.contact-list a:hover { padding-left: 10px; padding-right: 10px; background: rgba(255,255,255,.45); }
.contact-icon { font-size: 21px; color: var(--brick); }
.contact-list small { display: block; margin-bottom: 7px; color: var(--muted); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; }
.contact-list strong { font-size: 15px; line-height: 1.6; }
.contact-list i { color: var(--brick); font-style: normal; font-size: 20px; }
.opening-hours {
  margin-top: 30px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.46);
  box-shadow: 0 18px 42px rgba(25,27,23,.07);
}
.hours-heading {
  min-height: 92px;
  padding: 20px;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
}
.hours-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: white;
  background: var(--brick);
  border-radius: 50%;
  font-size: 20px;
}
.hours-heading small { display: block; margin-bottom: 5px; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.hours-heading strong { font-size: 13px; }
.hours-status { padding: 7px 10px; color: #415000; background: rgba(217,239,98,.38); border-radius: 999px; font-size: 9px; font-weight: 800; text-transform: uppercase; }
.hours-status.closed { color: #873019; background: rgba(201,87,55,.13); }
.hours-row { min-height: 52px; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); font-size: 12px; }
.hours-row:last-child { border-bottom: 0; }
.hours-row strong { font-size: 12px; }
.hours-row.closed strong { color: var(--brick); }
.hours-row.today { background: rgba(217,239,98,.16); box-shadow: inset 3px 0 var(--lime); }
.contact-note { margin: 30px 0 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.map-wrap { position: relative; min-height: 560px; overflow: hidden; background: #ddd; border: 1px solid rgba(25,27,23,.18); box-shadow: 0 28px 65px rgba(25,27,23,.15); }
.map-wrap::before { content: ""; position: absolute; z-index: 2; inset: 14px; border: 1px solid rgba(255,255,255,.75); pointer-events: none; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 560px; filter: grayscale(1) contrast(.9); }
.map-button { position: absolute; left: 20px; right: 20px; bottom: 20px; min-height: 62px; padding: 0 22px; display: flex; align-items: center; justify-content: space-between; color: white; background: var(--ink); font-size: 12px; font-weight: 800; }
.map-button span { color: var(--lime); font-size: 20px; }

footer { padding: 65px var(--pad) 24px; color: white; background: #11130f; }
.footer-main { padding-bottom: 60px; display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; align-items: start; gap: 40px; }
.footer-logo { display: inline-block; width: max-content; }
.footer-logo img {
  width: 160px;
  filter: invert(1) brightness(3) drop-shadow(0 0 0 rgba(217,239,98,0));
  animation: footerLogoPulse 2.4s ease-in-out infinite;
  transform-origin: center;
}
@keyframes footerLogoPulse {
  0%, 100% { transform: scale(1); filter: invert(1) brightness(3) drop-shadow(0 0 0 rgba(217,239,98,0)); }
  50% { transform: scale(1.055); filter: invert(1) brightness(3) drop-shadow(0 0 12px rgba(217,239,98,.48)); }
}
.footer-main > p { margin: 0; color: rgba(255,255,255,.45); font-size: 13px; line-height: 1.7; }
.footer-main nav { display: grid; gap: 13px; font-size: 12px; }
.footer-main nav a:hover { color: var(--lime); }
.footer-contact { justify-self: end; display: grid; gap: 9px; justify-items: end; color: rgba(255,255,255,.55); font-size: 11px; }
.footer-phone { font-family: "Oswald"; font-size: 25px; color: white; }
.footer-phone span { color: var(--lime); margin-left: 12px; }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.36); font-size: 10px; }
.footer-bottom a { color: rgba(255,255,255,.7); }
.floating-call { display: none; }
.lightbox-image { cursor: zoom-in; }
.lightbox {
  position: fixed;
  z-index: 1200;
  inset: 0;
  padding: clamp(18px, 4vw, 60px);
  display: grid;
  place-items: center;
  background: rgba(8,9,7,.92);
  backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity .3s ease;
}
.lightbox[hidden] { display: none; }
.lightbox.open { opacity: 1; }
.lightbox-frame {
  position: relative;
  width: min(1100px, 100%);
  max-height: calc(100svh - 80px);
  display: grid;
  place-items: center;
  transform: scale(.92) rotate(-1deg);
  transition: transform .4s cubic-bezier(.16,.8,.2,1);
}
.lightbox.open .lightbox-frame { transform: none; }
.lightbox-frame img {
  width: auto;
  max-width: 100%;
  max-height: calc(100svh - 125px);
  object-fit: contain;
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: 0 35px 90px rgba(0,0,0,.55);
}
.lightbox-caption { margin: 14px 0 0; color: rgba(255,255,255,.72); font-size: 12px; text-align: center; }
.lightbox-close {
  position: absolute;
  z-index: 2;
  top: max(14px, env(safe-area-inset-top));
  right: max(14px, env(safe-area-inset-right));
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  color: white;
  background: rgba(255,255,255,.08);
  font-size: 31px;
  line-height: 1;
  cursor: pointer;
}
.lightbox-close:hover { color: var(--ink); background: var(--lime); }
body.lightbox-open { overflow: hidden; }

.reveal { opacity: 0; transform: translateY(42px) scale(.985); filter: blur(5px); transition: opacity .85s cubic-bezier(.2,.7,.2,1), transform .85s cubic-bezier(.2,.7,.2,1), filter .85s ease; transition-delay: var(--reveal-delay, 0ms); }
.reveal.visible { opacity: 1; transform: none; }
.reveal.visible { filter: none; }
.offer-card.reveal {
  opacity: 0;
  filter: blur(3px);
  transform: translateX(-42px) rotateY(-34deg) rotateZ(-2deg);
  transform-origin: left center;
  transition-duration: 1.65s;
  transition-timing-function: cubic-bezier(.12,.72,.18,1);
  transition-delay: var(--tile-delay, 0ms);
}
.offer-card.reveal.visible {
  opacity: 1;
  filter: none;
  transform: none;
}

@media (max-width: 1050px) {
  .site-header { grid-template-columns: 170px 1fr 150px; }
  .offer-grid { grid-template-columns: 1fr 1fr; }
  .offer-card:nth-child(2) { border-right: 1px solid var(--line); }
  .offer-card { min-height: 360px; }
  .offer-card svg { margin: 55px auto 45px; }
  .about { grid-template-columns: 1fr 1fr; gap: 60px; }
}

@media (max-width: 760px) {
  :root { --pad: 22px; }
  body { padding-bottom: 82px; }
  main, section, header, footer { width: 100%; max-width: 100%; }
  img, video, iframe { max-width: 100%; }
  .site-header { height: 76px; padding: 0 20px; display: grid; grid-template-columns: 1fr auto; }
  .brand { display: block; }
  .brand img { width: 126px; }
  .site-header.scrolled {
    height: 76px;
  }
  .site-header.scrolled .brand img {
    width: 88px;
    filter: none;
  }
  .desktop-nav, .header-call { display: none; }
  .menu-toggle { display: grid; gap: 6px; width: 42px; height: 42px; place-content: center; border: 0; color: inherit; background: transparent; cursor: pointer; }
  .menu-toggle span { width: 24px; height: 2px; background: currentColor; transition: .25s; }
  .menu-toggle.active span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle.active span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-nav { position: fixed; inset: 76px 0 auto; width: 100%; max-width: 100vw; padding: 30px 24px; color: var(--ink); background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: 0 20px 45px rgba(0,0,0,.12); }
  .mobile-nav.open { display: grid; gap: 22px; }
  .mobile-nav a { padding-bottom: 12px; border-bottom: 1px solid var(--line); font-weight: 700; text-align: center; }
  .hero { width: 100%; min-height: 790px; height: max(100svh, 790px); overflow: hidden; }
  .hero-shade { background: linear-gradient(90deg, rgba(10,12,9,.82), rgba(10,12,9,.38)), linear-gradient(0deg, rgba(10,12,9,.7), transparent 50%); }
  .hero-content { max-width: 100%; padding: 145px 22px 225px; text-align: left; }
  .hero-content .eyebrow::before { display: inline-block; }
  .hero h1 { font-size: clamp(58px, 18vw, 86px); }
  .hero-copy { max-width: 94%; margin-left: 0; margin-right: 0; font-size: 15px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; width: min(100%, 330px); margin-left: 0; margin-right: 0; gap: 10px; }
  .hero-actions .button { width: 100%; }
  .hero-bottom { display: none; }
  .hero-location {
    left: 22px;
    right: auto;
    bottom: 28px;
    max-width: calc(100% - 44px);
    padding: 12px 14px;
    justify-content: flex-start;
    color: rgba(255,255,255,.82);
    background: rgba(10,12,9,.44);
    border-left: 2px solid var(--lime);
    backdrop-filter: blur(8px);
    text-align: left;
    animation: addressIn .9s .75s cubic-bezier(.2,.7,.2,1) both;
  }
  .hero-location .marker { display: none; }
  .hero-location i { margin-left: auto; }
  .hero-location:hover { transform: translateX(-5px); }
  .video-controls { display: none; }
  .scroll-hint { display: none; }
  .section { width: 100%; padding: 90px 22px; overflow-x: clip; text-align: center; }
  .section .eyebrow::before { display: none; }
  .intro { grid-template-columns: 1fr; }
  .intro-copy { margin-top: 32px; }
  .offer-grid { margin-top: 60px; grid-template-columns: 1fr; }
  .offer-card, .offer-card:nth-child(2) { border-right: 1px solid var(--line); border-bottom: 0; min-height: 330px; }
  .offer-card { text-align: center; }
  .offer-card:last-child { border-bottom: 1px solid var(--line); }
  .image-card { min-height: 420px; }
  .about { grid-template-columns: 1fr; }
  .about-image { height: 540px; }
  .about-image::before { right: 0; }
  .stamp { right: 15px; bottom: -35px; width: 125px; height: 125px; }
  .about-content { width: 100%; max-width: 100%; margin: 30px auto 0; text-align: center; }
  .about-content .eyebrow, .about-content h2, .about-content > p { width: 100%; margin-left: auto; margin-right: auto; text-align: center; }
  .about-content h2 {
    max-width: 100%;
    font-size: clamp(38px, 11.5vw, 48px);
    line-height: .98;
    overflow-wrap: anywhere;
  }
  .about-content .eyebrow {
    padding: 0 8px;
    line-height: 1.55;
  }
  .about-content .about-enter,
  .about-content .about-enter.enter-left,
  .about-content .about-enter.enter-right {
    width: 100%;
    transform: none;
    transform-origin: center;
  }
  .about-content .about-enter.visible {
    transform: none;
  }
  .about-points { grid-template-columns: 1fr; }
  .about-points span { display: flex; align-items: center; justify-content: center; }
  .gallery-heading { grid-template-columns: 1fr; gap: 30px; }
  .gallery-heading > p { margin-left: auto; margin-right: auto; max-width: 520px; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: 440px 300px 190px; }
  .gallery-main { grid-row: auto; }
  .gallery-small { grid-column: auto; }
  .contact { grid-template-columns: 1fr; }
  .contact-details { text-align: center; }
  .contact-list > * {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 9px;
    padding: 22px 12px;
    text-align: center;
  }
  .contact-list i { margin-top: 2px; }
  .opening-hours { text-align: left; }
  .hours-heading { grid-template-columns: 42px 1fr; }
  .hours-status { grid-column: 1 / -1; justify-self: center; }
  .hours-row { text-align: left; }
  .map-wrap, .map-wrap iframe { width: 100%; min-height: 480px; }
  .footer-main { grid-template-columns: 1fr; justify-items: center; }
  .footer-logo { justify-self: center; }
  .footer-main > p { text-align: center; }
  .footer-main nav { justify-items: center; }
  .footer-contact { justify-self: center; justify-items: center; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .floating-call {
    position: fixed;
    z-index: 80;
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    min-width: 174px;
    min-height: 58px;
    padding: 8px 16px 8px 9px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    background: var(--brick);
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 999px;
    box-shadow: 0 14px 38px rgba(83,25,12,.38);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px) scale(.94);
    transition: opacity .35s ease, transform .35s ease;
  }
  .floating-call.visible {
    opacity: 1;
    pointer-events: auto;
    transform: none;
    animation: floatingCallPulse 2.6s .35s ease-in-out infinite;
  }
  .floating-call-icon {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    color: var(--ink);
    background: var(--lime);
    border-radius: 50%;
    font-size: 18px;
  }
  .floating-call small { display: block; margin-bottom: 2px; font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; opacity: .72; }
  .floating-call strong { font-size: 13px; white-space: nowrap; }
  @keyframes floatingCallPulse {
    0%, 100% { transform: translateY(0) scale(1); box-shadow: 0 14px 38px rgba(83,25,12,.38); }
    50% { transform: translateY(-3px) scale(1.02); box-shadow: 0 18px 46px rgba(83,25,12,.5); }
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: clamp(54px, 17vw, 74px); }
  .footer-main nav { grid-template-columns: 1fr 1fr; }
  .footer-contact { margin-top: 8px; }
  .gallery-grid { grid-template-rows: 390px 270px 190px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; filter: none; }
  .site-intro { display: none; }
  .about-enter, .contact-list > *.contact-cylinder { opacity: 1; transform: none; filter: none; }
}
