:root {
  --bg: #dddfe2;
  --bg-deep: #cfd3d8;
  --bg-soft: #eff1f3;
  --panel: rgba(255, 255, 255, 0.8);
  --panel-strong: rgba(255, 255, 255, 0.9);
  --panel-dark: rgba(34, 36, 41, 0.88);
  --text: #121317;
  --muted: #4d535c;
  --line: rgba(36, 40, 46, 0.12);
  --line-strong: rgba(36, 40, 46, 0.22);
  --red: #b30419;
  --red-bright: #eb2026;
  --gold: #f5dcb8;
  --gold-deep: #ddbb8b;
  --graphite: #3f444d;
  --shadow-soft: 0 22px 48px rgba(15, 20, 28, 0.09);
  --shadow-strong: 0 30px 90px rgba(15, 20, 28, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(245, 220, 184, 0.34), transparent 24%),
    radial-gradient(circle at top right, rgba(179, 4, 25, 0.08), transparent 26%),
    linear-gradient(180deg, #ebedf0 0%, #d9dde1 54%, #d2d6db 100%);
  color: var(--text);
  font-family: "Helvetica Neue", Helvetica, Arial, "Roboto", sans-serif;
}

body.is-scroll-locked {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 22%);
  pointer-events: none;
}

:focus-visible {
  outline: 3px solid rgba(179, 4, 25, 0.85);
  outline-offset: 3px;
}

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

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

p,
li {
  margin: 0;
  line-height: 1.72;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, "Roboto", sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.page-shell {
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto 0;
}

.page-shell-legal {
  margin-top: 28px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  padding: 12px 16px;
  background: #ffffff;
  color: var(--text);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-soft);
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 12px;
}

.info-strip,
.info-strip-inner,
.topbar,
.nav,
.hero,
.hero-actions,
.editorial-grid,
.contact-panel,
.contact-actions {
  display: flex;
}

.info-strip {
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
  min-height: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(27, 29, 33, 0.96), rgba(19, 20, 24, 0.98)),
    rgba(20, 20, 22, 0.96);
  backdrop-filter: blur(16px);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  letter-spacing: 0.01em;
}

.info-strip-inner {
  align-items: center;
  justify-content: center;
  gap: 22px;
  width: min(1220px, calc(100% - 36px));
  min-height: 28px;
  margin: 0 auto;
}

.info-strip a:hover,
.info-strip a:focus-visible {
  color: var(--gold);
}

.info-strip a,
.contact-info-item a,
.site-footer a,
.legal-card a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.14em;
}

.info-strip a {
  color: rgba(255, 255, 255, 0.94);
}

.topbar {
  --topbar-progress: 0;
  position: sticky;
  top: 28px;
  z-index: 30;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100vw;
  min-height: calc(84px - (22px * var(--topbar-progress)));
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding:
    calc(10px - (6px * var(--topbar-progress)))
    max(18px, calc(50vw - 610px));
  margin-bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.18)),
    rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(34px) saturate(1.2);
  -webkit-backdrop-filter: blur(34px) saturate(1.2);
  box-shadow: 0 18px 42px rgba(20, 24, 29, 0.08);
  isolation: isolate;
  will-change: min-height, padding, background, box-shadow;
  transform: translateZ(0);
  transition:
    min-height 120ms linear,
    padding 120ms linear,
    box-shadow 120ms linear,
    background 120ms linear;
}

.topbar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 42%);
  pointer-events: none;
}

.topbar {
  box-shadow:
    0 calc(18px - (6px * var(--topbar-progress)))
    calc(42px - (16px * var(--topbar-progress)))
    rgba(20, 24, 29, 0.08);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, calc(0.34 + (0.08 * var(--topbar-progress)))),
      rgba(255, 255, 255, calc(0.18 + (0.04 * var(--topbar-progress))))
    ),
    rgba(255, 255, 255, calc(0.14 + (0.02 * var(--topbar-progress))));
}

.brand img {
  width: min(210px, 36vw);
  height: auto;
}

.nav {
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.12)),
    rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.26);
  transition: background 260ms ease;
}

.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 12px;
  color: var(--graphite);
  font-size: 0.9rem;
  font-weight: 600;
  transition:
    background 220ms ease,
    color 220ms ease;
}

.nav a::after {
  content: "";
  position: absolute;
  inset: auto 10px 8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--red), rgba(245, 220, 184, 0.92), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.28);
}

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

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.12)),
    rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.language-switcher-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--graphite);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    background 220ms ease,
    color 220ms ease;
}

.language-switcher-link:hover,
.language-switcher-link:focus-visible {
  background: rgba(255, 255, 255, 0.28);
  color: var(--text);
}

.language-switcher-link.is-active {
  background: linear-gradient(135deg, #d11224, var(--red));
  color: #ffffff;
  box-shadow: 0 10px 18px rgba(179, 4, 25, 0.18);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.62)),
    rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 6px auto;
  background: var(--text);
}

.hero,
.contact-panel {
  gap: 28px;
}

.hero {
  position: relative;
  display: block;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 28px 0 auto auto;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(245, 220, 184, 0.7), rgba(245, 220, 184, 0));
  filter: blur(10px);
  opacity: 0.7;
  pointer-events: none;
}

.hero-stage {
  position: relative;
  min-height: clamp(500px, 68vw, 720px);
  overflow: hidden;
}

.hero-stage-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero-stage-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 22, 25, 0.62) 0%, rgba(20, 22, 25, 0.42) 34%, rgba(20, 22, 25, 0.08) 64%, rgba(20, 22, 25, 0.04) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(20, 22, 25, 0.18));
}

.hero-copy {
  position: absolute;
  left: max(18px, calc(50vw - 610px));
  bottom: clamp(24px, 5vw, 54px);
  z-index: 2;
  max-width: min(560px, calc(100% - 40px));
  padding: 18px 20px 20px;
  background: linear-gradient(180deg, rgba(20, 22, 25, 0.16), rgba(20, 22, 25, 0.28));
  backdrop-filter: blur(8px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, rgba(179, 4, 25, 0.15), var(--red));
}

.hero h1 {
  max-width: 10.5ch;
  color: #ffffff;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.92;
  text-wrap: balance;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

html[lang="hu"] .hero-copy {
  max-width: min(620px, calc(100% - 40px));
}

html[lang="hu"] .hero h1 {
  max-width: 11.4ch;
  font-size: clamp(2.45rem, 4.35vw, 4.3rem);
}

@media (min-width: 1180px) {
  html[lang="hu"] .hero-copy {
    width: min(612px, calc(100% - 40px));
    max-width: none;
  }
}

.hero-text {
  max-width: 46ch;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
}

.hero .eyebrow::before {
  background: linear-gradient(90deg, rgba(245, 220, 184, 0.2), rgba(245, 220, 184, 0.92));
}

.hero-actions {
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease,
    color 220ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, #d11224, var(--red));
  color: #fff;
  box-shadow: 0 14px 26px rgba(179, 4, 25, 0.22);
}

.button-secondary {
  border: 1px solid rgba(63, 68, 77, 0.14);
  background: rgba(255, 255, 255, 0.68);
  color: var(--graphite);
  backdrop-filter: blur(14px);
}

.contest-popup {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 28px 18px;
}

.contest-popup[hidden] {
  display: none;
}

.contest-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(34, 30, 25, 0.24);
  backdrop-filter: blur(14px);
}

.contest-popup-panel {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100vw - 36px));
  padding: 30px;
  border: 1px solid rgba(181, 129, 44, 0.18);
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(245, 220, 184, 0.58), transparent 34%),
    radial-gradient(circle at bottom right, rgba(179, 4, 25, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(248, 242, 234, 0.96));
  color: var(--text);
  box-shadow: 0 30px 80px rgba(36, 28, 19, 0.16);
  overflow: hidden;
}

.contest-popup-panel::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 29px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  pointer-events: none;
}

.contest-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(181, 129, 44, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--graphite);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  transition:
    background 220ms ease,
    transform 220ms ease,
    border-color 220ms ease;
}

.contest-popup-close:hover,
.contest-popup-close:focus-visible {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(181, 129, 44, 0.34);
  transform: translateY(-1px);
}

.contest-popup-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 10px;
}

.contest-popup-kicker {
  margin-bottom: 10px;
  color: #a26d21;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.contest-popup-script {
  margin-bottom: 6px;
  color: #b5812c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.5vw, 2.1rem);
  font-style: italic;
  letter-spacing: 0.01em;
}

.contest-popup h2 {
  max-width: 10ch;
  font-size: clamp(2.6rem, 5.8vw, 4.9rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.contest-popup-lead {
  max-width: 32ch;
  margin-top: 18px;
  color: rgba(18, 19, 23, 0.78);
  font-size: 1.04rem;
  line-height: 1.65;
}

.contest-popup-points {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.contest-popup-points li {
  position: relative;
  padding-left: 18px;
  color: rgba(18, 19, 23, 0.76);
}

.contest-popup-points li::before {
  content: "";
  position: absolute;
  top: 0.72rem;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d5a24a, #b5812c);
  box-shadow:
    0 0 0 6px rgba(213, 162, 74, 0.14),
    0 4px 10px rgba(181, 129, 44, 0.18);
}

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

.contest-popup-footnote {
  margin-top: 18px;
  color: rgba(18, 19, 23, 0.52);
  font-size: 0.86rem;
}

.hero-stage-image,
.editorial-image img,
.contact-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding-top: 76px;
  scroll-margin-top: 132px;
}

.section-band {
  position: relative;
  isolation: isolate;
  padding-top: 62px;
  padding-bottom: 62px;
}

.section-band::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  z-index: -2;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  border-bottom: 1px solid rgba(18, 19, 23, 0.06);
}

.section-band::after {
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  pointer-events: none;
}

.section-band-store::before {
  background:
    linear-gradient(180deg, rgba(250, 250, 250, 0.86), rgba(236, 239, 242, 0.92)),
    rgba(255, 255, 255, 0.5);
}

.section-band-store::after {
  background: linear-gradient(120deg, rgba(245, 220, 184, 0.22), transparent 24%, transparent 72%, rgba(179, 4, 25, 0.05));
}

.section-band-light::before {
  background:
    linear-gradient(180deg, rgba(241, 243, 245, 0.92), rgba(229, 233, 237, 0.96)),
    rgba(255, 255, 255, 0.46);
}

.section-band-light::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 16%, transparent 84%, rgba(255, 255, 255, 0.12));
}

.section-band-service::before {
  background:
    radial-gradient(circle at 12% 24%, rgba(255, 255, 255, 0.42), transparent 20%),
    linear-gradient(180deg, rgba(233, 237, 241, 0.96), rgba(218, 224, 230, 0.98)),
    rgba(255, 255, 255, 0.44);
}

.section-band-service::after {
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.22), transparent 26%, transparent 68%, rgba(179, 4, 25, 0.05)),
    radial-gradient(circle at 86% 18%, rgba(245, 220, 184, 0.18), transparent 22%);
}

.section-band-jewelry::before {
  background:
    radial-gradient(circle at 84% 18%, rgba(245, 220, 184, 0.26), transparent 18%),
    linear-gradient(180deg, rgba(240, 236, 232, 0.98), rgba(231, 226, 221, 0.98)),
    rgba(255, 255, 255, 0.4);
}

.section-band-jewelry::after {
  background:
    linear-gradient(120deg, rgba(245, 220, 184, 0.18), transparent 28%, transparent 72%, rgba(122, 96, 70, 0.08)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 22%);
}

.section-band-soft::before {
  background:
    linear-gradient(180deg, rgba(229, 232, 236, 0.94), rgba(215, 220, 226, 0.96)),
    rgba(255, 255, 255, 0.28);
}

.section-band-quote::before {
  background:
    linear-gradient(180deg, rgba(44, 47, 54, 0.96), rgba(31, 34, 39, 0.98)),
    rgba(20, 20, 22, 0.9);
}

.section-band-quote::after {
  background:
    radial-gradient(circle at 18% 20%, rgba(245, 220, 184, 0.16), transparent 24%),
    linear-gradient(120deg, rgba(179, 4, 25, 0.08), transparent 38%, transparent 72%, rgba(245, 220, 184, 0.08));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2,
.contact-panel h2 {
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  line-height: 0.94;
  text-wrap: balance;
}

.founder-quote-section {
  padding-top: 56px;
  padding-bottom: 56px;
}

.founder-quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.8fr);
  grid-template-areas:
    "intro media"
    "copy media";
  gap: 28px;
  align-items: start;
}

.founder-quote-intro {
  grid-area: intro;
}

.founder-quote-copy {
  grid-area: copy;
  color: rgba(255, 255, 255, 0.92);
}

.founder-quote-section .eyebrow {
  color: var(--gold);
}

.founder-quote-section .eyebrow::before {
  background: linear-gradient(90deg, rgba(245, 220, 184, 0.12), var(--gold));
}

.founder-quote-intro h2 {
  max-width: 12ch;
  color: #ffffff;
  font-size: clamp(2rem, 3.2vw, 3.3rem);
  line-height: 0.92;
}

.founder-quote {
  margin: 20px 0 0;
}

.founder-quote p {
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.02rem, 1.6vw, 1.3rem);
  line-height: 1.44;
}

.founder-quote p::before {
  content: "“";
  display: block;
  margin-bottom: 8px;
  color: rgba(245, 220, 184, 0.9);
  font-size: 4.4rem;
  line-height: 0.7;
}

.founder-signature {
  margin-top: 20px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.founder-signature span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.founder-quote-media {
  grid-area: media;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
}

.founder-quote-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(21, 22, 26, 0.02), rgba(21, 22, 26, 0.16));
}

.founder-quote-media img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
}

.store-block-head {
  display: block;
  margin-bottom: 18px;
}

.store-block {
  position: relative;
}

.store-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 34px;
  max-width: 980px;
  margin-bottom: 30px;
  padding: 16px 0 0;
  border-top: 1px solid rgba(63, 68, 77, 0.16);
}

.store-meta-item {
  position: relative;
  min-width: 0;
  padding: 0;
  border-top: 0;
}

.store-meta-item::before {
  content: none;
}

.store-meta-label {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.store-meta-item p {
  color: var(--graphite);
  line-height: 1.6;
  font-size: 0.98rem;
}

.store-hours-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
}

.store-hours-inline span {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}

.store-hours-inline span:not(:last-child)::after {
  content: "";
  display: block;
  width: 18px;
  height: 1px;
  margin-left: 6px;
  background: rgba(63, 68, 77, 0.22);
}

.store-hours-inline strong {
  font-weight: 600;
  color: var(--text);
}

.store-contest-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-top: 14px;
  padding: 0 14px;
  border: 1px solid rgba(181, 129, 44, 0.26);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(245, 220, 184, 0.42), rgba(245, 220, 184, 0.2)),
    rgba(255, 255, 255, 0.72);
  color: #9b661f;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(181, 129, 44, 0.08);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    color 220ms ease;
}

.store-contest-pill:hover,
.store-contest-pill:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(181, 129, 44, 0.42);
  color: #7f5318;
  box-shadow: 0 16px 28px rgba(181, 129, 44, 0.12);
}

.store-showcase {
  display: block;
}

.store-map,
.store-signature,
.editorial-image img,
.contact-photo-card-bottom {
  border: 1px solid rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow-soft);
}

.store-map {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.64);
}

.store-map iframe {
  display: block;
  width: 100%;
  min-height: 100%;
  border: 0;
  filter: grayscale(1) contrast(1.04) brightness(1.02);
}

.store-signature {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.65);
}

.store-signature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
}

.store-signature::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 19, 23, 0.02) 0%, rgba(18, 19, 23, 0.56) 100%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.15), transparent 28%);
}

.store-signature-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: min(460px, 100%);
  margin-left: auto;
  padding: 24px 28px 22px;
  color: #fff;
  text-align: left;
}

.store-signature-copy h3 {
  max-width: 12ch;
  margin-bottom: 12px;
  font-size: clamp(1.6rem, 2.2vw, 2.3rem);
  line-height: 0.96;
}

.store-signature-copy p {
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.88);
}

.editorial-section {
  padding-top: 28px;
}

.editorial-grid {
  position: relative;
  gap: 46px;
  align-items: center;
}

.editorial-intro {
  display: none;
}

.editorial-section-reverse .editorial-grid {
  flex-direction: row-reverse;
}

.editorial-image,
.editorial-copy {
  flex: 1 1 0;
}

.editorial-image {
  position: relative;
}

.editorial-image::before {
  content: "";
  position: absolute;
  inset: -18px auto auto -20px;
  width: 160px;
  height: 160px;
  border: 0;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(245, 220, 184, 0.34), rgba(245, 220, 184, 0));
  filter: blur(10px);
  z-index: -1;
}

.editorial-image img {
  aspect-ratio: 4 / 4.6;
  background: rgba(255, 255, 255, 0.66);
}

.editorial-copy {
  max-width: 520px;
}

.section-band-jewelry .editorial-image::before {
  background: radial-gradient(circle, rgba(245, 220, 184, 0.28), rgba(245, 220, 184, 0));
}

.section-band-jewelry .editorial-image img {
  aspect-ratio: 4 / 3.5;
}

.section-band-service .editorial-image::before {
  background: radial-gradient(circle, rgba(179, 4, 25, 0.16), rgba(179, 4, 25, 0));
}

.editorial-copy h2 {
  font-size: clamp(1.95rem, 2.8vw, 3rem);
  line-height: 0.93;
  text-wrap: balance;
}

.editorial-copy > p:last-of-type {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1rem;
}

.service-credentials {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(63, 68, 77, 0.14);
}

.service-credentials-label {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.service-credentials-brands {
  margin-top: 10px;
  color: var(--text);
  font-size: 1.06rem;
  font-weight: 600;
  line-height: 1.6;
}

.service-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.service-link {
  color: var(--graphite);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.14em;
}

.feature-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.feature-list li {
  padding: 10px 0 10px 14px;
  border-left: 2px solid var(--red);
  border-bottom: 1px solid rgba(63, 68, 77, 0.08);
  color: var(--text);
}

.contact-section {
  padding-bottom: 0;
}

.contact-map-shell {
  position: relative;
  min-height: 520px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  border-bottom: 1px solid rgba(18, 19, 23, 0.08);
  background: #d7dbe0;
  overflow: hidden;
}

.contact-section {
  position: relative;
}

.contact-map-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.contact-map-embed {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.contact-map-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(236, 239, 242, 0.92) 0%, rgba(236, 239, 242, 0.84) 24%, rgba(236, 239, 242, 0.12) 55%, rgba(236, 239, 242, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
}

.contact-panel-wrap {
  position: relative;
  z-index: 2;
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto;
}

.contact-panel {
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  width: min(560px, 100%);
  margin: 42px 0;
  padding: 34px;
  border: 0;
  background:
    linear-gradient(180deg, rgba(244, 246, 248, 0.88), rgba(244, 246, 248, 0.66)),
    rgba(244, 246, 248, 0.5);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(18, 19, 23, 0.1);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 20px;
  margin-top: 18px;
}

.contact-info-item {
  padding-top: 16px;
  border-top: 1px solid rgba(63, 68, 77, 0.16);
}

.contact-info-item span {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-info-item p,
.contact-info-item a {
  color: var(--graphite);
}

.contact-info-item a {
  font-weight: 600;
}

.contact-nav-actions {
  display: none;
}

.contact-photo-card-bottom {
  overflow: hidden;
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.contact-photo-card img {
  aspect-ratio: 16 / 8;
}

.contact-actions {
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100vw;
  margin-top: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 12px max(18px, calc(50vw - 610px));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(27, 29, 33, 0.98), rgba(19, 20, 24, 1)),
    rgba(20, 20, 22, 0.98);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

.footer-link-contest {
  color: var(--gold) !important;
}

.footer-link-contest:hover,
.footer-link-contest:focus-visible {
  color: #fff3da !important;
}

.legal-page {
  padding-top: 32px;
}

.legal-card {
  max-width: 840px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.64)),
    rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
}

.legal-card h1 {
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 0.95;
}

.legal-card h2 {
  margin-top: 32px;
  margin-bottom: 12px;
  font-size: 1.45rem;
  line-height: 1.05;
}

.legal-card p + p {
  margin-top: 14px;
}

.legal-list {
  margin: 0;
  padding-left: 20px;
}

.legal-list li + li {
  margin-top: 8px;
}

.legal-note {
  padding: 14px 16px;
  border-left: 4px solid var(--red);
  background: rgba(179, 4, 25, 0.06);
  font-weight: 600;
}

.utility-section {
  padding-top: 54px;
  padding-bottom: 54px;
}

.utility-grid,
.steps-grid {
  display: grid;
  gap: 20px;
}

.utility-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px;
  margin-top: 22px;
}

.utility-card,
.article-card,
.article-summary-card,
.step-card,
.cta-band,
.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.18)),
    rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 36px rgba(15, 20, 28, 0.04);
  backdrop-filter: blur(12px);
}

.utility-card,
.step-card,
.article-card,
.article-summary-card {
  padding: 24px;
}

.utility-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.utility-section .utility-card {
  padding: 22px 0 10px;
  border: 0;
  border-top: 1px solid rgba(63, 68, 77, 0.16);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  gap: 22px;
}

.utility-card-kicker {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.utility-card .button {
  margin-top: 14px;
}

.utility-card h3,
.step-card h3,
.article-card h2,
.cta-band h2 {
  font-size: clamp(1.5rem, 2.2vw, 2.3rem);
  line-height: 0.98;
}

.utility-card p:last-of-type,
.step-card p,
.article-card p,
.article-intro,
.faq-answer p,
.faq-answer li {
  color: var(--muted);
}

.article-page {
  display: grid;
  gap: 26px;
}

.faq-page {
  gap: 22px;
}

.article-intro-block {
  max-width: 760px;
  padding-top: 10px;
}

.article-intro-block h1 {
  max-width: 13ch;
  font-size: clamp(2.5rem, 4.2vw, 4.4rem);
  line-height: 0.93;
}

.article-intro {
  max-width: 58ch;
  margin-top: 22px;
  font-size: 1rem;
}

.article-intro-note {
  margin-top: 12px;
  color: var(--muted);
}

.article-feature-list {
  margin-top: 10px;
}

.article-feature-list li a {
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.faq-hero {
  display: grid;
  gap: 22px;
}

.faq-hero-copy {
  max-width: 760px;
}

.faq-hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  line-height: 0.93;
}

.faq-quick-grid,
.faq-snapshot {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.faq-quick-card,
.faq-snapshot-card {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.64)),
    rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
}

.faq-quick-card {
  color: inherit;
  text-decoration: none;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

.faq-quick-card:hover,
.faq-quick-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(179, 4, 25, 0.2);
}

.faq-quick-card h2,
.faq-snapshot-card h2 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.02;
}

.faq-quick-card p,
.faq-snapshot-card p:last-child,
.faq-section-intro {
  margin-top: 10px;
  color: var(--muted);
}

.article-page p a,
.article-page li a {
  color: var(--red);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.14em;
}

.article-page p a:hover,
.article-page p a:focus-visible,
.article-page li a:hover,
.article-page li a:focus-visible {
  color: var(--red-bright);
}

.faq-snapshot-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.article-video-card h2 {
  margin-bottom: 18px;
}

.video-embed-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background: rgba(18, 19, 23, 0.94);
  box-shadow: var(--shadow-soft);
}

.video-embed-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.article-checklist-simple-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  gap: 24px;
  align-items: start;
}

.article-checklist-simple-grid p:first-of-type {
  margin-top: 18px;
}

.article-checklist-simple-grid img {
  width: 100%;
  border: 1px solid rgba(63, 68, 77, 0.12);
}

.address-card {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(63, 68, 77, 0.14);
}

.article-next-steps h2 {
  margin-bottom: 16px;
}

.article-next-steps p + p {
  margin-top: 16px;
}

.steps-list {
  display: grid;
  gap: 18px;
}

.step-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 0;
}

.step-card img {
  width: 100%;
  margin: 0;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid rgba(63, 68, 77, 0.12);
}

.step-copy h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
}

.faq-section {
  display: grid;
  gap: 18px;
}

.faq-section .section-heading {
  margin-bottom: 4px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  border-radius: 20px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font-size: 1.06rem;
  font-weight: 700;
  line-height: 1.35;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--red);
  font-size: 1.4rem;
  line-height: 1;
  margin-left: 18px;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-answer {
  padding: 16px 24px 20px;
  border-top: 1px solid rgba(63, 68, 77, 0.12);
}

.faq-answer p + p,
.faq-answer p + ul,
.faq-answer ul + p {
  margin-top: 14px;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
}

.cta-band h2 {
  max-width: 18ch;
}

.reveal,
.js .reveal,
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .contest-popup h2,
  .contest-popup-lead {
    max-width: none;
  }

  .contest-popup-copy {
    padding-right: 0;
  }

  .store-block-head,
  .store-showcase,
  .founder-quote-grid,
  .utility-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .founder-quote-grid {
    grid-template-areas:
      "intro"
      "media"
      "copy";
  }

  .editorial-grid,
  .cta-band {
    flex-direction: column;
  }

  .editorial-section-reverse .editorial-grid {
    flex-direction: column;
  }

  .hero h1,
  .store-signature-copy h3,
  .founder-quote-copy h2 {
    max-width: 100%;
  }

  .hero-stage {
    min-height: 620px;
  }

  .hero-copy {
    left: 24px;
  }

  .step-card {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 760px) {
  .contest-popup {
    align-items: end;
    padding: 12px;
  }

  .contest-popup-panel {
    padding: 22px 18px 18px;
    border-radius: 24px;
  }

  .contest-popup-panel::before {
    border-radius: 23px;
  }

  .contest-popup-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }

  .contest-popup-script {
    margin-right: 36px;
    font-size: 1.2rem;
  }

  .contest-popup h2 {
    max-width: 11ch;
    font-size: clamp(2.2rem, 11vw, 3.2rem);
  }

  .contest-popup-lead {
    margin-top: 14px;
    font-size: 0.97rem;
    line-height: 1.58;
  }

  .contest-popup-points {
    gap: 8px;
    margin-top: 18px;
  }

  .contest-popup-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 22px;
  }

  .contest-popup-actions .button {
    width: 100%;
  }

  .contest-popup-footnote {
    margin-top: 16px;
  }

  .page-shell {
    width: min(100% - 18px, 100%);
  }

  body[data-page="home"] .page-shell {
    width: min(100% - 20px, 100%);
  }

  .info-strip {
    display: none;
  }

  .topbar {
    top: 0;
    width: 100vw;
    min-height: auto;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 14px 16px;
    flex-wrap: wrap;
  }

  body[data-page="home"] .topbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px 10px;
    align-items: center;
    padding: 12px 14px 14px;
  }

  body[data-page="home"] .brand {
    min-width: 0;
  }

  body[data-page="home"] .brand img {
    width: min(180px, 46vw);
  }

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

  body[data-page="home"] .nav-toggle {
    justify-self: end;
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .nav {
    display: none;
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .nav.is-open {
    display: flex;
  }

  body[data-page="home"] .nav {
    grid-column: 1 / -1;
    margin-top: 2px;
    padding: 10px;
    border-radius: 22px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.18)),
      rgba(255, 255, 255, 0.16);
    box-shadow: 0 18px 38px rgba(20, 24, 29, 0.08);
  }

  .nav a {
    width: 100%;
    justify-content: flex-start;
    min-height: 40px;
  }

  body[data-page="home"] .nav a {
    min-height: 46px;
    padding: 0 14px;
    border-radius: 14px;
  }

  .language-switcher {
    display: none;
    width: 100%;
    margin-left: 0;
    padding: 4px;
    border-radius: 16px;
  }

  .nav.is-open + .language-switcher {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
  }

  body[data-page="home"] .language-switcher {
    grid-column: 1 / -1;
    justify-content: center;
    margin-top: -2px;
  }

  body[data-page="home"] .language-switcher-link {
    flex: 0 1 auto;
    min-width: 34px;
    min-height: 30px;
    padding: 0 8px;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
  }

  .hero {
    padding-top: 6px;
  }

  .hero-stage {
    min-height: 540px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 10vw, 3.4rem);
  }

  html[lang="hu"] .hero h1 {
    max-width: 11.2ch;
    font-size: clamp(2rem, 7.7vw, 2.85rem);
  }

  .hero-copy {
    left: 18px;
    right: 18px;
    bottom: 20px;
    max-width: none;
  }

  body[data-page="home"] .hero {
    padding-top: 0;
  }

  body[data-page="home"] .hero::before {
    display: none;
  }

  body[data-page="home"] .hero-stage {
    min-height: auto;
    padding-top: 0;
    background:
      radial-gradient(circle at top left, rgba(245, 220, 184, 0.18), transparent 34%),
      linear-gradient(180deg, rgba(56, 60, 68, 0.96), rgba(30, 33, 39, 0.98));
  }

  body[data-page="home"] .hero-stage-image {
    display: none;
  }

  body[data-page="home"] .hero-stage-overlay {
    display: none;
  }

  body[data-page="home"] .topbar + #main-content .hero {
    margin-top: 0;
  }

  body[data-page="home"] .topbar + #main-content .hero-stage {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  body[data-page="home"] .hero-copy {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: 2;
    max-width: none;
    margin: 0;
    padding: 18px 14px 20px;
    border: 0;
    background:
      linear-gradient(180deg, rgba(41, 45, 53, 0.98), rgba(28, 31, 38, 1)),
      rgba(28, 31, 38, 0.98);
    backdrop-filter: none;
  }

  body[data-page="home"] .hero .eyebrow {
    gap: 8px;
    margin-bottom: 14px;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
  }

  body[data-page="home"] .hero .eyebrow::before {
    width: 26px;
  }

  body[data-page="home"] .hero h1 {
    max-width: 9.5ch;
    font-size: clamp(2.35rem, 11vw, 3.5rem);
    line-height: 0.95;
  }

  body[data-page="home"] .hero-text {
    max-width: 30ch;
    margin-top: 18px;
    font-size: 0.95rem;
    line-height: 1.58;
  }

  body[data-page="home"] .hero-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .section-band {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .section {
    scroll-margin-top: 116px;
  }

  .store-facts,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .section {
    scroll-margin-top: 104px;
  }

  body[data-page="home"] .section-band {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  body[data-page="home"] .section-heading {
    margin-bottom: 22px;
  }

  body[data-page="home"] .section-heading h2,
  body[data-page="home"] .contact-panel h2,
  body[data-page="home"] .editorial-copy h2,
  body[data-page="home"] .founder-quote-intro h2 {
    line-height: 0.98;
  }

  body[data-page="home"] .founder-quote-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  body[data-page="home"] .founder-quote-grid {
    gap: 18px;
  }

  body[data-page="home"] .founder-quote-media img {
    aspect-ratio: 4 / 4.1;
  }

  body[data-page="home"] .founder-quote p {
    max-width: none;
    font-size: 1rem;
    line-height: 1.52;
  }

  body[data-page="home"] .store-facts {
    gap: 14px;
    margin-bottom: 20px;
    padding-top: 14px;
  }

  body[data-page="home"] .store-meta-item {
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.28)),
      rgba(255, 255, 255, 0.16);
    box-shadow: 0 14px 30px rgba(15, 20, 28, 0.05);
  }

  body[data-page="home"] .store-hours-inline {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  body[data-page="home"] .store-hours-inline span:not(:last-child)::after {
    content: none;
  }

  .store-map iframe {
    min-height: 250px;
  }

  .store-signature {
    min-height: 280px;
  }

  body[data-page="home"] .store-signature {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  body[data-page="home"] .store-signature img {
    height: auto;
    aspect-ratio: 4 / 3.2;
  }

  body[data-page="home"] .store-signature::after {
    content: none;
  }

  .founder-quote-section {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .founder-quote-grid {
    gap: 26px;
  }

  .store-signature-copy {
    padding: 24px 22px;
  }

  body[data-page="home"] .store-signature-copy {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-left: 0;
    padding: 18px 18px 16px;
    color: var(--text);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 246, 248, 0.96)),
      rgba(255, 255, 255, 0.92);
    border-top: 1px solid rgba(36, 40, 46, 0.08);
  }

  body[data-page="home"] .store-signature-copy h3 {
    max-width: 13ch;
    margin-bottom: 10px;
    font-size: clamp(1.45rem, 7vw, 2rem);
    color: var(--text);
  }

  body[data-page="home"] .store-signature-copy p {
    max-width: none;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .editorial-grid {
    gap: 24px;
  }

  .editorial-section {
    padding-top: 12px;
  }

  body[data-page="home"] #hodinarsky-servis .editorial-grid,
  body[data-page="home"] #watch-service .editorial-grid,
  body[data-page="home"] #oraszerviz .editorial-grid {
    display: grid;
    grid-template-areas:
      "intro"
      "image"
      "copy";
    gap: 18px;
  }

  body[data-page="home"] #hodinarsky-servis .editorial-intro,
  body[data-page="home"] #watch-service .editorial-intro,
  body[data-page="home"] #oraszerviz .editorial-intro {
    display: block;
    grid-area: intro;
  }

  body[data-page="home"] #hodinarsky-servis .editorial-image,
  body[data-page="home"] #watch-service .editorial-image,
  body[data-page="home"] #oraszerviz .editorial-image {
    grid-area: image;
  }

  body[data-page="home"] #hodinarsky-servis .editorial-copy,
  body[data-page="home"] #watch-service .editorial-copy,
  body[data-page="home"] #oraszerviz .editorial-copy {
    grid-area: copy;
  }

  body[data-page="home"] #hodinarsky-servis .editorial-copy > .eyebrow,
  body[data-page="home"] #hodinarsky-servis .editorial-copy > h2,
  body[data-page="home"] #watch-service .editorial-copy > .eyebrow,
  body[data-page="home"] #watch-service .editorial-copy > h2,
  body[data-page="home"] #oraszerviz .editorial-copy > .eyebrow,
  body[data-page="home"] #oraszerviz .editorial-copy > h2 {
    display: none;
  }

  body[data-page="home"] #zlatnicky-servis .editorial-grid,
  body[data-page="home"] #jewelry-service .editorial-grid,
  body[data-page="home"] #ekszerszerviz .editorial-grid {
    display: grid;
    grid-template-areas:
      "intro"
      "image"
      "copy";
    gap: 18px;
  }

  body[data-page="home"] #zlatnicky-servis .editorial-intro,
  body[data-page="home"] #jewelry-service .editorial-intro,
  body[data-page="home"] #ekszerszerviz .editorial-intro {
    display: block;
    grid-area: intro;
  }

  body[data-page="home"] #zlatnicky-servis .editorial-image,
  body[data-page="home"] #jewelry-service .editorial-image,
  body[data-page="home"] #ekszerszerviz .editorial-image {
    grid-area: image;
  }

  body[data-page="home"] #zlatnicky-servis .editorial-copy,
  body[data-page="home"] #jewelry-service .editorial-copy,
  body[data-page="home"] #ekszerszerviz .editorial-copy {
    grid-area: copy;
  }

  body[data-page="home"] #zlatnicky-servis .editorial-copy > .eyebrow,
  body[data-page="home"] #zlatnicky-servis .editorial-copy > h2,
  body[data-page="home"] #jewelry-service .editorial-copy > .eyebrow,
  body[data-page="home"] #jewelry-service .editorial-copy > h2,
  body[data-page="home"] #ekszerszerviz .editorial-copy > .eyebrow,
  body[data-page="home"] #ekszerszerviz .editorial-copy > h2 {
    display: none;
  }

  body[data-page="home"] .editorial-grid {
    gap: 18px;
  }

  body[data-page="home"] .editorial-image img {
    aspect-ratio: 4 / 3.2;
  }

  body[data-page="home"] .editorial-copy {
    max-width: none;
  }

  body[data-page="home"] .service-credentials {
    margin-top: 18px;
    padding-top: 16px;
  }

  body[data-page="home"] .feature-list {
    gap: 8px;
  }

  body[data-page="home"] .feature-list li {
    padding: 9px 0 9px 12px;
    line-height: 1.58;
  }

  body[data-page="home"] .service-actions {
    gap: 12px;
    margin-top: 18px;
  }

  body[data-page="home"] .utility-section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  body[data-page="home"] .utility-grid {
    gap: 22px;
    margin-top: 12px;
  }

  body[data-page="home"] .utility-section .utility-card {
    gap: 14px;
    padding-top: 18px;
  }

  body[data-page="home"] .utility-card .button {
    margin-top: 4px;
  }

  .contact-map-shell {
    min-height: auto;
  }

  .contact-map-shell::after {
    background:
      linear-gradient(180deg, rgba(236, 239, 242, 0.9) 0%, rgba(236, 239, 242, 0.82) 36%, rgba(236, 239, 242, 0.66) 100%);
  }

  .contact-panel-wrap {
    width: min(100% - 18px, 100%);
  }

  .contact-panel {
    width: auto;
    margin: 10px 0;
    padding: 28px 22px;
  }

  body[data-page="home"] .contact-map-shell {
    display: flex;
    flex-direction: column;
    min-height: 0;
    background:
      linear-gradient(180deg, rgba(229, 233, 237, 0.98), rgba(220, 225, 231, 0.98)),
      rgba(255, 255, 255, 0.42);
  }

  body[data-page="home"] .contact-map-bg {
    display: none;
  }

  body[data-page="home"] .contact-map-shell::after {
    display: none;
  }

  body[data-page="home"] .contact-panel-wrap {
    order: 1;
    margin-top: 0;
    padding-top: 0;
  }

  body[data-page="home"] .contact-panel {
    margin: 12px 0 0;
    padding: 24px 18px 20px;
    box-shadow: 0 20px 48px rgba(18, 19, 23, 0.09);
  }

  body[data-page="home"] .contact-grid {
    gap: 10px;
    margin-top: 14px;
  }

  body[data-page="home"] .contact-info-item {
    padding-top: 14px;
  }

  body[data-page="home"] .contact-nav-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
  }

  body[data-page="home"] .contact-nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(36, 40, 46, 0.12);
    border-radius: 999px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 246, 248, 0.92)),
      rgba(255, 255, 255, 0.9);
    color: var(--graphite);
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(15, 20, 28, 0.06);
  }

  body[data-page="home"] .contact-nav-actions {
    gap: 10px;
    margin-top: 14px;
  }

  body[data-page="home"] .contact-nav-link {
    min-height: 48px;
    padding: 0 20px;
    font-size: 1rem;
  }

  body[data-page="home"] .contact-photo-card-bottom {
    margin-top: 16px;
  }

  body[data-page="home"] .contact-photo-card img {
    aspect-ratio: 4 / 2.8;
  }

  body[data-page="home"] .contact-actions {
    gap: 10px;
    margin-top: 18px;
  }

  .contact-map-bg {
    position: absolute;
    inset: 0;
    min-height: 0;
  }

  .site-footer {
    flex-direction: column;
    align-items: center;
    padding: 12px 16px;
    text-align: center;
  }

  .footer-links {
    gap: 10px 16px;
    justify-content: center;
  }

  .legal-card {
    padding: 26px 22px;
  }

  .utility-card,
  .step-card,
  .article-card,
  .faq-item summary,
  .faq-answer,
  .cta-band {
    padding-left: 22px;
    padding-right: 22px;
  }

  .faq-quick-grid,
  .faq-snapshot {
    grid-template-columns: 1fr;
  }

  .article-checklist-simple-grid {
    grid-template-columns: 1fr;
  }

  .step-card img {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 560px) {
  .contest-popup {
    padding: 8px;
  }

  .contest-popup-panel {
    padding: 20px 14px 14px;
  }

  .contest-popup-script {
    font-size: 1.08rem;
  }

  .contest-popup h2 {
    max-width: none;
    font-size: clamp(2.75rem, 15vw, 3.5rem);
  }

  .contest-popup-kicker {
    margin-right: 46px;
  }

  .contest-popup-points li {
    padding-left: 16px;
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .contest-popup-points li::before {
    width: 8px;
    height: 8px;
  }

  .button {
    width: 100%;
  }

  .language-switcher {
    justify-content: center;
  }

  .language-switcher-link {
    flex: 0 1 auto;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  body[data-page="home"] .topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
  }

  body[data-page="home"] .hero-stage {
    min-height: auto;
  }

  body[data-page="home"] .hero h1 {
    max-width: 8.8ch;
    font-size: clamp(2.15rem, 12vw, 3rem);
  }

  body[data-page="home"] .button,
  body[data-page="home"] .service-link {
    width: 100%;
  }

  body[data-page="home"] .service-actions,
  body[data-page="home"] .hero-actions,
  body[data-page="home"] .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  body[data-page="home"] .store-signature-copy {
    padding: 16px 16px 14px;
  }

  body[data-page="home"] .contact-panel-wrap {
    margin-top: 0;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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