:root {
  --bg: #07111b;
  --bg-soft: rgba(10, 21, 34, 0.78);
  --panel: rgba(11, 22, 35, 0.82);
  --panel-strong: rgba(7, 15, 26, 0.94);
  --line: rgba(255, 255, 255, 0.1);
  --text: #edf6ff;
  --muted: #acc3d8;
  --heading: #ffffff;
  --primary: #ff912f;
  --primary-2: #ffd36f;
  --accent: #44d8c8;
  --accent-2: #8fe8ff;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.3);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: min(1160px, calc(100vw - 2rem));
  --nav-height: 84px;
  --transition: 220ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 145, 47, 0.22), transparent 20%),
    radial-gradient(circle at 85% 10%, rgba(143, 232, 255, 0.16), transparent 18%),
    radial-gradient(circle at 50% 100%, rgba(68, 216, 200, 0.08), transparent 28%),
    linear-gradient(180deg, #07111b 0%, #081420 45%, #091722 100%);
}

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

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

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

.site-shell {
  position: relative;
  isolation: isolate;
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 145, 47, 0.14), transparent 24%),
    linear-gradient(220deg, rgba(68, 216, 200, 0.1), transparent 28%),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02) 55%, transparent 100%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.32));
}

.site-shell::after {
  content: "";
  position: fixed;
  inset: -10% -20%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.22;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 145, 47, 0.18), transparent 22%),
    radial-gradient(circle at 80% 18%, rgba(143, 232, 255, 0.12), transparent 20%),
    radial-gradient(circle at 50% 80%, rgba(255, 100, 189, 0.1), transparent 24%);
  filter: blur(34px);
  animation: backgroundDrift 16s ease-in-out infinite alternate;
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.65) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.65) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 90%);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 6rem 0;
}

.section-alt {
  position: relative;
}

.section-alt::before {
  content: "";
  position: absolute;
  inset: 1.5rem 0;
  z-index: -1;
  border-block: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.008));
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(7, 17, 27, 0.92), rgba(7, 17, 27, 0.55));
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.topbar.scrolled {
  background: rgba(7, 17, 27, 0.9);
  border-color: var(--line);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.navbar {
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.35rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
}

.brand-mark {
  width: 2.9rem;
  height: 2.9rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 20px;
  font-family: "Syne", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #081320;
  background: linear-gradient(135deg, var(--primary-2), var(--primary));
  box-shadow: 0 12px 28px rgba(255, 145, 47, 0.24);
  animation: badgePulse 4.8s ease-in-out infinite;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.brand-copy {
  display: grid;
  gap: 0.12rem;
}

.brand-copy strong,
.section-copy h2,
.section-heading h2,
.hero-copy h1,
.highlight-tile strong,
.mini-card h2,
.shop-top-card h3,
.catalog-card h3,
.feature-card h3,
.location-card h3,
.contact-card h3,
.hero-panel-intro h2 {
  font-family: "Syne", sans-serif;
}

.brand-copy strong {
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.77rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-menu a {
  padding: 0.72rem 1rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  transition: color var(--transition), background var(--transition), transform var(--transition);
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu a.is-active {
  color: var(--heading);
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
  margin-left: 0.55rem;
  color: #091224;
  background: linear-gradient(135deg, #fff2d2, #d5fbff);
  box-shadow: 0 12px 28px rgba(255, 211, 111, 0.18);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  min-height: calc(100vh - var(--nav-height));
  padding: 2.4rem 0 2.1rem;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 2.25rem;
  align-items: stretch;
  position: relative;
}

.floating-emoji {
  display: none;
}

.emoji-one {
  top: -1rem;
  left: 2rem;
}

.emoji-two {
  top: 6rem;
  right: 0.5rem;
  animation-delay: -1.5s;
}

.emoji-three {
  bottom: 4rem;
  left: -0.4rem;
  animation-delay: -2.5s;
}

.emoji-four {
  bottom: 0.2rem;
  right: 12rem;
  animation-delay: -3.5s;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.58rem 0.92rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #dfeeff;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 0 0 7px rgba(255, 145, 47, 0.12);
}

.hero-copy h1 {
  margin: 1.3rem 0 1rem;
  max-width: 11ch;
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.hero-copy h1 span {
  display: inline-block;
  color: #ffdca0;
}

.hero-text,
.hero-note,
.section-copy p,
.section-heading p,
.shop-top-card p,
.catalog-intro,
.location-card p,
.contact-copy p,
.contact-card li,
.feature-card p,
.mini-card p,
.footer p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

.hero-note {
  max-width: 42rem;
  margin-top: 0.2rem;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
  margin: 1.7rem 0 0.4rem;
}

.highlight-tile {
  min-height: 100%;
  padding: 1rem 1rem 1.05rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    rgba(9, 20, 33, 0.82);
  animation: tileFloat 6.5s ease-in-out infinite;
}

.highlight-tile:nth-child(2) {
  animation-delay: -2s;
}

.highlight-tile:nth-child(3) {
  animation-delay: -4s;
}

.highlight-label {
  display: inline-flex;
  margin-bottom: 0.65rem;
  padding: 0.42rem 0.68rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #dceeff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.highlight-tile strong {
  display: block;
  color: var(--heading);
  font-size: 0.98rem;
  line-height: 1.5;
}

.hero-actions,
.contact-buttons,
.location-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-quick-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.15rem;
}

.hero-quick-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.8rem 0.9rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
  color: #e6f3ff;
  font-weight: 700;
  line-height: 1.45;
}

.hero-quick-item i {
  width: 1.9rem;
  height: 1.9rem;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #081320;
  background: linear-gradient(135deg, #ffe08f, #ff9f5c);
  box-shadow: 0 8px 16px rgba(255, 159, 92, 0.18);
  flex-shrink: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  gap: 0.7rem;
  padding: 1rem 1.35rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.button::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -140%;
  width: 65%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transform: skewX(-24deg);
  transition: transform 650ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(320%) skewX(-24deg);
}

.button-primary {
  color: #091224;
  background: linear-gradient(135deg, var(--primary-2), var(--primary));
  box-shadow: 0 16px 34px rgba(255, 145, 47, 0.28);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
}

.button-tertiary {
  border: 1px solid rgba(143, 232, 255, 0.34);
  background: rgba(143, 232, 255, 0.08);
  color: #c8f6ff;
}

.button-tertiary:hover,
.button-tertiary:focus-visible {
  box-shadow: 0 12px 28px rgba(143, 232, 255, 0.12);
}

.hero-stats,
.about-cards,
.shops-top-grid,
.location-grid,
.contact-grid,
.section-grid {
  display: grid;
  gap: 1.2rem;
}

.hero-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.8rem;
}

.stat-card,
.hero-panel,
.feature-card,
.location-card,
.contact-card,
.shop-top-card,
.catalog-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    var(--panel);
  box-shadow: var(--shadow);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.stat-card:hover,
.hero-panel:hover,
.feature-card:hover,
.location-card:hover,
.contact-card:hover,
.shop-top-card:hover,
.catalog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.16);
}

.stat-card {
  padding: 1.3rem 1.2rem;
  animation: cardGlow 5.6s ease-in-out infinite;
}

.stat-card:nth-child(2) {
  animation-delay: -1.8s;
}

.stat-card:nth-child(3) {
  animation-delay: -3.6s;
}

.stat-card strong {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--heading);
}

.stat-card span {
  display: block;
  color: var(--muted);
  line-height: 1.5;
}

.hero-panel {
  padding: 1.75rem;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, rgba(11, 24, 40, 0.94), rgba(9, 19, 31, 0.94));
}

.hero-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 1.3rem 0 1.1rem;
}

.hero-service-card {
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(8, 18, 30, 0.75);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
}

.hero-service-icon {
  width: 2.7rem;
  height: 2.7rem;
  display: grid;
  place-items: center;
  border-radius: 15px;
  margin-bottom: 0.7rem;
  color: #081320;
  background: linear-gradient(135deg, #ffe08f, #ff9f5c);
  box-shadow: 0 10px 20px rgba(255, 159, 92, 0.2);
}

.hero-service-card h3 {
  margin: 0 0 0.5rem;
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  color: var(--heading);
}

.hero-service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.panel-glow {
  position: absolute;
  inset: -3rem auto auto -3rem;
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 211, 111, 0.28), transparent 70%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: #092132;
  background: linear-gradient(135deg, #cff8ef, #b9efff);
  font-weight: 800;
  animation: badgePulse 5s ease-in-out infinite;
}

.hero-panel-intro {
  margin-top: 1.1rem;
}

.hero-panel-intro h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  line-height: 1.08;
}

.hero-panel-intro p {
  margin: 0.8rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.service-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.25rem 0 1.35rem;
}

.service-pill-list span,
.shop-pill-list span {
  padding: 0.54rem 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  color: #e9f5ff;
  font-size: 0.9rem;
}

.panel-cards {
  display: grid;
  gap: 0.9rem;
}

.mini-card {
  display: flex;
  gap: 1rem;
  padding: 1.1rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.mini-card i,
.feature-card i,
.service-icon {
  flex-shrink: 0;
  width: 3.1rem;
  height: 3.1rem;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #081320;
  background: linear-gradient(135deg, #ffe08f, #ff9f5c);
  box-shadow: 0 10px 24px rgba(255, 159, 92, 0.18);
}

.mini-card h2,
.feature-card h3,
.location-card h3,
.contact-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.2rem;
  color: var(--heading);
}

.hero-panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #e8f6ff;
  font-weight: 700;
}

.hero-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #ffe2af;
  font-weight: 700;
}

.trust-strip {
  padding: 1rem 0 0;
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 1rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
}

.trust-items span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.6rem;
  padding: 0.85rem 0.8rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
  color: #d8e9ff;
  text-align: center;
  font-weight: 700;
  animation: trustBob 6s ease-in-out infinite;
}

.trust-items span:nth-child(1) {
  background: linear-gradient(135deg, rgba(255, 145, 47, 0.2), rgba(255, 255, 255, 0.03));
  animation-delay: -0.2s;
}

.trust-items span:nth-child(2) {
  background: linear-gradient(135deg, rgba(68, 216, 200, 0.18), rgba(255, 255, 255, 0.03));
  animation-delay: -1.2s;
}

.trust-items span:nth-child(3) {
  background: linear-gradient(135deg, rgba(143, 232, 255, 0.18), rgba(255, 255, 255, 0.03));
  animation-delay: -2.4s;
}

.trust-items span:nth-child(4) {
  background: linear-gradient(135deg, rgba(255, 125, 205, 0.16), rgba(255, 255, 255, 0.03));
  animation-delay: -3.2s;
}

.trust-items span:nth-child(5) {
  background: linear-gradient(135deg, rgba(255, 211, 111, 0.18), rgba(255, 255, 255, 0.03));
  animation-delay: -4.1s;
}

.shops-section {
  padding-top: 3.8rem;
}

.section-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  align-items: start;
}

.section-copy h2,
.section-heading h2 {
  margin: 1rem 0;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 2rem;
}

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

.feature-card,
.location-card,
.contact-card,
.shop-top-card,
.catalog-card {
  padding: 1.6rem;
}

.feature-card i {
  margin-bottom: 1rem;
}

.shops-top-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.shop-top-card::before,
.catalog-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 8rem;
  height: 8rem;
  background: linear-gradient(135deg, rgba(255, 211, 111, 0.2), rgba(143, 232, 255, 0.08));
  clip-path: polygon(0 0, 100% 0, 0 100%);
  pointer-events: none;
}

.shop-top-card::after,
.catalog-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.08), transparent 75%);
  transform: translateX(-120%);
}

.shop-top-card:hover::after,
.catalog-card:hover::after {
  animation: cardShine 850ms ease;
}

.shop-image-wrap {
  position: relative;
  overflow: hidden;
  margin: -1.6rem -1.6rem 1.25rem;
  aspect-ratio: 16 / 9;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.shop-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.shop-top-card:hover .shop-image-wrap img {
  transform: scale(1.08);
}

.shop-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(7, 15, 26, 0.62));
}

.shop-image-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff4c4;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.shop-top-head {
  position: relative;
  z-index: 1;
}

.shop-badge,
.catalog-topline span {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #e6f2ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.shop-badge {
  margin-bottom: 0.8rem;
}

.shop-top-card h3,
.catalog-card h3 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  line-height: 1.1;
}

.shop-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.3rem 0 1.4rem;
}

.location-links {
  margin-top: 1.2rem;
}

.location-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  font-weight: 800;
  transition: transform var(--transition), background var(--transition);
}

.location-links a:hover,
.location-links a:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
}

.services-shell {
  padding: 1.35rem;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(8, 18, 30, 0.8);
  box-shadow: var(--shadow);
  animation: cardGlow 7s ease-in-out infinite;
}

.gallery-section {
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: 18rem;
  border-radius: 26px;
  border: 2px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
  transform: rotate(var(--tilt, 0deg));
  animation: pulseGlow 5.5s ease-in-out infinite, galleryFloat 9s ease-in-out infinite;
}

.gallery-card:nth-child(1) { --tilt: -1.5deg; }
.gallery-card:nth-child(2) { --tilt: 1deg; animation-delay: -1.1s, -1.1s; }
.gallery-card:nth-child(3) { --tilt: -0.7deg; animation-delay: -2.1s, -2.1s; }
.gallery-card:nth-child(4) { --tilt: 1.1deg; animation-delay: -3.2s, -3.2s; }
.gallery-card:nth-child(5) { --tilt: -1deg; animation-delay: -4.2s, -4.2s; }
.gallery-card:nth-child(6) { --tilt: 1.5deg; animation-delay: -5.1s, -5.1s; }

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 550ms ease, filter 550ms ease;
}

.gallery-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.1);
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(7, 15, 26, 0.74));
}

.gallery-card figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff7dc;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.service-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.service-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3.9rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition), border-color var(--transition);
}

.service-tab:hover,
.service-tab:focus-visible {
  transform: translateY(-2px);
  color: var(--heading);
  border-color: rgba(255, 255, 255, 0.14);
}

.service-tab.is-active {
  color: #092132;
  background: linear-gradient(135deg, #ffe6b1, #bff7f1);
  border-color: transparent;
  box-shadow: 0 18px 32px rgba(255, 211, 111, 0.2);
}

.service-tab.is-active i {
  animation: iconWiggle 1.1s ease;
}

.service-panel[hidden] {
  display: none;
}

.service-panel.is-active {
  animation: panelReveal 520ms ease both;
}

.catalog-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-bottom: 1rem;
}

.catalog-topline strong {
  color: #ffe0b0;
  font-size: 0.96rem;
}

.service-icon {
  margin-bottom: 1rem;
}

.catalog-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1.2rem;
  margin: 1rem 0 0;
  padding: 0;
}

.catalog-list li {
  position: relative;
  padding-left: 1.35rem;
  color: #e7f1ff;
  line-height: 1.6;
}

.catalog-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.location-grid,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.location-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.location-top span {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #d7e9ff;
  font-weight: 700;
  font-size: 0.86rem;
}

.map-frame {
  position: relative;
  overflow: hidden;
  margin-top: 1.1rem;
  aspect-ratio: 16 / 10;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(1.04) contrast(1.02);
}

.contact-section {
  padding-bottom: 6.8rem;
}

.contact-grid {
  align-items: center;
}

.contact-copy {
  max-width: 36rem;
}

.contact-quick {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-quick div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  padding: 1rem 1.1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-quick span {
  color: var(--muted);
  font-weight: 700;
}

.contact-quick a {
  color: var(--heading);
  font-weight: 800;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.95rem;
}

.contact-list li {
  position: relative;
  padding-left: 1.5rem;
}

.contact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.footer {
  padding: 1.6rem 0 2.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-inner strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

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

.footer-credit {
  max-width: 29rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(140deg, rgba(255, 145, 47, 0.14), rgba(143, 232, 255, 0.08)),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.footer-credit-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.45rem;
  padding: 0.32rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #e9f7ff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-author {
  margin-inline: 0.2rem;
  color: #fff4cf;
  font-weight: 800;
  transition: color var(--transition);
}

.footer-author:hover {
  color: #ffffff;
}

.footer-author-contact {
  display: inline-flex;
  align-items: center;
  margin-left: 0.45rem;
  padding: 0.2rem 0.58rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #d8edff;
  font-size: 0.84rem;
  font-weight: 700;
}

.footer a {
  color: #ffe0b3;
}

.scroll-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1200;
  width: 3.35rem;
  height: 3.35rem;
  border: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary-2), var(--primary));
  color: #071120;
  font-size: 1rem;
  box-shadow: 0 18px 30px rgba(255, 145, 47, 0.28);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.9rem);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  animation: scrollTopBounce 1.8s ease-in-out infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
  transition-delay: var(--delay, 0s);
}

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

@keyframes floatSticker {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-14px) rotate(8deg);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
  }
  50% {
    box-shadow: 0 28px 54px rgba(255, 145, 47, 0.18);
  }
}

@keyframes backgroundDrift {
  0% {
    transform: translate3d(-2%, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(2%, -3%, 0) scale(1.04);
  }
}

@keyframes badgePulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 12px 28px rgba(255, 145, 47, 0.24);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 16px 32px rgba(255, 145, 47, 0.34);
  }
}

@keyframes tileFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes cardGlow {
  0%,
  100% {
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
  }
  50% {
    border-color: rgba(255, 211, 111, 0.18);
    box-shadow: 0 28px 56px rgba(255, 145, 47, 0.18);
  }
}

@keyframes trustBob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes galleryFloat {
  0%,
  100% {
    transform: translateY(0) rotate(var(--tilt, 0deg));
  }
  50% {
    transform: translateY(-10px) rotate(calc(var(--tilt, 0deg) + 0.4deg));
  }
}

@keyframes cardShine {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}

@keyframes panelReveal {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes iconWiggle {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }
  25% {
    transform: rotate(-12deg) scale(1.08);
  }
  50% {
    transform: rotate(10deg) scale(1.08);
  }
  75% {
    transform: rotate(-6deg) scale(1.04);
  }
}

@keyframes scrollTopBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* Pro UI polish layer */
body {
  background:
    radial-gradient(circle at 10% -5%, rgba(255, 174, 87, 0.2), transparent 22%),
    radial-gradient(circle at 92% 6%, rgba(118, 226, 255, 0.17), transparent 26%),
    radial-gradient(circle at 50% 110%, rgba(82, 232, 204, 0.11), transparent 32%),
    linear-gradient(180deg, #050d16 0%, #071220 42%, #081724 100%);
}

.topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(5, 13, 22, 0.9), rgba(5, 13, 22, 0.58));
}

.nav-menu a {
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.45rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after,
.nav-menu a.is-active::after {
  transform: scaleX(1);
}

.section {
  padding: 6.4rem 0;
}

.hero-copy h1 {
  max-width: 12ch;
  letter-spacing: -0.045em;
}

.hero-text,
.hero-note {
  max-width: 60ch;
}

.section-copy h2,
.section-heading h2 {
  max-width: 18ch;
  letter-spacing: -0.035em;
}

.services-shell,
.stat-card,
.hero-panel,
.feature-card,
.location-card,
.contact-card,
.shop-top-card,
.catalog-card {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.shop-top-card,
.catalog-card,
.feature-card,
.location-card,
.contact-card {
  backdrop-filter: blur(8px);
}

.button {
  letter-spacing: 0.01em;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
}

.button-primary {
  box-shadow:
    0 18px 34px rgba(255, 145, 47, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.button-secondary {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.gallery-card,
.photo-card,
.shop-image-wrap {
  border-color: rgba(255, 255, 255, 0.12);
}

.gallery-card figcaption,
.photo-card figcaption,
.shop-image-badge {
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.footer {
  padding: 2rem 0 2.6rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.03));
}

.footer-inner {
  padding-top: 0.4rem;
}

.footer-credit {
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(130deg, rgba(255, 145, 47, 0.18), rgba(143, 232, 255, 0.12)),
    rgba(255, 255, 255, 0.04);
}

@media (max-width: 1080px) {
  .hero-layout,
  .section-grid,
  .contact-grid,
  .location-grid,
  .shops-top-grid {
    grid-template-columns: 1fr;
  }

  .hero-highlights,
  .trust-items,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .emoji-two,
  .emoji-three,
  .emoji-four {
    display: none;
  }

  .trust-items span {
    animation: none;
  }

  .catalog-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 840px) {
  :root {
    --nav-height: 74px;
  }

  .section {
    padding: 4.8rem 0;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-menu {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.6rem);
    display: grid;
    padding: 0.9rem;
    border-radius: 24px;
    background: rgba(7, 17, 27, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  }

  .nav-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-menu a {
    width: 100%;
  }

  .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding: 2.2rem 0 1.6rem;
  }

  .hero-layout {
    gap: 1.5rem;
  }

  .hero-stats,
  .about-cards,
  .hero-highlights,
  .hero-quick-grid,
  .service-tabs,
  .trust-items,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .footer-credit {
    max-width: 100%;
    width: 100%;
  }

  .footer-note {
    text-align: left;
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(100vw - 1.2rem, 100%);
  }

  .hero-copy h1 {
    max-width: 9ch;
    font-size: clamp(2.25rem, 10vw, 3.25rem);
    line-height: 0.98;
  }

  .hero-text,
  .hero-note {
    font-size: 0.96rem;
    line-height: 1.68;
  }

  .highlight-tile {
    padding: 0.9rem;
  }

  .hero-panel {
    padding: 1.15rem;
  }

  .eyebrow,
  .section-tag,
  .button,
  .location-links a,
  .contact-quick div,
  .service-tab {
    width: 100%;
    justify-content: center;
  }

  .section-copy h2,
  .section-heading h2 {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
  }

  .hero-panel,
  .feature-card,
  .location-card,
  .contact-card,
  .stat-card,
  .shop-top-card,
  .catalog-card,
  .services-shell {
    border-radius: 24px;
  }

  .floating-emoji {
    display: none;
  }

  .gallery-card,
  .highlight-tile,
  .stat-card,
  .services-shell,
  .scroll-top.is-visible {
    animation: none;
  }

  .mini-card,
  .location-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .shop-image-wrap {
    margin: -1.6rem -1.6rem 1rem;
  }

  .location-top {
    gap: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0ms !important;
    transition-delay: 0ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
