:root {
  --black: #0f1113;
  --anthracite: #1a1d22;
  --gold: #c8a66a;
  --white: #f8f8f8;
  --red: #d62027;
  --muted: rgba(248, 248, 248, 0.72);
  --line: rgba(248, 248, 248, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --glass-bg: rgba(248, 248, 248, 0.06);
  --glass-bg-strong: rgba(248, 248, 248, 0.12);
  --glass-border: rgba(248, 248, 248, 0.22);
  --glass-blur: blur(18px) saturate(160%);
  --glass-inset: inset 0 1px 0 rgba(255, 255, 255, 0.26), inset 0 -1px 0 rgba(0, 0, 0, 0.22);
  --heading: "Cormorant Garamond", Georgia, serif;
  --body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(780px, calc(100% - 40px));
  text-align: center;
}

.section-padding {
  padding: 82px 0;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  width: 100%;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, padding 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  padding: 12px 20px;
  border-color: var(--glass-border);
  background: rgba(15, 17, 19, 0.55);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
}

.logo img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.34));
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  width: 42px;
  height: 42px;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(248, 248, 248, 0.04);
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 0 auto;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.main-nav,
.header-actions {
  display: none;
}

.main-nav.is-open {
  position: fixed;
  inset: 76px 16px auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  background: rgba(15, 17, 19, 0.6);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow), var(--glass-inset);
}

.main-nav a {
  position: relative;
  padding: 10px 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.main-nav a::after,
.site-footer a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 180ms ease;
}

.main-nav a:hover,
.main-nav a.is-active,
.site-footer a:hover {
  color: var(--white);
}

.main-nav a:hover::after,
.main-nav a.is-active::after,
.site-footer a:hover::after {
  width: 100%;
}

.main-nav a.is-active {
  color: var(--gold);
}

.main-nav a.is-active::after {
  background: var(--gold);
}

.menu-open .header-actions {
  position: fixed;
  inset: auto 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  background: rgba(15, 17, 19, 0.6);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-inset);
}

.language-switcher {
  display: inline-flex;
  align-items: stretch;
  min-height: 40px;
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  overflow: hidden;
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-inset);
}

.language-switcher button {
  display: inline-flex;
  align-items: center;
  border: 0;
  padding: 0 12px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
}

.language-switcher button.is-active {
  background: var(--gold);
  color: var(--black);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--gold);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(248, 248, 248, 0.2), transparent);
  transform: translateX(-110%);
  transition: transform 450ms ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent 46%);
  opacity: 0.7;
  pointer-events: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:hover::before {
  transform: translateX(110%);
}

.btn-gold {
  background: linear-gradient(180deg, rgba(216, 186, 130, 0.96), rgba(200, 166, 106, 0.92));
  color: var(--black);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 10px 30px rgba(200, 166, 106, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn-gold:hover {
  box-shadow: 0 14px 40px rgba(200, 166, 106, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.btn-outline {
  background: var(--glass-bg-strong);
  color: var(--white);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-inset);
}

.btn-outline:hover {
  background: rgba(248, 248, 248, 0.18);
}

.btn-small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.82rem;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 120px 20px 70px;
  overflow: hidden;
}

.hero-media,
.tile-image,
.split-image {
  background-position: center;
  background-size: cover;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(15, 17, 19, 0.92), rgba(15, 17, 19, 0.42), rgba(15, 17, 19, 0.78)),
    url("https://images.unsplash.com/photo-1523170335258-f5ed11844a49?auto=format&fit=crop&w=1800&q=80") center / cover;
  transform: scale(1.04);
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(200, 166, 106, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(15, 17, 19, 0.2), var(--black));
}

.hero-content {
  position: relative;
  width: min(980px, 100%);
  text-align: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--heading);
  font-weight: 600;
  line-height: 1;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(3.4rem, 10vw, 7.8rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 7vw, 4.8rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 2rem;
}

.hero-content p:not(.eyebrow),
.intro p:not(.section-kicker),
.split-content p,
.online-shop p:not(.section-kicker),
.contact-copy li,
.site-footer p {
  color: var(--muted);
}

.hero-content p:not(.eyebrow) {
  width: min(680px, 100%);
  margin: 0 auto 30px;
  font-size: 1.08rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  width: min(360px, 100%);
  margin: 0 auto;
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 34px;
}

/* "Why Swiss Watches Outlet" heading centred like the sections above/below */
.why .section-heading {
  margin-inline: auto;
  text-align: center;
}

/* Centre the three benefit cards as a balanced row */
.why .benefit-card {
  text-align: center;
}

@media (min-width: 700px) {
  .why .benefit-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.intro {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--black), var(--anthracite));
}

.page-hero {
  position: relative;
  overflow: hidden;
  /* Hoehe = Header-Padding(18) + Logo(92) + gleicher Abstand unten(18) */
  height: 128px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 20%, rgba(200, 166, 106, 0.16), transparent 28%),
    linear-gradient(180deg, var(--anthracite), var(--black));
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(15, 17, 19, 0.9), rgba(15, 17, 19, 0.62)),
    linear-gradient(180deg, rgba(15, 17, 19, 0.2), var(--black));
}

.page-hero-media {
  position: absolute;
  inset: 0;
  transform: scale(1.04);
}

.page-hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin-bottom: 0;
  font-size: clamp(3rem, 8vw, 6rem);
}

.intro h2 {
  font-size: clamp(2.1rem, 6vw, 4rem);
}

.intro p:last-child {
  font-size: 1.04rem;
}

.categories,
.stores,
.reviews {
  background: var(--anthracite);
}

.tile-grid,
.benefit-grid,
.store-grid,
.review-grid {
  display: grid;
  gap: 18px;
}

.image-tile,
.benefit-card,
.store-card,
.review-card,
.contact-form {
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28), var(--glass-inset);
  transition: transform 240ms ease, background 240ms ease;
}

.benefit-card:hover,
.store-card:hover,
.review-card:hover {
  transform: translateY(-4px);
  background: var(--glass-bg-strong);
}

.image-tile {
  overflow: hidden;
}

.tile-image {
  min-height: 290px;
  transition: transform 450ms ease;
}

.image-tile:hover .tile-image {
  transform: scale(1.05);
}

.tile-content,
.benefit-card,
.review-card {
  padding: 24px;
}

.tile-content p,
.benefit-card p,
.store-card p,
.review-card p {
  color: var(--muted);
}

.tile-watch {
  background-image: linear-gradient(rgba(15, 17, 19, 0.08), rgba(15, 17, 19, 0.38)), url("https://images.unsplash.com/photo-1547996160-81dfa63595aa?auto=format&fit=crop&w=1000&q=80");
}

.tile-knife {
  background-image: linear-gradient(rgba(15, 17, 19, 0.08), rgba(15, 17, 19, 0.38)), url("https://images.unsplash.com/photo-1608501078713-8e445a709b39?auto=format&fit=crop&w=1000&q=80");
}

.tile-souvenir {
  background-image: linear-gradient(rgba(15, 17, 19, 0.08), rgba(15, 17, 19, 0.42)), url("https://images.unsplash.com/photo-1527668752968-14dc70a27c95?auto=format&fit=crop&w=1000&q=80");
}

.tile-fragrance {
  background-image: linear-gradient(rgba(15, 17, 19, 0.08), rgba(15, 17, 19, 0.38)), url("https://images.unsplash.com/photo-1592945403244-b3fbafd7f539?auto=format&fit=crop&w=1000&q=80");
}

/* Souvenirs page: own product imagery (does not affect watches.html) */
.souvenir-tiles .tile-watch {
  background-image: linear-gradient(rgba(15, 17, 19, 0.08), rgba(15, 17, 19, 0.38)), url("assets/images/souvenir-tile-1-watches.jpg");
}

.souvenir-tiles .tile-knife {
  background-image: linear-gradient(rgba(15, 17, 19, 0.08), rgba(15, 17, 19, 0.38)), url("assets/images/souvenir-tile-2-knives.jpg");
}

.souvenir-tiles .tile-souvenir {
  background-image: linear-gradient(rgba(15, 17, 19, 0.08), rgba(15, 17, 19, 0.42)), url("assets/images/souvenir-tile-3-souvenirs.jpg");
}

.souvenir-tiles .tile-fragrance {
  background-image: linear-gradient(rgba(15, 17, 19, 0.08), rgba(15, 17, 19, 0.38)), url("assets/images/souvenir-tile-4-gifts.jpg");
}

.watch-intro {
  /* top padding clears the fixed header (~128px); ~22px visible gap above the video */
  padding: 150px 0 0;
  background: var(--anthracite);
}

/* Match the gap below the video to the gap above it */
.watch-intro + .brands {
  padding-top: 24px;
}

.watch-video {
  position: relative;
  height: clamp(220px, 32vw, 420px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--black);
  box-shadow: var(--shadow);
}

.watch-video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brands {
  background: linear-gradient(180deg, var(--anthracite), var(--black));
}

.brand-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 18px;
}

.brand-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.brand-card img {
  width: 100%;
  height: 104px;
  object-fit: contain;
  border: 1px solid rgba(248, 248, 248, 0.28);
  border-radius: 8px;
  padding: 14px 18px;
  box-shadow: inset 0 0 0 1px rgba(248, 248, 248, 0.06), 0 12px 24px rgba(0, 0, 0, 0.28);
}

.brand-card img.bg-dark {
  background: #16181b;
}

.brand-card img.bg-light {
  background: #f4f4f4;
}

.brand-card figcaption {
  color: rgba(248, 248, 248, 0.82);
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-align: center;
}

.benefit-card span {
  display: block;
  margin-bottom: 26px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 800;
}

.store-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 270px;
  padding-bottom: 26px;
}

.store-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  background: var(--black);
}

.store-photo-placeholder {
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(200, 166, 106, 0.18), transparent 44%),
    linear-gradient(160deg, rgba(15, 17, 19, 0.2), rgba(15, 17, 19, 0.92)),
    var(--anthracite);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.store-card h3,
.store-card > p,
.opening-hours,
.store-card .card-actions {
  margin-inline: 24px;
}

.store-card h3 {
  margin-top: 24px;
}

.opening-hours {
  display: grid;
  gap: 4px;
  margin-top: 12px;
  color: var(--muted);
}

.opening-hours strong {
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.store-card > p,
.opening-hours span {
  white-space: pre-line;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
}

.card-actions .card-call {
  grid-column: 1 / -1;
}

/* Empty placeholder to keep the Maps/Route row aligned in cards without a phone number */
.card-actions .card-call-placeholder {
  border: 1px solid transparent;
  padding: 9px 13px;
  font-size: 0.85rem;
  font-weight: 700;
}

.card-actions a {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 9px 13px;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.card-actions a:hover {
  border-color: var(--gold);
  background: rgba(200, 166, 106, 0.08);
  color: var(--white);
}

.feature-split,
.why,
.contact {
  background: var(--black);
}

.split-grid,
.contact-grid {
  display: grid;
  gap: 34px;
}

.split-image {
  min-height: 360px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.engraving-image {
  background-image: linear-gradient(rgba(15, 17, 19, 0.12), rgba(15, 17, 19, 0.52)), url("https://images.unsplash.com/photo-1589182373726-e4f658ab50f0?auto=format&fit=crop&w=1100&q=80");
}

.swiss-knives-image {
  background-image: linear-gradient(rgba(15, 17, 19, 0.12), rgba(15, 17, 19, 0.52)), url("assets/images/victorinox-swiss-knives.jpg");
}

.split-content {
  align-self: center;
}

.online-shop {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(15, 17, 19, 0.9), rgba(15, 17, 19, 0.62)),
    url("assets/online-shop.jpg") center / cover;
}

.online-shop .container {
  position: relative;
}

.stars {
  margin-bottom: 18px;
  color: var(--gold);
  letter-spacing: 0.14em;
}

.contact-copy ul {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
}

.contact-copy li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.contact-copy strong {
  color: var(--white);
}

.contact-copy a {
  color: var(--gold);
  text-decoration: none;
  transition: color 180ms ease;
}

.contact-copy a:hover {
  color: var(--white);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(248, 248, 248, 0.06);
  color: var(--white);
  padding: 13px 14px;
  outline: 0;
  transition: border-color 180ms ease, background 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  background: rgba(248, 248, 248, 0.09);
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: rgba(248, 248, 248, 0.55);
  font-size: 0.82rem;
}

/* Honeypot: hidden anti-spam field, never shown to real users */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  margin: 0;
  min-height: 1.2em;
  font-size: 0.88rem;
  font-weight: 600;
}

.form-status.is-success {
  color: #7bd88f;
}

.form-status.is-error {
  color: #f08a8a;
}

/* Legal / Privacy pages */
.legal-content {
  max-width: 820px;
}

.legal-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin: 0 0 18px;
}

.legal-content h2 {
  margin: 38px 0 10px;
  font-size: 1.3rem;
}

.legal-content p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 14px;
}

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

.legal-content a {
  color: var(--gold);
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

.legal-updated {
  margin-top: 28px;
  font-size: 0.9rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--anthracite);
  padding-top: 54px;
}

.footer-grid {
  display: grid;
  gap: 28px;
}

.site-footer h3,
.site-footer h4 {
  margin-bottom: 12px;
}

.site-footer h3 {
  font-family: var(--heading);
  font-size: 2rem;
}

.site-footer h4 {
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer a {
  position: relative;
  display: table;
  margin: 7px 0;
  color: var(--muted);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.site-footer .social-links a {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(248, 248, 248, 0.04);
  color: var(--muted);
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-footer .social-links a::after {
  content: none;
}

.site-footer .social-links a:hover {
  border-color: var(--gold);
  background: rgba(200, 166, 106, 0.1);
  color: var(--white);
  transform: translateY(-2px);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links a[aria-label="TikTok"] svg,
.social-links a[aria-label="Threads"] svg,
.social-links a[aria-label="LinkedIn"] svg {
  fill: currentColor;
  stroke: none;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 22px;
  margin-top: 42px;
  border-top: 1px solid var(--line);
  padding: 18px 20px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(248, 248, 248, 0.56);
  font-size: 0.85rem;
}

.footer-bottom .footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: rgba(248, 248, 248, 0.56);
  font-size: 0.8rem;
  transition: color 180ms ease;
}

.footer-bottom .footer-credit:hover {
  color: var(--white);
}

.footer-bottom .footer-credit::after {
  content: none;
}

.footer-bottom .footer-credit img {
  height: 18px;
  width: auto;
  padding: 5px 9px;
  border-radius: 6px;
  background: var(--white);
}

@media (min-width: 700px) {
  .footer-bottom {
    justify-content: space-between;
  }
}

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

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

@media (min-width: 700px) {
  .section-padding {
    padding: 110px 0;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: center;
    width: auto;
  }

  .tile-grid,
  .benefit-grid,
  .store-grid,
  .review-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-grid,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .reverse .split-content {
    order: -1;
  }
}

@media (min-width: 1060px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    padding: 22px 34px;
  }

  .logo {
    width: 118px;
    height: 118px;
  }

  .page-hero {
    /* Header-Padding(22) + Logo(118) + gleicher Abstand unten(22) */
    height: 162px;
  }

  .site-header.is-scrolled {
    padding: 14px 34px;
  }

  .menu-toggle {
    display: none;
  }

  .main-nav,
  .header-actions {
    display: flex;
    align-items: center;
  }

  .main-nav {
    justify-content: center;
    gap: 22px;
  }

  .header-actions {
    gap: 14px;
  }

  .tile-grid,
  .benefit-grid,
  .store-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .brand-grid {
    grid-template-columns: repeat(5, 1fr);
  }

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

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