    :root {
      --white: #ffffff;
      --cream: #fbf4f1;

      --red-bright: #ee2a45;
      --red-main: #c7152e;
      --red-dark: #9c1023;
      --red-deep: #740b18;
      --burgundy: #4f0812;

      --pink-soft: #fff0f3;
      --pink-main: #f2b5c0;
      --pink-deep: #df95a4;
      --pink-muted: #c98795;
      --champagne: #fff7f2;

      --text: #2f2926;
      --muted: #7b6761;
      --line: rgba(199, 21, 46, 0.14);
      --shadow: 0 28px 80px rgba(156, 16, 35, 0.18);
      --radius: 28px;
      --container: 1180px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Inter", sans-serif;
      background: var(--cream);
      color: var(--text);
      line-height: 1.7;
      overflow-x: hidden;
    }

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

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

    .container {
      width: min(100% - 40px, var(--container));
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .section {
      position: relative;
      overflow: hidden;
      padding: 106px 0;
    }

    /* Two luxury background systems: red and light. No patterns, only glossy gradients. */
    .bg-red {
      color: var(--white);
      background:
        linear-gradient(135deg, var(--red-bright) 0%, var(--red-main) 42%, var(--red-dark) 76%, var(--red-deep) 100%);
    }

    .bg-light {
      color: var(--text);
      background:
        linear-gradient(112deg, rgba(255,255,255,0.72) 0%, rgba(255,255,255,0.10) 32%, transparent 55%),
        radial-gradient(ellipse at 82% 18%, rgba(255,255,255,0.66), transparent 32%),
        radial-gradient(ellipse at 14% 88%, rgba(180, 21, 42, 0.12), transparent 38%),
        linear-gradient(135deg, #fff8fa 0%, var(--pink-main) 47%, #fff2f4 100%);
    }

    .bg-red::before,
    .bg-light::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      opacity: 0.92;
    }

    .bg-red::before {
      background:
        linear-gradient(115deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.055) 30%, transparent 52%),
        radial-gradient(ellipse at 82% 16%, rgba(255,255,255,0.18), transparent 30%),
        radial-gradient(ellipse at 16% 86%, rgba(255,210,220,0.11), transparent 34%);
      mix-blend-mode: screen;
    }

    .bg-light::before {
      background:
        linear-gradient(100deg, transparent 0%, rgba(255,255,255,0.46) 20%, rgba(255,255,255,0.08) 32%, transparent 48%),
        linear-gradient(180deg, rgba(255,255,255,0.20), transparent 54%, rgba(255,255,255,0.10));
      mix-blend-mode: soft-light;
    }

    .bg-red h1,
    .bg-red h2,
    .bg-red h3,
    .bg-red p {
      color: var(--white);
    }

    .bg-red p {
      opacity: 0.88;
    }

    .bg-red .eyebrow {
      color: #ffe1e6;
    }

    .eyebrow {
      color: var(--red-main);
      font-weight: 800;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      font-size: 0.78rem;
      margin-bottom: 14px;
    }

    h1,
    h2,
    h3 {
      font-family: "Playfair Display", serif;
      color: var(--text);
      line-height: 1.08;
    }

    h1 {
      font-size: clamp(2.35rem, 5vw, 4.65rem);
      max-width: 650px;
      letter-spacing: -0.05em;
    }

    h2 {
      font-size: clamp(2.2rem, 4vw, 4.1rem);
      letter-spacing: -0.04em;
      margin-bottom: 20px;
    }

    h3 {
      font-size: 1.45rem;
      margin-bottom: 10px;
    }

    p {
      color: var(--muted);
      font-size: 1rem;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border-radius: 999px;
      padding: 15px 24px;
      font-weight: 800;
      transition: 0.25s ease;
      border: 1px solid transparent;
      cursor: pointer;
      white-space: nowrap;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--red-bright) 0%, var(--red-main) 44%, var(--red-dark) 100%);
      color: var(--white);
      box-shadow: 0 18px 42px rgba(180, 21, 42, 0.32);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      background: linear-gradient(135deg, #e12b45 0%, #b4152a 44%, #760d1b 100%);
      box-shadow: 0 22px 50px rgba(180, 21, 42, 0.38);
    }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.78);
      border-color: rgba(180, 21, 42, 0.18);
      color: var(--red-dark);
      box-shadow: 0 10px 28px rgba(143, 16, 33, 0.07);
      backdrop-filter: blur(14px);
    }

    .btn-secondary:hover {
      transform: translateY(-2px);
      background: rgba(255, 255, 255, 0.92);
      border-color: rgba(180, 21, 42, 0.34);
    }

    .bg-red .btn-secondary {
      background: rgba(255, 255, 255, 0.14);
      color: var(--white);
      border-color: rgba(255, 255, 255, 0.34);
    }

    .bg-red .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.22);
      border-color: rgba(255, 255, 255, 0.54);
    }

    .header {
      position: fixed;
      top: 16px;
      left: 0;
      right: 0;
      z-index: 100;
      pointer-events: none;
    }

    .nav {
      width: min(100% - 40px, var(--container));
      margin: 0 auto;
      background: rgba(255, 255, 255, 0.76);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.88);
      border-radius: 999px;
      box-shadow: 0 14px 45px rgba(143, 16, 33, 0.13);
      padding: 12px 14px 12px 22px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      pointer-events: auto;
    }

    .logo {
      font-family: "Playfair Display", serif;
      font-weight: 700;
      font-size: 1.25rem;
      letter-spacing: -0.02em;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 26px;
      font-size: 0.92rem;
      color: var(--muted);
      font-weight: 700;
    }

    .nav-links a:hover {
      color: var(--red-main);
    }

    .nav .btn {
      padding: 11px 18px;
      font-size: 0.92rem;
    }

    .hero {
      min-height: 100svh;
      padding: 112px 0 48px;
      display: flex;
      align-items: center;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 0.96fr 1.04fr;
      align-items: center;
      gap: 42px;
      position: relative;
      z-index: 2;
    }

    .hero-text p.lead {
      max-width: 590px;
      font-size: 1.03rem;
      margin: 16px 0 22px;
    }

    .rating-pill {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(255, 255, 255, 0.16);
      border: 1px solid rgba(255, 255, 255, 0.28);
      border-radius: 999px;
      padding: 9px 14px;
      margin-bottom: 22px;
      font-weight: 800;
      color: #ffe1a7;
      box-shadow: 0 12px 32px rgba(80, 0, 18, 0.14);
      backdrop-filter: blur(14px);
      font-size: 0.94rem;
    }

    .hero.bg-light .rating-pill {
      background: rgba(255, 255, 255, 0.82);
      border-color: rgba(180, 21, 42, 0.18);
      color: var(--red-main);
      box-shadow: 0 12px 32px rgba(143, 16, 33, 0.08);
    }

    .rating-pill span {
      color: rgba(255, 255, 255, 0.88);
      font-weight: 700;
    }

    .hero.bg-light .rating-pill span {
      color: var(--muted);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 24px;
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
      color: rgba(255, 255, 255, 0.88);
      font-size: 0.95rem;
      font-weight: 700;
    }

    .hero.bg-light .hero-meta {
      color: var(--muted);
    }

    .hero-card {
      position: relative;
    }

    .hero-image {
      border-radius: 42px;
      overflow: hidden;
      width: 100%;
      aspect-ratio: 4 / 3;
      box-shadow: 0 32px 86px rgba(70, 0, 14, 0.20);
      background: linear-gradient(135deg, #ffe4e7, #fff7f2 52%, #efbac0);
      position: relative;
      border: 1px solid rgba(255, 255, 255, 0.44);
      max-height: 520px;
    }

    .hero-image::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, rgba(255,255,255,0.28), transparent 36%, rgba(180,21,42,0.08));
      pointer-events: none;
    }

    .hero-image img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      padding: 10px;
    }

    .floating-card {
      position: absolute;
      left: -24px;
      bottom: 34px;
      background: rgba(255, 255, 255, 0.88);
      backdrop-filter: blur(18px);
      border: 1px solid rgba(255, 255, 255, 0.44);
      border-radius: 24px;
      padding: 18px 20px;
      width: 240px;
      box-shadow: var(--shadow);
    }

    .floating-card strong {
      display: block;
      font-size: 1.05rem;
      margin-bottom: 4px;
      color: var(--text);
    }

    .floating-card p {
      color: var(--muted);
      font-size: 0.9rem;
      line-height: 1.5;
      opacity: 1;
    }

    .trust-bar {
      margin-top: 28px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      position: relative;
      z-index: 2;
    }

    .trust-item {
      background: rgba(255, 255, 255, 0.14);
      border: 1px solid rgba(255, 255, 255, 0.26);
      border-radius: 22px;
      padding: 18px;
      box-shadow: 0 14px 40px rgba(70, 0, 14, 0.12);
      backdrop-filter: blur(14px);
    }

    .hero.bg-light .trust-item {
      background: rgba(255, 255, 255, 0.72);
      border-color: rgba(255, 255, 255, 0.50);
      box-shadow: 0 14px 40px rgba(143, 16, 33, 0.08);
    }

    .trust-item strong {
      display: block;
      font-size: 1.05rem;
      margin-bottom: 4px;
      color: var(--white);
    }

    .hero.bg-light .trust-item strong {
      color: var(--text);
    }

    .hero.bg-light .trust-item p {
      color: var(--muted);
      opacity: 1;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 34px;
      align-items: center;
    }

    .about-image {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      background: var(--pink-soft);
      border: 1px solid rgba(255,255,255,0.46);
    }

    .about-image img {
      width: 100%;
      height: 560px;
      object-fit: cover;
    }

    .about-card,
    .glass-card {
      background: rgba(255, 255, 255, 0.74);
      border: 1px solid rgba(255, 255, 255, 0.50);
      border-radius: var(--radius);
      padding: 54px;
      box-shadow: var(--shadow);
      backdrop-filter: blur(16px);
    }

    .features {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
      margin-top: 30px;
    }

    .feature {
      background: rgba(255, 255, 255, 0.62);
      border-radius: 18px;
      padding: 15px 16px;
      font-weight: 800;
      color: var(--red-dark);
      border: 1px solid rgba(180, 21, 42, 0.12);
    }

    .bg-red .feature {
      background: rgba(255,255,255,0.92);
      color: var(--red-dark);
      border-color: rgba(255,255,255,0.52);
    }

    .section-head {
      max-width: 720px;
      margin-bottom: 44px;
    }

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

    .service-card {
      background: rgba(255, 255, 255, 0.74);
      border: 1px solid rgba(255, 255, 255, 0.50);
      border-radius: 26px;
      padding: 32px;
      box-shadow: 0 14px 45px rgba(156, 16, 35, 0.09);
      transition: 0.25s ease;
      backdrop-filter: blur(16px);
    }

    .bg-red .service-card {
      background: rgba(255,255,255,0.92);
      border-color: rgba(255,255,255,0.52);
      box-shadow: 0 18px 52px rgba(70,0,14,0.18);
    }

    .bg-red .service-card h3 {
      color: var(--red-dark);
    }

    .bg-red .service-card p {
      color: var(--muted);
      opacity: 1;
    }

    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 24px 60px rgba(143, 16, 33, 0.15);
    }

    .icon {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: linear-gradient(135deg, #fff0f3, #f2b5c0);
      display: grid;
      place-items: center;
      margin-bottom: 22px;
      color: var(--red-main);
      font-size: 1.25rem;
      box-shadow: 0 10px 22px rgba(180, 21, 42, 0.13);
    }

    .price-note {
      margin-top: 28px;
      background: rgba(255, 255, 255, 0.72);
      border: 1px solid rgba(255, 255, 255, 0.46);
      border-radius: 24px;
      padding: 22px 26px;
      color: var(--red-dark);
      font-weight: 800;
      backdrop-filter: blur(16px);
      box-shadow: 0 14px 45px rgba(143, 16, 33, 0.08);
    }

    .bg-red .price-note {
      background: rgba(255,255,255,0.92);
      color: var(--red-dark);
      border-color: rgba(255,255,255,0.52);
    }

    .gallery-top {
      display: flex;
      justify-content: space-between;
      gap: 24px;
      align-items: end;
      margin-bottom: 42px;
    }

    .gallery-top .section-head {
      margin-bottom: 0;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-auto-rows: 210px;
      gap: 16px;
    }

    .gallery-item {
      border-radius: 26px;
      overflow: hidden;
      background: var(--pink-soft);
      box-shadow: 0 18px 46px rgba(143, 16, 33, 0.16);
      position: relative;
      border: 1px solid rgba(255,255,255,0.40);
    }

    .gallery-item.large {
      grid-column: span 2;
      grid-row: span 2;
    }

    .gallery-item.tall {
      grid-row: span 2;
    }

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

    .gallery-item::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, rgba(255,255,255,0.22), transparent 36%, rgba(180,21,42,0.08));
      pointer-events: none;
    }

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

    .reviews-grid {
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      gap: 22px;
      align-items: stretch;
    }

    .rating-card,
    .review-card {
      background: rgba(255, 255, 255, 0.14);
      color: var(--white);
      border-radius: var(--radius);
      padding: 42px;
      box-shadow: 0 24px 70px rgba(80, 0, 18, 0.18);
      border: 1px solid rgba(255, 255, 255, 0.25);
      backdrop-filter: blur(16px);
    }

    .bg-red .rating-card,
    .bg-red .review-card {
      background: rgba(255,255,255,0.92);
      color: var(--red-dark);
      border-color: rgba(255,255,255,0.52);
    }

    .bg-red .rating-card h2,
    .bg-red .rating-card p,
    .bg-red .review-card p {
      color: var(--red-dark);
      opacity: 1;
    }

    .bg-red .rating-card .eyebrow {
      color: var(--red-main);
    }

    .review-card {
      padding: 26px;
      border-radius: 24px;
    }

    .rating-card .stars {
      color: #ffe1a7;
      font-size: 1.35rem;
      margin-bottom: 18px;
    }

    .rating-card .big-rating {
      font-size: 4rem;
      font-weight: 800;
      letter-spacing: -0.05em;
      margin: 10px 0;
    }

    .review-list {
      display: grid;
      gap: 16px;
    }

    .review-card strong {
      display: block;
      margin-top: 15px;
      color: #ffd7dc;
    }

    .bg-red .review-card strong {
      color: var(--red-main);
    }

    .contact-wrap {
      background: rgba(255, 255, 255, 0.70);
      border: 1px solid rgba(255, 255, 255, 0.50);
      border-radius: 36px;
      padding: 24px;
      box-shadow: var(--shadow);
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 22px;
      backdrop-filter: blur(18px);
    }

    .bg-red .contact-wrap {
      background: rgba(255,255,255,0.92);
      border-color: rgba(255,255,255,0.52);
    }

    .contact-card {
      padding: 34px;
      background: rgba(255, 255, 255, 0.72);
      border-radius: 28px;
      border: 1px solid rgba(255, 255, 255, 0.48);
      backdrop-filter: blur(14px);
    }

    .bg-red .contact-card {
      background: rgba(255,255,255,0.92);
      border-color: rgba(199,21,46,0.12);
    }

    .bg-red .contact-card h2,
    .bg-red .contact-card p {
      color: var(--text);
      opacity: 1;
    }

    .bg-red .contact-card .eyebrow {
      color: var(--red-main);
    }

    .contact-list {
      display: grid;
      gap: 18px;
      margin: 28px 0;
    }

    .contact-row {
      display: grid;
      grid-template-columns: 38px 1fr;
      gap: 14px;
      align-items: start;
    }

    .contact-row .mini-icon {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--white);
      color: var(--red-main);
      font-weight: 800;
      box-shadow: 0 10px 22px rgba(180, 21, 42, 0.12);
    }

    .contact-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .map {
      min-height: 480px;
      border-radius: 28px;
      overflow: hidden;
      background: var(--pink-soft);
      border: 1px solid rgba(255,255,255,0.42);
    }

    .map iframe {
      width: 100%;
      height: 100%;
      border: 0;
      filter: saturate(0.9) contrast(0.96);
    }

    .footer {
      padding: 38px 0 92px;
      border-top: 1px solid var(--line);
      color: var(--muted);
      background: var(--cream);
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 22px;
      align-items: center;
      flex-wrap: wrap;
    }

    .footer strong {
      color: var(--text);
      font-family: "Playfair Display", serif;
      font-size: 1.2rem;
    }

    .footer-links {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
      font-weight: 700;
      font-size: 0.92rem;
    }

    .footer-links a:hover {
      color: var(--red-main);
    }

    .mobile-sticky {
      display: none;
    }

    @media (max-width: 980px) {
      .nav-links {
        display: none;
      }

      .hero {
        padding-top: 118px;
      }

      .hero-grid,
      .about-grid,
      .reviews-grid,
      .contact-wrap {
        grid-template-columns: 1fr;
      }

      .hero-image,
      .about-image img {
        min-height: auto;
        height: 480px;
      }

      .hero-image img {
        height: 100%;
      }

      .floating-card {
        left: 22px;
        bottom: 22px;
      }

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

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

      .gallery-item.large,
      .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
      }
    }

    @media (max-width: 680px) {
      .container,
      .nav {
        width: min(100% - 26px, var(--container));
      }

      .section {
        padding: 74px 0;
      }

      .nav {
        padding-left: 18px;
      }

      .nav .btn {
        display: none;
      }

      .logo {
        font-size: 1.05rem;
      }

      .hero {
        min-height: auto;
        padding-bottom: 56px;
      }

      h1 {
        font-size: clamp(2.55rem, 13vw, 3.55rem);
      }

      .hero-actions {
        flex-direction: column;
      }

      .btn {
        width: 100%;
      }

      .trust-bar,
      .services-grid,
      .features {
        grid-template-columns: 1fr;
      }

      .hero-image,
      .about-image img {
        height: 390px;
        border-radius: 30px;
      }

      .hero-image img {
        height: 100%;
      }

      .floating-card {
        width: calc(100% - 44px);
      }

      .about-card,
      .glass-card,
      .rating-card,
      .contact-card {
        padding: 30px;
      }

      .gallery-top {
        display: block;
      }

      .gallery-top .btn {
        margin-top: 24px;
      }

      .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 310px;
      }

      .map {
        min-height: 360px;
      }

      .mobile-sticky {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 150;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        background: rgba(255, 255, 255, 0.86);
        backdrop-filter: blur(18px);
        border: 1px solid rgba(255, 255, 255, 0.9);
        border-radius: 22px;
        padding: 10px;
        box-shadow: 0 16px 45px rgba(143, 16, 33, 0.16);
      }

      .mobile-sticky .btn {
        padding: 13px 12px;
        font-size: 0.88rem;
      }
    }
/* v7 refinements */
.nav {
  position: relative;
}

.nav-toggle,
.hamburger,
.mobile-menu {
  display: none;
}

.hamburger {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(156, 16, 35, 0.12);
  background: rgba(255, 255, 255, 0.64);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(143, 16, 33, 0.08);
}

.hamburger span {
  width: 22px;
  height: 2px;
  border-radius: 99px;
  background: var(--red-dark);
  display: block;
}

.mobile-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  padding: 12px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 58px rgba(143, 16, 33, 0.18);
  backdrop-filter: blur(20px);
}

.mobile-menu a {
  display: block;
  padding: 12px 16px;
  border-radius: 18px;
  color: var(--red-dark);
  font-weight: 800;
  font-size: 0.94rem;
}

.mobile-menu a:hover {
  background: var(--pink-soft);
}

.bg-red .about-card {
  background: linear-gradient(135deg, rgba(116, 11, 24, 0.52), rgba(156, 16, 35, 0.36));
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 26px 76px rgba(54, 0, 12, 0.24);
}

.bg-red .about-card h2,
.bg-red .about-card p {
  color: var(--white);
  opacity: 0.96;
}

.bg-red .about-card .eyebrow {
  color: #ffe1e6;
}

.bg-red .feature {
  background: rgba(255, 255, 255, 0.22);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(12px);
  transition: 0.25s ease;
}

.bg-red .feature:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.32);
  border-color: rgba(255, 255, 255, 0.42);
}

.bg-red .btn-secondary {
  background: rgba(255, 255, 255, 0.88);
  color: var(--red-dark);
  border-color: rgba(255, 255, 255, 0.72);
}

.bg-red .btn-secondary:hover {
  background: var(--white);
  color: var(--red-deep);
}

.bg-light .rating-card,
.bg-light .review-card {
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 52px rgba(143, 16, 33, 0.10);
}

.bg-light .rating-card h2,
.bg-light .rating-card p,
.bg-light .review-card p {
  color: var(--text);
  opacity: 1;
}

.bg-light .review-card strong,
.bg-light .rating-card .eyebrow {
  color: var(--red-main);
}

.legal-main {
  min-height: 100vh;
  padding: 138px 0 88px;
  position: relative;
  overflow: hidden;
}

.legal-card {
  max-width: 920px;
  margin: 0 auto;
  padding: 54px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  position: relative;
  z-index: 2;
}

.legal-card h1 {
  max-width: 100%;
  font-size: clamp(2.45rem, 5vw, 4.6rem);
  margin-bottom: 32px;
  overflow-wrap: anywhere;
}

.legal-card h2 {
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  margin: 30px 0 12px;
  letter-spacing: -0.03em;
  overflow-wrap: anywhere;
}

.legal-card p {
  font-size: 1rem;
  max-width: 760px;
}

.legal-notice {
  margin-top: 32px;
  padding: 18px 20px;
  border-radius: 22px;
  color: var(--red-dark);
  font-weight: 800;
  background: rgba(255, 240, 243, 0.82);
  border: 1px solid rgba(199, 21, 46, 0.16);
}

@media (min-width: 981px) {
  .contact-wrap {
    grid-template-columns: 0.86fr 1.14fr;
    gap: 18px;
    padding: 18px;
  }

  .contact-card {
    padding: 28px;
  }

  .contact-list {
    gap: 14px;
    margin: 22px 0;
  }

  .map {
    min-height: 390px;
  }
}

@media (max-width: 980px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: inline-flex;
  }

  .nav-toggle:checked ~ .mobile-menu {
    display: block;
  }

  .about-image {
    display: none;
  }
}

@media (max-width: 680px) {
  body {
    line-height: 1.55;
  }

  .container,
  .nav {
    width: min(100% - 28px, var(--container));
  }

  .header {
    top: 12px;
  }

  .nav {
    padding: 9px 10px 9px 18px;
    border-radius: 30px;
  }

  .logo {
    font-size: 1rem;
  }

  .hamburger {
    width: 44px;
    height: 44px;
  }

  .section {
    padding: 58px 0;
  }

  .hero {
    padding-top: 100px;
    padding-bottom: 44px;
  }

  .rating-pill {
    width: 100%;
    justify-content: center;
    text-align: center;
    gap: 7px;
    padding: 8px 12px;
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    margin-bottom: 10px;
  }

  h1 {
    font-size: clamp(2.15rem, 10.5vw, 3rem);
    letter-spacing: -0.045em;
  }

  h2 {
    font-size: clamp(1.85rem, 8.5vw, 2.65rem);
    margin-bottom: 14px;
  }

  h3 {
    font-size: 1.12rem;
  }

  p,
  .hero-text p.lead {
    font-size: 0.92rem;
  }

  .hero-text p.lead {
    margin: 14px 0 18px;
  }

  .hero-actions {
    display: none;
  }

  .hero-meta {
    display: grid;
    gap: 8px;
    font-size: 0.88rem;
  }

  .hero-image {
    height: auto;
    aspect-ratio: 4 / 3;
    border-radius: 26px;
  }

  .hero-image img {
    padding: 7px;
  }

  .floating-card {
    position: static;
    width: calc(100% - 26px);
    margin: -34px auto 0;
    padding: 16px 18px;
    border-radius: 22px;
  }

  .trust-bar {
    gap: 12px;
  }

  .trust-item {
    padding: 17px 18px;
    border-radius: 22px;
  }

  .trust-item strong {
    font-size: 0.98rem;
  }

  .about-card,
  .glass-card,
  .rating-card,
  .contact-card,
  .legal-card {
    padding: 26px;
    border-radius: 28px;
  }

  .features {
    gap: 10px;
    margin-top: 22px;
  }

  .feature {
    padding: 13px 14px;
    border-radius: 16px;
    font-size: 0.9rem;
  }

  .section-head {
    margin-bottom: 26px;
  }

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

  .service-card {
    padding: 18px 14px;
    border-radius: 22px;
  }

  .service-card p {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .icon {
    width: 34px;
    height: 34px;
    margin-bottom: 14px;
    font-size: 1rem;
  }

  .price-note {
    padding: 18px;
    border-radius: 22px;
    font-size: 0.9rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 150px;
    gap: 12px;
    grid-auto-flow: row;
  }

  .gallery-item.large {
    grid-column: 1 / -1;
    grid-row: span 2;
  }

  .gallery-item.tall {
    grid-column: auto;
    grid-row: span 2;
  }

  .gallery-item {
    border-radius: 22px;
  }

  .gallery-item:nth-child(n+5) {
    grid-column: auto;
    grid-row: span 1;
  }

  .review-list {
    gap: 12px;
  }

  .review-card {
    padding: 20px;
  }

  .rating-card .big-rating {
    font-size: 3rem;
  }

  .contact-wrap {
    padding: 14px;
    border-radius: 28px;
    gap: 14px;
  }

  .contact-list {
    margin: 22px 0 0;
    gap: 14px;
  }

  .contact-row {
    grid-template-columns: 34px 1fr;
    gap: 12px;
  }

  .contact-row .mini-icon {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
  }

  .contact-actions {
    display: none;
  }

  .map {
    min-height: 300px;
    border-radius: 24px;
  }

  .footer {
    padding-bottom: 92px;
  }

  .footer-inner {
    align-items: flex-start;
  }

  .legal-main {
    padding: 108px 0 68px;
  }

  .legal-card h1 {
    font-size: clamp(2rem, 10vw, 2.8rem);
    margin-bottom: 20px;
  }

  .legal-card h2 {
    font-size: clamp(1.25rem, 6.5vw, 1.75rem);
    margin: 24px 0 10px;
  }

  .legal-card p {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .legal-notice {
    padding: 15px;
    font-size: 0.88rem;
    border-radius: 18px;
  }

  .mobile-sticky {
    left: 14px;
    right: 14px;
    bottom: 10px;
    gap: 8px;
    padding: 8px;
    border-radius: 20px;
  }

  .mobile-sticky .btn {
    padding: 11px 10px;
    font-size: 0.84rem;
  }
}

/* v8 refinements */
#kontakt.section {
  padding: 84px 0;
}

@media (min-width: 981px) {
  .contact-wrap {
    grid-template-columns: 1.18fr 0.82fr;
    max-width: 1040px;
    margin: 0 auto;
    padding: 16px;
    gap: 16px;
  }

  .contact-card {
    padding: 26px 30px;
  }

  .contact-card h2 {
    font-size: clamp(2rem, 3.2vw, 3.4rem);
    margin-bottom: 14px;
  }

  .contact-list {
    gap: 12px;
    margin: 18px 0 20px;
  }

  .contact-row {
    grid-template-columns: 34px 1fr;
    gap: 12px;
  }

  .contact-row .mini-icon {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
  }

  .map {
    min-height: 340px;
    border-radius: 24px;
  }
}

.bg-red .feature {
  background: linear-gradient(135deg, rgba(255, 240, 243, 0.94), rgba(242, 181, 192, 0.72));
  color: var(--red-dark);
  border-color: rgba(255, 255, 255, 0.48);
  box-shadow: 0 14px 34px rgba(70, 0, 14, 0.12);
}

.bg-red .feature:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, rgba(255, 247, 250, 0.98), rgba(242, 181, 192, 0.86));
  box-shadow: 0 18px 42px rgba(70, 0, 14, 0.17);
}

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

.footer strong {
  font-size: 1.08rem;
}

.footer p,
.footer-links {
  font-size: 0.86rem;
}

.footer-links {
  gap: 14px;
}

@media (max-width: 680px) {
  #kontakt.section {
    padding: 60px 0;
  }

  .footer {
    padding: 24px 0 78px;
  }

  .footer-inner {
    gap: 12px;
  }

  .footer-links {
    gap: 12px;
    font-size: 0.82rem;
  }

  .footer strong {
    font-size: 1rem;
  }

  .footer p {
    font-size: 0.82rem;
  }
}
