:root {
  --black: #050505;
  --charcoal: #121313;
  --graphite: #202222;
  --steel: #8f9692;
  --mist: #f5f5f2;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.14);
  --dark-line: rgba(5, 5, 5, 0.12);
  --sage: #6f8071;
  --deep-sage: #3f5549;
  --brown: #8a6a4b;
  --soft-brown: #b89b78;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  background: var(--black);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 10%, rgba(184, 155, 120, 0.22), transparent 30%),
    radial-gradient(circle at 78% 8%, rgba(111, 128, 113, 0.25), transparent 34%),
    linear-gradient(180deg, #090a09 0%, #20221f 44%, #efeee9 44%, #f7f7f3 100%);
  color: var(--white);
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img,
iframe {
  display: block;
  width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.intro-loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  gap: 18px;
  align-content: center;
  background: var(--black);
  transition: opacity 700ms ease, visibility 700ms ease;
}

.intro-loader img {
  width: min(220px, 56vw);
  filter: drop-shadow(0 22px 44px rgba(255, 255, 255, 0.14));
  animation: logo-arrive 1200ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.intro-loader span {
  color: var(--mist);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intro-seen .intro-loader,
.intro-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.scroll-logo {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: min(820px, 70vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0) rotateX(var(--emblem-x, 0deg)) rotateY(var(--emblem-turn, 0deg)) scale(var(--emblem-scale, 1));
  transform-style: preserve-3d;
  opacity: var(--emblem-opacity, 0.78);
  transition: opacity 180ms ease, transform 80ms linear;
}

.kinetic-logo {
  --emblem-turn: 0deg;
  --emblem-x: 0deg;
  --emblem-scale: 1;
  --emblem-opacity: 0.78;
}

.floating-logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 30px;
  filter:
    saturate(1.08)
    contrast(1.05)
    brightness(1.06)
    drop-shadow(0 42px 90px rgba(0, 0, 0, 0.48));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(5, 5, 5, 0.36);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: background 240ms ease, border-color 240ms ease;
}

.site-header.is-scrolled,
body.nav-open .site-header {
  background: rgba(5, 5, 5, 0.84);
  border-color: rgba(255, 255, 255, 0.1);
}

.nav {
  width: min(100% - 32px, var(--max));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 900;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.nav-menu a,
.site-footer nav a {
  position: relative;
  padding: 11px 12px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
  transition: text-shadow 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  opacity: 1;
  color: rgba(255, 255, 255, 0.76);
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.72), 0 0 26px rgba(111, 128, 113, 0.5);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.language-switch {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.lang-btn {
  width: 38px;
  height: 34px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 900;
}

.lang-btn:hover,
.lang-btn:focus-visible,
.lang-btn.is-active {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.13);
}

.hero,
.section-block,

.contact-info-section {
  position: relative;
  z-index: 1;
  padding: 42px 24px 74px;
  background: var(--mist);
}

.contact-info-card {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(280px, auto);
  gap: 24px;
  align-items: center;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    radial-gradient(circle at 20% 20%, rgba(184, 155, 120, 0.14), transparent 34%),
    linear-gradient(135deg, #111211, #1f211f 58%, #2e3830);
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-info-card > img {
  width: 112px;
  height: 112px;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.32));
}

.contact-info-card h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.04;
}

.contact-info-card p:not(.eyebrow) {
  max-width: 560px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.contact-info-links {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.contact-info-links a {
  color: var(--soft-brown);
  font-weight: 850;
  text-align: right;
}

.contact-info-links a:hover,
.contact-info-links a:focus-visible {
  text-shadow: 0 0 18px rgba(184, 155, 120, 0.5);
}

.site-footer {
  position: relative;
  z-index: 1;
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 112px 24px 70px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  background: linear-gradient(135deg, #090a09 0%, #161815 42%, #273024 100%);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.78) 0%, rgba(5, 5, 5, 0.52) 36%, rgba(5, 5, 5, 0.22) 62%, rgba(5, 5, 5, 0.56) 100%),
    radial-gradient(circle at 50% 45%, rgba(184, 155, 120, 0.18), transparent 40%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 0;
  height: 32%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.36));
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.7fr);
  gap: 44px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--soft-brown);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.section-head h2 {
  margin: 0;
  font-weight: 900;
  line-height: 1.03;
}

.hero h1 {
  max-width: 610px;
  font-size: clamp(3rem, 7.4vw, 5.8rem);
  text-shadow: 0 18px 52px rgba(0, 0, 0, 0.38);
}

.hero p:not(.eyebrow),
.section-head p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.07rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button,
.map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 850;
}

.button-primary,
.map-link {
  background: var(--deep-sage);
  color: var(--white);
  box-shadow: 0 18px 34px rgba(63, 85, 73, 0.28);
}

.button-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.hero-lux-card {
  justify-self: end;
  width: min(300px, 82vw);
  min-height: 330px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  background: rgba(5, 5, 5, 0.34);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.hero-lux-card img {
  width: min(210px, 62vw);
  object-fit: contain;
  border-radius: 8px;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.45));
}

.hero-lux-card span {
  max-width: 220px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  text-align: center;
}

.interactive {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease, filter 220ms ease;
  will-change: transform;
}

.interactive:hover,
.interactive:focus-visible,
.price-card:focus,
.about-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.28);
  filter: brightness(1.08);
}

.button.interactive:hover,
.map-link.interactive:hover,
.price-card.interactive:hover,
.feedback-card.interactive:hover,
.shop-photo.interactive:hover,
.about-card.interactive:hover,
.contact-card.interactive:hover {
  animation: hover-float 1800ms ease-in-out infinite;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28), 0 0 34px rgba(111, 128, 113, 0.18);
}


.walkin-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 10%, rgba(184, 155, 120, 0.18), transparent 30%),
    radial-gradient(circle at 88% 28%, rgba(111, 128, 113, 0.18), transparent 34%),
    linear-gradient(135deg, #f7f6f1 0%, #ece8de 52%, #dde1d7 100%);
  color: var(--black);
}

.walkin-shell {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  align-items: stretch;
  gap: 24px;
}

.walkin-copy,
.walkin-card {
  border: 1px solid rgba(5, 5, 5, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 64px rgba(5, 5, 5, 0.12);
  backdrop-filter: blur(12px);
}

.walkin-copy {
  padding: clamp(30px, 5vw, 52px);
}

.walkin-copy h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  line-height: 1.02;
}

.walkin-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px 0 0;
  color: #535a56;
  font-size: 1.08rem;
  line-height: 1.68;
}

.walkin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button-ghost.dark {
  border-color: rgba(5, 5, 5, 0.13);
  background: rgba(255, 255, 255, 0.72);
  color: var(--black);
}

.walkin-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(110px, 0.38fr) 1fr;
  gap: 22px;
  align-items: center;
  padding: clamp(24px, 4vw, 38px);
  overflow: hidden;
}

.walkin-card::before {
  content: "";
  position: absolute;
  right: -16%;
  top: -22%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 155, 120, 0.34), transparent 62%);
}

.walkin-card img {
  position: relative;
  z-index: 1;
  width: min(150px, 100%);
  object-fit: contain;
  filter: drop-shadow(0 20px 32px rgba(0, 0, 0, 0.24));
}

.walkin-points {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.walkin-points article {
  padding: 16px;
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.68);
}

.walkin-points strong,
.walkin-points span {
  display: block;
}

.walkin-points strong {
  color: var(--deep-sage);
}

.walkin-points span {
  margin-top: 5px;
  color: #535a56;
  line-height: 1.45;
}

.phone-link {
  color: var(--soft-brown);
  font-weight: 850;
}

.section-block {
  padding: 92px 24px;
}

.section-head {
  width: min(100%, var(--max));
  margin: 0 auto 34px;
}

.section-head h2 {
  max-width: 820px;
  font-size: clamp(2.1rem, 4.4vw, 3.6rem);
}


/* Light section text contrast */
.section-block:not(.photo-section):not(.feedback-section):not(.location-section):not(.contact-section) .section-head h2 {
  color: var(--black);
}

.section-block:not(.photo-section):not(.feedback-section):not(.location-section):not(.contact-section) .section-head p:not(.eyebrow) {
  color: #535a56;
}

.section-block:not(.photo-section):not(.feedback-section):not(.location-section):not(.contact-section) .section-head .eyebrow {
  color: var(--brown);
}

.photo-section .section-head h2,
.feedback-section .section-head h2,
.location-section .section-head h2 {
  color: var(--white);
}

.photo-section .section-head p:not(.eyebrow),
.feedback-section .section-head p:not(.eyebrow),
.location-section .section-head p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.photo-section,
.feedback-section,
.location-section {
  background: var(--charcoal);
}

.photo-section {
  padding-top: 64px;
}

.shop-gallery,
.about-grid,
.pricing-grid,
.feedback-grid,
.location-grid,
.contact-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.shop-gallery {
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
}

.shop-photo {
  position: relative;
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(145deg, #171818, #0b0b0b);
  box-shadow: var(--shadow);
}

.shop-photo > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}

.shop-photo.has-image .photo-fallback {
  opacity: 0;
}

.shop-photo.is-placeholder > img {
  display: none;
}

.shop-photo figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 4;
  padding: 9px 11px;
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.72);
  color: var(--white);
  font-weight: 850;
  backdrop-filter: blur(12px);
}

.photo-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  padding: 28px;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.photo-fallback img {
  width: 130px;
  opacity: 0.74;
}

.about-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-card,
.price-card,
.feedback-card,
.hours-panel,
.contact-form,
.contact-card {
  border-radius: 10px;
  border: 1px solid var(--dark-line);
  background: rgba(255, 255, 255, 0.9);
  color: var(--black);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}

.about-card,
.feedback-card {
  padding: 28px;
}

.about-card span {
  color: var(--deep-sage);
  font-weight: 900;
}

.about-card h3,
.price-card h3,
.hours-panel h3,
.contact-card h3 {
  margin: 16px 0 10px;
  font-size: 1.45rem;
}

.about-card p,
.price-card p,
.feedback-card p,
.contact-card p {
  color: #525956;
  line-height: 1.65;
}

.pricing-section,
.contact-section {
  background: var(--mist);
  color: var(--black);
}

.pricing-section .section-head p,
.contact-section .section-head p {
  color: #5d625f;
}

.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.price-card {
  min-height: 250px;
  padding: 26px;
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(63, 85, 73, 0.13), rgba(138, 106, 75, 0.15), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity 220ms ease;
}

.price-card:hover::before,
.price-card:focus::before {
  opacity: 1;
}

.price-card > * {
  position: relative;
  z-index: 1;
}

.price-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.price-top span {
  padding: 7px 9px;
  border-radius: 8px;
  background: rgba(63, 85, 73, 0.12);
  color: var(--deep-sage);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-top strong {
  color: var(--black);
  font-size: 1.5rem;
  white-space: nowrap;
}

.kids-card {
  background: #f9f7ef;
}

.feedback-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feedback-section .section-head p {
  color: rgba(255, 255, 255, 0.74);
}

.feedback-card {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: var(--line);
  box-shadow: none;
}

.feedback-card span {
  color: var(--soft-brown);
  font-weight: 900;
}

.feedback-card p {
  color: rgba(255, 255, 255, 0.78);
}

.location-section .section-head p {
  color: rgba(255, 255, 255, 0.74);
}

.location-grid,
.contact-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
}

.map-panel {
  min-height: 500px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #0d0d0d;
}

.map-panel iframe {
  height: 100%;
  min-height: 500px;
  border: 0;
  filter: grayscale(0.8) contrast(1.04);
}

.hours-panel {
  padding: 30px;
}

.hours-list {
  margin: 22px 0;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid var(--dark-line);
}

.hours-list dt {
  font-weight: 850;
}

.hours-list dd {
  margin: 0;
  color: #525956;
  text-align: right;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #525956;
  font-weight: 800;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--dark-line);
  border-radius: 8px;
  background: var(--white);
  color: var(--black);
  padding: 13px 14px;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--deep-sage);
  box-shadow: 0 0 0 4px rgba(63, 85, 73, 0.16);
}

.contact-card {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 32px;
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--line);
}

.contact-card img {
  width: 140px;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-card a,
.phone-pending {
  color: var(--soft-brown);
  font-weight: 850;
}

.phone-pending {
  display: inline-block;
}

.site-footer {
  padding: 26px 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  background: #050505;
  color: rgba(255, 255, 255, 0.76);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.site-footer img {
  width: 56px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.site-footer p {
  margin: 0;
  text-align: right;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 180;
  max-width: min(360px, calc(100% - 44px));
  padding: 14px 16px;
  border-radius: 8px;
  background: var(--black);
  color: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

.interactive.reveal,
.price-card.reveal,
.feedback-card.reveal,
.shop-photo.reveal,
.about-card.reveal,
.contact-card.reveal {
  transition: opacity 650ms ease, transform 650ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease, filter 220ms ease;
}

@keyframes logo-arrive {
  from {
    opacity: 0;
    transform: scale(0.84) rotateY(-28deg);
  }

  to {
    opacity: 1;
    transform: scale(1) rotateY(0deg);
  }
}

@keyframes hover-float {
  0%, 100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -4px;
  }
}

@media (max-width: 1080px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-gallery,
  .about-grid,
  .feedback-grid,
  .hero-inner,
  .walkin-shell,
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-logo-card {
    justify-self: start;
    width: min(300px, 75vw);
  }
}

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

  .nav-menu {
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    display: grid;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(5, 5, 5, 0.94);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.nav-open .nav-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .language-switch {
    margin-left: auto;
  }

  .brand span {
    display: none;
  }
}

@media (max-width: 680px) {
  .nav {
    width: min(100% - 20px, var(--max));
    gap: 10px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .hero,
  .section-block {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    padding-top: 100px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 3.1rem;
  }

  .pricing-grid,
  .contact-form,
  .walkin-card {
    grid-template-columns: 1fr;
  }

  .walkin-copy,
  .walkin-card {
    padding: 24px;
  }

  .contact-form .full {
    grid-column: auto;
  }

  .hours-list div,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hours-list div {
    flex-direction: column;
    gap: 4px;
  }

  .hours-list dd,
  .site-footer p {
    text-align: left;
  }

  .contact-info-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .contact-info-card {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .contact-info-links {
    justify-items: start;
  }

  .contact-info-links a {
    text-align: left;
  }

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

  .scroll-logo {
    width: min(620px, 118vw);
    opacity: var(--emblem-opacity, 0.58);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Mobile hero logo simplification */
@media (max-width: 680px) {
  .hero-lux-card {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 100%;
  }
}
