    :root {
      /* Studio (Landing) — Deep green base (instead of black) */
      --bg: #141517;
      --bg2: #18191c;
      --surface: #1c1e21;
      --card: #212327;
      --border: rgba(255,255,255,.07);
      --border-gold: rgba(198,158,80,.22);
      --text: #f0ebe0;
      --muted: #7a7468;
      --muted2: #a09890;
      --gold: #c69e50;
      --gold-light: #e8c87a;
      --gold-dim: rgba(198,158,80,.15);
      --cream: #f5ede0;
      --grey-dark: #26282c;
    }

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

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

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
    }

    a { text-decoration: none; color: inherit; cursor: pointer; }
    img { display: block; max-width: 100%; }
    h1,h2,h3,h4 { line-height: 1; }

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

    /* ── NOISE TEXTURE OVERLAY ── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 1000;
      opacity: .025;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
      background-size: 128px 128px;
    }

    /* ── HEADER ── */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 500;
      padding: 0 40px;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: background .4s, border-color .4s;
      border-bottom: 1px solid transparent;
    }
    .site-header.scrolled {
      background: rgba(20, 21, 23, .92);
      border-color: var(--border);
      backdrop-filter: blur(20px);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      opacity: .82;
    }
    .nav-logo img {
      width: auto;
      height: 48px;
      max-width: 220px;
    }

    .nav-name {
      font-family: 'DM Sans', sans-serif;
      font-weight: 400;
      font-size: .8rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--cream);
      white-space: nowrap;
      margin-left: 22px;
      flex: 1;
      text-align: left;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
      font-size: .8rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--muted2);
    }
    .nav-links a { transition: color .2s; }
    .nav-links a:hover { color: var(--gold); }

    .nav-cta {
      font-size: .78rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--bg);
      background: var(--gold);
      padding: 10px 24px;
      border-radius: 2px;
      transition: background .2s, color .2s;
      font-weight: 500;
    }
    .nav-cta:hover { background: var(--gold-light); }

    /* ── HERO ── */
    .hero {
      position: relative;
      min-height: 100svh;
      display: grid;
      align-items: end;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 30%;
      filter: brightness(.38) saturate(.7);
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to right, rgba(20, 21, 23, .96) 0%, rgba(20, 21, 23, .6) 55%, rgba(20, 21, 23, .2) 100%),
        linear-gradient(to top, rgba(20, 21, 23, .98) 0%, transparent 50%);
    }

    /* Decorative gold line */
    .hero-line {
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 3px;
      background: linear-gradient(to bottom, transparent, var(--gold), transparent);
      opacity: .6;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 120px 0 100px;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: end;
      gap: 60px;
    }

    .hero-eyebrow {
      display: flex;
      align-items: center;
      gap: 14px;
      font-size: .72rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 28px;
    }
    .hero-eyebrow::before {
      content: '';
      width: 40px;
      height: 1px;
      background: var(--gold);
      flex-shrink: 0;
    }

    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3.5rem, 6.5vw, 6.8rem);
      font-weight: 300;
      line-height: .95;
      letter-spacing: -.02em;
      color: var(--cream);
    }
    .hero-title em {
      font-style: italic;
      color: var(--gold-light);
    }

    .hero-subtitle {
      margin-top: 28px;
      font-size: 1.05rem;
      color: var(--muted2);
      max-width: 46ch;
      font-weight: 300;
      line-height: 1.75;
    }

    .hero-actions {
      margin-top: 44px;
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      align-items: center;
    }

    .btn-gold {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 14px 32px;
      background: var(--gold);
      color: var(--bg);
      font-size: .8rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      font-weight: 500;
      border-radius: 2px;
      transition: background .25s, transform .2s;
      cursor: pointer;
    }
    .btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 13px 30px;
      border: 1px solid rgba(198,158,80,.4);
      color: var(--gold);
      font-size: .8rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      border-radius: 2px;
      transition: border-color .25s, background .25s;
      cursor: pointer;
    }
    .btn-ghost:hover { border-color: var(--gold); background: rgba(198,158,80,.08); }

    .hero-stats {
      display: flex;
      flex-direction: column;
      gap: 2px;
      align-self: end;
    }

    .hero-stat-item {
      display: flex;
      align-items: baseline;
      gap: 16px;
      padding: 22px 0;
      border-bottom: 1px solid var(--border);
    }
    .hero-stat-item:first-child { border-top: 1px solid var(--border); }

    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.4rem;
      font-weight: 300;
      color: var(--gold);
      min-width: 80px;
      line-height: 1;
    }
    .stat-text {
      font-size: .82rem;
      color: var(--muted2);
      letter-spacing: .04em;
      line-height: 1.5;
    }

    /* Scroll indicator */
    .scroll-hint {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      font-size: .65rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .scroll-line {
      width: 1px;
      height: 50px;
      background: linear-gradient(to bottom, var(--gold), transparent);
      animation: scrollPulse 2s ease infinite;
    }
    @keyframes scrollPulse {
      0%, 100% { opacity: .3; transform: scaleY(1); }
      50% { opacity: 1; transform: scaleY(1.1); }
    }

    /* ── MARQUEE STRIP ── */
    .marquee-wrap {
      overflow: hidden;
      border-top: 1px solid var(--border-gold);
      border-bottom: 1px solid var(--border-gold);
      padding: 14px 0;
      background: var(--surface);
    }
    .marquee-track {
      display: flex;
      gap: 0;
      animation: marquee 30s linear infinite;
      width: max-content;
    }
    .marquee-item {
      display: inline-flex;
      align-items: center;
      gap: 20px;
      padding: 0 36px;
      font-size: .7rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--muted);
      white-space: nowrap;
    }
    .marquee-dot {
      width: 4px;
      height: 4px;
      background: var(--gold);
      border-radius: 50%;
      flex-shrink: 0;
    }
    @keyframes marquee {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    /* ── INTRO ── */
    .intro { padding: 120px 0; }
    .intro-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .intro-label {
      display: flex;
      align-items: center;
      gap: 14px;
      font-size: .72rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 24px;
    }
    .intro-label::before {
      content: '';
      width: 30px;
      height: 1px;
      background: var(--gold);
    }
    .intro-heading {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.5rem, 4vw, 4.2rem);
      font-weight: 300;
      line-height: 1.05;
      color: var(--cream);
    }
    .intro-heading em {
      font-style: italic;
      color: var(--gold-light);
    }
    .intro-body {
      margin-top: 28px;
      color: var(--muted2);
      font-size: 1rem;
      font-weight: 300;
      line-height: 1.85;
    }
    .intro-quote {
      position: relative;
      padding: 48px;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 4px;
    }
    .intro-quote::before {
      content: '"';
      font-family: 'Cormorant Garamond', serif;
      font-size: 8rem;
      color: var(--gold);
      opacity: .2;
      position: absolute;
      top: -10px;
      left: 36px;
      line-height: 1;
    }
    .intro-quote p {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem;
      font-weight: 300;
      font-style: italic;
      color: var(--cream);
      line-height: 1.45;
    }
    .intro-quote cite {
      display: block;
      margin-top: 24px;
      font-size: .75rem;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--gold);
      font-style: normal;
    }

    /* ── SERVICES ── */
    .services { padding: 0 0 140px; }
    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 40px;
      margin-bottom: 64px;
      padding-bottom: 32px;
      border-bottom: 1px solid var(--border);
    }
    .section-label {
      display: flex;
      align-items: center;
      gap: 14px;
      font-size: .72rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }
    .section-label::before {
      content: '';
      width: 30px;
      height: 1px;
      background: var(--gold);
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.4rem, 3.5vw, 4rem);
      font-weight: 300;
      color: var(--cream);
      max-width: 14ch;
    }
    .section-desc {
      max-width: 44ch;
      color: var(--muted2);
      font-size: .9rem;
      font-weight: 300;
      line-height: 1.8;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      background: var(--border);
    }

    .service-card {
      background: var(--bg);
      display: flex;
      flex-direction: column;
      overflow: hidden;
      transition: background .3s;
      position: relative;
    }
    .service-card:hover { background: var(--card); }

    .service-img-wrap {
      position: relative;
      overflow: hidden;
      aspect-ratio: 4/5;
    }
    .service-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(.7) saturate(.8);
      transition: transform .7s ease, filter .5s;
    }
    .service-card:hover .service-img-wrap img {
      transform: scale(1.04);
      filter: brightness(.85) saturate(1);
    }

    .service-number {
      position: absolute;
      top: 20px;
      left: 20px;
      font-family: 'Cormorant Garamond', serif;
      font-size: .85rem;
      color: var(--gold);
      letter-spacing: .1em;
    }

    .service-body {
      padding: 36px 36px 44px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .service-kicker {
      font-size: .68rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
    }
    .service-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.9rem;
      font-weight: 300;
      color: var(--cream);
      line-height: 1.15;
      margin-bottom: 16px;
    }
    .service-desc {
      color: var(--muted2);
      font-size: .88rem;
      font-weight: 300;
      line-height: 1.7;
      flex: 1;
    }
    .service-items {
      margin-top: 20px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .service-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: .8rem;
      color: var(--muted);
      letter-spacing: .04em;
    }
    .service-item::before {
      content: '';
      width: 16px;
      height: 1px;
      background: var(--gold);
      flex-shrink: 0;
      opacity: .6;
    }
    .service-link {
      margin-top: 28px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: .75rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--gold);
      transition: gap .25s;
    }
    .service-link:hover { gap: 18px; }
    .service-link::after {
      content: '→';
      transition: transform .25s;
    }
    /* Stretched Link: macht die gesamte Karte klickbar */
    .service-link::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 1;
    }

    /* ── GALLERY ── */
    .gallery { padding: 0 0 140px; }
    .gallery-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      grid-template-rows: 280px 280px;
      gap: 3px;
    }
    .gallery-item {
      overflow: hidden;
      position: relative;
    }
    .gallery-item:first-child {
      grid-row: 1 / 3;
    }
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(.65) saturate(.75);
      transition: transform .8s ease, filter .5s;
    }
    .gallery-item:hover img {
      transform: scale(1.06);
      filter: brightness(.8) saturate(1);
    }
    .gallery-item-label {
      position: absolute;
      bottom: 16px;
      left: 20px;
      font-size: .65rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(255,255,255,.5);
    }

    /* ── REVIEWS ── */
    .reviews { padding: 0 0 140px; }
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      background: var(--border);
    }
    .review-card {
      background: var(--bg);
      padding: 44px 40px 48px;
      transition: background .3s;
    }
    .review-card:hover { background: var(--card); }
    .review-stars {
      color: var(--gold);
      font-size: .8rem;
      letter-spacing: 3px;
      margin-bottom: 20px;
    }
    .review-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.35rem;
      font-weight: 300;
      font-style: italic;
      color: var(--cream);
      line-height: 1.55;
      margin-bottom: 24px;
    }
    .review-author {
      font-size: .72rem;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--muted);
    }

    /* ── CTA ── */
    .cta-section {
      position: relative;
      overflow: hidden;
      padding: 0 0 80px;
    }
    .cta-box {
      position: relative;
      padding: 90px 80px;
      background: var(--surface);
      border: 1px solid var(--border-gold);
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 80px;
      align-items: center;
      overflow: hidden;
    }
    .cta-box::before {
      content: '';
      position: absolute;
      top: -60px;
      right: -60px;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(198,158,80,.12) 0%, transparent 70%);
      pointer-events: none;
    }
    .cta-label {
      display: flex;
      align-items: center;
      gap: 14px;
      font-size: .72rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
    }
    .cta-label::before {
      content: '';
      width: 30px;
      height: 1px;
      background: var(--gold);
    }
    .cta-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 3vw, 3.4rem);
      font-weight: 300;
      color: var(--cream);
      max-width: 18ch;
      line-height: 1.1;
    }
    .cta-sub {
      margin-top: 16px;
      color: var(--muted2);
      font-size: .9rem;
      font-weight: 300;
    }
    .cta-buttons {
      display: flex;
      flex-direction: column;
      gap: 12px;
      min-width: 220px;
    }
    .cta-btn {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 24px;
      border: 1px solid var(--border);
      font-size: .78rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--text);
      transition: border-color .25s, background .25s, color .25s;
      cursor: pointer;
    }
    .cta-btn:hover { border-color: var(--gold); background: var(--gold-dim); color: var(--gold); }
    .cta-btn span { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; }

    /* ── FOOTER ── */
    .footer {
      border-top: 1px solid var(--border);
      padding: 44px 0;
    }
    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
    }
    .footer-copy {
      font-size: .75rem;
      color: var(--muted);
      letter-spacing: .06em;
    }
    .footer-links {
      display: flex;
      gap: 32px;
    }
    .footer-links a {
      font-size: .72rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--muted);
      transition: color .2s;
    }
    .footer-links a:hover { color: var(--gold); }
    .footer-credit {
      font-size: .72rem;
      letter-spacing: .08em;
      color: var(--muted);
    }
    .footer-credit a { color: var(--gold); transition: opacity .2s; }
    .footer-credit a:hover { opacity: .75; }

    /* ── ANIMATIONS ── */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity .8s ease, transform .8s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: .1s; }
    .reveal-delay-2 { transition-delay: .2s; }
    .reveal-delay-3 { transition-delay: .3s; }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .hero-inner { grid-template-columns: 1fr; gap: 36px; }
      .hero-content { padding: 120px 0 84px; }
      .hero-stats { flex-direction: row; gap: 0; }
      .hero-stat-item { flex: 1; border-top: 1px solid var(--border); border-bottom: none; border-right: 1px solid var(--border); padding: 18px 12px; }
      .hero-stat-item:last-child { border-right: none; }
      .intro { padding: 96px 0; }
      .intro-grid { grid-template-columns: 1fr; gap: 48px; }
      .services { padding: 0 0 110px; }
      .services-grid { grid-template-columns: 1fr; gap: 2px; }
      .service-img-wrap { aspect-ratio: 16/9; }
      .gallery { padding: 0 0 110px; }
      .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
      .gallery-item:first-child { grid-row: auto; }
      .reviews { padding: 0 0 110px; }
      .reviews-grid { grid-template-columns: 1fr; gap: 2px; }
      .cta-box { grid-template-columns: 1fr; gap: 40px; padding: 60px 40px; }
      .cta-buttons { flex-direction: row; flex-wrap: wrap; }
      .footer-inner { flex-direction: column; text-align: center; gap: 20px; }
      .site-header { padding: 0 24px; }
      .nav-name { display: none; }
      .nav-links { display: none; }
    }
    @media (max-width: 768px) {
      .scroll-hint, .hero-line { display: none !important; }

      .container { width: min(100% - 32px, 1280px); }

      .site-header {
        height: auto;
        min-height: 72px;
        padding: 14px 16px;
        justify-content: center;
        background: rgba(20, 21, 23, .9);
        border-color: var(--border);
        backdrop-filter: blur(18px);
      }

      .nav-logo {
        text-align: center;
      }
      .nav-logo img {
        height: 38px;
        max-width: 180px;
      }

      .hero {
        min-height: auto;
        align-items: stretch;
      }

      .hero-bg {
        object-position: center 24%;
        filter: brightness(.34) saturate(.72);
      }

      .hero-overlay {
        background:
          linear-gradient(to bottom, rgba(20, 21, 23, .86) 0%, rgba(20, 21, 23, .48) 30%, rgba(20, 21, 23, .92) 100%),
          linear-gradient(to top, rgba(20, 21, 23, .98) 0%, transparent 52%);
      }

      .hero-content {
        padding: 116px 0 40px;
      }

      .hero-inner {
        gap: 26px;
      }

      .hero-eyebrow {
        gap: 10px;
        margin-bottom: 18px;
        font-size: .62rem;
        letter-spacing: .18em;
      }

      .hero-eyebrow::before {
        width: 24px;
      }

      .hero-title {
        font-size: clamp(2.55rem, 12vw, 4rem);
        line-height: .94;
        max-width: 10ch;
      }

      .hero-subtitle {
        margin-top: 18px;
        max-width: 100%;
        font-size: .95rem;
        line-height: 1.7;
      }

      .hero-actions {
        margin-top: 28px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        width: 100%;
      }

      .btn-gold,
      .btn-ghost {
        width: 100%;
        justify-content: center;
        padding: 15px 18px;
      }

      .hero-stats {
        flex-direction: column;
        border: 1px solid var(--border);
        background: rgba(28,29,31,.55);
        backdrop-filter: blur(10px);
      }

      .hero-stat-item {
        border-right: none;
        border-top: none;
        border-bottom: 1px solid var(--border);
        padding: 18px 16px;
        gap: 14px;
        align-items: center;
      }

      .hero-stat-item:first-child { border-top: none; }
      .hero-stat-item:last-child { border-bottom: none; }

      .stat-num {
        min-width: 58px;
        font-size: 2rem;
      }

      .stat-text {
        font-size: .78rem;
        line-height: 1.45;
      }

      .marquee-wrap {
        padding: 11px 0;
      }

      .marquee-item {
        padding: 0 22px;
        font-size: .62rem;
        letter-spacing: .16em;
        gap: 14px;
      }

      .intro {
        padding: 72px 0;
      }

      .intro-grid {
        gap: 28px;
      }

      .intro-label,
      .section-label,
      .cta-label {
        gap: 10px;
        margin-bottom: 14px;
        font-size: .62rem;
        letter-spacing: .16em;
      }

      .intro-label::before,
      .section-label::before,
      .cta-label::before {
        width: 22px;
      }

      .intro-heading,
      .section-title,
      .cta-title {
        max-width: 100%;
      }

      .intro-body,
      .section-desc,
      .cta-sub {
        margin-top: 16px;
        font-size: .94rem;
        line-height: 1.75;
      }

      .intro-quote {
        padding: 28px 22px 24px;
      }

      .intro-quote::before {
        left: 18px;
        top: -8px;
        font-size: 5.3rem;
      }

      .intro-quote p {
        font-size: 1.45rem;
        line-height: 1.42;
      }

      .intro-quote cite {
        margin-top: 18px;
        font-size: .68rem;
      }

      .services,
      .gallery,
      .reviews {
        padding: 0 0 78px;
      }

      .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        margin-bottom: 34px;
        padding-bottom: 18px;
      }

      .section-desc {
        max-width: 100%;
      }

      .service-body {
        padding: 26px 22px 30px;
      }

      .service-title {
        font-size: 1.6rem;
        margin-bottom: 12px;
      }

      .service-desc {
        font-size: .9rem;
      }

      .service-items {
        margin-top: 16px;
      }

      .service-link {
        margin-top: 20px;
      }

      .gallery-grid {
        grid-template-columns: 1fr;
        gap: 2px;
      }

      .gallery-item,
      .gallery-item:first-child {
        min-height: 240px;
      }

      .review-card {
        padding: 30px 24px 34px;
      }

      .review-text {
        font-size: 1.18rem;
        line-height: 1.5;
        margin-bottom: 18px;
      }

      .cta-section {
        padding: 0 0 56px;
      }

      .cta-box {
        padding: 34px 22px;
        gap: 28px;
      }

      .cta-buttons {
        flex-direction: column;
        min-width: 100%;
      }

      .cta-btn {
        padding: 15px 18px;
      }

      .footer {
        padding: 30px 0 34px;
      }

      .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px 24px;
      }
    }
    @media (max-width: 430px) {
      .site-header {
        min-height: 68px;
        padding: 12px 14px;
      }

      .container {
        width: min(100% - 24px, 1280px);
      }

      .hero-content {
        padding: 104px 0 34px;
      }

      .hero-title {
        font-size: clamp(2.25rem, 12vw, 3.1rem);
      }

      .hero-subtitle {
        font-size: .9rem;
      }

      .btn-gold,
      .btn-ghost {
        font-size: .74rem;
        letter-spacing: .11em;
      }

      .stat-num {
        min-width: 52px;
        font-size: 1.8rem;
      }

      .stat-text {
        font-size: .74rem;
      }

      .intro-heading,
      .section-title,
      .cta-title {
        font-size: clamp(2rem, 10vw, 2.6rem);
      }

      .intro-quote p {
        font-size: 1.28rem;
      }

      .service-img-wrap {
        aspect-ratio: 4/3;
      }

      .service-title {
        font-size: 1.42rem;
      }

      .gallery-item,
      .gallery-item:first-child {
        min-height: 220px;
      }

      .review-text {
        font-size: 1.08rem;
      }
    }