  :root {
      --red: #e30613;
      --red-hover: #c20510;
      --bg: #ffffff;
      --surface: #fbfbfd;
      --surface-alt: #f3f3f5;
      --text: #1d1d1f;
      --text-muted: #74747a;
      --border: rgba(0, 0, 0, 0.08);
      --shadow: 0 16px 50px rgba(0, 0, 0, 0.08);
      --header-bg: rgba(255, 255, 255, 0.78);
      --glass-bg: rgba(255, 255, 255, 0.74);
      --hero-overlay: linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.1));
      --intro-bg: radial-gradient(circle at 50% 42%, rgba(227, 6, 19, 0.12), transparent 34%), linear-gradient(135deg, #ffffff 0%, #f5f5f7 50%, #ececef 100%);
      --intro-text: #1d1d1f;
      --radius-sm: 12px;
      --radius-md: 20px;
      --radius-lg: 32px;
      --radius-xl: 42px;
      --ease: cubic-bezier(0.25, 1, 0.5, 1);
    }

    [data-theme="dark"] {
      --bg: #000000;
      --surface: #111111;
      --surface-alt: #1c1c1e;
      --text: #f5f5f7;
      --text-muted: #a1a1a6;
      --border: rgba(255, 255, 255, 0.1);
      --shadow: 0 20px 70px rgba(0, 0, 0, 0.38);
      --header-bg: rgba(0, 0, 0, 0.76);
      --glass-bg: rgba(0, 0, 0, 0.5);
      --hero-overlay: linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.18));
      --intro-bg: radial-gradient(circle at 50% 42%, rgba(227, 6, 19, 0.28), transparent 34%), linear-gradient(135deg, #050505 0%, #111111 46%, #000000 100%);
      --intro-text: #ffffff;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      -webkit-font-smoothing: antialiased;
    }

    html {
      scroll-behavior: smooth;
      background-color: var(--bg);
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
      color: var(--text);
      line-height: 1.5;
      overflow-x: hidden;
      background: var(--bg);
      transition: background-color 0.3s var(--ease), color 0.3s var(--ease);
    }

    body.menu-open,
    body.modal-open,
    body.intro-running {
      overflow: hidden;
    }

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

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

    button {
      font: inherit;
    }

    .container {
      width: min(1200px, 100% - 48px);
      margin: 0 auto;
    }

    .intro-screen {
      position: fixed;
      inset: 0;
      z-index: 4000;
      display: grid;
      place-items: center;
      background: var(--intro-bg);
      color: var(--intro-text);
      overflow: hidden;
      transition: opacity 0.75s var(--ease), visibility 0.75s var(--ease);
    }

    .intro-screen.hidden {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }

    .intro-screen::before {
      content: "";
      position: absolute;
      width: 52vmax;
      height: 52vmax;
      border-radius: 50%;
      border: 1px solid rgba(227, 6, 19, 0.2);
      animation: introRing 1.7s var(--ease) both;
    }

    .intro-screen::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(115deg, transparent 0%, transparent 42%, rgba(255,255,255,0.12) 50%, transparent 58%, transparent 100%);
      transform: translateX(-120%);
      animation: introSweep 1.55s 0.45s var(--ease) both;
    }

    .intro-content {
      position: relative;
      z-index: 2;
      display: grid;
      justify-items: center;
      gap: 22px;
      text-align: center;
      padding: 30px;
    }

    .intro-logo-card {
      position: relative;
      background: transparent;
      border-radius: 0;
      padding: 0;
      box-shadow: none;
      transform: translateY(18px) scale(0.92);
      opacity: 0;
      animation: introLogoIn 0.8s 0.18s var(--ease) forwards, introLogoOut 0.45s 2.05s var(--ease) forwards;
    }

    .intro-logo-card::before {
      content: none;
    }

    .intro-logo-card img {
      width: min(320px, 72vw);
      height: auto;
      filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.38));
    }

    .intro-text {
      display: grid;
      gap: 6px;
      opacity: 0;
      transform: translateY(10px);
      animation: introTextIn 0.65s 0.55s var(--ease) forwards, introTextOut 0.4s 2.05s var(--ease) forwards;
    }

    .intro-text strong {
      font-size: clamp(24px, 4vw, 42px);
      line-height: 1;
      letter-spacing: -0.055em;
    }

    .intro-text span {
      color: color-mix(in srgb, var(--intro-text) 68%, transparent);
      font-size: 14px;
      font-weight: 700;
    }

    .intro-loader {
      width: min(320px, 64vw);
      height: 4px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.16);
      overflow: hidden;
      opacity: 0;
      animation: introLoaderIn 0.3s 0.72s ease forwards;
    }

    .intro-loader span {
      display: block;
      height: 100%;
      width: 0;
      border-radius: inherit;
      background: var(--red);
      animation: introLoad 1.35s 0.8s var(--ease) forwards;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 26px;
      border-radius: 98px;
      font-size: 15px;
      font-weight: 750;
      transition: transform 0.25s var(--ease), background-color 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
      cursor: pointer;
      border: none;
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--red);
      color: #fff;
    }

    .btn-primary:hover {
      background: var(--red-hover);
      transform: translateY(-2px);
    }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.15);
      color: #fff;
      border: 1px solid rgba(255, 255, 255, 0.22);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.24);
      transform: translateY(-2px);
    }

    .fade-up {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
    }

    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 140;
      background: var(--header-bg);
      backdrop-filter: blur(22px);
      -webkit-backdrop-filter: blur(22px);
      border-bottom: 1px solid var(--border);
      transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease);
    }

    .header-inner {
      min-height: 66px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
    }

    .logo {
      display: flex;
      align-items: center;
      background: transparent;
      border-radius: 0;
      padding: 0;
      box-shadow: none;
      flex-shrink: 0;
    }

    .logo img {
      height: 46px;
      width: auto;
      filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.12));
    }

    .logo-light {
      display: none;
    }

    .logo-dark {
      display: block;
    }

    [data-theme="dark"] .logo-light {
      display: block;
    }

    [data-theme="dark"] .logo-dark {
      display: none;
    }

    .nav {
      display: flex;
      gap: 28px;
      font-size: 14px;
      font-weight: 650;
      align-items: center;
      margin-left: auto;
      justify-content: flex-end;
    }

    .nav a {
      position: relative;
      color: var(--text-muted);
      transition: color 0.25s ease;
    }

    .nav a::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -9px;
      height: 2px;
      border-radius: 999px;
      background: var(--red);
      transform: scaleX(0);
      transform-origin: center;
      transition: transform 0.25s var(--ease);
    }

    .nav a:hover,
    .nav a.active {
      color: var(--text);
    }

    .nav a.active::after {
      transform: scaleX(1);
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 0;
    }

    .lang-switch {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      min-height: 36px;
      padding: 0 10px;
      border: 1px solid var(--border);
      border-radius: 999px;
      background: color-mix(in srgb, var(--surface) 72%, transparent);
      color: var(--text-muted);
      font-size: 12px;
      font-weight: 850;
      letter-spacing: 0.04em;
    }

    .lang-switch button {
      border: 0;
      background: transparent;
      color: inherit;
      cursor: pointer;
      font: inherit;
      padding: 0;
    }

    .lang-switch button.active,
    .lang-switch button:hover {
      color: var(--red);
    }

    .lang-switch span {
      opacity: 0.44;
    }

    .theme-toggle {
      background: transparent;
      border: none;
      color: var(--text);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      transition: background 0.25s var(--ease);
    }

    .theme-toggle:hover {
      background: var(--surface-alt);
    }

    .theme-toggle svg {
      width: 20px;
      height: 20px;
      fill: currentColor;
    }

    .sun-icon {
      display: none;
    }

    .moon-icon {
      display: block;
    }

    [data-theme="dark"] .sun-icon {
      display: block;
    }

    [data-theme="dark"] .moon-icon {
      display: none;
    }

    .menu-toggle {
      display: none;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 8px;
      z-index: 160;
    }

    .menu-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--text);
      margin: 5px 0;
      transition: 0.3s;
      border-radius: 2px;
    }

    .quick-bar {
      position: fixed;
      top: 66px;
      left: 0;
      width: 100%;
      z-index: 130;
      padding: 10px 0;
      background: linear-gradient(90deg, var(--red), #a8000b);
      color: #ffffff;
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .quick-inner {
      width: min(1200px, 100% - 48px);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.2fr 1fr;
      gap: 16px;
      align-items: center;
    }

    .quick-item {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 38px;
      padding: 0 14px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.16);
      font-size: 13px;
      font-weight: 750;
      white-space: nowrap;
    }

    .quick-item span {
      color: rgba(255, 255, 255, 0.72);
      font-weight: 700;
    }

    .quick-item a {
      color: #ffffff;
    }

    .hero {
      position: relative;
      min-height: 100svh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      padding: 150px 0 82px;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url("images/laden.jpg");
      background-size: cover;
      background-position: center;
      z-index: 1;
      transform: scale(1.03);
      animation: heroImage 18s ease-in-out infinite alternate;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: var(--hero-overlay);
      z-index: 2;
    }

    .hero-content {
      position: relative;
      z-index: 3;
      max-width: 1120px;
      color: #ffffff;
      padding: 0 24px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 17px 8px 12px;
      background: var(--red);
      border: 1px solid rgba(255, 255, 255, 0.22);
      border-radius: 98px;
      color: #ffffff;
      font-size: 13px;
      font-weight: 800;
      margin-bottom: 24px;
      letter-spacing: -0.01em;
      box-shadow: 0 12px 40px rgba(227, 6, 19, 0.22);
      white-space: nowrap;
    }

    .pulse-wrap {
      position: relative;
      width: 20px;
      height: 20px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 20px;
      overflow: hidden;
      border-radius: 50%;
    }

    .pulse-dot {
      position: relative;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #ffffff;
      flex-shrink: 0;
      z-index: 2;
    }

    .pulse-wrap::after {
      content: "";
      position: absolute;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgb(255 255 255 / 0.85);
      animation: pulse 1.8s ease-out infinite;
    }

    .hero-rotator {
      min-height: clamp(48px, 7vw, 86px);
      margin-bottom: 8px;
      font-size: clamp(34px, 6.2vw, 86px);
      font-weight: 850;
      letter-spacing: -0.055em;
      line-height: 1.02;
      color: #ffffff;
      white-space: nowrap;
      text-wrap: nowrap;
      transition: opacity 0.32s var(--ease), transform 0.32s var(--ease);
    }

    .hero-rotator.changing {
      opacity: 0;
      transform: translateY(10px);
    }

    .hero h1 {
      font-size: clamp(46px, 7.8vw, 96px);
      font-weight: 900;
      letter-spacing: -0.06em;
      line-height: 1;
      margin-bottom: 26px;
      color: var(--red);
      text-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
      white-space: nowrap;
      text-wrap: nowrap;
    }

    .hero-subtitle {
      color: #ffffff;
      font-size: clamp(20px, 2.8vw, 32px);
      line-height: 1.1;
      letter-spacing: -0.035em;
      margin-bottom: 14px;
      font-weight: 780;
    }

    .hero p {
      font-size: clamp(18px, 2.4vw, 24px);
      opacity: 0.92;
      max-width: 760px;
      margin: 0 auto 38px;
      font-weight: 430;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .section {
      padding: 112px 0;
    }

    .section-title {
      text-align: center;
      margin-bottom: 58px;
      max-width: 760px;
      margin-left: auto;
      margin-right: auto;
    }

    .section-title h2 {
      font-size: clamp(32px, 5vw, 56px);
      font-weight: 780;
      letter-spacing: -0.04em;
      margin-bottom: 16px;
    }

    .section-title p {
      font-size: 19px;
      color: var(--text-muted);
    }

    .store-section {
      padding: 110px 0 40px;
      background: var(--bg);
    }

    .store-layout {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 26px;
      align-items: stretch;
    }

    .store-image {
      border-radius: var(--radius-xl);
      overflow: hidden;
      min-height: 540px;
      background: var(--surface-alt);
      box-shadow: var(--shadow);
    }

    .store-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s var(--ease);
    }

    .store-image:hover img {
      transform: scale(1.035);
    }

    .store-info {
      display: grid;
      gap: 18px;
    }

    .store-card {
      background: var(--surface-alt);
      border-radius: var(--radius-lg);
      padding: 34px;
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
    }

    .store-card.red {
      background: var(--red);
      color: #ffffff;
      border-color: var(--red);
    }

    .store-card span {
      display: block;
      color: var(--text-muted);
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-weight: 800;
      margin-bottom: 8px;
    }

    .store-card.red span {
      color: rgba(255, 255, 255, 0.72);
    }

    .store-card h3 {
      font-size: 28px;
      line-height: 1.08;
      letter-spacing: -0.035em;
      margin-bottom: 10px;
    }

    .store-card p,
    .store-card a {
      font-size: 18px;
      color: inherit;
      font-weight: 650;
    }

    .bento-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 22px;
    }

    .bento-card {
      background: var(--surface-alt);
      border-radius: var(--radius-lg);
      padding: 42px;
      transition: transform 0.28s var(--ease), background-color 0.28s var(--ease), border-color 0.28s var(--ease);
      display: flex;
      flex-direction: column;
      border: 1px solid var(--border);
      min-height: 295px;
    }

    .bento-card:hover {
      transform: translateY(-5px);
      border-color: rgba(227, 6, 19, 0.28);
    }

    .bento-card.primary {
      background: linear-gradient(135deg, var(--surface-alt), var(--surface));
    }

    .bento-card.emergency {
      background: var(--red);
      color: #ffffff;
      border-color: var(--red);
    }

    .col-7 {
      grid-column: span 7;
    }

    .col-5 {
      grid-column: span 5;
    }

    .col-4 {
      grid-column: span 4;
    }

    .bento-icon {
      width: 52px;
      height: 52px;
      background: var(--surface);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 19px;
      font-weight: 800;
      color: var(--red);
      margin-bottom: 28px;
      box-shadow: var(--shadow);
    }

    .bento-card.emergency .bento-icon {
      background: rgba(255, 255, 255, 0.15);
      color: #ffffff;
      box-shadow: none;
    }

    .bento-card h3 {
      font-size: 28px;
      font-weight: 780;
      letter-spacing: -0.03em;
      margin-bottom: 14px;
      line-height: 1.12;
    }

    .bento-card p {
      color: var(--text-muted);
      font-size: 17px;
      line-height: 1.55;
    }

    .bento-card.emergency p {
      color: rgba(255, 255, 255, 0.84);
    }

    .emergency-banner {
      background:
        linear-gradient(135deg, rgba(227, 6, 19, 0.96), rgba(150, 0, 10, 0.96)),
        url("images/laden.jpg") center/cover;
      color: #fff;
      border-radius: var(--radius-xl);
      padding: 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .emergency-content h2 {
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 850;
      letter-spacing: -0.04em;
      margin-bottom: 12px;
      line-height: 1.02;
    }

    .emergency-content p {
      font-size: 18px;
      opacity: 0.9;
      max-width: 700px;
    }

    .emergency-banner .btn {
      background: #fff;
      color: #000;
      font-size: 18px;
      padding: 16px 32px;
      flex-shrink: 0;
    }

    .emergency-banner .btn:hover {
      transform: translateY(-2px) scale(1.02);
    }

    .insta-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
      align-items: stretch;
    }

    .insta-item,
    .insta-link-card {
      position: relative;
      border: 1px solid var(--border);
      border-radius: 26px;
      overflow: hidden;
      background: var(--surface-alt);
      cursor: pointer;
      aspect-ratio: 4 / 5;
      box-shadow: 0 18px 52px rgba(0, 0, 0, 0.12);
      transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
    }

    .insta-item:hover,
    .insta-link-card:hover {
      transform: translateY(-6px);
      border-color: rgba(227, 6, 19, 0.34);
      box-shadow: 0 28px 80px rgba(0, 0, 0, 0.2);
    }

    .insta-item img,
    .insta-link-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: var(--pos, center);
      transition: transform 0.55s var(--ease), filter 0.55s var(--ease);
    }

    .insta-item:hover img,
    .insta-link-card:hover img {
      transform: scale(1.045);
      filter: saturate(1.05) contrast(1.04);
    }

    .insta-overlay,
    .insta-link-overlay {
      position: absolute;
      inset: 0;
      z-index: 2;
      display: flex;
      align-items: end;
      justify-content: flex-start;
      padding: 18px;
      background: linear-gradient(to top, rgba(0,0,0,0.74), transparent 58%);
      color: #fff;
    }

    .insta-overlay-content,
    .insta-link-content {
      display: grid;
      gap: 4px;
      text-align: left;
    }

    .insta-overlay-content span,
    .insta-link-content span {
      color: rgba(255, 255, 255, 0.72);
      font-size: 10px;
      font-weight: 850;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .insta-overlay-content strong,
    .insta-link-content strong {
      font-size: 18px;
      line-height: 1.05;
      letter-spacing: -0.035em;
    }

    .insta-link-card {
      display: block;
      text-decoration: none;
      background: var(--red);
    }

    .insta-link-card::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(135deg, rgba(227, 6, 19, 0.92), rgba(0, 0, 0, 0.72));
    }

    .insta-link-card img {
      opacity: 0.48;
    }

    .insta-link-arrow {
      position: absolute;
      top: 18px;
      right: 18px;
      z-index: 3;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: rgba(255, 255, 255, 0.16);
      color: #fff;
      font-size: 22px;
      font-weight: 900;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }

    .footer-link-button {
      background: transparent;
      border: 0;
      color: var(--text-muted);
      font: inherit;
      font-size: 14px;
      cursor: pointer;
      padding: 0;
      text-align: left;
      transition: color 0.3s;
    }

    .footer-link-button:hover {
      color: var(--text);
    }

    .legal-modal {
      position: fixed;
      inset: 0;
      z-index: 1200;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
      background: rgba(0, 0, 0, 0.76);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
    }

    .legal-modal.active {
      display: flex;
    }

    .legal-dialog {
      width: min(980px, 100%);
      max-height: min(82vh, 860px);
      background: var(--surface);
      color: var(--text);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      overflow: hidden;
      display: grid;
      grid-template-rows: auto 1fr;
    }

    .legal-header {
      padding: 22px 26px;
      border-bottom: 1px solid var(--border);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 18px;
    }

    .legal-header h3 {
      font-size: 24px;
      letter-spacing: -0.035em;
    }

    .legal-close {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 0;
      background: var(--surface-alt);
      color: var(--text);
      cursor: pointer;
      font-size: 24px;
      display: grid;
      place-items: center;
    }

    .legal-content {
      padding: 28px;
      overflow: auto;
      font-size: 15px;
      color: var(--text-muted);
    }

    .legal-content strong,
    .legal-content b {
      color: var(--text);
    }

    .legal-content a {
      color: var(--red);
      word-break: break-word;
    }

    .legal-content p {
      margin-bottom: 14px;
    }

    .legal-content br {
      line-height: 1.7;
    }


    .legal-content h4 {
      color: var(--text);
      font-size: 20px;
      margin: 22px 0 10px;
      letter-spacing: -0.02em;
    }

    .legal-content h5 {
      color: var(--text);
      font-size: 16px;
      margin: 16px 0 8px;
    }

    .legal-content ul {
      margin: 0 0 16px 20px;
    }

    .legal-content li {
      margin-bottom: 7px;
    }

    .contact-layout {
      display: grid;
      grid-template-columns: 0.92fr 1.08fr;
      gap: 24px;
    }

    .contact-card {
      background: var(--surface-alt);
      border-radius: var(--radius-lg);
      padding: 44px;
      border: 1px solid var(--border);
    }

    .contact-card h3 {
      font-size: 32px;
      font-weight: 760;
      margin-bottom: 30px;
      letter-spacing: -0.03em;
    }

    .contact-row {
      margin-bottom: 22px;
    }

    .contact-row:last-child {
      margin-bottom: 0;
    }

    .contact-row span {
      display: block;
      font-size: 12px;
      font-weight: 750;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--text-muted);
      margin-bottom: 5px;
    }

    .contact-row p,
    .contact-row a {
      font-size: 19px;
      font-weight: 600;
    }

    .contact-row a:hover {
      color: var(--red);
    }

    .map-container {
      border-radius: var(--radius-lg);
      overflow: hidden;
      min-height: 480px;
      border: 1px solid var(--border);
    }

    .map-container iframe {
      width: 100%;
      height: 100%;
      min-height: 480px;
      border: 0;
      filter: grayscale(80%) contrast(92%);
    }

    [data-theme="dark"] .map-container iframe {
      filter: grayscale(100%) invert(90%) contrast(82%);
    }

    .footer {
      background: var(--surface);
      padding: 76px 0 36px;
      border-top: 1px solid var(--border);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 56px;
    }

    .footer-logo {
      display: inline-flex;
      align-items: center;
      background: transparent;
      border-radius: 0;
      padding: 0;
    }

    .footer-logo img {
      height: 36px;
      width: auto;
    }

    .footer-brand p {
      color: var(--text-muted);
      margin-top: 22px;
      max-width: 340px;
    }

    .footer h4 {
      font-size: 14px;
      font-weight: 750;
      margin-bottom: 16px;
    }

    .footer ul {
      list-style: none;
    }

    .footer li {
      margin-bottom: 12px;
    }

    .footer a {
      color: var(--text-muted);
      font-size: 14px;
      transition: color 0.3s;
    }

    .footer a:hover {
      color: var(--text);
    }

    .footer-bottom {
      border-top: 1px solid var(--border);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      color: var(--text-muted);
      font-size: 12px;
      gap: 16px;
      flex-wrap: wrap;
    }

    .floating-actions {
      position: fixed;
      right: 22px;
      bottom: 22px;
      z-index: 170;
      display: grid;
      gap: 10px;
      justify-items: end;
    }

    .float-btn {
      min-width: 54px;
      height: 54px;
      padding: 0 16px;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: var(--glass-bg);
      color: var(--text);
      box-shadow: var(--shadow);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-weight: 800;
      font-size: 14px;
      cursor: pointer;
      transition: transform 0.25s var(--ease), background 0.25s var(--ease);
    }

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

    .float-btn.emergency {
      background: var(--red);
      color: #ffffff;
      border-color: var(--red);
      min-width: 112px;
    }

    .float-icon {
      font-size: 18px;
      line-height: 1;
    }

    .float-btn.icon-only {
      width: 54px;
      min-width: 54px;
      padding: 0;
    }

    .call-modal {
      position: fixed;
      inset: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      background: rgba(0, 0, 0, 0.68);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.28s var(--ease);
    }

    .call-modal.active {
      opacity: 1;
      pointer-events: auto;
    }

    .call-modal.direct-emergency [data-call-back] {
      display: none;
    }

    .call-dialog {
      width: min(460px, 100%);
      background: var(--surface);
      color: var(--text);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 28px;
      box-shadow: var(--shadow);
      transform: translateY(12px) scale(0.98);
      transition: transform 0.28s var(--ease);
    }

    .call-modal.active .call-dialog {
      transform: translateY(0) scale(1);
    }

    .call-view {
      display: none;
    }

    .call-view.active {
      display: block;
    }

    .call-view h3 {
      font-size: 30px;
      line-height: 1.05;
      letter-spacing: -0.04em;
      margin-bottom: 12px;
    }

    .call-view p {
      color: var(--text-muted);
      font-size: 16px;
      margin-bottom: 22px;
    }

    .call-actions {
      display: grid;
      gap: 10px;
    }

    .call-actions .btn {
      width: 100%;
      min-height: 50px;
      white-space: normal;
      text-align: center;
      line-height: 1.18;
      padding: 12px 18px;
    }

    .call-dialog .btn-primary {
      color: #ffffff;
    }

    .call-dialog .btn-secondary {
      background: var(--surface-alt);
      color: var(--text);
      border: 1px solid var(--border);
    }

    .call-dialog .btn-secondary:hover {
      color: var(--red);
      background: var(--surface-alt);
    }

    .call-note {
      display: block;
      margin-top: 12px;
      color: var(--text-muted);
      font-size: 13px;
      line-height: 1.45;
    }

    .modal {
      position: fixed;
      inset: 0;
      z-index: 1000;
      background: rgba(0,0,0,0.78);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s var(--ease);
    }

    .modal.active {
      opacity: 1;
      pointer-events: auto;
    }

    .modal-content {
      background: var(--surface);
      border-radius: var(--radius-lg);
      width: 100%;
      max-width: 900px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      overflow: hidden;
      transform: scale(0.96);
      transition: transform 0.3s var(--ease);
    }

    .modal.active .modal-content {
      transform: scale(1);
    }

    .modal-img img {
      width: 100%;
      height: 100%;
      min-height: 460px;
      object-fit: cover;
    }

    .modal-info {
      padding: 46px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
    }

    .modal-close {
      position: absolute;
      top: 16px;
      right: 16px;
      background: var(--surface-alt);
      border: none;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      color: var(--text);
      font-size: 22px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .modal-type {
      color: var(--red);
      font-weight: 800;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 8px;
    }

    .modal-title {
      font-size: 30px;
      font-weight: 760;
      letter-spacing: -0.03em;
      margin-bottom: 16px;
    }

    .modal-text {
      color: var(--text-muted);
      font-size: 16px;
      margin-bottom: 30px;
      line-height: 1.55;
    }


    .map-consent-placeholder {
      min-height: 480px;
      display: grid;
      place-items: center;
      padding: 34px;
      text-align: center;
      background:
        radial-gradient(circle at 50% 35%, rgba(227, 6, 19, 0.13), transparent 34%),
        var(--surface-alt);
    }

    .map-consent-card {
      max-width: 520px;
      display: grid;
      gap: 14px;
      justify-items: center;
    }

    .map-consent-card strong {
      font-size: 28px;
      line-height: 1.05;
      letter-spacing: -0.04em;
    }

    .map-consent-card p {
      color: var(--text-muted);
      font-size: 16px;
    }

    .consent-banner {
      position: fixed;
      left: 18px;
      right: 18px;
      bottom: 18px;
      z-index: 5000;
      display: none;
      justify-content: center;
      pointer-events: none;
    }

    .consent-banner.active {
      display: flex;
    }

    .consent-panel {
      width: min(980px, 100%);
      background: var(--surface);
      color: var(--text);
      border: 1px solid var(--border);
      border-radius: 28px;
      box-shadow: 0 28px 100px rgba(0, 0, 0, 0.28);
      padding: 24px;
      pointer-events: auto;
      display: grid;
      gap: 20px;
    }

    .consent-head {
      display: grid;
      gap: 8px;
    }

    .consent-head strong {
      font-size: 24px;
      line-height: 1.05;
      letter-spacing: -0.04em;
    }

    .consent-head p {
      color: var(--text-muted);
      font-size: 15px;
      max-width: 820px;
    }

    .consent-options {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    .consent-option {
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 16px;
      background: var(--surface-alt);
      display: grid;
      gap: 8px;
    }

    .consent-option label {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      font-weight: 850;
    }

    .consent-option p {
      color: var(--text-muted);
      font-size: 13px;
    }

    .consent-option input {
      width: 20px;
      height: 20px;
      accent-color: var(--red);
    }

    .consent-actions {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 10px;
      flex-wrap: wrap;
    }

    .consent-link-button {
      background: transparent;
      border: 0;
      color: var(--red);
      font-weight: 800;
      cursor: pointer;
      padding: 0;
    }

    [dir="rtl"] .section-title,
    [dir="rtl"] .contact-card,
    [dir="rtl"] .modal-info,
    [dir="rtl"] .call-dialog,
    [dir="rtl"] .legal-content,
    [dir="rtl"] .consent-panel {
      text-align: right;
    }

    [dir="rtl"] .hero-content {
      direction: rtl;
    }

    @keyframes introRing {
      from {
        opacity: 0;
        transform: scale(0.7);
      }

      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    @keyframes introSweep {
      to {
        transform: translateX(120%);
      }
    }

    @keyframes introLogoIn {
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    @keyframes introLogoOut {
      to {
        opacity: 0;
        transform: translateY(-8px) scale(0.98);
      }
    }

    @keyframes introTextIn {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes introTextOut {
      to {
        opacity: 0;
        transform: translateY(-6px);
      }
    }

    @keyframes introLoaderIn {
      to {
        opacity: 1;
      }
    }

    @keyframes introLoad {
      to {
        width: 100%;
      }
    }

    @keyframes heroImage {
      from {
        transform: scale(1.03) translate3d(0, 0, 0);
      }

      to {
        transform: scale(1.08) translate3d(-10px, -8px, 0);
      }
    }

    @keyframes pulse {
      from {
        opacity: 0.85;
        transform: scale(1);
      }

      to {
        opacity: 0;
        transform: scale(2.25);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
      }

      .intro-screen {
        display: none;
      }

      .fade-up {
        opacity: 1;
        transform: none;
      }

      .hero-rotator {
        transition: none;
      }
    }

    @media (max-width: 1080px) {
      .quick-inner {
        grid-template-columns: 1fr;
        gap: 8px;
      }

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

      .store-image {
        min-height: 420px;
      }

      .col-7,
      .col-5,
      .col-4 {
        grid-column: span 12;
      }

      .bento-card {
        padding: 34px;
      }

      .emergency-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 42px;
      }

      .insta-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-auto-rows: 78px;
      }

      .insta-item,
      .insta-item.tall {
        grid-column: span 3;
        grid-row: span 4;
      }

      .insta-item.large,
      .insta-item.wide {
        grid-column: span 6;
        grid-row: span 4;
      }

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

    @media (max-width: 1080px) {
      .insta-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-auto-rows: 84px;
      }

      .insta-item,
      .insta-item.medium {
        grid-column: span 3;
        grid-row: span 4;
      }

      .insta-item.large,
      .insta-item.wide {
        grid-column: span 6;
        grid-row: span 4;
      }

      .insta-item.tall {
        grid-column: span 3;
        grid-row: span 5;
      }
    }

    @media (max-width: 768px) {
      .container {
        width: min(100% - 28px, 1200px);
      }

      .intro-logo-card {
        border-radius: 22px;
        padding: 20px 24px;
      }

      .intro-logo-card img {
        width: min(270px, 72vw);
      }

      .header-inner {
        min-height: 64px;
        gap: 8px;
      }

      .header-actions {
        gap: 6px;
        margin-left: auto;
        flex: 0 0 auto;
      }

      .logo {
        padding: 7px 10px;
      }

      .logo img {
        height: 30px;
      }

      .nav,
      .header .btn-primary {
        display: none;
      }

      .theme-toggle {
        width: 36px;
        height: 36px;
        flex: 0 0 36px;
      }

      .menu-toggle {
        display: block;
        width: 36px;
        height: 36px;
        padding: 5px;
        flex: 0 0 36px;
      }

      .menu-toggle span {
        width: 22px;
        margin: 4px auto;
      }

      .nav.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 64px;
        left: 0;
        width: 100%;
        background: var(--header-bg);
        backdrop-filter: blur(22px);
        -webkit-backdrop-filter: blur(22px);
        padding: 24px;
        border-bottom: 1px solid var(--border);
        align-items: flex-end;
        text-align: right;
        gap: 22px;
        z-index: 135;
      }

      .quick-bar {
        top: 64px;
        padding: 8px 0;
      }

      .quick-inner {
        width: 100%;
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding: 0 14px;
        scrollbar-width: none;
      }

      .quick-inner::-webkit-scrollbar {
        display: none;
      }

      .quick-item {
        flex: 0 0 auto;
        min-height: 34px;
        font-size: 12px;
        padding: 0 12px;
      }

      .quick-item span {
        display: none;
      }

      .hero {
        min-height: 100svh;
        padding: 142px 0 70px;
      }

      .hero-badge {
        font-size: 12px;
        padding: 8px 14px 8px 10px;
        margin-bottom: 22px;
      }

      .hero-rotator {
        min-height: 118px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        font-size: clamp(38px, 11vw, 58px);
        line-height: 1.02;
        display: flex;
        align-items: center;
        justify-content: center;
        white-space: normal;
        text-wrap: balance;
      }

      .hero h1 {
        font-size: clamp(42px, 11vw, 52px);
        white-space: nowrap;
        text-wrap: nowrap;
      }

      .hero p {
        font-size: 18px;
        margin-bottom: 30px;
      }

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

      .btn {
        width: 100%;
      }

      .section,
      .store-section {
        padding: 78px 0;
      }

      .section-title {
        margin-bottom: 42px;
      }

      .section-title h2 {
        font-size: 34px;
      }

      .section-title p {
        font-size: 18px;
      }

      .store-image {
        min-height: 320px;
        border-radius: 26px;
      }

      .store-card {
        padding: 28px;
      }

      .bento-card {
        padding: 28px;
        min-height: auto;
      }

      .emergency-banner {
        border-radius: 26px;
        padding: 32px;
      }
      .emergency-banner .btn {
        width: auto;
        max-width: 100%;
        white-space: normal;
        line-height: 1.15;
        text-align: center;
        padding: 15px 24px;
        font-size: 17px;
      }


      .insta-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
      }

      .insta-item,
      .insta-item.large,
      .insta-item.wide,
      .insta-item.tall {
        grid-column: auto;
        grid-row: auto;
        min-height: auto;
        aspect-ratio: 4 / 5;
      }

      .contact-card {
        padding: 32px;
      }

      .map-container,
      .map-container iframe {
        min-height: 390px;
      }

      .modal-content {
        grid-template-columns: 1fr;
      }

      .modal-img img {
        min-height: 300px;
      }

      .modal-info {
        padding: 32px;
      }

      .floating-actions {
        right: 12px;
        bottom: 12px;
      }

      .float-btn {
        width: 52px;
        min-width: 52px;
        padding: 0;
      }

      .float-btn.emergency {
        width: auto;
        min-width: 112px;
        padding: 0 16px;
      }

      .float-btn:not(.emergency) .float-label {
        display: none;
      }


      .consent-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
      }

      .consent-panel {
        padding: 18px;
        border-radius: 22px;
      }

      .consent-options {
        grid-template-columns: 1fr;
      }

      .consent-actions {
        display: grid;
        grid-template-columns: 1fr;
      }

      .consent-actions .btn,
      .consent-actions button {
        width: 100%;
      }
    }
  

    @media (max-width: 768px) {
      .lang-switch {
        min-height: 36px;
        min-width: 148px;
        padding: 0 10px;
        gap: 7px;
        font-size: 11px;
        letter-spacing: 0.015em;
        flex: 0 0 auto;
        justify-content: center;
      }

      .lang-switch span {
        display: inline;
      }

      .consent-banner {
        left: 10px;
        right: 10px;
        bottom: max(10px, env(safe-area-inset-bottom));
      }

      .consent-panel {
        max-height: 64svh;
        overflow: auto;
        border-radius: 22px;
        padding: 16px;
        gap: 14px;
      }

      .consent-head strong {
        font-size: 18px;
      }

      .consent-head p,
      .consent-option p {
        font-size: 13px;
      }

      .consent-option {
        padding: 13px;
        border-radius: 16px;
      }

      .consent-actions .btn,
      .consent-actions button {
        min-height: 42px;
        padding: 10px 16px;
        font-size: 13px;
      }
    }