:root {
  --gold: #d8aa1f;
  --gold-bright: #ffdf5a;
  --gold-neon: #ffd33d;
  --gold-glow: rgba(255, 211, 61, 0.36);
  --gold-soft: rgba(216, 170, 31, 0.15);
  --gold-deep: #7b5200;
  --bg: #080705;
  --bg2: #11100c;
  --bg3: #1b1710;
  --card-bg: #15130e;
  --card-border: #4b3d18;
  --text: #f8f2df;
  --text-muted: #c8b987;
  --text-dim: #8d7f54;
  --white: #ffffff;
  --font-head: Georgia, serif;
  --font-body: "Segoe UI", system-ui, sans-serif;
  --radius: 10px;
  --transition: 0.25s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 18px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(216, 170, 31, 0.22) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 110%, rgba(255, 211, 61, 0.11) 0%, transparent 60%);
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 2rem;
  border-bottom: 1px solid var(--card-border);
  background: rgba(8, 7, 5, 0.94);
  backdrop-filter: blur(12px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.12em;
  color: var(--white);
  font-size: 1.425rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.logo-img {
  width: 62px;
  height: 62px;
  margin-right: 0.55rem;
  object-fit: contain;
  filter: drop-shadow(0 0 12px var(--gold-glow));
}

.logo sup {
  color: var(--gold-neon);
  font-size: 0.68em;
  text-shadow: 0 0 14px var(--gold-glow);
}

nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

nav a {
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color var(--transition);
}

nav a:hover,
nav a:focus-visible {
  color: var(--gold-neon);
}

.nav-cta {
  border: 1px solid var(--gold);
  border-radius: 20px;
  padding: 0.42rem 0.95rem;
  background: rgba(216, 170, 31, 0.16);
  color: var(--gold-neon) !important;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--gold);
  color: var(--white) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border: 0;
  background: none;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold-neon);
  box-shadow: 0 0 10px var(--gold-glow);
}

#hero {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 5rem 2rem 3.5rem;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("https://images.unsplash.com/photo-1604719312566-8912e9227c6a?w=1600&q=80&auto=format&fit=crop");
  background-position: center;
  background-size: cover;
  filter: brightness(0.18) saturate(0.72);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 7, 5, 0.38), var(--bg)),
    radial-gradient(ellipse 70% 50% at 50% 10%, rgba(216, 170, 31, 0.22), transparent 72%);
}

.hero-glow {
  position: absolute;
  top: 25%;
  left: 50%;
  z-index: 1;
  width: min(720px, 90vw);
  height: 360px;
  border-radius: 999px;
  background: radial-gradient(ellipse, var(--gold-glow), transparent 68%);
  transform: translateX(-50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.hero-tag,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.35rem;
  border: 1px solid rgba(255, 211, 61, 0.34);
  border-radius: 20px;
  padding: 0.35rem 1rem;
  background: rgba(255, 211, 61, 0.07);
  color: var(--gold-neon);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-title {
  margin-bottom: 1.2rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: clamp(3rem, 8vw, 5.4rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.hero-title sup {
  color: var(--gold-neon);
  font-size: 0.45em;
  text-shadow: 0 0 30px var(--gold-glow), 0 0 60px rgba(255, 211, 61, 0.18);
}

.hero-subtitle {
  margin-bottom: 0.7rem;
  color: var(--text);
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  font-weight: 650;
}

.hero-tagline {
  max-width: 620px;
  margin: 0 auto 2rem;
  color: var(--text-muted);
  font-size: clamp(1rem, 2.3vw, 1.2rem);
  line-height: 1.65;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 2rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(216, 170, 31, 0.34);
  border-radius: 20px;
  padding: 0.45rem 1.2rem;
  background: rgba(216, 170, 31, 0.12);
  color: var(--gold-neon);
  font-size: 0.9rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6dc86d;
  box-shadow: 0 0 10px rgba(109, 200, 109, 0.65);
  animation: pulse 1.5s infinite;
}

.status-dot.closed {
  background: var(--gold-neon);
  box-shadow: 0 0 12px var(--gold-glow);
  animation: none;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn-primary,
.btn-secondary,
.directions-btn,
.stand-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0.78rem 1.35rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.btn-primary,
.directions-btn {
  border: 0;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold));
  color: var(--white);
  box-shadow: 0 4px 14px rgba(216, 170, 31, 0.3);
}

.btn-primary:hover,
.btn-primary:focus-visible,
.directions-btn:hover,
.directions-btn:focus-visible {
  background: linear-gradient(135deg, var(--gold), var(--gold-neon));
  box-shadow: 0 6px 22px rgba(255, 211, 61, 0.44);
  transform: translateY(-1px);
}

.btn-secondary,
.stand-back {
  border: 1px solid var(--gold);
  background: rgba(216, 170, 31, 0.1);
  color: var(--gold-neon);
}

.btn-secondary:hover,
.btn-secondary:focus-visible,
.stand-back:hover,
.stand-back:focus-visible {
  background: rgba(216, 170, 31, 0.18);
  transform: translateY(-1px);
}

.location-block .directions-btn {
  margin-top: 12px;
}

.location-block .review-btn {
  margin-left: 10px;
  border: 1px solid var(--gold);
  background: rgba(216, 170, 31, 0.1);
  color: var(--gold-neon);
  box-shadow: none;
}

.location-block .review-btn:hover,
.location-block .review-btn:focus-visible {
  background: rgba(216, 170, 31, 0.18);
  box-shadow: 0 6px 22px rgba(255, 211, 61, 0.24);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-dim);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-scroll::after {
  content: "↓";
  color: var(--gold-neon);
  font-size: 1rem;
}

#rayons,
#hours {
  position: relative;
  z-index: 1;
  padding: 5rem 2rem;
  background: var(--bg2);
}

#services,
.stand-detail-section {
  position: relative;
  z-index: 1;
  padding: 5rem 2rem;
  background: var(--bg);
}

.section-header {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-title {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.section-note {
  max-width: 560px;
  margin: 0.8rem auto 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.stands-grid,
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stands-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: min(1500px, calc(100vw - 4rem));
}

.about-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.owner-card,
.shop-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  background: var(--card-bg);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 211, 61, 0.08);
}

.owner-card::before,
.shop-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 45%, rgba(8, 7, 5, 0.86)),
    radial-gradient(ellipse at 50% 0%, rgba(255, 211, 61, 0.18), transparent 58%);
}

.owner-card img,
.shop-card img {
  display: block;
  width: 100%;
  object-fit: cover;
  filter: saturate(0.92) brightness(0.92);
}

.owner-card img {
  aspect-ratio: 4 / 5;
  object-position: center;
}

.shop-card {
  align-self: start;
}

.shop-card img {
  aspect-ratio: 16 / 9;
  object-position: center;
}

.owner-card figcaption,
.shop-card figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  color: var(--gold-neon);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-copy {
  display: grid;
  grid-row: span 2;
  gap: 1rem;
}

.about-copy .section-label {
  width: fit-content;
  margin-bottom: 0.1rem;
}

.section-header .section-label,
.about-copy .section-label,
.stand-hero .section-label {
  font-size: clamp(1.08rem, 2.21vw, 1.47rem);
  letter-spacing: 0.18em;
}

.gallery-label {
  font-size: clamp(1.08rem, 2.21vw, 1.47rem);
  letter-spacing: 0.18em;
}

.about-copy .section-title {
  max-width: 13ch;
  font-size: clamp(2.4rem, 6vw, 4.7rem);
  line-height: 0.98;
}

.about-copy p {
  max-width: 680px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.about-copy .about-lead {
  color: var(--text);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  font-weight: 750;
  line-height: 1.55;
}

.about-points {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: none;
  margin-top: 0.65rem;
}

.stand-card,
.service-item,
.hours-block,
.location-block,
.stand-panel,
.stand-gallery figure {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  background: var(--card-bg);
}

.stand-card {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.stand-card::before,
.service-item::before,
.stand-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.stand-card:hover,
.stand-card:focus-visible {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(216, 170, 31, 0.22), 0 0 0 1px rgba(255, 211, 61, 0.1);
  outline: none;
  transform: translateY(-4px);
}

.stand-card:hover::before,
.stand-card:focus-visible::before,
.service-item:hover::before,
.stand-panel:hover::before {
  opacity: 1;
}

.stand-img {
  display: block;
  width: 100%;
  height: clamp(260px, 27vw, 360px);
  object-fit: cover;
  filter: saturate(0.9) brightness(0.78);
  transition: filter var(--transition);
}

.stand-card:hover .stand-img,
.stand-card:focus-visible .stand-img {
  filter: saturate(1.05) brightness(0.96);
}

.stand-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.55rem;
}

.stand-icon {
  font-size: 1.55rem;
}

.stand-name {
  width: fit-content;
  color: transparent;
  background:
    linear-gradient(105deg, #7b5200 0%, #ffef8b 20%, #d8aa1f 44%, #fff7bc 58%, #a56f05 100%);
  background-clip: text;
  -webkit-background-clip: text;
  filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.65)) drop-shadow(0 0 12px rgba(255, 211, 61, 0.25));
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(2.25rem, 4.1vw, 3.75rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.stand-desc,
.service-text p,
.stand-panel p,
.stand-panel li,
.address-lines {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.stand-tag {
  display: inline-block;
  width: fit-content;
  margin-top: auto;
  border: 1px solid rgba(216, 170, 31, 0.38);
  border-radius: 4px;
  padding: 0.28rem 0.62rem;
  background: rgba(216, 170, 31, 0.12);
  color: var(--gold-neon);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.photo-credit {
  max-width: 1200px;
  margin: 0.85rem auto 0;
  color: var(--text-dim);
  font-size: 0.72rem;
  text-align: right;
}

.photo-credit a {
  color: inherit;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.4rem 1.2rem;
  transition: border-color var(--transition);
}

.service-item:hover {
  border-color: var(--gold);
}

.service-icon {
  flex-shrink: 0;
  font-size: 1.75rem;
}

.service-text h4,
.hours-block h3,
.location-block h3,
.stand-panel h2,
.stand-gallery-title,
.footer-col h4 {
  margin-bottom: 0.85rem;
  color: var(--gold-neon);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hours-inner,
.stand-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.hours-block,
.location-block,
.stand-panel {
  padding: 2rem;
}

.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(58, 58, 85, 0.7);
  padding: 0.65rem 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.hours-row:last-child {
  border-bottom: 0;
}

.hours-row .time,
.address-lines strong,
.footer-open {
  color: var(--gold-neon) !important;
}

.big-hours {
  margin-bottom: 1.5rem;
  text-align: center;
}

.big-hours .time-display {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--white);
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  text-shadow: 0 0 20px rgba(255, 211, 61, 0.28);
}

.big-hours .time-label {
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-placeholder,
.google-map {
  height: 200px;
  width: 100%;
  overflow: hidden;
  margin-bottom: 1.2rem;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: rgba(216, 170, 31, 0.07);
}

.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.google-map {
  display: block;
  min-height: 280px;
  filter: invert(0.9) hue-rotate(180deg) saturate(0.72) brightness(0.78) contrast(1.08);
}

.map-icon {
  font-size: 2rem;
}

.map-small {
  color: var(--text-dim);
  font-size: 0.76rem;
}

footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--card-border);
  padding: 2.5rem 2rem 2rem;
  background: rgba(8, 7, 5, 0.9);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 1.8rem;
}

.footer-brand .logo {
  margin-bottom: 0.8rem;
}

.footer-brand p,
.footer-col p,
.footer-col a,
.legal-col button {
  color: var(--text-dim);
  font-size: 0.82rem;
  line-height: 1.8;
  text-decoration: none;
}

.footer-col a,
.legal-col button {
  display: block;
}

.legal-col button {
  width: fit-content;
  border: 0;
  padding: 0;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.footer-col a:hover,
.footer-col a:focus-visible,
.legal-col button:hover,
.legal-col button:focus-visible {
  color: var(--gold-neon);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--card-border);
  padding-top: 1.25rem;
  color: var(--text-dim);
  font-size: 0.78rem;
}

.stand-page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  background: var(--bg2);
}

.stand-hero {
  position: relative;
  min-height: 68vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 5rem 2rem;
}

.stand-hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  filter: brightness(0.28) saturate(0.92);
}

.stand-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 7, 5, 0.96), rgba(8, 7, 5, 0.48)),
    radial-gradient(ellipse 70% 50% at 18% 30%, rgba(216, 170, 31, 0.22), transparent 68%);
}

.stand-hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.stand-back {
  margin-bottom: 1.4rem;
}

.stand-hero h1 {
  margin-bottom: 1rem;
  color: var(--white);
  font-size: clamp(2.7rem, 8vw, 5.4rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.stand-hero p:not(.section-label) {
  max-width: 620px;
  color: var(--text-muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.7;
}

.stand-panel ul {
  display: grid;
  gap: 0.65rem;
  list-style: none;
}

.stand-panel li::before {
  content: "› ";
  color: var(--gold-neon);
  font-size: 1.15em;
}

.stand-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stand-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  cursor: zoom-in;
  filter: saturate(0.82) brightness(0.88);
}

.stand-gallery figcaption {
  padding: 0.9rem 1rem;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.photo-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 34px);
}

.photo-modal[hidden] {
  display: none;
}

.photo-modal-scrim {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(12px);
  cursor: zoom-out;
}

.photo-modal-card {
  position: relative;
  width: min(1120px, 100%);
  max-height: min(86vh, 900px);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(216, 170, 31, 0.1), rgba(216, 170, 31, 0.02)),
    var(--card-bg);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.62), 0 0 0 1px rgba(255, 211, 61, 0.08);
}

.photo-modal-image {
  width: 100%;
  max-height: calc(86vh - 86px);
  object-fit: contain;
  background: #030302;
}

.photo-modal-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-top: 1px solid var(--card-border);
  color: var(--text);
  font-size: 0.95rem;
}

.photo-modal-count {
  flex-shrink: 0;
  color: var(--gold-neon);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.photo-modal-close,
.photo-modal-arrow {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 211, 61, 0.42);
  background: rgba(8, 7, 5, 0.78);
  color: var(--gold-neon);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.photo-modal-close:hover,
.photo-modal-arrow:hover {
  background: rgba(216, 170, 31, 0.18);
  transform: translateY(-1px);
}

.photo-modal-close {
  top: 14px;
  right: 14px;
  min-width: 42px;
  height: 42px;
  border-radius: 999px;
  font-size: 1.35rem;
}

.photo-modal-arrow {
  top: 50%;
  width: 48px;
  height: 60px;
  border-radius: 12px;
  font-size: 2rem;
  transform: translateY(-50%);
}

.photo-modal-arrow:hover {
  transform: translateY(calc(-50% - 1px));
}

.photo-modal-prev {
  left: 14px;
}

.photo-modal-next {
  right: 14px;
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 1001;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 34px);
}

.legal-modal[hidden] {
  display: none;
}

.legal-modal-scrim {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(12px);
  cursor: zoom-out;
}

.legal-modal-card {
  position: relative;
  width: min(860px, 100%);
  max-height: 86vh;
  overflow: auto;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: clamp(1.35rem, 3vw, 2.15rem);
  background:
    linear-gradient(180deg, rgba(216, 170, 31, 0.11), rgba(216, 170, 31, 0.02)),
    var(--card-bg);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.62), 0 0 0 1px rgba(255, 211, 61, 0.08);
}

.legal-modal-close {
  position: sticky;
  top: 0;
  z-index: 2;
  float: right;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  margin-left: 1rem;
  border: 1px solid rgba(255, 211, 61, 0.42);
  border-radius: 999px;
  background: rgba(8, 7, 5, 0.82);
  color: var(--gold-neon);
  font-size: 1.35rem;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.legal-modal-close:hover,
.legal-modal-close:focus-visible {
  background: rgba(216, 170, 31, 0.18);
  transform: translateY(-1px);
}

.legal-modal-label {
  margin-bottom: 1rem;
  font-size: 0.86rem;
}

.legal-modal-card h2 {
  margin-bottom: 1.2rem;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.legal-modal-content {
  display: grid;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.legal-modal-content h3 {
  margin-top: 0.45rem;
  color: var(--gold-neon);
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-modal-content strong {
  color: var(--text);
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.48;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  header {
    padding: 0 1.25rem;
  }

  .logo {
    font-size: 0.95rem;
  }

  .logo-img {
    width: 54px;
    height: 54px;
  }

  nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 1rem;
    border-bottom: 1px solid var(--card-border);
    padding: 1.3rem 1.25rem;
    background: rgba(8, 7, 5, 0.98);
  }

  nav.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  #hero {
    min-height: calc(100vh - 76px);
    padding: 3.5rem 1.25rem 3rem;
  }

  #rayons,
  #services,
  #hours,
  .stand-detail-section {
    padding: 3.75rem 1.25rem;
  }

  .hero-title {
    font-size: clamp(2.6rem, 15vw, 4.4rem);
  }

  .hero-tag,
  .section-label {
    font-size: 0.68rem;
    letter-spacing: 0.11em;
  }

  .section-header .section-label,
  .about-copy .section-label,
  .stand-hero .section-label,
  .gallery-label {
    font-size: clamp(0.95rem, 5.2vw, 1.18rem);
    letter-spacing: 0.12em;
  }

  .hours-inner,
  .about-section,
  .stands-grid,
  .stand-detail-grid,
  .footer-inner,
  .stand-gallery {
    grid-template-columns: 1fr;
  }

  .about-copy .section-title {
    max-width: none;
  }

  .about-copy {
    grid-row: auto;
  }

  .about-points {
    grid-template-columns: 1fr;
  }

  .owner-card img {
    aspect-ratio: 4 / 4.35;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .google-map {
    min-height: 240px;
  }

  .photo-modal {
    padding: 10px;
  }

  .photo-modal-card {
    max-height: 88vh;
  }

  .photo-modal-image {
    max-height: calc(88vh - 94px);
  }

  .photo-modal-arrow {
    width: 42px;
    height: 52px;
    font-size: 1.6rem;
  }

  .photo-modal-caption {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .legal-modal {
    padding: 10px;
  }

  .legal-modal-card {
    max-height: 88vh;
    padding: 1.15rem;
  }

  .legal-modal-label {
    font-size: 0.72rem;
  }
}
