:root {
  --ink: #070604;
  --paper: #f9f0e5;
  --muted: #c7b29a;
  --gold: #c99645;
  --copper: #d49173;
  --red: #8d2230;
  --line: rgba(249, 240, 229, 0.16);
  --radius-pill: 999px;
  --radius-ui: 26px;
  --radius-card: 32px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--paper);
  background: var(--ink);
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: linear-gradient(180deg, rgba(7, 6, 4, 0.88), rgba(7, 6, 4, 0));
  transition: background 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  border-bottom: 1px solid var(--line);
  border-radius: 0 0 var(--radius-ui) var(--radius-ui);
  background: rgba(7, 6, 4, 0.84);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 190px;
  min-width: 0;
}

.brand-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
}

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

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  color: rgba(249, 240, 229, 0.86);
  font-size: 0.92rem;
  transition: background 180ms ease, color 180ms ease;
}

.site-nav a:hover {
  background: rgba(249, 240, 229, 0.08);
  color: #fff;
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 22;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: rgba(7, 6, 4, 0.38);
  color: var(--paper);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.home-photo-flow {
  background:
    linear-gradient(180deg, rgba(7, 6, 4, 0.08), rgba(7, 6, 4, 0.78) 58%, rgba(7, 6, 4, 0.96) 100%),
    url("assets/images/home-moon-facade.jpg") center top / cover no-repeat;
}

.gateway-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #120e0a;
}

.gateway-bg,
.gateway-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.gateway-bg {
  object-fit: cover;
  opacity: 0;
}

.gateway-shade {
  background:
    radial-gradient(ellipse at center, rgba(7, 6, 4, 0.08), rgba(7, 6, 4, 0.58) 62%, rgba(7, 6, 4, 0.95) 100%),
    linear-gradient(180deg, rgba(7, 6, 4, 0.58), rgba(7, 6, 4, 0.06) 34%, rgba(7, 6, 4, 0.96) 100%);
}

.gateway-copy {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin: 0 clamp(18px, 7vw, 96px) 7svh;
}

.gateway-copy-centered {
  width: min(960px, calc(100% - 48px));
  margin: 0;
  text-align: center;
}

.gateway-hero-logo {
  width: min(440px, 74vw);
  margin: 0 auto 38px;
  filter: drop-shadow(0 8px 36px rgba(0, 0, 0, 0.72));
}

.gateway-copy-centered h1 {
  margin: 0;
  color: var(--paper);
  font-size: clamp(2rem, 4.8vw, 3.9rem);
  font-style: normal;
  font-weight: 300;
  line-height: 1.18;
  text-transform: none;
}

.gateway-copy-centered h1 em {
  color: #e6cf9d;
  font-style: italic;
  font-weight: 400;
}

.gateway-cities {
  margin: 18px 0 0;
  color: rgba(249, 240, 229, 0.66);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.gateway-cities span {
  margin: 0 14px;
  color: var(--gold);
  opacity: 0.7;
}

.gateway-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}

.gateway-actions a {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-pill);
  background: rgba(201, 150, 69, 0.96);
  color: #080705;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.gateway-actions a:last-child {
  background: rgba(7, 6, 4, 0.38);
  color: var(--paper);
}

.gateway-actions a:hover {
  transform: translateY(-2px);
  background: #e6cf9d;
  color: #080705;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(249, 240, 229, 0.58);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.hero-scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 42px;
  margin: 12px auto 0;
  background: linear-gradient(to bottom, rgba(249, 240, 229, 0.62), transparent);
}

.eyebrow,
.sede-card span,
.quick-bar span {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
p,
strong {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5.6rem, 15vw, 14rem);
  font-weight: 500;
  line-height: 0.8;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 8vw, 8rem);
  font-weight: 500;
  line-height: 0.9;
}

p {
  color: rgba(249, 240, 229, 0.78);
  line-height: 1.65;
}

.gateway-copy p:last-child {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(249, 240, 229, 0.9);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.intro-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: clamp(34px, 7vw, 104px);
  align-items: end;
  padding: clamp(70px, 9vw, 132px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 86% 16%, rgba(201, 150, 69, 0.12), transparent 28%),
    #070604;
}

.intro-copy {
  max-width: 980px;
}

.intro-copy h2 {
  max-width: 860px;
}

.intro-copy p:not(.eyebrow) {
  max-width: 760px;
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
}

.intro-visual {
  display: grid;
  gap: 18px;
}

.dish-frame {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(201, 150, 69, 0.28);
  border-radius: var(--radius-card);
  background:
    radial-gradient(circle at 50% 42%, rgba(201, 150, 69, 0.22), rgba(7, 6, 4, 0.96) 68%),
    #0c0907;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.dish-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 45%, transparent 58%, rgba(7, 6, 4, 0.22) 86%, rgba(7, 6, 4, 0.48) 100%),
    linear-gradient(180deg, rgba(201, 150, 69, 0.06), rgba(7, 6, 4, 0.08));
}

.dish-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transform: scale(1.04);
}

.intro-visual .dish-frame {
  aspect-ratio: 4 / 5;
}

.intro-visual p {
  margin: 0;
  color: rgba(249, 240, 229, 0.68);
  font-size: 0.98rem;
}

.sede-panel {
  position: relative;
  padding: clamp(62px, 8vw, 110px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 78% 8%, rgba(201, 150, 69, 0.16), transparent 24%),
    linear-gradient(180deg, #17110c, #120e0b 44%, #080705);
}

.sede-panel.photo-continuation {
  background:
    linear-gradient(180deg, rgba(7, 6, 4, 0.2), rgba(7, 6, 4, 0.78) 30%, rgba(7, 6, 4, 0.94) 100%),
    linear-gradient(90deg, rgba(7, 6, 4, 0.5), rgba(7, 6, 4, 0.22), rgba(7, 6, 4, 0.5));
}

.panel-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
}

.panel-heading .eyebrow {
  margin-bottom: 0;
}

.sede-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.sede-card {
  position: relative;
  min-height: clamp(360px, 42vw, 560px);
  display: grid;
  align-content: end;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: #16110d;
  isolation: isolate;
}

.sede-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms ease, opacity 250ms ease;
}

.sede-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(0deg, rgba(7, 6, 4, 0.9), rgba(7, 6, 4, 0.2) 58%, rgba(7, 6, 4, 0.08)),
    linear-gradient(90deg, rgba(7, 6, 4, 0.45), rgba(7, 6, 4, 0));
}

.sede-card:hover img {
  transform: scale(1.05);
}

.sede-card.soon img {
  opacity: 0.72;
  filter: saturate(0.75);
}

.sede-card strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 500;
  line-height: 0.95;
}

.sede-card em {
  width: max-content;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  margin-top: 22px;
  padding: 0 14px;
  border: 1px solid rgba(249, 240, 229, 0.28);
  border-radius: var(--radius-pill);
  color: rgba(249, 240, 229, 0.9);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sede-card:not(.soon) em {
  border-color: var(--gold);
  background: rgba(201, 150, 69, 0.14);
  color: var(--gold);
}

.quick-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 0 clamp(18px, 5vw, 72px);
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: var(--radius-ui);
  background: #0f0c09;
}

.quick-bar a {
  min-height: 126px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 24px clamp(18px, 4vw, 52px);
  background: #0f0c09;
}

.quick-bar a:first-child {
  border-right: 0;
}

.quick-bar strong {
  font-size: clamp(1.25rem, 2.2vw, 1.9rem);
}

.store-photo-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 122px clamp(18px, 5vw, 72px) clamp(54px, 7vw, 96px);
  background: #070604;
}

.store-bg,
.store-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.store-bg {
  object-fit: cover;
  object-position: center 42%;
  image-rendering: auto;
  filter: brightness(1.04) contrast(1.12) saturate(1.08);
}

.assisi-page .store-bg {
  object-position: center 38%;
}

.store-hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 6, 4, 0.52), rgba(7, 6, 4, 0.08) 44%, rgba(7, 6, 4, 0.48)),
    linear-gradient(0deg, rgba(7, 6, 4, 0.58), rgba(7, 6, 4, 0.12) 58%, rgba(7, 6, 4, 0.34)),
    rgba(201, 150, 69, 0.08);
}

.store-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(460px, 0.9fr);
  gap: clamp(34px, 7vw, 120px);
  align-items: center;
}

.hero-moon-logo {
  display: none;
  width: min(34vw, 520px);
  filter: drop-shadow(0 18px 42px rgba(0, 0, 0, 0.42));
}

.hero-title-block {
  grid-column: 2;
  justify-self: end;
  align-self: end;
  width: min(720px, 48vw);
  max-width: 100%;
}

.hero-title-block h1 {
  color: #fff;
  font-style: italic;
  font-size: clamp(2.25rem, 3.35vw, 4.15rem);
  line-height: 0.96;
  overflow-wrap: normal;
  word-break: normal;
  text-transform: uppercase;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.55);
}

.hero-title-block p:last-child {
  max-width: 680px;
  margin: 22px 0 0;
  color: #fff;
  font-size: clamp(1rem, 1.35vw, 1.35rem);
  font-weight: 650;
  line-height: 1.25;
}

.store-hero.domo-layout {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: end;
  padding: 118px clamp(18px, 5vw, 72px) clamp(52px, 7vw, 96px);
  background:
    radial-gradient(circle at 16% 18%, rgba(201, 150, 69, 0.18), transparent 28%),
    #070604;
}

.store-copy {
  position: relative;
}

.store-copy h1 {
  font-size: clamp(5.4rem, 14vw, 14rem);
}

.store-copy p:last-child {
  max-width: 640px;
  margin: 18px 0 0;
  color: rgba(249, 240, 229, 0.9);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.store-portrait {
  width: 100%;
  height: min(72svh, 780px);
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.service-strip,
.bottom-services {
  display: grid;
  gap: 12px;
  margin: 0 clamp(18px, 5vw, 72px);
  padding: 12px;
  background: rgba(7, 6, 4, 0.58);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  backdrop-filter: blur(10px);
}

.service-strip {
  grid-template-columns: repeat(4, 1fr);
}

.store-page {
  --store-photo: url("assets/images/hero.webp");
}

.terni-page {
  --store-photo: url("assets/images/terni-hero.webp");
}

.assisi-page {
  --store-photo: url("assets/images/assisi-hero.webp");
}

.viterbo-page {
  --store-photo: url("assets/images/viterbo-hero.webp");
}

.store-page .service-strip {
  margin-top: 0;
  background:
    linear-gradient(180deg, rgba(7, 6, 4, 0.28), rgba(7, 6, 4, 0.82)),
    linear-gradient(90deg, rgba(7, 6, 4, 0.6), rgba(7, 6, 4, 0.26), rgba(7, 6, 4, 0.58)),
    var(--store-photo) center bottom / cover no-repeat;
  border-top: 0;
}

.service-strip a,
.bottom-services a {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 24px clamp(18px, 3vw, 34px);
  border: 1px solid rgba(249, 240, 229, 0.08);
  border-radius: calc(var(--radius-card) - 10px);
  background:
    linear-gradient(135deg, rgba(249, 240, 229, 0.045), rgba(201, 150, 69, 0.055)),
    rgba(13, 10, 8, 0.72);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.store-page .service-strip a {
  background:
    linear-gradient(135deg, rgba(249, 240, 229, 0.055), rgba(201, 150, 69, 0.065)),
    rgba(13, 10, 8, 0.64);
  backdrop-filter: blur(12px);
}

.service-strip a:last-child,
.bottom-services a:last-child {
  border-right: 0;
}

.service-strip strong {
  max-width: none;
  color: var(--copper);
  font-size: clamp(1.2rem, 1.55vw, 1.55rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0.02em;
}

.service-strip span {
  color: rgba(249, 240, 229, 0.78);
  font-size: clamp(0.9rem, 1.05vw, 1.02rem);
  font-weight: 650;
}

.experience-section,
.story-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: center;
  padding: clamp(72px, 9vw, 136px) clamp(18px, 5vw, 72px);
  background: #070604;
}

.experience-section p:not(.eyebrow),
.story-section p:not(.eyebrow) {
  max-width: 760px;
  font-size: clamp(1rem, 1.3vw, 1.14rem);
}

.experience-section img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-card);
  background: #fff;
}

.domo-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  padding: 0 clamp(18px, 5vw, 72px) clamp(72px, 9vw, 132px);
  background: #070604;
}

.domo-gallery .dish-frame {
  height: clamp(300px, 34vw, 560px);
}

.domo-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-weave {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  padding: clamp(72px, 9vw, 132px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 18% 24%, rgba(201, 150, 69, 0.12), transparent 26%),
    #070604;
}

.product-weave .dish-frame {
  min-height: 0;
}

.product-weave .weave-tall {
  aspect-ratio: 4 / 5;
  min-height: 0;
}

.product-weave .weave-wide {
  grid-column: 2;
  aspect-ratio: 16 / 10;
  min-height: 0;
}

.weave-copy {
  max-width: 780px;
  padding: clamp(12px, 2vw, 28px) 0;
}

.weave-copy h2 {
  margin-bottom: 26px;
  font-size: clamp(3rem, 5.2vw, 5.8rem);
  line-height: 0.96;
  overflow-wrap: normal;
  word-break: normal;
}

.weave-copy p:not(.eyebrow) {
  max-width: 690px;
  font-size: clamp(1rem, 1.25vw, 1.14rem);
}

.weave-copy-small {
  align-self: start;
  max-width: 680px;
  padding-left: 0;
}

.weave-copy-small h2 {
  max-width: 620px;
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 4.6vw, 5.2rem);
}

.story-section {
  display: block;
  max-width: none;
  padding-top: 0;
}

.story-section h2,
.story-section p {
  max-width: 980px;
}

.bottom-services {
  grid-template-columns: repeat(4, 1fr);
}

.bottom-services a {
  min-height: 104px;
  justify-items: center;
  text-align: center;
  color: rgba(249, 240, 229, 0.86);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bottom-services a:hover,
.service-strip a:hover {
  border-color: rgba(201, 150, 69, 0.55);
  background:
    linear-gradient(135deg, rgba(249, 240, 229, 0.08), rgba(201, 150, 69, 0.12)),
    rgba(18, 14, 11, 0.82);
  color: var(--gold);
  transform: translateY(-2px);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(18px, 5vw, 72px);
  background: #070604;
}

.site-footer p {
  margin: 0;
  color: rgba(249, 240, 229, 0.6);
}

.store-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #050505;
  color: rgba(249, 240, 229, 0.58);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.store-footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.store-footer a {
  color: var(--gold);
  transition: color 180ms ease, border-color 180ms ease;
}

.store-footer a:hover {
  color: #e6cf9d;
}

.instagram-link {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 150, 69, 0.55);
  border-radius: var(--radius-pill);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.instagram-link svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.qoder-home {
  background: #0a0a0a;
  color: #f5f5f0;
  font-weight: 300;
  overflow-x: hidden;
}

.q-nav {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(14px);
  transition: padding 0.3s ease, background 0.3s ease;
}

.q-nav.is-scrolled {
  padding: 12px 40px;
  background: rgba(10, 10, 10, 0.86);
}

.q-nav__logo {
  height: 34px;
  width: auto;
  opacity: 0.95;
}

.q-nav__links {
  display: flex;
  gap: 36px;
  color: #9a9a92;
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.q-nav__links a {
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.q-nav__links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: #c9a96a;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.q-nav__links a:hover {
  color: #c9a96a;
}

.q-nav__links a:hover::after {
  transform: scaleX(1);
}

.q-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 140px 24px 100px;
  text-align: center;
}

.q-hero__bg {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: url("assets/images/home-moon-facade.jpg") center / cover no-repeat;
  filter: brightness(0.42) saturate(1.05);
  will-change: transform;
}

.q-hero__veil {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 0%, rgba(10, 10, 10, 0.5) 60%, #0a0a0a 100%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.55) 0%, transparent 30%, transparent 70%, rgba(10, 10, 10, 0.95) 100%);
}

.q-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 960px;
  animation: qFadeUp 1.4s ease both;
}

.q-hero__logo {
  width: min(440px, 74vw);
  margin: 0 auto 40px;
  filter: drop-shadow(0 6px 36px rgba(0, 0, 0, 0.7));
}

.q-hero__tag {
  margin: 0 0 20px;
  color: #f5f5f0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4.8vw, 58px);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: 0;
}

.q-hero__tag em {
  color: #e6cf9d;
  font-style: italic;
  font-weight: 400;
}

.q-hero__sub {
  margin: 0 0 52px;
  color: #9a9a92;
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.36em;
  text-transform: uppercase;
}

.q-hero__sub span {
  margin: 0 14px;
  color: #c9a96a;
  opacity: 0.62;
}

.q-hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.q-btn {
  position: relative;
  min-width: 270px;
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
  padding: 0 42px;
  border: 1px solid #c9a96a;
  border-radius: var(--radius-pill);
  background: transparent;
  color: #f5f5f0;
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.q-btn::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: #c9a96a;
  transform: translateY(101%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.q-btn:hover,
.q-btn--solid {
  border-color: #c9a96a;
  background: #d4b875;
  color: #0a0a0a;
}

.q-btn:hover::before {
  transform: translateY(0);
}

.q-btn__arrow {
  display: inline-block;
  transition: transform 0.35s ease;
}

.q-btn:hover .q-btn__arrow {
  transform: translateX(4px);
}

.q-hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  color: #9a9a92;
  font-size: 0.63rem;
  font-weight: 650;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  animation: qFadeIn 2s ease 1s both;
}

.q-hero__scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 44px;
  margin: 14px auto 0;
  background: linear-gradient(to bottom, #9a9a92, transparent);
  animation: qScrollLine 2.4s ease-in-out infinite;
}

.q-venues {
  padding: 40px 40px 140px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #0a0a0a;
}

.q-venues__grid {
  max-width: 1320px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0 auto;
}

.q-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-card);
  background: #181818;
  transition: border-color 0.4s ease, transform 0.4s ease;
}

.q-card--link:hover {
  border-color: #e6cf9d;
  transform: translateY(-4px);
}

.q-card__visual {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.q-card__img {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  filter: brightness(0.7) saturate(1.05);
  transition: transform 1.4s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.5s ease;
}

.q-card:hover .q-card__img {
  transform: scale(1.06);
  filter: brightness(0.82) saturate(1.05);
}

.q-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.4) 100%);
}

.q-card__city {
  position: absolute;
  right: 24px;
  bottom: 18px;
  left: 24px;
  margin: 0;
  color: #f5f5f0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 3.8vw, 3.1rem);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.q-card__city small {
  display: block;
  margin-top: 8px;
  color: #e6cf9d;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.28em;
}

.q-card__info {
  min-height: 78px;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.q-card__more {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  color: #c9a96a;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.q-card__more::after {
  content: ">";
  transition: transform 0.35s ease;
}

.q-card__more:hover::after {
  transform: translateX(4px);
}

.q-card__cta {
  width: max-content;
  margin-top: auto;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(154, 154, 146, 0.4);
  color: #9a9a92;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.q-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  padding: 6px 14px;
  border: 1px solid currentColor;
  border-radius: var(--radius-pill);
  font-size: 0.56rem;
  font-weight: 750;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.q-badge--open {
  color: #6ec07a;
  background: rgba(110, 192, 122, 0.08);
}

.q-badge--soon {
  color: #c9a96a;
  background: rgba(201, 169, 106, 0.08);
}

.q-card--soon .q-card__img {
  filter: brightness(0.42) saturate(0.7);
}

.q-card--soon:hover {
  border-color: #c9a96a;
}

.q-footer-mini {
  padding: 32px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #050505;
}

.q-footer-mini__inner {
  max-width: 1280px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  color: #9a9a92;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.q-footer-mini__inner a {
  color: #c9a96a;
}

@keyframes qFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes qFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes qScrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    z-index: 21;
    inset: 0;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 16px;
    background: rgba(7, 6, 4, 0.96);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav a {
    font-size: 1.3rem;
  }

  .panel-heading {
    display: block;
  }

  .panel-heading .eyebrow {
    margin-bottom: 12px;
  }

  .sede-grid {
    grid-template-columns: 1fr 1fr;
  }

  .store-hero-content {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .hero-title-block {
    grid-column: auto;
  }

  .hero-moon-logo {
    width: min(76vw, 520px);
  }

  .store-hero.domo-layout,
  .intro-story,
  .experience-section {
    grid-template-columns: 1fr;
  }

  .bottom-services {
    grid-template-columns: 1fr 1fr;
  }

  .service-strip {
    grid-template-columns: 1fr 1fr;
  }

  .product-weave {
    grid-template-columns: 1fr 1fr;
  }

  .product-weave .weave-wide {
    grid-column: auto;
  }

  .q-venues__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand strong {
    font-size: 0.96rem;
  }

  .brand {
    width: 124px;
  }

  .gateway-hero {
    min-height: 62svh;
  }

  .gateway-shade {
    background:
      linear-gradient(0deg, rgba(7, 6, 4, 0.94), rgba(7, 6, 4, 0.42) 62%, rgba(7, 6, 4, 0.08));
  }

  .gateway-copy {
    margin: 0 18px 42px;
  }

  .intro-story {
    padding-top: 58px;
  }

  .intro-visual img {
    aspect-ratio: 1;
  }

  h1 {
    font-size: clamp(4.2rem, 24vw, 6.2rem);
  }

  h2 {
    font-size: clamp(3rem, 18vw, 4.5rem);
  }

  .sede-grid,
  .quick-bar {
    grid-template-columns: 1fr;
  }

  .sede-card {
    min-height: 390px;
  }

  .quick-bar a:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-strip,
  .domo-gallery,
  .bottom-services {
    grid-template-columns: 1fr;
  }

  .product-weave {
    grid-template-columns: 1fr;
    padding-top: 58px;
  }

  .product-weave .dish-frame,
  .product-weave .weave-tall,
  .product-weave .weave-wide {
    min-height: 0;
  }

  .weave-copy-small {
    padding-left: 0;
  }

  .store-photo-hero {
    min-height: 86svh;
    padding-top: 118px;
    padding-bottom: 48px;
  }

  .hero-title-block h1 {
    font-size: clamp(2.8rem, 13vw, 5rem);
  }

  .hero-title-block p:last-child {
    font-size: clamp(1.05rem, 5vw, 1.45rem);
  }

  .store-hero.domo-layout {
    min-height: auto;
    padding-top: 110px;
  }

  .store-portrait {
    height: 430px;
  }

  .service-strip a,
  .bottom-services a {
    min-height: 104px;
    border-right: 0;
  }

  .service-strip a:last-child,
  .bottom-services a:last-child {
    border-bottom: 1px solid rgba(249, 240, 229, 0.08);
  }

  .site-footer {
    display: grid;
  }

  .store-footer {
    display: grid;
  }

  .store-footer-links {
    flex-wrap: wrap;
  }

  .q-nav,
  .q-nav.is-scrolled {
    padding: 14px 20px;
  }

  .q-nav__links {
    display: none;
  }

  .q-hero {
    padding: 118px 20px 90px;
  }

  .q-hero__logo {
    width: min(320px, 78vw);
    margin-bottom: 30px;
  }

  .q-hero__sub {
    letter-spacing: 0.18em;
  }

  .q-hero__sub span {
    margin: 0 7px;
  }

  .q-btn {
    width: min(100%, 310px);
    justify-content: center;
  }

  .q-venues {
    padding: 30px 20px 90px;
  }

  .q-venues__grid {
    grid-template-columns: 1fr;
  }

  .q-footer-mini {
    padding: 28px 20px;
  }
}

/* ==== Mobile hero title overflow fix ==== */
@media (max-width: 980px) {
  .hero-title-block {
    width: 100% !important;
    max-width: 100% !important;
    justify-self: stretch !important;
  }
  .hero-title-block h1 {
    font-size: clamp(1.9rem, 7.5vw, 3.4rem) !important;
    line-height: 1 !important;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
  }
  .hero-title-block p:last-child {
    font-size: clamp(0.95rem, 3.4vw, 1.2rem) !important;
  }
}
@media (max-width: 680px) {
  .hero-title-block h1 {
    font-size: clamp(1.65rem, 8.5vw, 2.6rem) !important;
  }
  .brand {
    width: 110px !important;
  }
}
