  :root {
    --black: #0d0d0d;
    --off-black: #161616;
    --card-bg: #1a1a1a;
    --red:    #d42b22;
    --yellow: #f5c400;
    --blue:   #1e6fbf;
    --green:  #3a9b4b;
    --white:  #f5f5f0;
    --gray:   #888;
    --light-gray: #ccc;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--white);
    font-family: 'Barlow', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  .main-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    height: 64px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    background: rgba(13,13,13,0.93);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .nav-brand {
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
  }

  .nav-links {
    display: flex;
    gap: 0;
    list-style: none;
    margin-left: auto;
  }

  .nav-dots {
    display: flex;
    flex-direction: row;
    gap: 3px;
    flex-shrink: 0;
    margin-right: 10px;
  }
  .nd { width: 8px; height: 8px; border-radius: 1px; }
  .nd-r { background: var(--red); }
  .nd-y { background: var(--yellow); }
  .nd-b { background: var(--blue); }
  .nd-g { background: var(--green); }

  .nav-contact {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .nav-contact-left {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  .nav-person-label {
    font-size: 0.6rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    line-height: 1;
  }

  .nav-contact-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.72rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 500;
    letter-spacing: 0.04em;
    white-space: nowrap;
    line-height: 1;
    transition: color 0.2s;
  }
  .nav-contact-item:hover { color: var(--white); }
  .nav-contact-item svg { width: 11px; height: 11px; flex-shrink: 0; opacity: 0.6; }

  .nav-hours {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 20px;
    height: 64px;
    color: rgba(255,255,255,0.4);
    font-size: 0.68rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 500;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }
  .nav-hours svg { width: 13px; height: 13px; flex-shrink: 0; }
  .nav-hours-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1;
  }

  .nav-hours-mobile { display: none !important; }
  .mobile-contact-bar {
    display: none;
    background: var(--card-bg);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 14px 20px;
    flex-direction: column;
    gap: 8px;
  }
  .mobile-contact-bar a,
  .mobile-contact-bar span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.82rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 500;
    letter-spacing: 0.05em;
  }
  .mobile-contact-bar a:hover { color: var(--white); }
  .mobile-contact-bar svg { width: 14px; height: 14px; flex-shrink: 0; opacity: 0.7; }

  .nav-links a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0 18px;
    height: 64px;
    display: flex;
    align-items: center;
    position: relative;
    transition: color 0.25s;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 18px; right: 18px;
    height: 2px;
    border-radius: 1px;
    transform: scaleX(0.35);
    opacity: 0.4;
    transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), opacity 0.3s, box-shadow 0.3s;
  }

  .nav-links li:nth-child(1) a::after { background: var(--red); }
  .nav-links li:nth-child(2) a::after { background: var(--yellow); }
  .nav-links li:nth-child(3) a::after { background: var(--blue); }
  .nav-links li:nth-child(4) a::after { background: var(--green); }

  .nav-links li:nth-child(1) a:hover,
  .nav-links li:nth-child(1) a.active { color: var(--red); }
  .nav-links li:nth-child(2) a:hover,
  .nav-links li:nth-child(2) a.active { color: var(--yellow); }
  .nav-links li:nth-child(3) a:hover,
  .nav-links li:nth-child(3) a.active { color: var(--blue); }
  .nav-links li:nth-child(4) a:hover,
  .nav-links li:nth-child(4) a.active { color: var(--green); }

  .nav-links li:nth-child(1) a:hover::after,
  .nav-links li:nth-child(1) a.active::after { transform:scaleX(1); opacity:1; box-shadow: 0 0 8px var(--red), 0 0 20px rgba(212,43,34,0.45); }
  .nav-links li:nth-child(2) a:hover::after,
  .nav-links li:nth-child(2) a.active::after { transform:scaleX(1); opacity:1; box-shadow: 0 0 8px var(--yellow), 0 0 20px rgba(245,196,0,0.45); }
  .nav-links li:nth-child(3) a:hover::after,
  .nav-links li:nth-child(3) a.active::after { transform:scaleX(1); opacity:1; box-shadow: 0 0 8px var(--blue), 0 0 20px rgba(30,111,191,0.45); }
  .nav-links li:nth-child(4) a:hover::after,
  .nav-links li:nth-child(4) a.active::after { transform:scaleX(1); opacity:1; box-shadow: 0 0 8px var(--green), 0 0 20px rgba(58,155,75,0.45); }

  /* ── HERO ── */
  #hero {
    padding: 140px 40px 80px;
    position: relative;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* Korrekter Dateiname: background.jpeg */
    background: 
        linear-gradient(to bottom, var(--black) 0%, rgba(13,13,13,0.5) 30%, rgba(13,13,13,0.5) 70%, var(--black) 100%),
        url('background.jpeg');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    background-attachment: scroll; /* Wichtig für Mobile */
  }

  .hero-grid {
    position: absolute; inset: 0;
    background:
      repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(255,255,255,0.018) 80px),
      repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(255,255,255,0.018) 80px);
    pointer-events: none;
  }

  .hero-inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }

  .hero-logo-wrap {
    display: inline-block;
    margin-bottom: 4px;
    animation: fadeUp 0.7s ease both;
  }
  .hero-logo {
    height: 200px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 30px rgba(245,196,0,0.1));
  }

  .hero-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    letter-spacing: 0.08em;
    line-height: 1;
    color: var(--white);
    animation: fadeUp 0.8s 0.1s ease both;
  }

  .hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white);
    margin-top: 10px;
    animation: fadeUp 0.8s 0.2s ease both;
  }

  .color-strip {
    display: flex;
    width: min(200px, 48vw);
    height: 2px;
    margin: 14px auto 0;
    border-radius: 2px;
    overflow: hidden;
    animation: fadeUp 0.8s 0.3s ease both;
  }
  .color-strip span { flex: 1; }
  .cs-r { background: var(--red); }
  .cs-y { background: var(--yellow); }
  .cs-b { background: var(--blue); }
  .cs-g { background: var(--green); }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: none; }
  }

  /* ── SECTION HEADING ── */
  .section-heading {
    text-align: center;
    padding: 52px 40px 36px;
  }

  .section-heading h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    letter-spacing: 0.04em;
    line-height: 0.95;
    color: var(--white);
  }

  /* ── CARDS ── */
  .cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 40px 88px;
  }
  @media (max-width: 860px) { .cards-grid { grid-template-columns: 1fr; } }

  .service-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.055);
    padding: 44px 36px 40px;
    position: relative;
    overflow: hidden;
    transition: transform 0.38s cubic-bezier(0.16,1,0.3,1), background 0.3s;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    color: inherit;
  }

  .service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s cubic-bezier(0.16,1,0.3,1), box-shadow 0.45s;
  }

  .sc-red::after    { background: var(--red); }
  .sc-yellow::after { background: var(--yellow); }
  .sc-blue::after   { background: var(--blue); }

  .service-card:hover { background: #1e1e1e; transform: translateY(-6px); }
  .sc-red:hover::after    { transform: scaleX(1); box-shadow: 0 0 10px var(--red); }
  .sc-yellow:hover::after { transform: scaleX(1); box-shadow: 0 0 10px var(--yellow); }
  .sc-blue:hover::after   { transform: scaleX(1); box-shadow: 0 0 10px var(--blue); }

  .card-svg { width: 44px; height: 44px; margin-bottom: 28px; }

  .service-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.1rem;
    letter-spacing: 0.04em;
    line-height: 1.05;
    margin-bottom: 14px;
    color: var(--white);
    min-height: calc(2.1rem * 1.05 * 2); /* always reserve 2 lines */
    display: flex;
    align-items: flex-start;
  }

  .service-card p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.75;
    flex: 1;
  }

  .card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: gap 0.2s;
  }
  .sc-red .card-link    { color: var(--red); }
  .sc-yellow .card-link { color: var(--yellow); }
  .sc-blue .card-link   { color: var(--blue); }
  .service-card:hover .card-link { gap: 14px; }

  /* ── DETAIL SECTIONS ── */
  .detail-section {
    padding: 88px 40px;
    max-width: 1040px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.055);
  }

  /* Full-width colored tint wrappers */
  .section-wrap-r {
    background: rgba(212,43,34,0.04);
    border-top: 2px solid rgba(212,43,34,0.3);
  }
  .section-wrap-y {
    background: rgba(245,196,0,0.04);
    border-top: 2px solid rgba(245,196,0,0.3);
  }
  .section-wrap-b {
    background: rgba(30,111,191,0.04);
    border-top: 2px solid rgba(30,111,191,0.3);
  }

  /* Big topic title – the dominant heading */
  .topic-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.2rem, 7vw, 5rem);
    letter-spacing: 0.04em;
    line-height: 0.95;
    margin-bottom: 12px;
    color: var(--white);
  }

  /* Smaller descriptive subtitle */
  .topic-subtitle {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.45);
    margin-bottom: 32px;
    text-transform: uppercase;
  }

  .lead {
    font-size: 1.05rem;
    color: var(--light-gray);
    line-height: 1.85;
    margin-bottom: 44px;
  }

  .sub-heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin: 44px 0 18px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 8px;
  }

  /* Color accent on topic title via left border line */
  .topic-block { margin-bottom: 0; }

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

  @media (max-width: 860px) {
    .service-grid { grid-template-columns: 1fr; }
  }

  .svc-item {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.055);
    padding: 24px 26px;
  }

  .svc-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 7px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }

  .sdot {
    width: 7px; height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 5px;
  }
  .sdot-r { background: var(--red); }
  .sdot-y { background: var(--yellow); }
  .sdot-b { background: var(--blue); }

  .svc-item p {
    font-size: 0.83rem;
    color: var(--gray);
    line-height: 1.65;
    padding-left: 17px;
  }

  .info-box {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.055);
    padding: 22px 26px;
    margin: 24px 0;
    font-size: 0.88rem;
    color: var(--light-gray);
    line-height: 1.75;
  }
  .info-box strong { color: var(--white); font-weight: 600; }
  .ib-r { border-left: 3px solid var(--red); }
  .ib-y { border-left: 3px solid var(--yellow); }
  .ib-b { border-left: 3px solid var(--blue); }
  .ib-g { border-left: 3px solid var(--green); }

  .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0; }
  @media (max-width: 600px) { .two-col { grid-template-columns: 1fr; } }

  .type-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.055);
    border-top: 2px solid var(--yellow);
    padding: 28px;
  }
  .type-card h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 14px;
  }
  .type-card ul { list-style: none; font-size: 0.83rem; color: var(--gray); line-height: 1.95; }
  .type-card li::before { content: '→ '; opacity: 0.45; }

  /* Buttons */
  .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 13px 26px;
    border-radius: 2px;
    transition: filter 0.2s, transform 0.2s;
    border: none;
    cursor: pointer;
    margin-top: 36px;
  }
  .cta-btn:hover { filter: brightness(1.13); transform: translateY(-2px); }
  .btn-red    { background: var(--red);    color: var(--white); }
  .btn-yellow { background: var(--yellow); color: var(--black); }
  .btn-blue   { background: var(--blue);   color: var(--white); }
  .btn-green  { background: var(--green);  color: var(--white); }

  .cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.18);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 2px;
    transition: background 0.2s, transform 0.2s;
  }
  .cta-outline:hover { background: rgba(255,255,255,0.07); transform: translateY(-2px); }

  /* Ausbildung */
  .ausb-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0; }
  @media (max-width: 600px) { .ausb-grid { grid-template-columns: 1fr; } }

  .ausb-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.055);
    border-top: 2px solid var(--blue);
    padding: 32px;
  }
  .ausb-card h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.7rem;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
    color: var(--white);
  }
  .ausb-card p { font-size: 0.85rem; color: var(--gray); line-height: 1.7; margin-bottom: 22px; }

  /* ── KONTAKT ── */
  #kontakt {
    background: rgba(58,155,75,0.06);
    border-top: 2px solid rgba(58,155,75,0.35);
    padding: 88px 40px;
  }

  .contact-wrap {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
  }
  @media (max-width: 620px) { .contact-wrap { grid-template-columns: 1fr; gap: 44px; } }

  .contact-left .topic-title { font-size: clamp(3rem, 6vw, 4.5rem); }
  .contact-left p { color: var(--gray); font-size: 0.88rem; line-height: 1.75; }

  .sep {
    display: block;
    width: 44px; height: 2px;
    background: var(--green);
    margin: 20px 0;
    box-shadow: 0 0 8px rgba(58,155,75,0.6);
  }

  .c-items { display: flex; flex-direction: column; gap: 20px; }
  .c-item { display: flex; align-items: flex-start; gap: 16px; }

  .c-ico {
    width: 42px; height: 42px;
    border: 1px solid rgba(58,155,75,0.35);
    border-radius: 6px;
    background: rgba(58,155,75,0.08);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .c-ico svg { width: 20px; height: 20px; }

  .c-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 3px;
  }

  .c-val {
    font-size: 0.92rem;
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s;
  }
  .c-val:hover { color: var(--green); }

  .hours-grid {
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 16px;
    row-gap: 2px;
  }

  /* FOOTER */
  .footer-strip { height: 3px; display: flex; }
  .footer-strip span { flex: 1; }
  .fs-r { background: var(--red); }
  .fs-y { background: var(--yellow); }
  .fs-b { background: var(--blue); }
  .fs-g { background: var(--green); }

  footer {
    background: var(--black);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 22px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }
  footer p { font-size: 0.73rem; color: rgba(255,255,255,0.2); }
  footer a { color: rgba(255,255,255,0.28); text-decoration: none; font-size: 0.73rem; transition: color 0.2s; }
  footer a:hover { color: var(--white); }
  .footer-links { display: flex; gap: 24px; }

  /* REVEAL – direkt sichtbar, keine Animation */
  .reveal { opacity: 1; transform: none; }

  /* ── BOTTOM TAB BAR (mobile) ── */
  .tab-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(13,13,13,0.97);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255,255,255,0.08);
    grid-template-columns: repeat(4, 1fr);
    padding-bottom: env(safe-area-inset-bottom);
  }

  .tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-decoration: none;
    color: rgba(255,255,255,0.38);
    padding: 10px 4px 12px;
    position: relative;
    transition: color 0.2s;
  }

  .tab-item::before {
    content: '';
    position: absolute;
    top: 0; left: 25%; right: 25%;
    height: 2px;
    border-radius: 0 0 2px 2px;
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s;
  }

  .tab-item.t-r::before { background: var(--red); }
  .tab-item.t-y::before { background: var(--yellow); }
  .tab-item.t-b::before { background: var(--blue); }
  .tab-item.t-g::before { background: var(--green); }

  .tab-item.t-r.active, .tab-item.t-r:hover { color: var(--red); }
  .tab-item.t-y.active, .tab-item.t-y:hover { color: var(--yellow); }
  .tab-item.t-b.active, .tab-item.t-b:hover { color: var(--blue); }
  .tab-item.t-g.active, .tab-item.t-g:hover { color: var(--green); }

  .tab-item.active::before,
  .tab-item:hover::before { transform: scaleX(1); }
  .tab-item.t-r.active::before { box-shadow: 0 0 6px var(--red); }
  .tab-item.t-y.active::before { box-shadow: 0 0 6px var(--yellow); }
  .tab-item.t-b.active::before { box-shadow: 0 0 6px var(--blue); }
  .tab-item.t-g.active::before { box-shadow: 0 0 6px var(--green); }

  .tab-item svg { width: 22px; height: 22px; }

  .tab-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1;
  }

  @media (max-width: 768px) {
    .main-nav { padding: 0 12px; }
    .nav-links { display: none; }
    .nav-hours { display: none; }
    .nav-contact { display: flex; }
    .nav-contact-item { font-size: 0.65rem; }
    .nav-hours-mobile { 
      display: flex !important;
      align-items: center;
      gap: 5px;
      color: rgba(255,255,255,0.4);
      font-size: 0.65rem;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 500;
      letter-spacing: 0.04em;
      line-height: 1.3;
    }
    .nav-hours-mobile svg { width: 11px; height: 11px; opacity: 0.6; flex-shrink: 0; }
    .tab-bar { display: grid; }
    .mobile-contact-bar { display: none; }
    body { padding-bottom: calc(60px + env(safe-area-inset-bottom)); }
    .cards-grid, .detail-section, .section-heading, #hero { padding-left: 20px; padding-right: 20px; }
    #kontakt { padding: 60px 20px; }
    footer { padding: 20px; }
  }
  :root {
    --black: #0d0d0d;
    --off-black: #161616;
    --card-bg: #1a1a1a;
    --red:    #d42b22;
    --yellow: #f5c400;
    --blue:   #1e6fbf;
    --green:  #3a9b4b;
    --white:  #f5f5f0;
    --gray:   #888;
    --light-gray: #ccc;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--white);
    font-family: 'Barlow', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
  }

  .main-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    height: 64px; display: flex; align-items: center; padding: 0 20px;
    background: rgba(13,13,13,0.93); backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-brand { text-decoration: none; display: flex; flex-direction: row; align-items: center; gap: 0; }
  .nav-dots { display: flex; flex-direction: row; gap: 3px; flex-shrink: 0; margin-right: 10px; }
  .nd { width: 8px; height: 8px; border-radius: 1px; }
  .nd-r { background: var(--red); } .nd-y { background: var(--yellow); }
  .nd-b { background: var(--blue); } .nd-g { background: var(--green); }
  .nav-contact { display: flex; flex-direction: row; align-items: center; gap: 12px; }
  .nav-contact-left { display: flex; flex-direction: column; gap: 3px; }
  .nav-person-label { font-size: 0.6rem; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.25); line-height: 1; }
  .nav-contact-item { display: flex; align-items: center; gap: 5px; color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.72rem; font-family: 'Barlow Condensed', sans-serif; font-weight: 500; letter-spacing: 0.04em; white-space: nowrap; line-height: 1; transition: color 0.2s; }
  .nav-contact-item:hover { color: var(--white); }
  .nav-contact-item svg { width: 11px; height: 11px; flex-shrink: 0; opacity: 0.6; }
  .nav-links { display: flex; gap: 0; list-style: none; margin-left: auto; }
  .nav-links a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 0 18px; height: 64px; display: flex; align-items: center; position: relative; transition: color 0.25s; }
  .nav-links a::after { content: ''; position: absolute; bottom: 0; left: 18px; right: 18px; height: 2px; border-radius: 1px; transform: scaleX(0.35); opacity: 0.4; transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), opacity 0.3s, box-shadow 0.3s; }
  .nav-links li:nth-child(1) a::after { background: var(--red); }
  .nav-links li:nth-child(2) a::after { background: var(--yellow); }
  .nav-links li:nth-child(3) a::after { background: var(--blue); }
  .nav-links li:nth-child(4) a::after { background: var(--green); }
  .nav-links li:nth-child(1) a:hover { color: var(--red); }
  .nav-links li:nth-child(2) a:hover { color: var(--yellow); }
  .nav-links li:nth-child(3) a:hover { color: var(--blue); }
  .nav-links li:nth-child(4) a:hover { color: var(--green); }
  .nav-links li:nth-child(1) a:hover::after { transform:scaleX(1); opacity:1; box-shadow:0 0 8px var(--red),0 0 20px rgba(212,43,34,0.45); }
  .nav-links li:nth-child(2) a:hover::after { transform:scaleX(1); opacity:1; box-shadow:0 0 8px var(--yellow),0 0 20px rgba(245,196,0,0.45); }
  .nav-links li:nth-child(3) a:hover::after { transform:scaleX(1); opacity:1; box-shadow:0 0 8px var(--blue),0 0 20px rgba(30,111,191,0.45); }
  .nav-links li:nth-child(4) a:hover::after { transform:scaleX(1); opacity:1; box-shadow:0 0 8px var(--green),0 0 20px rgba(58,155,75,0.45); }
  .nav-hours-mobile { display: none !important; }

  /* TAB BAR */
  .tab-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 100; background: rgba(13,13,13,0.97); backdrop-filter: blur(16px); border-top: 1px solid rgba(255,255,255,0.08); grid-template-columns: repeat(4,1fr); padding-bottom: env(safe-area-inset-bottom); }
  .tab-item { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; text-decoration: none; color: rgba(255,255,255,0.38); padding: 10px 4px 12px; position: relative; transition: color 0.2s; }
  .tab-item::before { content: ''; position: absolute; top: 0; left: 25%; right: 25%; height: 2px; border-radius: 0 0 2px 2px; transform: scaleX(0); transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s; }
  .tab-item.t-r::before { background: var(--red); } .tab-item.t-y::before { background: var(--yellow); }
  .tab-item.t-b::before { background: var(--blue); } .tab-item.t-g::before { background: var(--green); }
  .tab-item.t-r:hover,.tab-item.t-r.active { color: var(--red); }
  .tab-item.t-y:hover,.tab-item.t-y.active { color: var(--yellow); }
  .tab-item.t-b:hover,.tab-item.t-b.active { color: var(--blue); }
  .tab-item.t-g:hover,.tab-item.t-g.active { color: var(--green); }
  .tab-item:hover::before,.tab-item.active::before { transform: scaleX(1); }
  .tab-item svg { width: 22px; height: 22px; }
  .tab-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; line-height: 1; }

  /* PAGE CONTENT */
  .page-wrap { max-width: 860px; margin: 0 auto; padding: 100px 40px 80px; }
  .page-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.8rem, 6vw, 4.5rem); letter-spacing: 0.04em; line-height: 0.95; color: var(--white); margin-bottom: 40px; }
  .page-content h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.3rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--white); margin: 36px 0 10px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .page-content h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin: 24px 0 8px; }
  .page-content h4 { font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.6); margin: 20px 0 6px; }
  .page-content p { font-size: 0.9rem; color: var(--light-gray); line-height: 1.8; margin-bottom: 12px; }
  .page-content ul { margin: 8px 0 12px 20px; }
  .page-content li { font-size: 0.9rem; color: var(--light-gray); line-height: 1.8; margin-bottom: 4px; }
  .page-content a { color: var(--yellow); text-decoration: none; transition: opacity 0.2s; }
  .page-content a:hover { opacity: 0.8; }
  .page-content strong { color: var(--white); font-weight: 600; }
  .notice-box { background: var(--card-bg); border: 1px solid rgba(255,255,255,0.055); border-left: 3px solid var(--green); padding: 20px 24px; margin: 24px 0; font-size: 0.88rem; color: var(--light-gray); line-height: 1.75; }
  .notice-box strong { color: var(--white); }

  /* FOOTER */
  .footer-strip { height: 3px; display: flex; }
  .footer-strip span { flex: 1; }
  .fs-r { background: var(--red); } .fs-y { background: var(--yellow); }
  .fs-b { background: var(--blue); } .fs-g { background: var(--green); }
  footer { background: var(--black); border-top: 1px solid rgba(255,255,255,0.05); padding: 22px 40px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
  footer p { font-size: 0.73rem; color: rgba(255,255,255,0.2); }
  footer a { color: rgba(255,255,255,0.28); text-decoration: none; font-size: 0.73rem; transition: color 0.2s; }
  footer a:hover { color: var(--white); }
  .footer-links { display: flex; gap: 24px; }

  @media (max-width: 768px) {
    .main-nav { padding: 0 12px; }
    .nav-links { display: none; }
    .nav-hours { display: none; }
    .nav-contact { display: flex; }
    .nav-contact-item { font-size: 0.65rem; }
    .nav-hours-mobile { display: flex !important; align-items: center; gap: 5px; color: rgba(255,255,255,0.4); font-size: 0.65rem; font-family: 'Barlow Condensed', sans-serif; font-weight: 500; letter-spacing: 0.04em; line-height: 1.3; }
    .nav-hours-mobile svg { width: 11px; height: 11px; opacity: 0.6; flex-shrink: 0; }
    .tab-bar { display: grid; }
    body { padding-bottom: calc(60px + env(safe-area-inset-bottom)); }
    .page-wrap { padding: 84px 20px 60px; }
    footer { padding: 20px; }
  }
