
    :root {
      --ink: #151515;
      --coal: #20201f;
      --paper: #f4f1eb;
      --white: #ffffff;
      --orange: #ff7a00;
      --orange-soft: #ffbd73;
      --pink: #ec6c94;
      --line: rgba(21, 21, 21, .16);
      --muted: #696762;
      --radius: 1.4rem;
      --max: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--ink);
      background: var(--paper);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      font-size: 16px;
      line-height: 1.55;
    }
    a { color: inherit; }
    img { display: block; max-width: 100%; }
    button, input, textarea, select { font: inherit; }
    button { cursor: pointer; }
    .shell { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
    .eyebrow {
      margin: 0 0 .85rem;
      color: var(--orange);
      font-size: .78rem;
      font-weight: 850;
      letter-spacing: .13em;
      text-transform: uppercase;
    }
    h1, h2, h3 { margin: 0; line-height: .98; letter-spacing: -.045em; }
    h1 { max-width: 900px; font-size: clamp(3.2rem, 8.4vw, 7.5rem); font-weight: 900; }
    h2 { max-width: 800px; font-size: clamp(2.25rem, 5vw, 4.5rem); font-weight: 880; }
    h3 { font-size: clamp(1.35rem, 2vw, 1.75rem); font-weight: 820; }
    p { margin: 0; }
    .lead { max-width: 700px; color: #d6d2ca; font-size: clamp(1.08rem, 2vw, 1.35rem); }
    .section-lead { max-width: 690px; margin-top: 1.25rem; color: var(--muted); font-size: 1.06rem; }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 3.25rem;
      padding: .8rem 1.2rem;
      border: 1px solid transparent;
      border-radius: 999px;
      background: var(--orange);
      color: var(--ink);
      font-weight: 820;
      text-decoration: none;
      transition: transform .2s ease, background .2s ease;
    }
    .btn:hover { transform: translateY(-2px); background: var(--orange-soft); }
    .btn:focus-visible, .lang-btn:focus-visible, .menu-toggle:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
      outline: 3px solid var(--pink);
      outline-offset: 3px;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 30;
      border-bottom: 1px solid rgba(255,255,255,.12);
      background: rgba(21,21,21,.94);
      color: var(--white);
      backdrop-filter: blur(16px);
    }
    .nav-wrap { min-height: 76px; display: flex; align-items: center; gap: 2rem; }
    .brand { display: flex; align-items: center; gap: .8rem; text-decoration: none; }
    .brand-mark {
      display: block;
      width: 42px;
      height: 42px;
      aspect-ratio: 1;
      border: 2px solid var(--orange);
      border-radius: 50%;
      object-fit: cover;
    }
    .brand-name { font-size: 1.05rem; font-weight: 900; letter-spacing: -.02em; }
    nav#main-nav { display: flex; align-items: center; gap: 1.45rem; margin-left: auto; }
    nav#main-nav a { color: #ece9e3; font-size: .9rem; font-weight: 700; text-decoration: none; }
    nav#main-nav a:hover { color: var(--orange); }
    .languages { display: flex; align-items: center; gap: .22rem; padding: .22rem; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; }
    .lang-btn { min-width: 38px; padding: .43rem .55rem; border: 0; border-radius: 999px; background: transparent; color: #c8c3bb; font-size: .76rem; font-weight: 850; }
    .lang-btn.active { background: var(--white); color: var(--ink); }
    .header-cta { min-height: 2.7rem; padding-inline: 1rem; font-size: .86rem; }
    .menu-toggle { display: none; margin-left: auto; padding: .65rem; border: 1px solid rgba(255,255,255,.2); border-radius: .7rem; background: transparent; color: white; }

    .hero { overflow: hidden; padding: clamp(4.2rem, 9vw, 8.5rem) 0 4rem; background: var(--ink); color: var(--white); }
    .hero-grid { display: grid; grid-template-columns: 1.16fr .84fr; align-items: end; gap: clamp(2rem, 6vw, 6rem); }
    .hero-copy { position: relative; z-index: 1; }
    .hero-copy h1 em { color: var(--orange); font-style: normal; }
    .hero-copy .lead { margin-top: 1.7rem; }
    .hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 2rem; }
    .text-link { color: var(--white); font-weight: 780; text-underline-offset: 5px; }
    .hero-media {
      position: relative;
      min-height: 500px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,.18);
      border-radius: calc(var(--radius) * 1.35);
      background: #30302e;
    }
    .hero-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.72));
      pointer-events: none;
    }
    .hero-media img { width: 100%; height: 100%; min-height: 500px; object-fit: cover; object-position: 50% 50%; }
    .photo-label {
      position: absolute;
      z-index: 1;
      inset: auto 1.2rem 1.2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 1rem;
      border: 1px solid rgba(255,255,255,.16);
      border-radius: 1rem;
      background: rgba(12,12,12,.68);
      color: #eae6df;
      font-size: .86rem;
      backdrop-filter: blur(10px);
    }
    .photo-label span:last-child { color: var(--orange); font-weight: 800; }

    .trust { border-bottom: 1px solid var(--line); background: var(--white); }
    .trust-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
    .trust-item { padding: 1.45rem 1.2rem; border-left: 1px solid var(--line); }
    .trust-item:last-child { border-right: 1px solid var(--line); }
    .trust-item strong { display: block; font-size: 1rem; letter-spacing: -.02em; }
    .trust-item small { color: var(--muted); }

    .certification { padding: 2.2rem 0; background: #eaf7ff; border-bottom: 1px solid rgba(0, 115, 185, .18); }
    .certification-wrap { display: grid; grid-template-columns: 150px 1fr auto; gap: 2rem; align-items: center; }
    .certification img { width: 150px; height: auto; filter: drop-shadow(0 12px 18px rgba(20, 70, 100, .14)); }
    .certification h2 { max-width: none; color: #087abc; font-size: clamp(1.65rem, 3vw, 2.65rem); line-height: 1.05; }
    .certification p { max-width: 650px; margin-top: .65rem; color: #425763; }
    .certification .badge-year { padding: .65rem .9rem; border: 1px solid rgba(8,122,188,.25); border-radius: 999px; color: #087abc; font-weight: 850; white-space: nowrap; }

    section { padding: clamp(4.5rem, 9vw, 8.5rem) 0; }
    .cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.6rem; }
    .card { min-height: 290px; padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.62); }
    .card-num { display: grid; width: 2.65rem; aspect-ratio: 1; margin-bottom: 4.5rem; place-items: center; border-radius: 50%; background: var(--ink); color: var(--orange); font-size: .8rem; font-weight: 900; }
    .card p { margin-top: .8rem; color: var(--muted); }

    .signature {
      display: grid;
      grid-template-columns: 1.03fr .97fr;
      gap: clamp(1.5rem, 5vw, 4.5rem);
      align-items: center;
      margin-top: clamp(3.5rem, 7vw, 6rem);
      padding: clamp(1rem, 2vw, 1.35rem);
      border-radius: calc(var(--radius) * 1.25);
      background: var(--white);
    }
    .signature-media { overflow: hidden; min-height: 470px; border-radius: 1rem; background: #e8dfd0; }
    .signature-media img { width: 100%; height: 100%; min-height: 470px; object-fit: cover; }
    .signature-copy { padding: clamp(.5rem, 3vw, 2.4rem); }
    .signature-copy h3 { max-width: 500px; font-size: clamp(2rem, 4vw, 3.7rem); line-height: 1; }
    .signature-copy > p:not(.eyebrow) { margin-top: 1.2rem; color: var(--muted); font-size: 1.05rem; }
    .product-chips { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.5rem; }
    .product-chip { padding: .52rem .72rem; border: 1px solid var(--line); border-radius: 999px; font-size: .78rem; font-weight: 820; }

    .operation { background: var(--ink); color: var(--white); }
    .operation .section-lead { color: #bdb8b0; }
    .operation-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 7vw, 7rem); align-items: start; }
    .stats { display: grid; gap: .8rem; }
    .stat { display: grid; grid-template-columns: 56px 1fr; gap: 1rem; padding: 1.3rem; border: 1px solid rgba(255,255,255,.14); border-radius: 1rem; background: rgba(255,255,255,.04); }
    .stat-icon { display: grid; width: 46px; height: 46px; place-items: center; border-radius: .8rem; background: var(--orange); color: var(--ink); font-weight: 950; }
    .stat p { margin-top: .35rem; color: #aaa59e; font-size: .95rem; }
    .operation-gallery { grid-column: 1 / -1; display: grid; grid-template-columns: 1.15fr .85fr .85fr; gap: .8rem; margin-top: 1.3rem; }
    .operation-photo { position: relative; min-height: 290px; margin: 0; overflow: hidden; border-radius: 1rem; background: #2c2c2b; }
    .operation-photo:first-child { min-height: 380px; }
    .operation-photo img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; }
    .operation-photo figcaption { position: absolute; inset: auto .85rem .85rem; padding: .45rem .65rem; border-radius: 999px; background: rgba(15,15,15,.78); color: #fff; font-size: .72rem; font-weight: 780; backdrop-filter: blur(8px); }

    .experience-head { display: flex; align-items: end; justify-content: space-between; gap: 2rem; }
    .festival-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem; margin-top: 2.7rem; }
    .festival { display: flex; min-height: 120px; align-items: end; padding: 1.25rem; border: 1px solid var(--line); border-radius: 1rem; background: var(--white); font-size: 1.05rem; font-weight: 850; letter-spacing: -.025em; }
    .festival:nth-child(2), .festival:nth-child(5) { background: var(--orange); }
    .festival:nth-child(3) { background: var(--pink); }

    .press { background: #e7e2d9; }
    .press-grid { display: grid; grid-template-columns: 1.15fr .85fr .85fr; gap: 1rem; margin-top: 2.7rem; }
    .press-card { min-height: 310px; display: flex; flex-direction: column; justify-content: space-between; padding: 1.5rem; border-radius: var(--radius); background: var(--white); }
    .press-card:first-child { min-height: 390px; background: var(--coal); color: var(--white); }
    .press-card .tag { width: fit-content; padding: .38rem .65rem; border-radius: 999px; background: var(--paper); color: var(--ink); font-size: .7rem; font-weight: 850; text-transform: uppercase; }
    .press-card:first-child .tag { background: var(--orange); }
    .press-card p { margin-top: .8rem; color: var(--muted); }
    .press-card:first-child p { color: #bdb8b0; }
    .press-foot { padding-top: 1rem; border-top: 1px solid currentColor; font-size: .8rem; font-weight: 800; opacity: .72; }

    .contact { background: var(--orange); }
    .contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 7vw, 7rem); }
    .contact-copy h2 { max-width: 540px; }
    .contact-copy p { max-width: 510px; margin-top: 1.4rem; font-size: 1.05rem; }
    form { padding: clamp(1.25rem, 3vw, 2rem); border-radius: var(--radius); background: var(--white); box-shadow: 0 25px 70px rgba(38,24,10,.14); }
    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    label { display: grid; gap: .42rem; color: #3a3834; font-size: .82rem; font-weight: 800; }
    label.full { grid-column: 1 / -1; }
    input, textarea, select { width: 100%; border: 1px solid #ccc6bd; border-radius: .72rem; background: #fff; color: var(--ink); }
    input, select { min-height: 3rem; padding: .72rem .85rem; }
    textarea { min-height: 120px; padding: .85rem; resize: vertical; }
    .check { display: flex; grid-column: 1 / -1; align-items: flex-start; gap: .7rem; margin-top: .2rem; font-size: .76rem; font-weight: 600; }
    .check input { width: 18px; min-height: 18px; margin-top: .1rem; }
    form .btn { width: 100%; grid-column: 1 / -1; margin-top: .35rem; border: 0; background: var(--ink); color: var(--white); }
    .form-note { grid-column: 1 / -1; color: var(--muted); font-size: .72rem; text-align: center; }
    .success { display: none; padding: 1rem; border-radius: .8rem; background: #e6f6e8; color: #195728; font-weight: 750; }
    .contact-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.5rem; }
    .contact-actions a { display: inline-flex; align-items: center; min-height: 2.8rem; padding: .7rem 1rem; border: 1px solid rgba(21,21,21,.28); border-radius: 999px; font-weight: 820; text-decoration: none; }

    .team { background: var(--white); }
    .team-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; }
    .team-photo { overflow: hidden; border-radius: calc(var(--radius) * 1.2); background: #ddd; }
    .team-photo img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
    .team-copy p:not(.eyebrow) { max-width: 560px; margin-top: 1.25rem; color: var(--muted); font-size: 1.06rem; }
    .team-proof { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.5rem; }
    .team-proof span { padding: .52rem .75rem; border: 1px solid var(--line); border-radius: 999px; font-size: .8rem; font-weight: 820; }

    .whatsapp-float { position: fixed; z-index: 40; right: 1.2rem; bottom: 1.2rem; display: inline-flex; align-items: center; gap: .55rem; min-height: 3.2rem; padding: .8rem 1rem; border-radius: 999px; background: #1fbb64; color: #082d18; box-shadow: 0 14px 34px rgba(0,0,0,.22); font-weight: 900; text-decoration: none; }
    .whatsapp-float:hover { transform: translateY(-2px); }

    footer { padding: 2.2rem 0; background: var(--ink); color: #c4bfb7; }
    .footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
    .footer-links { display: flex; flex-wrap: wrap; gap: 1.2rem; }
    .footer-links a { font-size: .82rem; text-decoration: none; }
    .footer-links a:hover { color: var(--orange); }

    @media (max-width: 920px) {
      .menu-toggle { display: inline-flex; }
      nav#main-nav {
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem 1rem 1.5rem;
        border-top: 1px solid rgba(255,255,255,.12);
        background: var(--ink);
      }
      nav#main-nav.open { display: flex; }
      .languages { width: fit-content; }
      .header-cta { width: fit-content; }
      .hero-grid, .operation-grid, .contact-grid, .team-grid { grid-template-columns: 1fr; }
      .hero-media, .hero-media img { min-height: 380px; }
      .signature { grid-template-columns: 1fr; }
      .signature-media, .signature-media img { min-height: 380px; }
      .operation-gallery { grid-template-columns: 1fr 1fr; }
      .operation-photo:first-child { grid-column: 1 / -1; }
      .trust-grid { grid-template-columns: 1fr 1fr; }
      .certification-wrap { grid-template-columns: 120px 1fr; }
      .certification img { width: 120px; }
      .certification .badge-year { grid-column: 2; justify-self: start; }
      .trust-item:nth-child(3) { border-top: 1px solid var(--line); }
      .trust-item:nth-child(4) { border-top: 1px solid var(--line); }
      .cards, .festival-grid { grid-template-columns: 1fr 1fr; }
      .press-grid { grid-template-columns: 1fr 1fr; }
      .press-card:first-child { grid-column: 1 / -1; }
    }

    @media (max-width: 620px) {
      .shell { width: min(calc(100% - 1.25rem), var(--max)); }
      .brand-name { font-size: .95rem; }
      h1 { font-size: clamp(3rem, 16vw, 4.8rem); }
      .hero { padding-top: 3.5rem; }
      .hero-media, .hero-media img { min-height: 315px; }
      .signature-media, .signature-media img { min-height: 310px; }
      .operation-gallery { grid-template-columns: 1fr; }
      .operation-photo:first-child { grid-column: auto; }
      .trust-grid, .cards, .festival-grid, .press-grid, .form-grid { grid-template-columns: 1fr; }
      .certification-wrap { grid-template-columns: 92px 1fr; gap: 1rem; }
      .certification img { width: 92px; }
      .certification .badge-year { grid-column: 1 / -1; }
      .trust-item { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
      .card { min-height: 240px; }
      .card-num { margin-bottom: 3rem; }
      .press-card:first-child { grid-column: auto; }
      .whatsapp-float span { display: none; }
      .experience-head, .footer-grid { align-items: flex-start; flex-direction: column; }
      label.full, .check, form .btn, .form-note { grid-column: auto; }
    }
  
