/* ===== Font Face ===== */

@font-face {
  font-family: "adidasFG";
  src: url("fonts/adidasFG.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "adidasFG";
  src: url("fonts/adidasFG-CompressedBold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "adidasFG-bold";
  src: url("fonts/adidasFG-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "adihausDIN";
  src: url("fonts/adihausDIN-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "adihausDIN";
  src: url("fonts/adihausDIN-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "adihausDIN";
  src: url("fonts/adihausDIN-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* ===== CSS Variables ===== */
:root {
  --color-black: #000000;
  --color-dark: #1a1a1a;
  --color-white: #ffffff;
  --color-brand-red: #e30613;
  --color-text-dark: #222222;
  --color-text-light: #ffffff;
  --color-text-muted: #666666;
  --color-divider: #e0e0e0;
  --font-primary: "adidasFG", Arial, Helvetica, sans-serif;
  --container-max: 1200px;
  --section-padding: 70px;
  --container-padding: 40px;
}

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

ul,
ol {
  list-style: none;
}

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

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

/* ===== Base ===== */
body {
  font-family: var(--font-primary);
  background-color: var(--color-white);
  color: var(--color-text-dark);
  min-height: 100vh;
  overflow-x: hidden;
  font-size: 14px;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* ===== Utilities ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  padding: 8px 16px;
  background: var(--color-white);
  color: var(--color-black);
  z-index: 1000;
  font-size: 14px;
}

.skip-link:focus {
  top: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* ===== 1. Top Bar ===== */
.top-bar {
  background: var(--color-black);
  color: var(--color-text-light);
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.top-bar__content {
  display: flex;
  height: 40px;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

.top-bar__content p {
  color: var(--text-color-text-primary-inverse, #fff);
  text-align: center;
  font-family: "adidasFG-bold", sans-serif;
  font-size: 14px;
  font-style: normal;
  line-height: 20px;
  letter-spacing: 1px;
}

.mobile-break {
  display: none;
}

/* ===== 2. Navbar ===== */
.navbar {
  background: var(--color-white);
  height: 80px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--color-divider);
}

.navbar__container {
  width: 100%;
  margin: 0;
  padding: 0 128px;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
}

.navbar__logo {
  flex-shrink: 0;
  align-self: center;
}

.navbar__logo-text {
  color: #ae0000;
  font-family: "adidasFG-bold", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
  display: block;
}

.navbar__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
  min-width: 30px;
  max-width: 30px;
  padding: 0;
  margin: 0;
  box-sizing: content-box;
}

.navbar__toggle-icon,
.navbar__toggle-icon::before,
.navbar__toggle-icon::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: var(--color-text-dark);
  position: absolute;
  left: 0;
  transition: transform 0.25s ease-in-out, background 0.25s ease-in-out,
    top 0.25s ease-in-out;
}

.navbar__toggle-icon {
  top: 11px;
}

.navbar__toggle-icon::before {
  top: -8px;
}

.navbar__toggle-icon::after {
  top: 8px;
}

/* Hamburger to X transformation when menu is open */
.navbar__toggle[aria-expanded="true"] .navbar__toggle-icon {
  background: transparent;
  transform: none;
}

.navbar__toggle[aria-expanded="true"] .navbar__toggle-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.navbar__toggle[aria-expanded="true"] .navbar__toggle-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.navbar__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 0;
  flex: 1;
}

.navbar__menu-header {
  display: none; /* Hidden on desktop */
}

.navbar__link {
  font-family: "adidasFG-bold", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: var(--color-black);
  text-decoration: none;
  white-space: nowrap;
}

.navbar__link:hover {
  text-decoration: underline;
}

.navbar__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
  margin-left: auto;
}

.navbar__address {
  font-size: 14px;
  color: #000;
}

.navbar__phone {
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--color-text-dark);
  margin-bottom: 18px;
}

.navbar__phone-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.navbar__phone-mobile {
  display: none;
}

/* ===== 3. Hero ===== */
.citation {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
  height: 500px;
  background-image: url("https://www.herzomarkenoutlet.de/media/banner-citation.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.citation__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px var(--container-padding);
}

.citation__text {
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 7px;
  text-transform: uppercase;
}

/* ===== 4. Quote / CTA Block ===== */
.quote-block {
  background: var(--color-dark);
  background-image: url("https://www.herzomarkenoutlet.de/media/banner-hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  max-width: 1920px;
  margin: 0 auto;
  height: 620px;
  display: flex;
  align-items: flex-end;
  position: relative;
}

.quote-block__container {
  position: relative;
  width: 46%;
  margin-left: 112px;
  margin-bottom: 64px;
  background: var(--color-white);
}

.quote-block__text {
  color: var(--text-color-text-primary, #000);
  font-family: "adidasFG";
  font-size: 46px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
}

.quote-block__tagline {
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  color: #fff;
  text-align: center;
  font-family: "adidasFG", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 7px;
  text-transform: uppercase;
  margin: 0;
}

/* ===== Shared: Scroll Row ===== */
.scroll-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.scroll-row::-webkit-scrollbar {
  height: 4px;
}

.scroll-row::-webkit-scrollbar-track {
  background: #e0e0e0;
}

.scroll-row::-webkit-scrollbar-thumb {
  background: #000;
  border-radius: 0;
}

.scroll-row::-webkit-scrollbar-button {
  display: none;
}

/* ===== Shared: Scroll Row Navigation ===== */
.scroll-row-wrapper {
  position: relative;
}

.scroll-row-btn {
  position: absolute;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border: 1px solid #000;
  cursor: pointer;
  z-index: 2;
  padding: 0;
}

.scroll-row-btn:hover {
  background: var(--color-off-white, #f5f5f5);
}

.scroll-row-btn--left {
  left: 0;
}

.scroll-row-btn--right {
  right: 0;
}

.scroll-row-btn[hidden] {
  display: none;
}

/* ===== Shared: Section Container ===== */
.section-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 112px;
}

/* ===== Shared: Section Heading ===== */
.section-heading {
  font-size: 38px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 40px;
  color: var(--color-text-dark);
  margin-bottom: 35px;
}

/* ===== Shared: Card ===== */
.card {
  scroll-snap-align: start;
}

.card__image-wrapper {
  overflow: hidden;
  background: var(--color-white);
}

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

.card__content {
  padding: 15px 0;
}

.card__title {
  font-family: "adidasFG-bold", Arial, sans-serif;
  font-size: 16px;
  /* font-weight: 700; */
  line-height: 22px;
  color: #000;
  margin-bottom: 8px;
}

.card__description {
  font-family: "adidasFG", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #000;
}

/* ===== 5. Services ===== */
.services {
  background: var(--color-white);
  padding-top: 80px;
  padding-bottom: 0;
}

.services__scroll-row {
  padding-bottom: 24px;
  margin-bottom: 36px;
}

.service-card {
  flex: 0 0 240px;
}

.service-card .card__image-wrapper {
  width: 298px;
  height: 298px;
}

/* ===== 6. About / Story ===== */
.about {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.about__story {
  background: var(--color-dark);
  display: flex;
  min-height: 720px;
  max-width: 1440px;
  margin: 0 auto;
}

.about__story-content {
  flex: 1;
  max-width: 50%;
  padding: 32px 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about__heading {
  color: #fff;
  line-height: 40px;
  letter-spacing: 3px;
  margin-bottom: 30px;
}

.about__story-content .about__text {
  align-self: stretch;
  padding-right: 40px;
}

.about__story-content .about__text p {
  font-family: "adihausDIN", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
  margin-bottom: 16px;
}

.about__story-content .about__text p:last-child {
  margin-bottom: 0;
}

.about__story-images {
  flex: 1;
  max-width: 50%;
  position: relative;
  overflow: hidden;
}

.about__story-images .about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== 7. Brands ===== */
.brands {
  background: var(--color-white);
  padding: var(--section-padding) 0 0;
  border-top: 1px solid var(--color-divider);
}

.brands__grid {
  margin-bottom: 25px;
  padding-bottom: 24px;
}

.brands__item {
  flex: 0 0 196px;
  height: 196px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(239, 239, 241);
}

.brands__logo {
  max-height: 80px;
  max-width: 120px;
  object-fit: contain;
}

.brands__name {
  position: absolute;
  left: 16px;
  bottom: 16px;
  font-family: "adihausDIN", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #000;
  display: flex;
  padding: 2px 8px 4px 8px;
  align-items: flex-start;
  background: #fff;
}

/* ===== 8. Sports World ===== */
.sportsworld {
  background: var(--color-white);
  padding: var(--section-padding) 0 0;
}

.sportsworld__scroll-row {
  padding-bottom: 10px;
}

.sport-card {
  flex: 0 0 298px;
}

.sport-card .card__image-wrapper {
  width: 298px;
  height: 397px;
}

.sport-card .card__content {
  width: 298px;
  height: 152px;
  padding: 15px;
  overflow: hidden;
}

/* ===== 9. Gallery ===== */
.gallery {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 16px 0;
  background: var(--color-white);
}

.gallery__container {
  padding: 32px 0;
}

.gallery__grid {
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  min-height: 464px;
}

.gallery__img {
  flex-shrink: 0;
  object-fit: cover;
  height: 400px;
  width: 300px;
  scroll-snap-align: start;
}

/* First item: vertically centered */
.gallery__img:first-child {
  align-self: center;
}

/* Last item: vertically centered */
.gallery__img:last-child {
  align-self: center;
}

/* Even items (except last): touch bottom */
.gallery__img:nth-child(even):not(:last-child) {
  align-self: flex-end;
}

/* Odd items (except first and last): touch top */
.gallery__img:nth-child(odd):not(:first-child):not(:last-child) {
  align-self: flex-start;
}

/* ===== 10. News & Events ===== */
.news {
  background: var(--color-white);
  padding: var(--section-padding) 0 0;
}

.news__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  background: rgba(222, 203, 203, 0.2);
}

.news__image-col {
  overflow: hidden;
}

.news__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news__content-col {
  padding: 0 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news__label {
  display: inline-flex;
  height: 28px;
  min-height: 28px;
  padding: 0 4px;
  align-items: center;
  font-family: "adidasFG", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 12px;
}

.news__content-col .section-heading {
  font-family: adidasFG-bold, sans-serif;
}

.news__content-col p {
  color: #000;
  text-align: left;
  font-family: adidasFG;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 14px;
}

.news__content-col p strong {
  font-family: adidasFG-bold, sans-serif;
}

.news__content-col p:last-child {
  margin-bottom: 0;
}

/* ===== 12. Contact ===== */
.contact {
  background: var(--color-white);
  padding: var(--section-padding) 0 0;
}

.contact__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 428px 1fr;
  gap: 0;
  align-items: start;
  background-color: #f8f5f5;
}

.contact__image {
  width: 428px;
  height: 400px;
  object-fit: cover;
}

.contact__content-col {
  padding: 0 38px;
}

.contact__heading {
  line-height: 48px;
  letter-spacing: 3px;
  margin-bottom: 16px;
  padding-top: 24px;
}

.contact__subtext {
  color: #000;
  font-family: "adidasFG", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20.337px;
  margin-bottom: 24px;
  margin-top: 48px;
}

.contact__info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin-top: 38px;
}

.contact__info-item {
  display: flex;
  gap: 16px;
  font-size: 13px;
  line-height: 1.6;
}

.contact__info-item--stacked {
  flex-direction: column;
  gap: 16px;
}

.contact__info-row {
  display: flex;
  gap: 16px;
}

.contact__icon {
  flex-shrink: 0;
  align-self: flex-start;
  color: var(--color-text-dark);
}

.contact__info-details {
  flex: 1;
}

.contact__info-heading h3 {
  color: #000;
  font-family: adidasFG-bold, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20.337px;
  margin-bottom: 4px;
}

.contact__info-content {
  color: #000;
  font-family: adidasFG, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20.337px;
}

.contact__info-content p {
  margin-bottom: 8px;
}

.contact__info-content a {
  color: #000;
  text-decoration: underline;
}

.contact__map-link {
  font-family: adidasFG-bold, sans-serif;
  text-decoration: underline;
  margin-top: 12px;
  display: inline-block;
}

/* ===== 13. Footer ===== */
.footer {
  background: var(--color-black);
  color: var(--color-text-light);
  /* height: 94px; */
  display: flex;
  align-items: center;
  padding: 18px 0;
}

.footer__container {
  width: 100%;
  padding: 0 128px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__logo {
  align-self: center;
  flex: 0 0 auto;
  order: 1;
}

.footer__logo-text {
  color: #ae0000;
  font-family: "adidasFG-bold", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
}

.footer__legal {
  display: flex;
  flex-direction: row;
  gap: 0;
  align-items: center;
  flex: 1;
  justify-content: center;
  order: 2;
}

.footer__legal a {
  font-family: "adidasFG", sans-serif;
  font-size: 13px;
  color: var(--color-text-light);
  text-decoration: none;
  transition: opacity 0.2s ease;
  padding: 0 20px;
  border-right: 1px solid #d3d7da;
}

.footer__legal a:first-child {
  padding-left: 0;
}

.footer__legal a:last-child {
  border-right: none;
}

.footer__legal a:hover {
  opacity: 0.7;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
  order: 3;
}

.footer__address {
  font-size: 12px;
  color: var(--color-text-light);
}

.footer__phone {
  font-size: 13px;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer__phone-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  filter: invert(1);
}

/* ===== Legal Pages (Impressum, Datenschutz) ===== */
.legal {
  padding: var(--section-padding) 0;
  font-family: "adidasFG", Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #000000;
}

.legal__container {
  max-width: 800px;
  margin: 0;
  padding: 0 0 0 128px;
}

.legal__heading {
  margin-bottom: 40px;
  font-family: "adidasFG-bold", Arial, Helvetica, sans-serif;
  color: #000000;
}

.legal h2 {
  font-size: 20px;
  font-family: "adidasFG-bold", Arial, Helvetica, sans-serif;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 12px;
  color: #000000;
}

.legal h3 {
  font-size: 16px;
  font-family: "adidasFG-bold", Arial, Helvetica, sans-serif;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 8px;
  color: #000000;
}

.legal p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 12px;
  color: #000000;
}

.legal ul {
  margin: 0 0 12px 20px;
  font-size: 14px;
  line-height: 24px;
  color: #000000;
  list-style-type: disc;
  padding-left: 20px;
}

.legal li {
  color: #000000;
}

.legal strong {
  font-family: "adidasFG-bold", Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #000000;
}

.legal em {
  font-style: italic;
  color: #000000;
}

.legal a {
  text-decoration: none;
}

/* ===== Responsive: Tablet ===== */
@media (max-width: 1024px) {
  :root {
    --section-padding: 50px;
    --container-padding: 24px;
  }

  .navbar__container {
    padding: 24px 32px 14px 32px;
  }

  .navbar__menu {
    margin-left: 40px;
    gap: 20px;
  }

  .navbar__address {
    font-size: 11px;
  }

  .navbar__phone {
    font-size: 12px;
  }

  .citation {
    height: 380px;
  }

  .quote-block {
    height: auto;
    min-height: 500px;
    background-position: 60% center;
  }

  .quote-block__text {
    font-size: 30px;
    line-height: 36px;
  }

  .quote-block__container {
    width: 60%;
    margin-left: 40px;
    margin-bottom: 50px;
  }

  .about__story {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }

  .about__story-content {
    padding: 40px;
  }

  .about__story-content .about__text {
    padding-right: 20px;
  }

  .about__heading {
    font-size: 24px;
  }

  .contact__container {
    grid-template-columns: 1fr;
  }

  .contact__image {
    max-height: 350px;
    width: 100%;
  }

  .contact__content-col {
    padding: 40px;
  }

  .footer__container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 32px;
    text-align: left;
  }

  .footer__logo {
    align-self: flex-start;
    text-align: left;
    order: 0;
  }

  .footer__contact {
    align-items: flex-start;
    align-self: flex-start;
    margin-top: 0;
    order: 0;
  }

  .footer__legal {
    flex-direction: column;
    gap: 8px;
    justify-content: flex-start;
    align-self: flex-start;
    align-items: flex-start;
    margin-top: 20px;
    order: 0;
  }

  .footer__legal a {
    border-right: none;
    padding: 0 !important;
    text-align: left;
  }

  .footer__legal a:first-child {
    padding-left: 0 !important;
  }
}

/* ===== Responsive: Mobile ===== */
@media (max-width: 768px) {
  :root {
    --section-padding: 40px;
    --container-padding: 32px;
  }

  /* Hide scroll nav buttons on mobile (swipe instead) */
  .scroll-row-btn {
    display: none !important;
  }

  /* Top bar mobile */
  .top-bar {
    height: auto;
  }

  .top-bar__content {
    height: auto;
    padding: 8px 16px;
  }

  .top-bar__content p {
    font-size: 11px;
    line-height: 16px;
    letter-spacing: 0.5px;
  }

  .mobile-break {
    display: block;
  }

  /* Navbar mobile */
  .navbar__toggle {
    display: block;
    order: -1;
    z-index: 10;
    margin-right: 18px;
  }

  .navbar__logo {
    position: static;
    transform: none;
  }

  .navbar__logo-text {
    font-size: 18px;
    line-height: 125%;
  }

  .navbar__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: var(--color-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 32px;
    gap: 16px;
    border-bottom: 1px solid var(--color-divider);
    box-shadow: none;
  }

  .navbar__menu-header {
    display: none;
  }

  .navbar__menu--open {
    display: flex;
  }

  .navbar__link {
    width: 100%;
    text-align: left;
    padding: 8px 0;
  }

  .navbar__contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    margin-left: auto;
  }

  .navbar__address {
    font-size: 10px;
  }

  .navbar__phone {
    font-size: 11px;
    margin-bottom: 0;
  }

  .navbar__phone-icon {
    width: 12px;
    height: 12px;
  }

  .navbar__phone-desktop {
    display: inline;
  }

  .navbar__phone-mobile {
    display: none;
  }

  .navbar__container {
    position: relative;
    padding: 24px 12px 14px 12px;
    justify-content: space-between;
  }

  /* Citation mobile */
  .citation {
    height: 585px;
    background-size: cover;
    background-position: center center;
  }

  .citation__text {
    font-size: 13px;
    letter-spacing: 2px;
  }

  /* Quote mobile */
  .quote-block {
    height: auto;
    min-height: 500px;
    align-items: flex-end;
    background-position: 12.55% center;
  }

  .quote-block__text {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 1.5px;
  }

  .quote-block__container {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }

  .section-container {
    padding: 0 0 0 32px;
  }

  .service-card {
    flex: 0 0 75vw;
  }

  .service-card .card__image-wrapper {
    width: 75vw;
    height: 75vw;
  }

  .service-card .card__content {
    padding: 8px;
  }

  /* About mobile */
  .about__story {
    flex-direction: column-reverse;
    min-height: auto;
  }

  .about__story-content {
    max-width: 100%;
    padding: 48px 32px;
    justify-content: flex-start;
    min-height: auto;
  }

  .about__story-images {
    max-width: 100%;
    height: 250px;
  }

  .about__story-content .about__text {
    padding-right: 0;
  }

  .about__heading {
    font-size: 38px;
    line-height: 105%;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
  }

  /* Brands mobile */
  .brands__grid {
    padding-bottom: 10px;
  }

  .brands__item {
    flex: 0 0 140px;
    height: 140px;
    scroll-snap-align: start;
  }

  .brands__item img,
  .brands__item .brands__logo {
    max-height: 50px;
    max-width: 70px;
  }

  .brands__name {
    font-size: 12px;
    line-height: 16px;
  }

  /* Gallery mobile */
  .gallery {
    padding: 0 16px;
  }

  .gallery__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    overflow: hidden;
  }

  .gallery__grid::-webkit-scrollbar,
  .gallery__grid::-webkit-scrollbar-track,
  .gallery__grid::-webkit-scrollbar-thumb {
    display: none;
  }

  .gallery__img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }

  /* News mobile */
  .news__container {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .news__content-col {
    padding: 30px 32px;
  }

  /* Contact mobile */
  .contact__container {
    grid-template-columns: 1fr;
  }

  .contact__image {
    width: 100%;
    height: auto;
  }

  .contact__content-col {
    padding: 30px 32px;
  }

  .contact__heading {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 2px;
  }

  .contact__info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Legal pages mobile */
  .legal__container {
    padding: 0 32px;
  }

  .legal__heading {
    font-size: 26px;
  }
}

/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================
   IMAGE SKELETON LOADING
   ========================================================== */
@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

img {
  background: linear-gradient(90deg, #ebebeb 25%, #d6d6d6 50%, #ebebeb 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite linear;
}

img.loaded,
img[src=""] {
  animation: none;
  background: none;
}
