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

    :root {
      --gold: #b07d35;
      --gold-light: #c8974a;
      --gold-dim: rgba(176,125,53,0.1);
      --light: #ffffff;
      --light-mid: #f4f4f4;
      --light-border: rgba(0,0,0,0.08);
      --text: #1a1a1a;
      --text-muted: #888888;
      --text-light: #bbbbbb;
      --font-display: 'Raleway', sans-serif;
      --font-ui: 'Raleway', sans-serif;
    }

    html { scroll-behavior: smooth; scrollbar-gutter: stable; }
    body { background: var(--light); color: var(--text); font-family: var(--font-ui); font-weight: 300; line-height: 1.7; overflow-x: hidden; }
    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: var(--light-mid); }
    ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }
    h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); font-weight: 300; line-height: 1.2; color: var(--text); }
    h6 { font-size: 0.65rem; font-family: var(--font-ui); font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-muted); border-bottom: none; }
    p { font-size: 0.95rem; line-height: 1.8; color: var(--text); }
    a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
    a:hover { color: var(--gold-light); }
    .container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
    .section { padding: 7rem 0; }

    /* ─── SECTION LABEL ─── */
    .section-label {
      display: flex; align-items: center; gap: 1.2rem; margin-bottom: 4rem;
    }
    .section-label::before { display: none; }
    .section-label::after { display: none; }

    /* ─── NAV ─── */
    #site-nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(12px);
      box-shadow: 0 1px 0 var(--light-border);
      padding: 1rem 0;
      transition: padding 0.3s;
    }
    .nav-inner { display: flex; align-items: center; justify-content: space-between; }

    /* Text logo */
    .nav-brand { text-decoration: none; }
    .logo-text {
      font-family: var(--font-ui); font-weight: 300; font-size: 0.95rem;
      letter-spacing: 0.22em; text-transform: uppercase;
      color: var(--text); line-height: 1; transition: color 0.3s;
    }
    .logo-text strong { font-weight: 600; color: var(--gold); }
    .nav-brand:hover .logo-text { opacity: 0.75; }

    .nav-links { display: flex; list-style: none; gap: 0.2rem; align-items: center; }
    .nav-links li { position: relative; }
    .nav-links a {
      font-family: var(--font-ui); font-size: 0.7rem; font-weight: 500;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--text); padding: 0.5rem 0.9rem; display: block; transition: color 0.3s;
    }

    .nav-links a:hover { color: var(--gold) !important; }
    .nav-links a.nav-active { color: var(--text) !important; }
    .nav-links a.nav-active::after { content: ''; display: block; height: 1px; background: var(--gold); margin-top: 2px; opacity: 0.8; }
    .nav-external { border-left: 1px solid var(--light-border); margin-left: 0.4rem; padding-left: 0.4rem; }
    .nav-external a { color: var(--gold) !important; }
    .nav-links .active > a { color: var(--gold) !important; }
    .nav-links .active > a::after { content: ''; display: block; height: 1px; background: var(--gold); margin-top: 2px; }

    .nav-dropdown {
      position: absolute; top: calc(100% + 0.5rem); left: 0; min-width: 200px;
      background: rgba(245,242,238,0.98); border: 1px solid var(--light-border);
      border-top: 2px solid var(--gold); list-style: none;
      opacity: 0; pointer-events: none; transform: translateY(-6px);
      transition: opacity 0.25s, transform 0.25s;
      backdrop-filter: blur(10px); box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    }
    .nav-links li:hover .nav-dropdown { opacity: 1; pointer-events: auto; transform: none; }
    .nav-dropdown a { font-size: 0.65rem; letter-spacing: 0.15em; padding: 0.75rem 1.1rem; color: var(--text-muted) !important; border-bottom: 1px solid var(--light-border); display: block; }
    .nav-dropdown a:hover { color: var(--gold) !important; background: var(--gold-dim); }

    .nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
    .nav-toggle span { display: block; width: 24px; height: 1px; background: var(--text); transition: all 0.3s; }
    .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px,4px); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px,-4px); }

    .mobile-nav {
      display: none; position: fixed; inset: 0; z-index: 999;
      background: rgba(255,255,255,0.98); backdrop-filter: blur(16px);
      flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem;
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a { font-family: var(--font-display); font-size: 2rem; color: var(--text); transition: color 0.3s; }
    .mobile-nav a:hover { color: var(--gold); }
    .mobile-nav .contact-info { margin-top: 2rem; font-size: 0.75rem; letter-spacing: 0.15em; color: var(--text-muted); text-align: center; }
    .mobile-nav .contact-info a { font-family: var(--font-ui); font-size: 0.75rem; color: var(--gold); }
    @media (max-width: 768px) { .nav-links { display: none; } .nav-toggle { display: flex; } }

    /* ─── HERO ─── */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 6rem 2rem 3rem;
      width: 100%;
      position: relative;
    }
    .hero-content {
      display: flex;
      flex-direction: column;
      gap: 0;
      width: fit-content;
    }
    .hero-h1 { display: flex; flex-direction: column; gap: 0; margin: 0; font-size: inherit; font-weight: inherit; }
    .hero-line {
      font-family: var(--font-display);
      font-size: 8vw;
      font-weight: 700;
      line-height: 0.92;
      color: var(--text);
      text-transform: uppercase;
      letter-spacing: -0.02em;
      display: block;
      width: fit-content;
    }
    .hero-line-last { color: var(--gold); }
    .hero-arrow {
      position: absolute;
      right: 2rem;
      bottom: 3rem;
      font-size: 1.4rem;
      color: var(--text-muted);
      text-decoration: none;
      animation: pulse-arrow 2s ease-in-out infinite;
      line-height: 1;
      transition: color 0.3s;
    }
    .hero-arrow:hover { color: var(--gold); }
    @keyframes pulse-arrow {
      0%, 100% { transform: translateY(0); opacity: 0.5; }
      50% { transform: translateY(5px); opacity: 1; }
    }
    .hero-cta-link {
      font-family: var(--font-ui);
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--text);
      text-decoration: none;
      transition: color 0.3s;
    }
    .hero-cta-link:hover { color: var(--gold); }
    @keyframes fadeUp { to { opacity: 1; transform: none; } }
    .fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .fade-in.visible { opacity: 1; transform: none; }

    /* ─── BUTTONS ─── */
    .btn {
      display: inline-block; font-family: var(--font-ui); font-size: 0.68rem;
      font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
      padding: 0.85rem 2rem; transition: all 0.3s; cursor: pointer; border: none;
    }
    .btn-primary { background: var(--gold); color: #fff; }
    .btn-primary:hover { background: var(--gold-light); color: #fff; transform: translateY(-2px); }
    .btn-outline-white { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.5); }
    .btn-outline-white:hover { background: rgba(255,255,255,0.1); color: #fff; border-color: #fff; transform: translateY(-2px); }
    .btn-outline { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
    .btn-outline:hover { background: var(--gold-dim); transform: translateY(-2px); }

    /* ─── SERVICES ─── */
    #leistungen { background: var(--light-mid); border-top: 1px solid var(--light-border); }
    .services-intro { max-width: 560px; margin-bottom: 0; }
    .services-intro h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; text-transform: uppercase; letter-spacing: -0.01em; margin-bottom: 1rem; }
    .services-intro p { color: var(--text-muted); }
    .services-quote {
      padding: 3.5rem 0;
      border-top: 1px solid var(--light-border);
      border-bottom: 1px solid var(--light-border);
      margin: 3rem 0 3.5rem;
    }
    .services-quote blockquote {
      font-family: var(--font-display);
      font-size: clamp(1.2rem, 2.2vw, 1.8rem);
      font-weight: 300; letter-spacing: 0.05em; text-transform: uppercase; font-style: normal;
      color: var(--text); line-height: 1.4; max-width: 780px;
    }
    .services-quote blockquote em { color: var(--gold); font-style: normal; font-weight: 600; }
    .services-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      grid-template-rows: 1fr 1fr;
      gap: 2px; background: var(--light-border);
      height: 72vh; min-height: 480px;
    }
    @media (max-width: 860px) { .services-grid { grid-template-columns: 1fr; grid-template-rows: auto; height: auto; } }
    .svc-tile { position: relative; overflow: hidden; background: var(--light-mid); cursor: default; }
    .svc-tile:first-child { grid-row: 1 / 3; }
    @media (max-width: 860px) { .svc-tile:first-child { grid-row: auto; aspect-ratio: 4/3; } }
    .svc-tile img {
      position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.7s ease, filter 0.5s ease;
      filter: brightness(0.55) saturate(0.8);
    }
    .svc-tile:hover img { transform: scale(1.05); filter: brightness(0.35) saturate(0.7); }
    .svc-tile-content {
      position: absolute; inset: 0;
      display: flex; flex-direction: column; justify-content: flex-end;
      padding: 1.6rem 1.8rem; z-index: 2;
    }
    .svc-tile-num { font-family: var(--font-display); font-size: 0.72rem; font-style: italic; color: var(--gold); opacity: 0.8; margin-bottom: 0.3rem; }
    .svc-tile-title { font-family: var(--font-ui); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; line-height: 1.3; }
    .svc-tile-body { font-size: 0.82rem; line-height: 1.7; color: rgba(255,255,255,0.75); margin-top: 0.7rem; max-height: 0; overflow: hidden; transition: max-height 0.5s ease, opacity 0.4s ease; opacity: 0; }
    .svc-tile:hover .svc-tile-body { max-height: 200px; opacity: 1; }
    .svc-tile:hover .svc-tile-num { opacity: 1; }
    .svc-tile-link { display: inline-block; font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-top: 0.8rem; font-family: var(--font-ui); font-weight: 500; opacity: 0; transition: opacity 0.4s 0.1s; }
    .svc-tile:hover .svc-tile-link { opacity: 1; }

    /* ─── PORTFOLIO horizontal strips ─── */
    .p-strip { height: 250vw; background: var(--light); }
    .p-strip:first-of-type { border-top: 1px solid var(--gold); }
    .p-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; display: flex; flex-direction: column; justify-content: center; gap: 1.2rem; }
    .p-header { padding: 0 2rem 1.4rem; display: flex; align-items: flex-end; justify-content: space-between; border-bottom: 1px solid var(--light-border); }
    .p-title { font-family: var(--font-display); font-size: clamp(1.4rem, 2.5vw, 2.2rem); font-weight: 300; color: var(--text); letter-spacing: 0.08em; text-transform: uppercase; line-height: 1; }
    .p-scroll-hint { font-family: var(--font-ui); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); display: flex; flex-direction: column; align-items: flex-end; gap: 0.3rem; padding-bottom: 0.2rem; }
    .p-scroll-hint .arr { color: var(--gold); font-size: 0.9rem; }
    .p-counter { font-family: var(--font-display); font-size: 0.85rem; color: var(--text-muted); font-style: italic; min-width: 2.5rem; text-align: center; }
    .p-counter .p-counter-current { color: var(--gold); font-size: 1.1rem; }
    .p-scroll-hint .p-hint-row { display: flex; align-items: center; gap: 0.6rem; }
    .p-viewport { overflow: hidden; width: 100%; }
    .p-track { display: flex; gap: 2px; will-change: transform; padding: 0 2rem; }
    .p-slide { flex-shrink: 0; height: 56vh; width: auto; overflow: hidden; border: 1px solid var(--light-border); }
    .p-slide img { height: 100%; width: auto; max-width: none; display: block; transition: transform 0.6s ease; }
    .p-slide:hover img { transform: scale(1.03); }
    @media (max-width: 768px) { .p-slide { height: 36vh; } }

        /* ─── REFERENZEN ─── */
    #referenzen { background: var(--light); }
    .ref-grid {
      display: grid; grid-template-columns: repeat(5, 1fr); column-gap: 2rem; align-items: start;
    }
    @media (max-width: 860px) { .ref-grid { grid-template-columns: repeat(3, 1fr); } }
    @media (max-width: 480px) { .ref-grid { grid-template-columns: repeat(2, 1fr); } }
    .ref-col ul { list-style: none; }
    .ref-col ul li {
      font-size: 0.8rem; color: var(--text-muted); padding: 0.25rem 0;
      border-bottom: 1px solid rgba(0,0,0,0.04); transition: color 0.2s;
      letter-spacing: 0.02em; display: flex; align-items: baseline; gap: 0.5rem;
    }
    .ref-col ul li:hover { color: var(--text); }
    .ref-col ul li::before { content: ''; display: none; }
    .ref-col ul li { padding-left: 0; gap: 0; border-bottom: 1px solid var(--light-border); }

    /* ─── KONTAKT ─── */
    #kontakt { background: #fff; }
    .contact-grid {
      display: grid; grid-template-columns: 1fr 1.4fr; gap: 6rem; align-items: start;
    }
    @media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 3rem; } }

    .contact-details-label {
      font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
      color: var(--gold); font-family: var(--font-ui); font-weight: 500; margin-bottom: 3rem; display: block;
    }
    .contact-info-rows { display: flex; flex-direction: column; gap: 2.2rem; }
    .contact-row { display: flex; align-items: flex-start; gap: 1.4rem; }
    .contact-row-icon {
      width: 44px; height: 44px; border: 1px solid var(--light-border);
      display: flex; align-items: center; justify-content: center;
      color: var(--gold); font-size: 1.05rem; flex-shrink: 0; margin-top: 2px;
    }
    .contact-row-text {
      font-family: var(--font-display); font-size: 1.1rem; font-weight: 300;
      color: var(--text-muted); line-height: 1.5;
    }
    .contact-row-text a { color: var(--text-muted); }
    .contact-row-text a:hover { color: var(--gold); }

    .contact-form-heading { font-size: clamp(1.6rem, 3vw, 2.8rem); font-weight: 700; text-transform: uppercase; letter-spacing: -0.01em; margin-bottom: 0.3rem; }
    .contact-form-sub { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1.6rem; }
    .form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin-bottom: 0.6rem; }
    .form-field { margin-bottom: 0.6rem; }
    .form-field input, .form-field textarea {
      width: 100%; background: var(--light); border: none; border-bottom: 1px solid rgba(0,0,0,0.12);
      color: var(--text); padding: 0.65rem 0; font-family: var(--font-ui);
      font-size: 0.8rem; font-weight: 300; outline: none; transition: border-color 0.3s; resize: none;
    }
    .form-field input:focus, .form-field textarea:focus { border-bottom-color: var(--gold); }
    .form-field input::placeholder, .form-field textarea::placeholder { color: var(--text-muted); font-size: 0.78rem; }
    .form-field textarea { min-height: 90px; }

    /* ─── FOOTER ─── */
    footer { background: var(--light-mid); border-top: 1px solid var(--light-border); }
    .footer-main { padding: 5rem 0 4rem; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 4rem; }
    @media (max-width: 768px) { .footer-main { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
    @media (max-width: 480px) { .footer-main { grid-template-columns: 1fr; } }
    .footer-col { display: flex; flex-direction: column; }
    .footer-logo { font-family: var(--font-ui); font-weight: 300; font-size: 1rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text); margin-bottom: 1rem; display: block; }
    .footer-logo strong { font-weight: 700; color: var(--gold); }
    .footer-tagline { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.4rem; }
    .footer-region { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); margin-top: 1rem; }
    .footer-col-title { font-family: var(--font-ui); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.5rem; }
    .footer-contact-list { list-style: none; display: flex; flex-direction: column; }
    .footer-contact-list li { font-size: 0.82rem; color: var(--text-muted); padding: 0.5rem 0; border-bottom: 1px solid var(--light-border); line-height: 1.5; }
    .footer-contact-list a { color: var(--text-muted); transition: color 0.3s; }
    .footer-contact-list a:hover { color: var(--gold); }
    .footer-bottom { border-top: 1px solid var(--light-border); padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.8rem; }
    .footer-bottom p, .footer-bottom a { font-size: 0.68rem; letter-spacing: 0.1em; color: var(--text-muted); text-transform: uppercase; }
    .footer-bottom a:hover { color: var(--gold); }

    /* ─── ANIMATIONS ─── */
    .fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .fade-in.visible { opacity: 1; transform: none; }

    /* ─── PRELOADER ─── */
    #pageloader {
      position: fixed; inset: 0; z-index: 9999;
      background: var(--light);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 2.5rem;
      transition: opacity 0.6s ease, visibility 0.6s ease;
    }
    #pageloader.loaded { opacity: 0; visibility: hidden; }

    .preloader-brand {
      display: flex; gap: 0;
      font-family: var(--font-ui);
      font-size: clamp(0.9rem, 2.5vw, 1.4rem);
      font-weight: 500;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--text);
    }
    .preloader-brand span {
      opacity: 0;
      transform: translateY(8px);
      transition: opacity 0.3s ease, transform 0.3s ease;
    }
    .preloader-brand span.show { opacity: 1; transform: none; }

    .preloader-bar {
      width: 160px; height: 1px;
      background: var(--light-border);
      position: relative; overflow: hidden;
    }
    .preloader-bar span {
      position: absolute; left: 0; top: 0; bottom: 0;
      width: 0%; background: var(--gold);
      transition: width 0.1s linear;
    }

    /* ─── SCROLL INDICATOR ─── */
    #scroll-indicator {
      position: fixed;
      left: 1.2rem; top: 50%;
      transform: translateY(-50%);
      z-index: 500;
      display: flex; flex-direction: column;
      align-items: center; gap: 0.6rem;
      opacity: 0; transition: opacity 0.4s;
    }
    #scroll-indicator.visible { opacity: 1; }

    .scroll-track {
      width: 1px; height: 160px;
      background: var(--light-border);
      position: relative;
    }
    .scroll-bar {
      position: absolute; top: 0; left: 0; right: 0;
      height: 0%;
      background: var(--gold);
      transition: height 0.15s linear;
    }
    .scroll-percent {
      font-family: var(--font-ui);
      font-size: 0.55rem;
      letter-spacing: 0.12em;
      color: var(--text-muted);
      writing-mode: horizontal-tb;
      opacity: 0;
      transition: opacity 0.3s;
    }

    @media (max-width: 768px) { #scroll-indicator { display: none; } }

    /* ─── LEGAL MODALS ─── */
    .legal-modal {
      display: none;
      position: fixed; inset: 0; z-index: 2000;
      background: rgba(245,242,238,0.98);
      backdrop-filter: blur(12px);
      overflow-y: auto;
    }
    .legal-modal.open { display: block; }
    .legal-modal-inner {
      max-width: 760px;
      margin: 0 auto;
      padding: 5rem 2rem 6rem;
    }
    .legal-modal-close {
      position: fixed; top: 1.5rem; right: 1.5rem;
      width: 40px; height: 40px;
      border: 1px solid var(--light-border);
      background: #fff; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; color: var(--text-muted);
      transition: border-color 0.3s, color 0.3s;
      z-index: 2001;
    }
    .legal-modal-close:hover { border-color: var(--gold); color: var(--gold); }
    .legal-modal-inner h3 {
      font-family: var(--font-display); font-size: 1.3rem; font-weight: 300;
      color: var(--text); margin: 2rem 0 0.5rem;
    }
    .legal-modal-inner h3:first-child { margin-top: 0; }
    .legal-modal-inner p {
      font-size: 0.85rem; color: var(--text-muted); line-height: 1.9; margin-bottom: 0.8rem;
    }
    .legal-modal-inner ul { padding-left: 1.2rem; margin-bottom: 0.8rem; }
    .legal-modal-inner ul li { font-size: 0.85rem; color: var(--text-muted); line-height: 1.8; }
    .legal-modal-title {
      font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 300; color: var(--text); margin-bottom: 2.5rem;
      padding-bottom: 1.5rem; border-bottom: 1px solid var(--light-border);
    }

    /* ─── LEGAL MODALS ─── */
    .legal-modal { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(255,255,255,0.98); backdrop-filter: blur(12px); overflow-y: auto; }
    .legal-modal.open { display: block; }
    .legal-modal-inner { max-width: 760px; margin: 0 auto; padding: 5rem 2rem 6rem; }
    .legal-modal-close { position: fixed; top: 1.5rem; right: 1.5rem; width: 40px; height: 40px; border: 1px solid var(--light-border); background: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--text-muted); transition: border-color 0.3s, color 0.3s; z-index: 2001; }
    .legal-modal-close:hover { border-color: var(--gold); color: var(--gold); }
    .legal-modal-inner h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 300; color: var(--text); margin: 2rem 0 0.5rem; }
    .legal-modal-inner h3:first-child { margin-top: 0; }
    .legal-modal-inner p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.9; margin-bottom: 0.8rem; }
    .legal-modal-inner ul { padding-left: 1.2rem; margin-bottom: 0.8rem; }
    .legal-modal-inner ul li { font-size: 0.85rem; color: var(--text-muted); line-height: 1.8; }
    .legal-modal-title { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 300; color: var(--text); margin-bottom: 2.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--light-border); }

    /* ─── PRELOADER ─── */
    #pageloader { position: fixed; inset: 0; z-index: 9999; background: #ffffff; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem; transition: opacity 0.6s ease, visibility 0.6s ease; }
    #pageloader.loaded { opacity: 0; visibility: hidden; }
    .preloader-brand { display: flex; gap: 0; font-family: var(--font-ui); font-size: clamp(0.9rem, 2.5vw, 1.4rem); font-weight: 500; letter-spacing: 0.35em; text-transform: uppercase; color: var(--text); }
    .preloader-brand span { opacity: 0; transform: translateY(8px); transition: opacity 0.3s ease, transform 0.3s ease; }
    .preloader-brand span.show { opacity: 1; transform: none; }
    .preloader-bar { width: 160px; height: 1px; background: var(--light-border); position: relative; overflow: hidden; }
    .preloader-bar span { position: absolute; left: 0; top: 0; bottom: 0; width: 0%; background: var(--gold); transition: width 0.1s linear; }
    /* ─── SCROLL INDICATOR ─── */
    #scroll-indicator { display: none !important; position: fixed; left: 1.2rem; top: 50%; transform: translateY(-50%); z-index: 500; display: flex; flex-direction: column; align-items: center; gap: 0.6rem; opacity: 0; transition: opacity 0.4s; }
    #scroll-indicator.visible { opacity: 1; }
    .scroll-track { width: 1px; height: 160px; background: rgba(0,0,0,0.1); position: relative; }
    .scroll-bar { position: absolute; top: 0; left: 0; right: 0; height: 0%; background: var(--gold); transition: height 0.15s linear; }
    .scroll-percent { font-family: var(--font-ui); font-size: 0.55rem; letter-spacing: 0.12em; color: var(--text-muted); writing-mode: horizontal-tb; opacity: 0; transition: opacity 0.3s; }
    @media (max-width: 768px) { #scroll-indicator { display: none; } }
    #review-container { display: none; }
@media (max-width: 768px) {
@media (max-width: 768px) {
  .hero { min-height: auto !important; padding: 5rem 1.5rem 2rem !important; }
  .hero-content { width: 60vw; }
  .hero-line { font-size: 14vw; }
  .hero-sub { margin-top: 1.5rem; }
  .p-strip { height: 350vw; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
