    :root {
      --bg: #050505;
      --bg-soft: #111;
      --card: #0c0c0c;
      --text: #fff;
      --text-soft: #c9c9c9;
      --line: #262626;
      --line-strong: #fff;
      --max: 1180px;
      --radius: 18px;
      --shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Manrope", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 10% 0%, #1a1a1a 0%, transparent 32%),
        radial-gradient(circle at 90% 10%, #171717 0%, transparent 28%),
        var(--bg);
      line-height: 1.55;
      text-rendering: optimizeLegibility;
      -webkit-font-smoothing: antialiased;
    }

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

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

    .container {
      width: min(var(--max), 92vw);
      margin: 0 auto;
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 40;
      backdrop-filter: blur(8px);
      background: rgba(5, 5, 5, 0.8);
      border-bottom: 1px solid var(--line);
    }

    .topbar-inner {
      min-height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 650;
      letter-spacing: .3px;
    }

    .brand img {
      width: 38px;
      height: 38px;
      object-fit: contain;
    }

    .nav {
      display: flex;
      gap: 18px;
      color: var(--text-soft);
      font-size: 0.95rem;
    }

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

    .breadcrumb {
      border-bottom: 1px solid var(--line);
      background: rgba(8, 8, 8, .75);
      font-size: .9rem;
      color: var(--text-soft);
    }

    .breadcrumb-inner {
      display: flex;
      align-items: center;
      gap: 8px;
      min-height: 44px;
    }

    .breadcrumb a:hover,
    .breadcrumb a:focus-visible {
      color: var(--text);
    }

    .hero {
      position: relative;
      min-height: 76vh;
      display: grid;
      place-items: center;
      border-bottom: 1px solid var(--line);
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.75)), url("assets/header_black.png") center / cover no-repeat;
      transform: scale(1.02);
      z-index: -2;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.08) 50%, transparent 80%);
      z-index: -1;
      animation: sheen 8s linear infinite;
    }

    @keyframes sheen {
      from { transform: translateX(-40%); }
      to { transform: translateX(45%); }
    }

    .hero-content {
      text-align: center;
      width: min(760px, 92vw);
      animation: fadeUp .8s ease-out;
    }

    .hero-logo {
      margin: 0 auto 18px;
      width: 92px;
      height: 92px;
      object-fit: contain;
      filter: drop-shadow(0 8px 24px rgba(0, 0, 0, .6));
    }

    h1 {
      font-family: "Cormorant Garamond", Georgia, serif;
      font-weight: 700;
      font-size: clamp(2rem, 4.2vw, 3.8rem);
      line-height: 1.1;
      letter-spacing: .4px;
    }

    .subtitle {
      margin-top: 14px;
      color: #e4e4e4;
      font-size: clamp(1rem, 1.8vw, 1.22rem);
    }

    .hero-text {
      margin: 14px auto 0;
      max-width: 62ch;
      color: #d4d4d4;
      font-size: clamp(.95rem, 1.5vw, 1.07rem);
    }

    .hero-cta {
      margin-top: 26px;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 12px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 46px;
      padding: 0 18px;
      border-radius: 999px;
      border: 1px solid var(--line-strong);
      font-weight: 600;
      transition: .2s ease;
      white-space: nowrap;
    }

    .btn-icon,
    .fab-icon {
      width: 18px;
      height: 18px;
      display: inline-flex;
      flex: 0 0 auto;
    }

    .btn-icon svg,
    .fab-icon svg {
      width: 100%;
      height: 100%;
      fill: currentColor;
    }

    .btn.primary {
      background: #fff;
      color: #050505;
    }

    .btn.primary:hover,
    .btn.primary:focus-visible {
      transform: translateY(-1px);
      box-shadow: 0 8px 20px rgba(255, 255, 255, .18);
    }

    .btn.ghost {
      background: transparent;
      color: #fff;
      border-color: #fff;
    }

    .btn.ghost:hover,
    .btn.ghost:focus-visible {
      background: #fff;
      color: #050505;
    }

    .btn.whatsapp {
      background: #25D366;
      border-color: #25D366;
      color: #fff;
    }

    .btn.whatsapp:hover,
    .btn.whatsapp:focus-visible {
      background: #1ebe5a;
      border-color: #1ebe5a;
      color: #fff;
      transform: translateY(-1px);
      box-shadow: 0 8px 20px rgba(37, 211, 102, .26);
    }

    section {
      padding: 72px 0;
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 24px;
      flex-wrap: wrap;
    }

    h2 {
      font-family: "Cormorant Garamond", Georgia, serif;
      font-weight: 700;
      font-size: clamp(1.45rem, 2.8vw, 2.3rem);
      line-height: 1.2;
    }

    .section-note {
      color: var(--text-soft);
      max-width: 760px;
    }

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

    .gallery figure {
      overflow: hidden;
      border-radius: var(--radius);
      border: 1px solid var(--line);
      background: var(--bg-soft);
      box-shadow: var(--shadow);
      min-height: 180px;
    }

    .gallery img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .45s ease;
    }

    .gallery figure:hover img {
      transform: scale(1.04);
    }

    .span-7 { grid-column: span 7; }
    .span-5 { grid-column: span 5; }
    .span-4 { grid-column: span 4; }
    .span-8 { grid-column: span 8; }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
    }

    .service-item {
      display: flex;
      align-items: center;
      gap: 10px;
      border: 1px solid var(--line);
      border-radius: 14px;
      background: #0b0b0b;
      padding: 14px 16px;
      color: #efefef;
      font-weight: 500;
    }

    .service-icon {
      width: 20px;
      height: 20px;
      display: inline-flex;
      flex: 0 0 auto;
      color: #fff;
    }

    .service-icon svg {
      width: 100%;
      height: 100%;
      fill: currentColor;
    }

    .seo-copy {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: linear-gradient(180deg, #0f0f0f, #090909);
      padding: 24px;
      box-shadow: var(--shadow);
    }

    .seo-copy p {
      color: var(--text-soft);
      margin-top: 12px;
    }

    .faq-list {
      display: grid;
      gap: 12px;
    }

    .faq-item {
      border: 1px solid var(--line);
      border-radius: 14px;
      background: #0b0b0b;
      padding: 16px 18px;
    }

    .faq-item h3 {
      font-size: 1.05rem;
      margin-bottom: 8px;
    }

    .faq-item p {
      color: var(--text-soft);
    }

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

    .card {
      background: linear-gradient(180deg, #0f0f0f, #090909);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 24px;
      box-shadow: var(--shadow);
    }

    .card h3 {
      font-family: "Cormorant Garamond", Georgia, serif;
      font-weight: 600;
      font-size: 1.2rem;
      margin-bottom: 12px;
    }

    .meta {
      color: var(--text-soft);
      font-size: .96rem;
    }

    .meta + .meta {
      margin-top: 8px;
    }

    .card-links {
      margin-top: 18px;
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .map-wrap {
      margin-top: 16px;
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--line);
    }

    .map-wrap iframe {
      width: 100%;
      min-height: 360px;
      border: 0;
      display: block;
      filter: grayscale(100%) contrast(1.08);
    }

    .footer {
      border-top: 1px solid var(--line);
      padding: 30px 0;
      color: #bdbdbd;
      font-size: .92rem;
      text-align: center;
    }

    .floating-actions {
      position: fixed;
      right: 16px;
      bottom: 16px;
      z-index: 80;
      display: grid;
      gap: 10px;
    }

    .fab {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 48px;
      padding: 0 16px;
      border-radius: 999px;
      border: 1px solid #fff;
      background: rgba(0, 0, 0, 0.88);
      color: #fff;
      font-weight: 700;
      font-size: 0.92rem;
      letter-spacing: .2px;
      box-shadow: 0 12px 25px rgba(0,0,0,.35);
      backdrop-filter: blur(8px);
      transition: .2s ease;
    }

    .fab:hover,
    .fab:focus-visible {
      transform: translateY(-2px);
      background: #fff;
      color: #050505;
    }

    .fab.whatsapp {
      background: #25D366;
      border-color: #25D366;
      color: #fff;
    }

    .fab.whatsapp:hover,
    .fab.whatsapp:focus-visible {
      background: #1ebe5a;
      border-color: #1ebe5a;
      color: #fff;
    }

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

    @media (max-width: 980px) {
      .gallery .span-7,
      .gallery .span-5,
      .gallery .span-4,
      .gallery .span-8 {
        grid-column: span 6;
      }

      .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

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

    @media (max-width: 760px) {
      .topbar-inner {
        min-height: 64px;
      }

      .nav {
        display: none;
      }

      section {
        padding: 58px 0;
      }

      .gallery {
        gap: 10px;
      }

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

      .map-wrap iframe {
        min-height: 300px;
      }

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

      .fab {
        min-height: 44px;
        padding: 0 14px;
        font-size: .86rem;
      }

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