

    :root {
      --rosa-claro: #ffe6f0;
      --rosa: #ff7db8;
      --rosa-escuro: #e2599c;
      --dourado: #d4a650;
      --branco: #ffffff;
      --cinza-claro: #f7f7f9;
      --cinza-texto: #616161;
      --preto: #1a1a1a;
      --sombra-card: 0 18px 35px rgba(0, 0, 0, 0.08);
      --radius-card: 18px;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: "Poppins", sans-serif;
      background: linear-gradient(to bottom, #fff8fc, #fdf1f8);
      color: var(--preto);
      line-height: 1.6;
    }

    /* ================================
   MARCA D'ÁGUA — SITE DEMONSTRAÇÃO
   ================================ */

body::after {
  content: "SITE DEMONSTRAÇÃO • EHCR TECNOLOGIAS";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 2.6rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.14em;
  text-transform: uppercase;
 
  /* TEXTO SEMPRE VISÍVEL */
  color: rgba(120, 120, 120, 0.3);

  transform: rotate(-30deg);

  /* LISTRAS SEMPRE VISÍVEIS */
  background-image: repeating-linear-gradient(
    -30deg,
    rgba(120, 120, 120, 0.10) 0px,
    rgba(120, 120, 120, 0.10) 2px,
    transparent 1px,
    transparent 140px
  );
}

    img {
      max-width: 100%;
      display: block;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    .container {
      width: min(1120px, 100% - 2rem);
      margin: 0 auto;
    }

    /* HEADER */
    header {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(14px);
      background: rgba(255, 248, 252, 0.9);
      border-bottom: 1px solid rgba(212, 166, 80, 0.1);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 0;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .logo-icon {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 10%, #ffeef7, #ff7db8);
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid rgba(212, 166, 80, 0.7);
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
      font-family: "Playfair Display", serif;
      font-weight: 700;
      color: var(--branco);
    }

    .logo-text-main {
      font-family: "Playfair Display", serif;
      font-size: 1.2rem;
      font-weight: 700;
      letter-spacing: 0.05em;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      font-size: 0.9rem;
    }

    .nav-links a {
      position: relative;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-weight: 500;
      font-size: 0.8rem;
      color: #8c607b;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -0.25rem;
      width: 0;
      height: 2px;
      background: linear-gradient(to right, var(--rosa), var(--dourado));
      transition: width 0.25s ease;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      padding: 0.65rem 1.4rem;
      border-radius: 999px;
      font-size: 0.85rem;
      font-weight: 600;
      border: none;
      cursor: pointer;
      transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, filter 0.18s ease;
      white-space: nowrap;
    }

    .btn-primary {
      background: linear-gradient(135deg, #ff8ec3, #ff7db8, #f0b76e);
      color: var(--branco);
      box-shadow: 0 14px 30px rgba(229, 89, 156, 0.4);
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      filter: brightness(1.05);
      box-shadow: 0 16px 34px rgba(229, 89, 156, 0.5);
    }

    .btn-outline {
      border: 1px solid rgba(212, 166, 80, 0.5);
      background: rgba(255, 255, 255, 0.85);
      color: #8c607b;
    }

    .btn-outline:hover {
      background: var(--branco);
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
      transform: translateY(-1px);
    }

    .nav-cta {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 0.25rem;
      cursor: pointer;
    }

    .nav-toggle span {
      width: 20px;
      height: 2px;
      background: #8c607b;
      border-radius: 999px;
    }

    /* HERO */
    .hero {
      padding: 4.5rem 0 3.5rem;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
      gap: 3rem;
      align-items: center;
    }

    .hero-kicker {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: #b07b96;
      font-weight: 600;
      margin-bottom: 0.75rem;
    }

    .hero-title {
      font-family: "Playfair Display", serif;
      font-size: clamp(2.3rem, 4vw, 3.1rem);
      line-height: 1.1;
      margin-bottom: 0.8rem;
      color: #3d1027;
    }

    .hero-title span {
      background: linear-gradient(120deg, #ff7db8, #f0b76e);
      -webkit-background-clip: text;
      color: transparent;
    }

    .hero-subtitle {
      font-size: 0.97rem;
      color: var(--cinza-texto);
      max-width: 30rem;
      margin-bottom: 1.3rem;
    }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 0.7rem;
      margin-bottom: 1.5rem;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.5rem 0.8rem;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.8);
      border: 1px solid rgba(212, 166, 80, 0.35);
      font-size: 0.75rem;
      color: #8c607b;
    }

    .hero-badge-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 30%, #ffe6f7, #ff7db8);
      box-shadow: 0 0 12px rgba(255, 125, 184, 0.7);
    }

    .hero-cta {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.8rem;
      margin-bottom: 1.4rem;
    }

    .hero-note {
      font-size: 0.8rem;
      color: #9a7c8f;
    }

    .hero-highlight-box {
      margin-top: 0.75rem;
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.75rem 1rem;
      border-radius: 999px;
      background: linear-gradient(
        90deg,
        rgba(255, 230, 240, 0.9),
        rgba(255, 251, 243, 0.9)
      );
      border: 1px solid rgba(212, 166, 80, 0.35);
      font-size: 0.8rem;
      color: #8c607b;
    }

    .hero-highlight-pill {
      padding: 0.3rem 0.7rem;
      border-radius: 999px;
      background: #ff7db8;
      color: var(--branco);
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      font-weight: 600;
    }

    /* HERO CARD IMAGEM */
    .hero-card {
      background: radial-gradient(circle at 0 0, #ffe6f0, #fff8fc);
      border-radius: 32px;
      padding: 1.6rem 1.5rem;
      box-shadow: var(--sombra-card);
      position: relative;
      overflow: hidden;
    }

    .hero-card-tag {
      position: absolute;
      top: 1rem;
      right: 1.4rem;
      padding: 0.45rem 0.95rem;
      border-radius: 999px;
      background: rgba(0, 0, 0, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(10px);
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: #a8668b;
      display: flex;
      align-items: center;
      gap: 0.35rem;
    }

    .hero-card-tag span {
      display: inline-block;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 30%, #ffe6f7, #ff7db8);
      box-shadow: 0 0 10px rgba(255, 125, 184, 0.8);
    }

    .hero-card-main {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 1.4rem;
      align-items: center;
    }

    .hero-portrait-wrapper {
      position: relative;
    }

    .hero-portrait-circle {
      width: 180px;
      height: 180px;
      border-radius: 50%;
      overflow: hidden;
      margin: 0 auto;
      border: 4px solid rgba(255, 255, 255, 0.9);
      box-shadow: 0 18px 30px rgba(0, 0, 0, 0.2);
    }

    .hero-portrait-circle img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-portrait-glow {
      position: absolute;
      inset: -18px;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 0, rgba(255, 125, 184, 0.45), transparent);
      z-index: -1;
    }

    .hero-floating-badge {
      position: absolute;
      left: -0.5rem;
      top: 52%;
      transform: translateY(-50%);
      padding: 0.55rem 0.85rem;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.92);
      border: 1px solid rgba(212, 166, 80, 0.6);
      font-size: 0.72rem;
      display: flex;
      gap: 0.4rem;
      align-items: center;
      box-shadow: 0 18px 30px rgba(0, 0, 0, 0.15);
    }

    .hero-floating-badge strong {
      color: #c283a2;
    }

    .hero-perk {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.7rem;
      color: #8c607b;
    }

    .hero-perk-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #d4a650;
    }

    .hero-card-stats {
      display: grid;
      gap: 0.6rem;
      align-content: center;
    }

    .hero-stat-line {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.6rem 0.8rem;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.92);
      border: 1px solid rgba(255, 255, 255, 0.8);
      font-size: 0.8rem;
      color: #7b516a;
    }

    .hero-stat-label {
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }

    .hero-stat-dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 30%, #ffe6f7, #ff7db8);
    }

    .hero-stat-value {
      font-weight: 600;
      color: #d4a650;
    }

    .hero-card-footer {
      margin-top: 1.1rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 0.7rem;
      font-size: 0.75rem;
    }

    .hero-card-footer p {
      color: #90627d;
      max-width: 11rem;
    }

    .hero-card-seal {
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }

    .hero-seal-circle {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: conic-gradient(from 220deg, #ff7db8, #f0b76e, #ff7db8);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-seal-inner {
      width: 22px;
      height: 22px;
      border-radius: inherit;
      background: #fff6fb;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.6rem;
      font-weight: 700;
      color: #c283a2;
      font-family: "Playfair Display", serif;
    }

    .hero-seal-text {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: #a36889;
    }

    /* SEÇÕES GERAIS */
    section {
      padding: 3rem 0;
    }

    .section-header {
      text-align: center;
      margin-bottom: 2.2rem;
    }

    .section-kicker {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: #b07b96;
      font-weight: 600;
      margin-bottom: 0.4rem;
    }

    .section-title {
      font-family: "Playfair Display", serif;
      font-size: 1.7rem;
      color: #3d1027;
      margin-bottom: 0.4rem;
    }

    .section-subtitle {
      font-size: 0.9rem;
      color: var(--cinza-texto);
      max-width: 30rem;
      margin: 0 auto;
    }

    /* SERVIÇOS */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.5rem;
    }

    .service-card {
      background: rgba(255, 255, 255, 0.95);
      border-radius: var(--radius-card);
      padding: 1.3rem 1.2rem;
      box-shadow: var(--sombra-card);
      border: 1px solid rgba(255, 255, 255, 0.9);
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at -10% -10%, rgba(255, 125, 184, 0.18), transparent);
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
    }

    .service-card:hover::before {
      opacity: 1;
    }

    .service-icon {
      width: 36px;
      height: 36px;
      border-radius: 999px;
      border: 1px solid rgba(212, 166, 80, 0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      background: #fff9f4;
      margin-bottom: 0.9rem;
    }

    .service-title {
      font-weight: 600;
      margin-bottom: 0.3rem;
      color: #4b1c31;
    }

    .service-desc {
      font-size: 0.85rem;
      color: var(--cinza-texto);
      margin-bottom: 0.8rem;
    }

    .service-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.8rem;
      color: #a36889;
    }

    .service-chip {
      padding: 0.25rem 0.6rem;
      border-radius: 999px;
      background: rgba(255, 230, 240, 0.9);
      border: 1px solid rgba(212, 166, 80, 0.4);
      font-size: 0.7rem;
    }

    /* PROMOÇÕES (ajustada) */
    .promo-wrapper {
      background: linear-gradient(120deg, #ff7db8, #f0b76e);
      border-radius: 28px;
      padding: 1.8rem;
      color: var(--branco);
      display: grid;
      grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
      gap: 1.5rem;
      box-shadow: 0 18px 35px rgba(229, 89, 156, 0.55);
      position: relative;
      overflow: hidden;
    }

    .promo-wrapper::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.26), transparent 55%);
      opacity: 0.7;
      pointer-events: none;
    }

    .promo-main {
      position: relative;
      z-index: 1;
    }

    .promo-kicker {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.22em;
      opacity: 0.9;
      margin-bottom: 0.4rem;
    }

    .promo-title {
      font-family: "Playfair Display", serif;
      font-size: 1.6rem;
      margin-bottom: 0.4rem;
    }

    .promo-subtitle {
      font-size: 0.9rem;
      opacity: 0.95;
      margin-bottom: 0.8rem;
      max-width: 22rem;
    }

    /* lista corrigida */
    .promo-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 0.7rem 1.4rem;
      font-size: 0.85rem;
    }

    .promo-item {
      display: flex;
      align-items: flex-start;
      gap: 0.4rem;
      line-height: 1.4;
    }

    .promo-icon {
      flex-shrink: 0;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.9);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.65rem;
      background: rgba(255, 255, 255, 0.12);
    }

    .promo-text {
      display: block;
    }

    .promo-side {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 0.7rem;
      align-content: center;
    }

    .promo-tag {
      padding: 0.4rem 0.7rem;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.7);
      font-size: 0.75rem;
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      background: rgba(0, 0, 0, 0.12);
    }

    .promo-price {
      font-size: 2rem;
      font-weight: 700;
      line-height: 1;
    }

    .promo-price span {
      font-size: 0.8rem;
      font-weight: 400;
      opacity: 0.9;
    }

    .promo-old-price {
      font-size: 0.8rem;
      text-decoration: line-through;
      opacity: 0.85;
    }

    .promo-small {
      font-size: 0.75rem;
      opacity: 0.9;
    }

    /* GALERIA */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.1rem;
    }

    .gallery-item {
      border-radius: 20px;
      overflow: hidden;
      position: relative;
      box-shadow: var(--sombra-card);
      background: #ddd;
      height: 200px;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.05);
    }

    .gallery-label {
      position: absolute;
      left: 0.7rem;
      bottom: 0.7rem;
      padding: 0.3rem 0.8rem;
      border-radius: 999px;
      background: rgba(0, 0, 0, 0.45);
      color: var(--branco);
      font-size: 0.75rem;
    }

    /* CONTATO / FORMULÁRIO */
    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
      gap: 2rem;
      align-items: stretch;
    }

    .contact-card {
      background: rgba(255, 255, 255, 0.96);
      border-radius: 24px;
      padding: 1.8rem 1.6rem;
      box-shadow: var(--sombra-card);
      border: 1px solid rgba(255, 255, 255, 0.9);
    }

    .contact-card h3 {
      font-family: "Playfair Display", serif;
      font-size: 1.3rem;
      color: #3d1027;
      margin-bottom: 0.4rem;
    }

    .contact-card p {
      font-size: 0.9rem;
      color: var(--cinza-texto);
      margin-bottom: 1.2rem;
    }

    .form-grid {
      display: grid;
      gap: 0.85rem;
    }

    .form-row {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.75rem;
    }

    label {
      display: block;
      font-size: 0.8rem;
      font-weight: 500;
      color: #7b516a;
      margin-bottom: 0.2rem;
    }

    input, textarea, select {
      width: 100%;
      padding: 0.6rem 0.7rem;
      border-radius: 12px;
      border: 1px solid rgba(212, 166, 80, 0.4);
      background: rgba(255, 255, 255, 0.9);
      font-family: inherit;
      font-size: 0.85rem;
      outline: none;
      transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    }

    input:focus, textarea:focus, select:focus {
      border-color: #ff7db8;
      box-shadow: 0 0 0 1px rgba(255, 125, 184, 0.3);
      background: var(--branco);
    }

    textarea {
      min-height: 100px;
      resize: vertical;
    }

    .form-footnote {
      font-size: 0.75rem;
      color: var(--cinza-texto);
    }

    .contact-info-card {
      border-radius: 24px;
      padding: 1.7rem 1.4rem;
      border: 1px solid rgba(212, 166, 80, 0.4);
      background: radial-gradient(circle at 0 0, #ffe6f0, #fff);
    }

    .contact-info-card h4 {
      font-size: 1rem;
      margin-bottom: 0.6rem;
      color: #4b1c31;
    }

    .contact-info-list {
      display: grid;
      gap: 0.6rem;
      font-size: 0.85rem;
      color: #7b516a;
      margin-bottom: 1.2rem;
    }

    .contact-info-item {
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
    }

    .contact-info-icon {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      border: 1px solid rgba(212, 166, 80, 0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      margin-top: 0.05rem;
      background: rgba(255, 255, 255, 0.9);
    }

    .contact-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-bottom: 1rem;
    }

    .contact-badge {
      padding: 0.3rem 0.7rem;
      border-radius: 999px;
      font-size: 0.75rem;
      background: rgba(255, 230, 240, 0.95);
      border: 1px solid rgba(212, 166, 80, 0.4);
      color: #8c607b;
    }

    /* SOCIAL ICONS */
    .social-links {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      align-items: center;
    }

    .social-icon {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      border: 1px solid rgba(212, 166, 80, 0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      background: rgba(255, 255, 255, 0.9);
      transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    }

    .social-icon:hover {
      transform: translateY(-1px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
      background: #fff5fb;
    }

    /* FOOTER */
    footer {
      border-top: 1px solid rgba(212, 166, 80, 0.25);
      padding: 1.4rem 0 1.8rem;
      margin-top: 1rem;
    }

    .footer-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 1rem;
      font-size: 0.8rem;
      color: #a36889;
      align-items: center;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-links a {
      text-decoration: underline;
      text-decoration-style: dotted;
    }

    .footer-right {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem 1.2rem;
      align-items: center;
      justify-content: flex-end;
    }

    /* REVEAL ANIMAÇÃO */
    .reveal {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* RESPONSIVO */
    @media (max-width: 880px) {
      .nav-links {
        gap: 1rem;
      }

      .nav-cta {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
        margin-top: 0.8rem;
        padding-top: 0.8rem;
        border-top: 1px solid rgba(212, 166, 80, 0.25);
      }

      .nav-cta .btn {
        width: 100%;
        justify-content: center;
      }
      .hero-grid,
      .promo-wrapper,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .hero {
        padding-top: 3.5rem;
      }

      .hero-card-main {
        grid-template-columns: 1fr;
      }

      .hero-card-footer {
        flex-direction: column;
        align-items: flex-start;
      }

      .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .nav-links {
        position: absolute;
        inset: 100% 0 auto 0;
        background: rgba(255, 248, 252, 0.98);
        padding: 0.7rem 1rem 1rem;
        flex-direction: column;
        align-items: flex-start;
        border-bottom: 1px solid rgba(212, 166, 80, 0.15);
        transform-origin: top;
        transform: scaleY(0);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.18s ease, opacity 0.18s ease;
      }

      .nav-links.open {
        transform: scaleY(1);
        opacity: 1;
        pointer-events: auto;
      }

      .nav-toggle {
        display: flex;
      }
    }

    @media (max-width: 640px) {
      .hero-grid {
        gap: 2.2rem;
      }

      .services-grid,
      .gallery-grid {
        grid-template-columns: 1fr;
      }

      .promo-wrapper {
        padding: 1.4rem;
      }

      .contact-card,
      .contact-info-card {
        padding: 1.4rem 1.2rem;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        flex-direction: column;
        align-items: flex-start;
      }

      .footer-right {
        justify-content: flex-start;
      }
    }
