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

  :root {
    --ink:     #264653;
    --ink-mid: rgba(38,70,83,.72);
    --ink-lt:  rgba(38,70,83,.45);
    --rule:    #e8d8c0;
    --paper:   #fef3e2;
    --cream:   #fdfaf5;
    --red:     #c23b22;
    --red-dk:  #9e2f1a;
    --white:   #ffffff;
    --ff-serif: 'Lora', Georgia, serif;
    --ff-sans:  'DM Sans', sans-serif;
    --ff-mono:  'DM Mono', monospace;
  }

  html { scroll-behavior: smooth; font-size: 16px; }

  body {
    font-family: var(--ff-sans);
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden;
    cursor: none;
  }

  /* ── Custom cursor ── */
  .cursor {
    width: 10px; height: 10px;
    background: var(--red);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%,-50%);
    transition: transform .1s, background .2s, width .15s, height .15s;
  }
  .cursor.hover {
    width: 36px; height: 36px;
    background: transparent;
    border: 1.5px solid var(--red);
  }

  /* ── Nav ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 24px 60px;
    background: transparent;
    transition: background .4s, padding .4s, backdrop-filter .4s;
  }
  nav.scrolled {
    background: rgba(242,238,228,.92);
    backdrop-filter: blur(12px);
    padding: 16px 60px;
    border-bottom: 1px solid var(--rule);
  }
  .nav-logo {
    font-family: var(--ff-serif);
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: .02em;
    color: var(--ink);
    text-decoration: none;
  }
  .nav-logo span { color: var(--red); }
  .nav-links {
    display: flex; gap: 40px; list-style: none;
  }
  .nav-links a {
    font-family: var(--ff-mono);
    font-size: .75rem;
    font-weight: 400;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ink-mid);
    text-decoration: none;
    transition: color .2s;
  }
  .nav-links a:hover { color: var(--red); }
  .nav-cta {
    font-family: var(--ff-mono);
    font-size: .7rem;
    font-weight: 400;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--ink);
    border: none;
    padding: 10px 22px;
    cursor: none;
    text-decoration: none;
    transition: background .2s;
  }
  .nav-cta:hover { background: var(--red); }

  /* ── Hero ── */
  #hero {
    position: relative;
    background: var(--cream);
    padding: 0 !important;
    height: 100vh;
  }

  .hero-skyline-wrap {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 520px;
    overflow: hidden;
  }

  .hero-image {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    border-top: none !important;
    opacity: 1 !important;
    animation: none !important;
    overflow: hidden;
  }
  .hero-image img, .hero-image svg {
    width: 100%; height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 30%;
    filter: sepia(35%) saturate(1.2) brightness(1.05);
    opacity: .3;
  }

  /* Fog layer */
  .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: radial-gradient(ellipse 85% 70% at 50% 50%,
      rgba(253,250,245,.96) 0%,
      rgba(253,250,245,.78) 45%,
      rgba(230,180,100,.15) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  /* Eyebrow — centered via flex */
  .hero-overlay .hero-eyebrow {
    white-space: nowrap;
    font-family: var(--ff-mono);
    font-size: .88rem;
    font-weight: 400;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 14px;
    opacity: 0;
    animation: fadeUp .7s .3s forwards;
    will-change: opacity;
    z-index: 3;
    margin-bottom: 24px;
  }
  .hero-overlay .hero-eyebrow::before,
  .hero-overlay .hero-eyebrow::after {
    content: '';
    display: block;
    width: 36px; height: 1.5px;
    background: var(--red);
  }

  /* Buttons */
  .hero-actions-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    white-space: nowrap;
    opacity: 0;
    animation: fadeUp .8s .7s forwards;
    will-change: opacity;
    z-index: 3;
    margin: 40px 0;
  }

  /* Static Hero text boxes */
  .hero-title-top,
  .hero-title-bottom {
    text-align: center;
    z-index: 4;
    opacity: 0;
    animation: fadeUp .8s .4s forwards;
  }
  .hero-title-bottom {
    animation-delay: 0.9s;
  }

  .hero-text-main {
    font-family: var(--ff-serif);
    font-weight: 300;
    font-size: clamp(2rem, 6vw, 5.8rem);
    letter-spacing: -.03em;
    color: var(--ink);
    text-align: center;
    display: block;
    white-space: nowrap;
    line-height: 1.08;
  }
  .hero-text-main .web-red { color: var(--red); }
  .hero-text-main em { font-style: italic; color: var(--red); display: inline; }

  .hero-sub, .hero-headline { display: none; }
  .hero-rotating-text { display: none; }

  /* Mobile: adjust sizing and spacing */
  @media (max-width: 900px) {
    .hero-text-main {
      font-size: clamp(1.8rem, 8vw, 3rem);
      white-space: normal;
      max-width: 90vw;
      margin: 0 auto;
    }
    .hero-overlay .hero-eyebrow { font-size: .72rem; margin-bottom: 20px; }
    .hero-actions-content { gap: 16px; flex-wrap: wrap; padding: 0 20px; margin: 30px 0; }
  }

  .hero-eyebrow {
    font-family: var(--ff-mono);
    font-size: .72rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    opacity: 0;
    animation: fadeUp .8s .2s forwards;
  }
  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px; height: 1px;
    background: var(--red);
  }

  /* hero-sub no longer used in new hero layout */
  .hero-sub { display: none; }

  /* hero-headline not used in overlay — kept for fallback */
  .hero-headline { display: none; }

  /* hero-actions unused */

  .btn-primary {
    display: inline-block;
    font-family: var(--ff-mono);
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--ink);
    padding: 16px 36px;
    text-decoration: none;
    transition: background .2s, transform .15s;
    border: 1px solid var(--ink);
  }
  .btn-primary:hover { background: var(--red); border-color: var(--red); transform: translateY(-1px); }

  .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--ff-mono);
    font-size: .82rem;
    font-weight: 400;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
    transition: color .2s;
  }
  .btn-ghost svg { transition: transform .2s; }
  .btn-ghost:hover { color: var(--ink); }
  .btn-ghost:hover svg { transform: translateX(4px); }

  .hero-image {
    width: 100%;
    position: relative;
    opacity: 0;
    animation: fadeIn 1.2s 1s forwards;
    border-top: 1px solid var(--rule);
  }
  .hero-image img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    object-position: center 40%;
    display: block;
    filter: contrast(1.02) brightness(1.0);
  }

  /* ── Strip — always visible at top of page ── */
  .strip {
    background: var(--ink);
    padding: 15px 60px;
    display: flex;
    align-items: center;
    gap: 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
  }
  .strip-track {
    display: flex;
    gap: 60px;
    animation: ticker 22s linear infinite;
    white-space: nowrap;
  }
  .strip-track span {
    font-family: var(--ff-mono);
    font-size: .68rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--rule);
    flex-shrink: 0;
  }
  .strip-track .dot {
    color: var(--red);
    font-size: .9rem;
    line-height: 1;
  }

  @keyframes ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* ── Section common ── */
  section {
    padding: 88px 60px;
  }
  .section-label {
    font-family: var(--ff-mono);
    font-size: .68rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 44px;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .section-label::before {
    content: '';
    display: block;
    width: 32px; height: 1px;
    background: var(--red);
  }

  /* ── Services ── */
  #leistungen {
    background: var(--paper);
    border-top: 1px solid var(--rule);
  }

  .services-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 56px;
  }

  .services-title {
    font-family: var(--ff-serif);
    font-weight: 300;
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    line-height: 1.12;
    letter-spacing: -.02em;
  }

  .services-intro {
    font-size: .95rem;
    line-height: 1.75;
    color: var(--ink-mid);
    font-weight: 300;
    max-width: 420px;
    padding-bottom: 8px;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--rule);
    border-left: 1px solid var(--rule);
  }

  .service-card {
    border-right: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 36px 32px;
    position: relative;
    transition: background .25s;
    overflow: hidden;
  }
  .service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--red);
    transition: width .35s ease;
  }
  .service-card:hover { background: var(--cream); }
  .service-card:hover::after { width: 100%; }

  .service-num {
    font-family: var(--ff-mono);
    font-size: .65rem;
    letter-spacing: .16em;
    color: var(--red);
    margin-bottom: 24px;
  }

  .service-icon {
    width: 40px; height: 40px;
    margin-bottom: 20px;
    color: var(--ink);
  }

  .service-name {
    font-family: var(--ff-serif);
    font-weight: 400;
    font-size: 1.3rem;
    letter-spacing: -.01em;
    margin-bottom: 14px;
  }

  .service-desc {
    font-size: .88rem;
    line-height: 1.72;
    color: var(--ink-mid);
    font-weight: 300;
  }

  /* ── Process ── */
  #prozess {
    background: var(--cream);
  }

  .process-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 100px;
    align-items: start;
  }

  .process-sticky {
    position: sticky;
    top: 120px;
  }

  .process-title {
    font-family: var(--ff-serif);
    font-weight: 300;
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    line-height: 1.15;
    letter-spacing: -.02em;
    margin-bottom: 24px;
  }

  .process-desc {
    font-size: .9rem;
    line-height: 1.78;
    color: var(--ink-mid);
    font-weight: 300;
  }

  .process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .process-step {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 28px;
    padding: 28px 0;
    border-bottom: 1px solid var(--rule);
    position: relative;
  }
  .process-step:first-child { border-top: 1px solid var(--rule); }

  .step-num {
    font-family: var(--ff-serif);
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--rule);
    line-height: 1;
    padding-top: 4px;
    transition: color .3s;
  }
  .process-step:hover .step-num { color: var(--red); }

  .step-content {}
  .step-name {
    font-family: var(--ff-sans);
    font-weight: 500;
    font-size: 1.05rem;
    margin-bottom: 10px;
    letter-spacing: -.01em;
  }
  .step-text {
    font-size: .88rem;
    line-height: 1.72;
    color: var(--ink-mid);
    font-weight: 300;
  }

  /* ── Referenzen ── */
  #referenzen {
    background: var(--paper);
    border-top: 1px solid var(--rule);
  }

  .projects-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 52px;
  }

  .projects-title {
    font-family: var(--ff-serif);
    font-weight: 300;
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    line-height: 1.12;
    letter-spacing: -.02em;
  }

  .projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
  }

  .project-card {
    position: relative;
    overflow: hidden;
    background: var(--rule);
    aspect-ratio: 16/10;
    cursor: none;
  }

  /* First card (WordPress) — full width, taller */
  .project-card:first-child {
    grid-column: 1 / 3;
    aspect-ratio: 21/9;
  }

  /* Second card — left half, normal */
  .project-card:last-child {
    grid-column: 1 / 2;
  }

  .project-bg {
    width: 100%; height: 100%;
    overflow: hidden;
    position: relative;
  }

  .preview-iframe {
    position: absolute;
    top: 0;
    left: 0;
    border: none;
    pointer-events: none;
    display: block;
  }

  .project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28,24,20,.85) 0%, transparent 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 36px;
    transform: translateY(8px);
    transition: transform .4s;
  }
  .project-card:hover .project-overlay { transform: translateY(0); }

  .project-tag {
    font-family: var(--ff-mono);
    font-size: .65rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
    margin-bottom: 8px;
  }

  .project-name {
    font-family: var(--ff-serif);
    font-weight: 400;
    font-size: 1.45rem;
    color: var(--white);
    letter-spacing: -.01em;
  }

  /* Mock project visuals using CSS */
  .proj-1 { background: linear-gradient(135deg, #2c3e50 0%, #34495e 40%, #1a252f 100%); }
  .proj-2 { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); }
  .proj-3 { background: linear-gradient(135deg, #2d2d2d 0%, #4a4a4a 100%); }

  .proj-mockup {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .proj-1 .mockup-bar {
    position: absolute; top: 15%; left: 50%; transform: translateX(-50%);
    width: 75%; height: 5px;
    background: rgba(255,255,255,.15);
    border-radius: 2px;
  }
  .proj-1 .mockup-bar::before {
    content: ''; position: absolute; left: 0; top: 0;
    width: 35%; height: 100%;
    background: rgba(192,57,43,.7);
    border-radius: 2px;
  }

  .mockup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    width: 70%;
    padding-top: 24px;
  }
  .mockup-block {
    height: 80px;
    background: rgba(255,255,255,.08);
    border-radius: 3px;
    border: 1px solid rgba(255,255,255,.1);
  }
  .mockup-block.tall { height: 140px; }
  .mockup-block.accent { background: rgba(192,57,43,.25); }

  .mockup-nav {
    position: absolute; top: 0; left: 0; right: 0;
    height: 44px;
    background: rgba(0,0,0,.35);
    display: flex; align-items: center; gap: 12px; padding: 0 20px;
  }
  .mockup-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.2); }
  .mockup-dot.r { background: var(--red); }
  .mockup-line {
    height: 2px; flex: 1;
    background: rgba(255,255,255,.1);
    border-radius: 1px;
  }

  /* ── About / Frankfurt ── */
  #ueber-uns {
    background: var(--ink);
    color: var(--cream);
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
  }

  .about-label {
    font-family: var(--ff-mono);
    font-size: .68rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .about-label::before { content: ''; display: block; width: 32px; height: 1px; background: var(--red); }

  .about-title {
    font-family: var(--ff-serif);
    font-weight: 300;
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.15;
    letter-spacing: -.02em;
    margin-bottom: 28px;
  }
  .about-title em { font-style: italic; color: rgba(242,238,228,.55); }

  .about-body {
    font-size: .95rem;
    line-height: 1.8;
    color: rgba(242,238,228,.65);
    font-weight: 300;
    margin-bottom: 20px;
  }

  .about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,.1);
  }

  .stat-num {
    font-family: var(--ff-serif);
    font-size: 2.6rem;
    font-weight: 300;
    color: var(--cream);
    letter-spacing: -.03em;
    line-height: 1;
    margin-bottom: 6px;
  }
  .stat-num sup { font-size: .9rem; color: var(--red); }

  .stat-label {
    font-family: var(--ff-mono);
    font-size: .65rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(242,238,228,.4);
  }

  .about-visual {
    position: relative;
  }

  .frankfurt-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    padding: 40px;
    position: relative;
  }

  .frankfurt-skyline-svg {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 28px;
    opacity: .55;
  }

  .frankfurt-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .fi-item {}
  .fi-label {
    font-family: var(--ff-mono);
    font-size: .6rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(242,238,228,.3);
    margin-bottom: 4px;
  }
  .fi-val {
    font-size: .88rem;
    color: rgba(242,238,228,.75);
    font-weight: 300;
  }

  .pin {
    display: inline-flex; align-items: center; gap: 6px;
  }
  .pin::before {
    content: '●';
    color: var(--red);
    font-size: .55rem;
  }

  /* ── Testimonials ── */
  #stimmen {
    background: var(--cream);
    border-top: 1px solid var(--rule);
  }

  .testimonials-title {
    font-family: var(--ff-serif);
    font-weight: 300;
    font-size: clamp(2rem, 3.5vw, 3rem);
    letter-spacing: -.02em;
    margin-bottom: 52px;
    max-width: 560px;
    line-height: 1.15;
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--rule);
    border-left: 1px solid var(--rule);
  }

  .testimonial {
    border-right: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 44px 36px;
    position: relative;
  }

  .quote-mark {
    font-family: var(--ff-serif);
    font-size: 4rem;
    line-height: 1;
    color: var(--red);
    opacity: .3;
    margin-bottom: 12px;
  }

  .testimonial-text {
    font-family: var(--ff-serif);
    font-style: italic;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--ink);
    margin-bottom: 28px;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .author-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--ff-serif);
    font-size: .85rem;
    font-weight: 300;
    color: var(--cream);
    background: var(--ink);
    flex-shrink: 0;
  }

  .author-name {
    font-size: .85rem;
    font-weight: 500;
    letter-spacing: -.01em;
  }
  .author-role {
    font-size: .75rem;
    color: var(--ink-lt);
    font-weight: 300;
    font-family: var(--ff-mono);
    letter-spacing: .06em;
  }

  /* ── Contact ── */
  #kontakt {
    background: var(--paper);
    border-top: 1px solid var(--rule);
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
  }

  .contact-title {
    font-family: var(--ff-serif);
    font-weight: 300;
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    line-height: 1.1;
    letter-spacing: -.02em;
    margin-bottom: 28px;
  }
  .contact-title em { font-style: italic; color: var(--red); }

  .contact-text {
    font-size: .92rem;
    line-height: 1.78;
    color: var(--ink-mid);
    font-weight: 300;
    margin-bottom: 48px;
  }

  .contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .cd-row {
    display: flex;
    align-items: flex-start;
    gap: 18px;
  }

  .cd-icon {
    width: 36px; height: 36px;
    border: 1px solid var(--rule);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }

  .cd-label {
    font-family: var(--ff-mono);
    font-size: .62rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ink-lt);
    margin-bottom: 2px;
  }

  .cd-val {
    font-size: .9rem;
    color: var(--ink);
    font-weight: 400;
  }

  /* ── Form ── */
  .form-fields {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--rule);
  }

  .field-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .field {
    padding: 20px 24px;
    border-bottom: 1px solid var(--rule);
    border-right: 1px solid var(--rule);
    position: relative;
    background: transparent;
    transition: background .2s;
  }
  .field:last-child { border-right: none; }
  .field.full { grid-column: 1 / 3; border-right: none; }
  .field:focus-within { background: var(--cream); }

  .field label {
    display: block;
    font-family: var(--ff-mono);
    font-size: .62rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ink-lt);
    margin-bottom: 6px;
    transition: color .2s;
  }
  .field:focus-within label { color: var(--red); }

  .field input,
  .field textarea,
  .field select {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-family: var(--ff-sans);
    font-size: .9rem;
    font-weight: 300;
    color: var(--ink);
    resize: none;
    cursor: none;
  }
  .field textarea { min-height: 100px; }
  .field select { appearance: none; cursor: none; }

  .form-submit {
    width: 100%;
    padding: 18px 36px;
    background: var(--ink);
    color: var(--white);
    font-family: var(--ff-mono);
    font-size: .72rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    border: none;
    cursor: none;
    transition: background .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
  .form-submit:hover { background: var(--red); }

  /* ── Footer ── */
  footer {
    background: var(--ink);
    color: rgba(242,238,228,.45);
    padding: 52px 60px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
    border-top: 1px solid rgba(255,255,255,.08);
  }

  .footer-logo {
    font-family: var(--ff-serif);
    font-size: .95rem;
    font-weight: 300;
    color: var(--cream);
    text-decoration: none;
  }
  .footer-logo span { color: var(--red); }

  .footer-copy {
    font-family: var(--ff-mono);
    font-size: .62rem;
    letter-spacing: .12em;
    text-align: center;
  }

  .footer-links {
    display: flex;
    justify-content: flex-end;
    gap: 28px;
    list-style: none;
  }
  .footer-links a {
    font-family: var(--ff-mono);
    font-size: .62rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(242,238,228,.4);
    text-decoration: none;
    transition: color .2s;
  }
  .footer-links a:hover { color: var(--red); }

  /* ── Animations ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }

  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── Burger Menu ── */
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px; height: 36px;
    background: none; border: none;
    cursor: none; padding: 4px;
    z-index: 200;
  }
  .burger span {
    display: block;
    width: 24px; height: 1.5px;
    background: var(--ink);
    transition: transform .3s ease, opacity .3s ease;
    transform-origin: center;
  }
  .burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  /* Mobile menu drawer */
  .mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 150;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s ease;
  }
  .mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-menu a {
    font-family: var(--ff-serif);
    font-weight: 300;
    font-size: clamp(2rem, 8vw, 3.2rem);
    letter-spacing: -.02em;
    color: var(--ink);
    text-decoration: none;
    padding: 16px 0;
    border-bottom: 1px solid var(--rule);
    width: 80%;
    text-align: center;
    transition: color .2s;
  }
  .mobile-menu a:last-of-type { border-bottom: none; }
  .mobile-menu a:hover { color: var(--red); }
  .mobile-menu .menu-cta {
    margin-top: 36px;
    font-family: var(--ff-mono);
    font-size: .78rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--ink);
    padding: 14px 32px;
    border: 1px solid var(--ink);
    font-weight: 400;
    font-size: .78rem;
  }
  .mobile-menu .menu-cta:hover { background: var(--red); border-color: var(--red); color: var(--white); }

  /* ── Responsive ── */
  @media (max-width: 900px) {
    nav { padding: 20px 28px; }
    nav.scrolled { padding: 14px 28px; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .burger { display: flex; }
    .mobile-menu { display: flex; }
    section { padding: 80px 28px; }
    .hero-inner { padding: 110px 28px 48px; }
    .strip { padding: 16px 28px; }
    #hero, .hero-skyline-wrap { height: calc(100vh - 120px); min-height: 480px; }
    .services-header { grid-template-columns: 1fr; gap: 24px; }
    .services-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; gap: 48px; }
    .process-sticky { position: static; }
    .about-grid { grid-template-columns: 1fr; gap: 56px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 56px; }
    .projects-grid { grid-template-columns: 1fr; }
    .projects-grid .project-card:first-child { grid-column: 1; aspect-ratio: 16/10; }
    .projects-grid .project-card:last-child { grid-column: 1; }
    .price-grid { grid-template-columns: 1fr !important; }
    .pricing { padding: 80px 28px; }
    .field-group { grid-template-columns: 1fr; }
    .field.full, .field { grid-column: 1; border-right: none; }
    footer { grid-template-columns: 1fr; text-align: center; gap: 20px; }
    .footer-links { justify-content: center; }
    .footer-copy { order: 2; }
  }

/* ── PRICING ── */
.pricing { padding: 100px 60px; background: var(--paper); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 60px; }
.price-card { background: var(--cream); padding: 44px 36px; border: 1px solid var(--rule); position: relative; transition: transform .2s, box-shadow .2s; }
.price-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(38,70,83,.08); }
.price-card.featured { background: var(--ink); border-color: var(--ink); }
.price-label { font-family: var(--ff-mono); font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; color: var(--red); margin-bottom: 20px; }
.price-card.featured .price-label { color: var(--red-dk); }
.price-num { font-family: var(--ff-serif); font-size: 2.8rem; font-weight: 400; letter-spacing: -.02em; line-height: 1; margin-bottom: 4px; }
.price-card.featured .price-num { color: var(--white); }
.price-per { font-family: var(--ff-mono); font-size: .6rem; letter-spacing: .12em; opacity: .5; margin-bottom: 20px; }
.price-card.featured .price-per { color: var(--white); opacity: .4; }
.price-name { font-family: var(--ff-serif); font-size: .95rem; font-weight: 400; margin-bottom: 20px; }
.price-card.featured .price-name { color: var(--white); }
.price-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.price-list li { font-size: .83rem; opacity: .7; font-weight: 300; display: flex; gap: 10px; line-height: 1.5; }
.price-list li span { color: var(--red); opacity: 1; flex-shrink: 0; }
.price-card.featured .price-list li { color: var(--white); }
.price-card.featured .price-list li span { color: var(--red-dk); }
.price-btn { display: inline-block; font-family: var(--ff-mono); font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; padding: 12px 24px; text-decoration: none; border: 1.5px solid var(--red); color: var(--red); border-radius: 2px; transition: all .2s; }
.price-btn:hover { background: var(--red); color: var(--white); }
.price-card.featured .price-btn { background: var(--red); color: var(--white); border-color: var(--red); }
.price-card.featured .price-btn:hover { background: var(--red-dk); border-color: var(--red-dk); }
.note { margin-top: 24px; font-family: var(--ff-mono); font-size: .63rem; letter-spacing: .1em; opacity: .5; }

  @media (hover: none) and (pointer: coarse) {
    .cursor { display: none !important; }
    body, *, *:hover { cursor: auto !important; }
  }
