﻿:root {
      --bg: #f6f4ef;
      --surface: #fffdf9;
      --surface-soft: #f1eee6;
      --primary: #5f7a67;
      --primary-dark: #45604f;
      --accent: #b28d67;
      --text: #2f332f;
      --text-muted: #5f655f;
      --border: #dfd9cc;
      --shadow: 0 16px 36px rgba(54, 63, 54, 0.12);
      --radius: 16px;
      --radius-sm: 12px;
      --maxw: 1200px;
      --header-h: 94px;
    }

    body[data-theme="b"] {
      --bg: #121816;
      --surface: #1b2420;
      --surface-soft: #243029;
      --primary: #8fb29a;
      --primary-dark: #73977f;
      --accent: #ceb089;
      --text: #e4ede7;
      --text-muted: #b8c7bc;
      --border: #33433a;
      --shadow: 0 16px 36px rgba(3, 8, 6, 0.45);
    }

    body[data-theme="b"] {
      background:
        radial-gradient(circle at 10% 0%, rgba(206, 176, 137, 0.14) 0, rgba(206, 176, 137, 0) 35%),
        radial-gradient(circle at 90% 100%, rgba(143, 178, 154, 0.12) 0, rgba(143, 178, 154, 0) 35%),
        var(--bg);
    }

    body[data-theme="b"] .site-header {
      background: rgba(18, 24, 22, 0.88);
      border-bottom-color: rgba(65, 83, 73, 0.62);
    }

    body[data-theme="b"] .brand-name,
    body[data-theme="b"] .section-title,
    body[data-theme="b"] .service-name,
    body[data-theme="b"] .footer-brand {
      color: #eef5ef;
    }

    body[data-theme="b"] .menu-toggle,
    body[data-theme="b"] .theme-switch,
    body[data-theme="b"] input,
    body[data-theme="b"] select {
      background: #1d2722;
      color: #e5ede7;
      border-color: #3a4b41;
    }

    body[data-theme="b"] .menu-toggle span {
      background: #e3ece6;
    }

    body[data-theme="b"] .nav-links {
      background: #1b2420;
      border-color: #3a4a41;
    }

    body[data-theme="b"] .nav-links a {
      color: #dce9df;
    }

    body[data-theme="b"] .nav-links a:hover {
      background: #2b3a32;
      color: #f3f8f4;
    }

    body[data-theme="b"] .hero::after {
      background: linear-gradient(to top, rgba(18, 24, 22, 1), rgba(18, 24, 22, 0));
    }

    body[data-theme="b"] .site-footer {
      background: #161f1b;
      border-top-color: rgba(65, 83, 73, 0.6);
    }

    body[data-theme="b"] .footer-links a,
    body[data-theme="b"] .copyright {
      color: #aebdb2;
    }

    body[data-theme="b"] .social-link {
      background: #1e2823;
      border-color: #3a4a41;
      color: #d2e2d6;
    }

    body[data-theme="b"] .contact-list li {
      border-color: #3a4a41;
    }

    body[data-theme="b"] .contact-list strong,
    body[data-theme="b"] label,
    body[data-theme="b"] .duration {
      color: #c8d8cc;
    }

    body[data-theme="b"] .duration {
      background: #2d3d34;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Poppins", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 10% 0%, rgba(178, 141, 103, 0.16) 0, rgba(178, 141, 103, 0) 35%),
        radial-gradient(circle at 90% 100%, rgba(95, 122, 103, 0.16) 0, rgba(95, 122, 103, 0) 35%),
        var(--bg);
      line-height: 1.6;
      overflow-x: hidden;
    }

    img {
      width: 100%;
      display: block;
      border-radius: var(--radius-sm);
      object-fit: cover;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      width: min(100% - 2rem, var(--maxw));
      margin: 0 auto;
    }

    .section {
      padding: 4.5rem 0;
    }

    .section-title {
      font-family: "Playfair Display", serif;
      font-size: clamp(1.8rem, 4vw, 2.7rem);
      line-height: 1.2;
      margin-bottom: 0.7rem;
      color: #233328;
    }

    .section-subtitle {
      color: var(--text-muted);
      max-width: 58ch;
      font-size: 0.98rem;
      margin-bottom: 2rem;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.45rem;
      border: 1px solid transparent;
      border-radius: 999px;
      padding: 0.75rem 1.15rem;
      font-size: 0.94rem;
      font-weight: 500;
      cursor: pointer;
      transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    }

    .btn:focus-visible,
    .menu-toggle:focus-visible,
    input:focus-visible,
    select:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 2px;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
      background: var(--primary);
      color: #fff;
    }

    .btn-primary:hover {
      background: var(--primary-dark);
    }

    .btn-outline {
      border-color: rgba(255, 255, 255, 0.45);
      color: #fff;
      background: rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(2px);
    }

    .btn-outline:hover {
      border-color: #fff;
      background: rgba(255, 255, 255, 0.18);
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      height: var(--header-h);
      backdrop-filter: blur(12px);
      background: rgba(246, 244, 239, 0.88);
      border-bottom: 1px solid rgba(223, 217, 204, 0.65);
    }

    .header-wrap {
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 0.9rem;
      white-space: nowrap;
    }

    .brand-mark {
      width: auto;
      height: 76px;
      max-width: min(240px, 48vw);
      object-fit: contain;
      border: 0;
      box-shadow: none;
      background: transparent;
    }

    .brand-name {
      font-family: "Playfair Display", serif;
      font-size: 1.15rem;
      color: #1f2d24;
      letter-spacing: 0.3px;
    }

    .menu-toggle {
      width: 44px;
      height: 44px;
      border: 1px solid var(--border);
      background: var(--surface);
      border-radius: 10px;
      display: inline-flex;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      align-items: center;
      cursor: pointer;
    }

    .menu-toggle span {
      display: block;
      width: 18px;
      height: 2px;
      background: #2f372f;
      border-radius: 2px;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(2) {
      opacity: 0;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .nav-links {
      list-style: none;
      display: none;
      position: absolute;
      left: 1rem;
      right: 1rem;
      top: calc(var(--header-h) - 2px);
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      box-shadow: var(--shadow);
      padding: 0.85rem;
      animation: drop-in 0.2s ease;
    }

    .nav-links.open {
      display: grid;
      gap: 0.2rem;
    }

    .nav-links a {
      display: block;
      padding: 0.72rem 0.7rem;
      border-radius: 10px;
      color: #2d342d;
      font-weight: 500;
      font-size: 0.95rem;
    }

    .nav-links a:hover {
      background: var(--surface-soft);
      color: #1f2822;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .header-actions .btn {
      display: none;
    }

    .theme-switch {
      border: 1px solid var(--border);
      background: var(--surface);
      color: #2e3a31;
      padding: 0.52rem 0.8rem;
      border-radius: 999px;
      font-size: 0.84rem;
      font-weight: 500;
      cursor: pointer;
      transition: transform 0.2s ease, border-color 0.2s ease;
    }

    .theme-switch:hover {
      transform: translateY(-1px);
      border-color: #a8b6a8;
    }

    .theme-switch:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 2px;
    }

    .hero {
      min-height: min(88vh, 760px);
      display: flex;
      align-items: center;
      position: relative;
      isolation: isolate;
      background:
        linear-gradient(to bottom, rgba(16, 20, 17, 0.5), rgba(16, 20, 17, 0.56)),
        url("https://images.unsplash.com/photo-1544161515-4ab6ce6db874?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0 0;
      height: 140px;
      background: linear-gradient(to top, rgba(246, 244, 239, 1), rgba(246, 244, 239, 0));
      z-index: -1;
    }

    .hero-content {
      color: #fff;
      max-width: 700px;
      padding: 2rem 0;
      animation: fade-up 0.9s ease both;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.42rem;
      font-size: 0.8rem;
      letter-spacing: 0.11em;
      text-transform: uppercase;
      margin-bottom: 1rem;
      color: #e7e2d4;
    }

    .eyebrow::before {
      content: "";
      width: 28px;
      height: 1px;
      background: currentColor;
      opacity: 0.85;
    }

    .hero h1 {
      font-family: "Playfair Display", serif;
      font-size: clamp(2.05rem, 6vw, 3.6rem);
      line-height: 1.14;
      margin-bottom: 1rem;
      text-wrap: balance;
    }

    .hero p {
      max-width: 56ch;
      color: #f2f0eb;
      font-size: 1rem;
      margin-bottom: 1.5rem;
    }

    .hero-cta {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
    }

    .about-grid,
    .contact-grid {
      display: grid;
      gap: 1.2rem;
    }

    .about-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.25rem;
      box-shadow: 0 14px 25px rgba(71, 79, 72, 0.08);
      align-self: center;
    }

    .about-card p + p {
      margin-top: 0.8rem;
    }

    .about-image {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      min-height: 280px;
    }

    .services-grid {
      display: grid;
      gap: 1rem;
      grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
    }

    .gallery-preview-grid {
      display: grid;
      gap: 1rem;
      grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
      margin-bottom: 1.4rem;
    }

    .gallery-preview-item {
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: 0 10px 24px rgba(71, 79, 72, 0.1);
      background: var(--surface);
    }

    .gallery-preview-item img {
      border-radius: 0;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      transition: transform 0.35s ease;
    }

    .gallery-preview-item:hover img {
      transform: scale(1.04);
    }

    .gallery-preview-cta {
      display: flex;
      justify-content: center;
    }

    .service-card {
      border: 1px solid var(--border);
      background: var(--surface);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: 0 10px 24px rgba(71, 79, 72, 0.08);
      display: flex;
      flex-direction: column;
      transition: transform 0.22s ease, box-shadow 0.22s ease;
      animation: fade-up 0.8s ease both;
    }

    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 32px rgba(64, 78, 67, 0.16);
    }

    .service-image {
      aspect-ratio: 4 / 3;
      border-radius: 0;
    }

    .service-body {
      padding: 1rem;
      display: grid;
      gap: 0.5rem;
    }

    .service-head {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      gap: 0.7rem;
    }

    .service-name {
      font-family: "Playfair Display", serif;
      font-size: 1.2rem;
      line-height: 1.3;
      color: #25322a;
    }

    .price {
      color: var(--primary-dark);
      font-weight: 600;
      font-size: 0.95rem;
      white-space: nowrap;
    }

    .duration {
      display: inline-flex;
      width: fit-content;
      font-size: 0.78rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #4f5e52;
      background: #e5ece5;
      border-radius: 999px;
      padding: 0.28rem 0.54rem;
    }

    .service-body p {
      color: var(--text-muted);
      font-size: 0.92rem;
    }

    .contact-card,
    .form-card {
      border-radius: var(--radius);
      border: 1px solid var(--border);
      background: var(--surface);
      box-shadow: 0 14px 26px rgba(71, 79, 72, 0.08);
      padding: 1.15rem;
    }

    .contact-list {
      list-style: none;
      display: grid;
      gap: 0.9rem;
      margin-top: 1rem;
    }

    .contact-list li {
      background: var(--surface-soft);
      border: 1px solid #e1dccf;
      border-radius: 12px;
      padding: 0.72rem;
    }

    .contact-list strong {
      display: block;
      font-size: 0.84rem;
      color: #3f4a42;
      margin-bottom: 0.15rem;
    }

    .contact-list a {
      color: var(--primary-dark);
      font-weight: 500;
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    form {
      display: grid;
      gap: 0.8rem;
      margin-top: 0.6rem;
    }

    .field {
      display: grid;
      gap: 0.38rem;
    }

    label {
      font-size: 0.88rem;
      font-weight: 500;
      color: #334039;
    }

    input,
    select {
      font: inherit;
      width: 100%;
      border: 1px solid #d4cdbc;
      background: #fffdf9;
      border-radius: 10px;
      padding: 0.66rem 0.74rem;
    }

    .form-note {
      font-size: 0.82rem;
      color: var(--text-muted);
    }

    .site-footer {
      padding: 2.2rem 0 2.4rem;
      border-top: 1px solid rgba(223, 217, 204, 0.7);
      background: #f1ede4;
    }

    .footer-wrap {
      display: grid;
      gap: 1rem;
    }

    .footer-brand {
      font-family: "Playfair Display", serif;
      color: #203027;
      font-size: 1.25rem;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      gap: 0.9rem;
    }

    .footer-links a {
      color: #3d4a41;
      font-size: 0.92rem;
    }

    .footer-social {
      display: flex;
      gap: 0.55rem;
    }

    .social-link {
      width: 38px;
      height: 38px;
      border: 1px solid #cfc7b6;
      border-radius: 50%;
      display: inline-grid;
      place-items: center;
      background: #faf8f3;
      color: #34463a;
      transition: transform 0.2s ease, border-color 0.2s ease;
    }

    .social-link:hover {
      transform: translateY(-2px);
      border-color: #95a795;
    }

    .social-link svg {
      width: 17px;
      height: 17px;
      fill: currentColor;
    }

    .copyright {
      color: #556156;
      font-size: 0.86rem;
    }

    .whatsapp-float {
      position: fixed;
      right: 0.9rem;
      bottom: 1rem;
      z-index: 60;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: #1f9f53;
      color: #fff;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.3);
      box-shadow: 0 14px 26px rgba(9, 72, 34, 0.28);
      padding: 0.7rem 0.9rem;
      font-size: 0.9rem;
      font-weight: 600;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .whatsapp-float:hover {
      transform: translateY(-2px);
      box-shadow: 0 20px 34px rgba(9, 72, 34, 0.35);
    }

    .whatsapp-float svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
      flex-shrink: 0;
    }

    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }

    .reveal.in-view {
      opacity: 1;
      transform: translateY(0);
    }

    @keyframes fade-up {
      from {
        opacity: 0;
        transform: translateY(18px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes drop-in {
      from {
        opacity: 0;
        transform: translateY(-8px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (min-width: 760px) {
      :root {
        --header-h: 108px;
      }

      .brand-mark {
        width: auto;
        height: 90px;
      }

      .brand-name {
        font-size: 1.2rem;
      }

      .menu-toggle {
        display: none;
      }

      .nav {
        display: flex;
        align-items: center;
        gap: 1.2rem;
      }

      .nav-links,
      .nav-links.open {
        position: static;
        display: flex;
        gap: 0.2rem;
        box-shadow: none;
        border: 0;
        background: transparent;
        padding: 0;
      }

      .nav-links a {
        padding: 0.6rem 0.75rem;
      }

      .header-actions {
        display: flex;
      }

      .header-actions .btn {
        display: inline-flex;
      }

      .theme-switch {
        padding: 0.55rem 0.9rem;
      }

      .section {
        padding: 6rem 0;
      }

      .about-grid {
        grid-template-columns: 1.05fr 1fr;
        gap: 1.5rem;
      }

      .contact-grid {
        grid-template-columns: 0.95fr 1.05fr;
        gap: 1.5rem;
      }

      .footer-wrap {
        grid-template-columns: 1.2fr 1fr auto;
        align-items: center;
      }

      .whatsapp-float {
        right: 1.2rem;
        bottom: 1.25rem;
      }
    }

    @media (max-width: 430px) {
      .whatsapp-float {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        justify-content: center;
        padding: 0;
      }

      .whatsapp-float span {
        display: none;
      }
    }

    @media (min-width: 1080px) {
      .hero {
        min-height: 92vh;
      }

      .hero-content {
        padding-top: 3rem;
      }

      .about-card,
      .contact-card,
      .form-card {
        padding: 1.4rem;
      }
    }
