:root {
      --bg: #f6f8f4;
      --bg2: #edf3ec;
      --surface: rgba(255,255,255,.76);
      --surface-solid: #ffffff;
      --ink: #111c18;
      --muted: #64716b;
      --soft: rgba(17,28,24,.09);
      --green: #123f34;
      --green2: #2a725d;
      --mint: #e5f2eb;
      --lime: #b8dfc7;
      --cream: #f4efe4;
      --shadow: 0 28px 80px rgba(16, 34, 27, .12);
      --shadow-soft: 0 18px 48px rgba(16, 34, 27, .08);
      --radius: 30px;
      --radius-sm: 18px;
    }

    * { box-sizing: border-box; }
    html {
      scroll-behavior: smooth;
      background: #123f34;
      overscroll-behavior-y: none;
    }
    body {
      margin: 0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--ink);
      background:
        radial-gradient(circle at 5% 0%, rgba(42,114,93,.18), transparent 28%),
        radial-gradient(circle at 92% 8%, rgba(184,223,199,.35), transparent 24%),
        linear-gradient(180deg, #fbfcfa 0%, var(--bg) 48%, #eef3ed 100%);
      overflow-x: hidden;
      overscroll-behavior-y: none;
    }

    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }
    button, input, textarea, select { font: inherit; }
    .container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

    .noise {
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: .035;
      z-index: 9999;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
    }

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

    .nav {
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
      padding: 0 14px 0 18px;
      border: 1px solid rgba(255,255,255,.20);
      border-radius: 999px;
      background: rgba(255,255,255,.72);
      backdrop-filter: blur(22px);
      box-shadow: 0 16px 46px rgba(17,28,24,.13);
      pointer-events: auto;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }

    .brand-mark {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: 16px;
      color: white;
      font-weight: 900;
      letter-spacing: -.07em;
      background:
        radial-gradient(circle at 25% 15%, rgba(255,255,255,.28), transparent 30%),
        linear-gradient(135deg, var(--green), var(--green2));
      box-shadow: 0 18px 34px rgba(18,63,52,.28);
      flex: 0 0 auto;
    }

    .brand-copy {
      display: flex;
      flex-direction: column;
      line-height: 1.05;
      min-width: 0;
    }

    .brand-copy strong {
      font-size: 1rem;
      letter-spacing: -.03em;
    }

    .brand-copy span {
      color: var(--muted);
      font-size: .76rem;
      margin-top: 4px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }


    .brand-logo-link {
      display: flex;
      align-items: center;
      flex: 0 1 360px;
      min-width: 220px;
    }

    .brand-logo-img {
      display: block;
      width: min(100%, 330px);
      height: 56px;
      object-fit: contain;
      object-position: left center;
      image-rendering: auto;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 6px;
      color: rgba(17,28,24,.68);
      font-weight: 700;
      font-size: .9rem;
    }

    .nav-links a {
      padding: 12px 14px;
      border-radius: 999px;
    }

    .nav-links a:hover {
      color: var(--green);
      background: rgba(18,63,52,.06);
    }

    .nav-cta {
      padding: 12px 18px !important;
      background: var(--green) !important;
      color: #fff !important;
      box-shadow: 0 12px 28px rgba(18,63,52,.18);
    }

    .menu {
      display: none;
      width: 46px;
      height: 46px;
      border: 0;
      border-radius: 50%;
      background: var(--mint);
      color: var(--green);
      font-weight: 900;
      cursor: pointer;
    }

    /* REVSLIDER-STYLE HEADER */
    .rev-hero {
      position: relative;
      min-height: 100svh;
      padding: 112px 0 48px;
      display: flex;
      align-items: stretch;
      overflow: hidden;
      isolation: isolate;
      background: #0f231d;
    }

    .rev-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      pointer-events: none;
      transform: scale(1.035);
      transition: opacity .8s ease, transform 1.2s ease;
      z-index: -4;
    }

    .rev-slide.active {
      opacity: 1;
      transform: scale(1);
    }

    .rev-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(.96) contrast(1.02);
    }

    .rev-slide::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(10,25,20,.88) 0%, rgba(10,25,20,.66) 42%, rgba(10,25,20,.26) 100%),
        radial-gradient(circle at 76% 38%, rgba(184,223,199,.22), transparent 28%),
        linear-gradient(180deg, rgba(10,25,20,.40) 0%, rgba(10,25,20,.10) 45%, rgba(10,25,20,.62) 100%);
      z-index: 1;
    }

    .rev-shell {
      position: relative;
      z-index: 2;
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.02fr .98fr;
      align-items: end;
      gap: 34px;
    }

    .rev-copy {
      padding: clamp(24px, 4vw, 46px) 0 54px;
      color: #fff;
    }

    .rev-kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 9px 13px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.22);
      background: rgba(255,255,255,.11);
      backdrop-filter: blur(14px);
      color: #d9f1e5;
      font-size: .75rem;
      font-weight: 950;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .rev-kicker::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: #67cf94;
      box-shadow: 0 0 0 7px rgba(103,207,148,.16);
    }

    .rev-title {
      margin: 24px 0 0;
      max-width: 660px;
      font-size: clamp(2.2rem, 4.4vw, 4.45rem);
      line-height: 1.04;
      letter-spacing: -.018em;
      text-wrap: balance;
    }

    .rev-title span {
      display: block;
      color: #dff2e8;
    }

    .rev-text {
      margin: 22px 0 0;
      max-width: 620px;
      color: rgba(255,255,255,.78);
      font-size: 1.08rem;
      line-height: 1.75;
    }

    .rev-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 32px;
    }

    .rev-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      padding: 0 23px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.18);
      font-weight: 900;
      letter-spacing: -.02em;
      transition: .2s ease;
    }

    .rev-btn.primary {
      color: var(--green);
      background: #fff;
      box-shadow: 0 18px 38px rgba(0,0,0,.16);
    }

    .rev-btn.secondary {
      color: #fff;
      background: rgba(255,255,255,.10);
      backdrop-filter: blur(14px);
    }

    .rev-btn:hover {
      transform: translateY(-2px);
    }

    .rev-panel {
      align-self: end;
      margin-bottom: 52px;
      border-radius: 34px;
      padding: 18px;
      border: 1px solid rgba(255,255,255,.18);
      background: rgba(255,255,255,.11);
      backdrop-filter: blur(22px);
      box-shadow: 0 30px 80px rgba(0,0,0,.22);
      color: #fff;
    }

    .rev-panel-top {
      display: block;
      padding-bottom: 18px;
      border-bottom: 0;
      text-align: center;
    }

    .rev-panel-top strong {
      display: block;
      font-size: 1rem;
      letter-spacing: -.03em;
      text-align: center;
      margin-bottom: 6px;
    }

    .rev-panel-top span {
      display: block;
      color: rgba(255,255,255,.70);
      font-size: .86rem;
      margin-top: 0;
      text-align: center;
    }

    .rev-score {
      width: 60px;
      height: 60px;
      flex: 0 0 auto;
      display: grid;
      place-items: center;
      border-radius: 22px;
      background: rgba(255,255,255,.90);
      color: var(--green);
      font-weight: 950;
    }

    .rev-mini-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }

    .rev-mini {
      padding: 14px;
      border-radius: 18px;
      background: rgba(255,255,255,.10);
      border: 1px solid rgba(255,255,255,.12);
    }

    .rev-mini b {
      display: block;
      font-size: .9rem;
    }

    .rev-mini small {
      display: block;
      margin-top: 5px;
      color: rgba(255,255,255,.68);
      line-height: 1.35;
    }

    .rev-controls {
      position: absolute;
      z-index: 5;
      left: 50%;
      bottom: 26px;
      transform: translateX(-50%);
      width: min(1180px, calc(100% - 40px));
      display: flex;
      align-items: center;
      justify-content: space-between;
      pointer-events: none;
    }

    .rev-arrows {
      display: flex;
      gap: 10px;
      pointer-events: auto;
    }

    .rev-arrow {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.18);
      background: rgba(255,255,255,.10);
      color: #fff;
      backdrop-filter: blur(14px);
      cursor: pointer;
      transition: .2s ease;
      font-size: 1.25rem;
    }

    .rev-arrow:hover {
      background: rgba(255,255,255,.20);
      transform: translateY(-2px);
    }

    .rev-dots {
      display: flex;
      gap: 9px;
      padding: 10px;
      border-radius: 999px;
      background: rgba(255,255,255,.10);
      border: 1px solid rgba(255,255,255,.14);
      backdrop-filter: blur(14px);
      pointer-events: auto;
    }

    .rev-dot {
      width: 10px;
      height: 10px;
      border: 0;
      border-radius: 999px;
      background: rgba(255,255,255,.44);
      cursor: pointer;
      transition: .2s ease;
    }

    .rev-dot.active {
      width: 34px;
      background: #fff;
    }

    .scroll-hint {
      position: absolute;
      right: 24px;
      bottom: 32px;
      z-index: 5;
      writing-mode: vertical-rl;
      color: rgba(255,255,255,.64);
      font-size: .72rem;
      font-weight: 850;
      letter-spacing: .18em;
      text-transform: uppercase;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .scroll-hint::after {
      content: "";
      width: 1px;
      height: 46px;
      background: rgba(255,255,255,.34);
    }

    .section {
      padding: 86px 0;
    }

    .section-head {
      display: grid;
      grid-template-columns: .8fr 1fr;
      gap: 28px;
      align-items: end;
      margin-bottom: 30px;
    }

    .eyebrow {
      margin: 0 0 12px;
      color: var(--green2);
      font-size: .77rem;
      font-weight: 950;
      letter-spacing: .13em;
      text-transform: uppercase;
    }

    h2 {
      margin: 0;
      font-size: clamp(1.85rem, 3.2vw, 2.65rem);
      line-height: 1.12;
      letter-spacing: -.018em;
    }

    .section-head p {
      margin: 0;
      color: var(--muted);
      line-height: 1.75;
      max-width: 620px;
    }

    .bento {
      display: grid;
      grid-template-columns: 1.05fr .95fr .95fr;
      gap: 16px;
    }

    .bento-card {
      position: relative;
      overflow: hidden;
      min-height: 250px;
      padding: 24px;
      border-radius: 28px;
      border: 1px solid rgba(17,28,24,.08);
      background: rgba(255,255,255,.68);
      box-shadow: var(--shadow-soft);
    }

    .bento-card.dark {
      background: linear-gradient(135deg, #123f34, #225f4e);
      color: #fff;
    }

    .bento-card.tall {
      grid-row: span 2;
      min-height: 520px;
      padding: 0;
    }

    .bento-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .bento-card .image-label {
      position: absolute;
      left: 18px;
      right: 18px;
      bottom: 18px;
      padding: 14px 16px;
      border-radius: 18px;
      background: rgba(255,255,255,.74);
      backdrop-filter: blur(16px);
      color: var(--green);
      font-weight: 850;
    }

    .bento-icon {
      width: 42px;
      height: 42px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background: var(--mint);
      color: var(--green);
      font-weight: 950;
      margin-bottom: 44px;
    }

    .dark .bento-icon {
      background: rgba(255,255,255,.14);
      color: #fff;
    }

    .bento-card h3 {
      margin: 0 0 10px;
      font-size: 1.18rem;
      letter-spacing: -.008em;
    }

    .bento-card p {
      margin: 0;
      color: var(--muted);
      line-height: 1.68;
    }

    .bento-card.dark p {
      color: rgba(255,255,255,.72);
    }

    .slider-section {
      padding: 92px 0;
    }

    .slider-shell {
      display: grid;
      grid-template-columns: .82fr 1.18fr;
      gap: 26px;
      align-items: center;
      padding: 18px;
      border-radius: 38px;
      border: 1px solid rgba(17,28,24,.08);
      background: rgba(255,255,255,.58);
      box-shadow: var(--shadow);
    }

    .slider-copy {
      padding: clamp(18px, 3vw, 34px);
    }

    .slider-copy p {
      color: var(--muted);
      line-height: 1.75;
    }

    .slider-list {
      list-style: none;
      display: grid;
      gap: 12px;
      padding: 0;
      margin: 24px 0 0;
    }

    .slider-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--ink);
      font-weight: 750;
    }

    .slider-list li::before {
      content: "";
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background:
        radial-gradient(circle at 50% 50%, #fff 0 20%, transparent 22%),
        var(--green2);
      flex: 0 0 auto;
    }

    .ba-card {
      padding: 0;
      border-radius: 0;
      background: transparent;
      border: 0;
      box-shadow: none;
    }

    .ba-slider {
      position: relative;
      aspect-ratio: 16 / 9;
      border-radius: 24px;
      overflow: hidden;
      background: var(--mint);
      user-select: none;
      touch-action: none;
      cursor: ew-resize;
    }

    .ba-slider img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      pointer-events: none;
    }

    .ba-after { z-index: 1; }
    .ba-before-wrap {
      position: absolute;
      inset: 0;
      width: 100%;
      overflow: hidden;
      z-index: 2;
      clip-path: inset(0 50% 0 0);
    }
    .ba-before {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .ba-handle {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      z-index: 3;
      width: 0;
    }

    .ba-handle::before {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      left: -1px;
      width: 2px;
      background: rgba(255,255,255,.95);
      box-shadow: 0 0 0 1px rgba(17,28,24,.08);
    }

    .ba-knob {
      position: absolute;
      left: 50%;
      top: 50%;
      width: 58px;
      height: 58px;
      transform: translate(-50%, -50%);
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: rgba(255,255,255,.92);
      border: 1px solid rgba(17,28,24,.10);
      color: var(--green);
      font-weight: 950;
      box-shadow: 0 18px 45px rgba(17,28,24,.18);
      backdrop-filter: blur(10px);
    }

    .slider-tags {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      margin-top: 12px;
    }

    .tag {
      padding: 9px 13px;
      border-radius: 999px;
      background: #f6f8f5;
      border: 1px solid rgba(17,28,24,.08);
      color: var(--green);
      font-weight: 900;
      font-size: .82rem;
    }

    .ambient {
      position: relative;
      padding: 110px 0;
      isolation: isolate;
      overflow: hidden;
    }

    .ambient::before {
      content: "";
      position: absolute;
      inset: 0;
      background: url("../images/image-01-b92ef542de52.png") center/cover;
      opacity: .2;
      z-index: -2;
      transform: scale(1.03);
    }

    .ambient::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(15,30,24,.92), rgba(15,30,24,.64) 52%, rgba(15,30,24,.38)),
        linear-gradient(180deg, rgba(15,30,24,.18), rgba(15,30,24,.18));
      z-index: -1;
    }

    .ambient-content {
      max-width: 760px;
      color: #fff;
    }

    .ambient .eyebrow { color: #cde8d9; }

    .ambient h2 {
      font-size: clamp(2rem, 3.5vw, 3.25rem);
      max-width: 760px;
    }

    .ambient p {
      color: rgba(255,255,255,.78);
      line-height: 1.78;
      max-width: 620px;
    }

    .ambient-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: 28px;
      max-width: 820px;
    }

    .ambient-grid div {
      padding: 18px;
      border-radius: 20px;
      background: rgba(255,255,255,.09);
      border: 1px solid rgba(255,255,255,.14);
      backdrop-filter: blur(12px);
    }

    .ambient-grid strong { display: block; }
    .ambient-grid span {
      display: block;
      margin-top: 6px;
      color: rgba(255,255,255,.74);
      line-height: 1.46;
    }

    .process {
      padding: 92px 0;
    }

    .method-shell {
      display: grid;
      grid-template-columns: .88fr 1.12fr;
      gap: 26px;
      align-items: stretch;
      padding: 18px;
      border-radius: 38px;
      border: 1px solid rgba(17,28,24,.08);
      background: linear-gradient(135deg, rgba(255,255,255,.74), rgba(255,255,255,.56));
      box-shadow: var(--shadow);
    }

    .method-intro {
      padding: clamp(24px, 3.6vw, 38px);
      border-radius: 28px;
      background:
        radial-gradient(circle at 0% 0%, rgba(184,223,199,.40), transparent 34%),
        linear-gradient(180deg, rgba(255,255,255,.92), rgba(244,248,245,.78));
      border: 1px solid rgba(17,28,24,.08);
    }

    .method-intro h2 {
      margin-top: 0;
      max-width: 520px;
    }

    .method-intro p {
      margin: 14px 0 0;
      color: var(--muted);
      line-height: 1.8;
      max-width: 540px;
    }

    .method-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 26px;
    }

    .method-pills span {
      display: inline-flex;
      align-items: center;
      min-height: 40px;
      padding: 0 15px;
      border-radius: 999px;
      background: rgba(255,255,255,.84);
      border: 1px solid rgba(17,28,24,.08);
      color: var(--green);
      font-weight: 800;
      font-size: .88rem;
      box-shadow: 0 10px 24px rgba(17,28,24,.05);
    }

    .method-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .step {
      position: relative;
      overflow: hidden;
      padding: 24px 22px 22px;
      border-radius: 26px;
      border: 1px solid rgba(255,255,255,.34);
      background: rgba(255,255,255,.34);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      box-shadow: 0 18px 42px rgba(17,28,24,.07);
    }

    .step::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, rgba(18,63,52,.95), rgba(42,114,93,.35));
    }

    .step-icon {
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      margin-bottom: 16px;
      border-radius: 16px;
      background: rgba(18,63,52,.10);
      color: var(--green);
      font-size: 1rem;
      font-weight: 900;
      line-height: 1;
      box-shadow: inset 0 0 0 1px rgba(18,63,52,.06);
    }

    .step-num {
      display: none;
    }

    .step h3 {
      margin: 0 0 10px;
      font-size: 1.08rem;
      color: var(--green);
      letter-spacing: -.01em;
    }

    .step p {
      margin: 0;
      color: rgba(17,28,24,.78);
      line-height: 1.68;
      font-size: .95rem;
    }

    .cta {
      padding: 30px 0 100px;
    }

    .cta-card {
      display: grid;
      grid-template-columns: 1fr .9fr;
      gap: 28px;
      align-items: center;
      padding: clamp(22px, 4vw, 42px);
      border-radius: 38px;
      background:
        radial-gradient(circle at 20% 0%, rgba(184,223,199,.35), transparent 32%),
        linear-gradient(135deg, #ffffff, #eef6f0);
      border: 1px solid rgba(17,28,24,.08);
      box-shadow: var(--shadow);
    }

    .cta-card p {
      color: var(--muted);
      line-height: 1.75;
      max-width: 620px;
    }

    .form {
      padding: 20px;
      border-radius: 28px;
      background: #fff;
      border: 1px solid rgba(17,28,24,.08);
      box-shadow: var(--shadow-soft);
    }

    label {
      display: block;
      margin-bottom: 13px;
      color: var(--green);
      font-weight: 850;
      font-size: .92rem;
    }

    input, select, textarea {
      width: 100%;
      margin-top: 8px;
      padding: 14px 15px;
      border-radius: 16px;
      border: 1px solid rgba(17,28,24,.10);
      background: #f7f9f6;
      outline: none;
      color: var(--ink);
    }

    input:focus, select:focus, textarea:focus {
      border-color: rgba(42,114,93,.42);
      box-shadow: 0 0 0 4px rgba(42,114,93,.10);
    }

    .full {
      width: 100%;
      border: 0;
    }


    .form .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      padding: 0 22px;
      border: 0;
      border-radius: 999px;
      background: var(--green);
      color: #ffffff;
      font-weight: 900;
      cursor: pointer;
      box-shadow: 0 14px 30px rgba(18, 82, 64, .20);
      transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
    }

    .form .btn-primary:hover {
      background: #0f4b3d;
      color: #ffffff;
      transform: translateY(-2px);
      box-shadow: 0 18px 34px rgba(18, 82, 64, .26);
    }

    .form small {
      display: block;
      color: var(--muted);
      margin-top: 12px;
      text-align: center;
    }

    
    
    
    
    /* FOOTER — image background with shadow and restored text */
    .site-footer {
      position: relative;
      margin: 0;
      padding: 0;
      color: #ffffff;
      border: 0;
      overflow: hidden;
      isolation: isolate;
      background: #123f34;
    }

    .site-footer::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: url("../images/image-02-4d640624db1f.png");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      z-index: -2;
      transform: scale(1.01);
    }

    .site-footer::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(10, 24, 20, .52);
      box-shadow: inset 0 30px 60px rgba(0,0,0,.18), inset 0 -40px 80px rgba(0,0,0,.30);
      z-index: -1;
      pointer-events: none;
    }

    .footer-inner {
      position: relative;
      z-index: 1;
      padding-top: 62px;
      padding-bottom: 26px;
    }

    .footer-main {
      display: grid;
      grid-template-columns: minmax(340px, 1.35fr) minmax(150px, .55fr) minmax(190px, .62fr);
      gap: clamp(38px, 6vw, 84px);
      align-items: start;
      padding-bottom: 38px;
    }

    .footer-about { max-width: 500px; }

    .footer-brand-link {
      display: inline-flex;
      align-items: center;
      margin-bottom: 22px;
    }

    .footer-brand-image {
      display: block;
      width: min(100%, 260px);
      height: auto;
      object-fit: contain;
      object-position: left center;
      filter: brightness(0) invert(1);
      opacity: 1;
    }

    .footer-about p {
      margin: 0;
      max-width: 490px;
      color: rgba(255,255,255,.86);
      font-size: .96rem;
      line-height: 1.78;
      text-shadow: 0 2px 12px rgba(0,0,0,.18);
    }

    .footer-column {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 11px;
    }

    .footer-column h3 {
      margin: 0 0 8px;
      color: #ffffff;
      font-size: 1rem;
      line-height: 1.2;
      letter-spacing: 0;
      text-shadow: 0 2px 12px rgba(0,0,0,.15);
    }

    .footer-column a,
    .footer-column span {
      color: rgba(255,255,255,.84);
      font-size: .94rem;
      line-height: 1.5;
      transition: color .18s ease, transform .18s ease;
      text-shadow: 0 2px 10px rgba(0,0,0,.12);
    }

    .footer-column a:hover {
      color: #ffffff;
      transform: translateX(3px);
    }

    .footer-legal {
      display: flex;
      justify-content: space-between;
      gap: 24px;
      padding-top: 22px;
      border-top: 1px solid rgba(255,255,255,.20);
      color: rgba(255,255,255,.68);
      font-size: .84rem;
      line-height: 1.5;
      text-shadow: 0 2px 10px rgba(0,0,0,.12);
    }

@media (max-width: 1020px) {
      .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 34px 48px;
      }
      .footer-about {
        grid-column: 1 / -1;
      }

      .menu { display: grid; place-items: center; }
      .nav-links {
        position: absolute;
        left: 20px;
        right: 20px;
        top: 88px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        border-radius: 24px;
        background: rgba(255,255,255,.94);
        border: 1px solid rgba(17,28,24,.08);
        box-shadow: var(--shadow);
      }
      .nav-links.open { display: flex; }

      .rev-hero {
        min-height: auto;
        padding: 112px 0 90px;
      }

      .rev-shell {
        grid-template-columns: 1fr;
      }

      .rev-copy {
        padding-bottom: 20px;
      }

      .rev-panel {
        margin-bottom: 30px;
      }

      .rev-title {
        font-size: clamp(2.35rem, 8vw, 4.2rem);
      }

      .rev-controls {
        bottom: 22px;
      }

      .section-head, .slider-shell, .cta-card {
        grid-template-columns: 1fr;
      }
      .bento {
        grid-template-columns: 1fr 1fr;
      }
      .bento-card.tall {
        grid-row: auto;
        grid-column: span 2;
        min-height: 420px;
      }
      .method-grid, .ambient-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 680px) {
      .footer-inner {
        padding-top: 46px;
        padding-bottom: 22px;
      }
      .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-bottom: 30px;
      }
      .footer-about {
        grid-column: auto;
      }
      .footer-brand-image {
        width: min(100%, 230px);
      }
      .footer-legal {
        flex-direction: column;
        gap: 8px;
      }

      .footer-wrap::before {
        width: min(88vw, 420px);
        right: -18px;
        bottom: -4px;
        opacity: .46;
      }
      .footer-top {
        grid-template-columns: 1fr;
      }
      .footer-bottom {
        flex-direction: column;
      }

      .container { width: min(100% - 28px, 1180px); }
      .topbar { top: 8px; margin-top: 0; }
      .brand-copy span { display: none; }

      .rev-hero {
        padding: 96px 0 92px;
      }

      .rev-shell, .rev-controls {
        width: min(100% - 28px, 1180px);
      }

      .rev-title {
        font-size: 2.05rem;
        line-height: 1.06;
        max-width: 100%;
      }

      .rev-text {
        font-size: 1rem;
      }

      .rev-actions {
        display: grid;
      }

      .rev-panel {
        border-radius: 26px;
      }

      .rev-mini-grid {
        grid-template-columns: 1fr;
      }

      .scroll-hint {
        display: none;
      }

      .rev-controls {
        justify-content: center;
      }

      .rev-arrows {
        display: none;
      }

      .bento, .method-grid, .ambient-grid {
        grid-template-columns: 1fr;
      }
      .bento-card.tall {
        grid-column: auto;
        min-height: 320px;
      }
      .section, .process, .slider-section {
        padding: 64px 0;
      }
      .ambient {
        padding: 78px 0;
      }
      
      .footer-top {
        grid-template-columns: 1fr;
      }
      .footer-bottom {
        flex-direction: column;
      }

    }
  
    .care-section {
      padding: 34px 0 100px;
    }

    .care-grid {
      display: grid;
      grid-template-columns: .88fr 1.12fr;
      gap: 38px;
      align-items: center;
    }

    .care-copy {
      padding: clamp(26px, 4vw, 44px);
      border-radius: 34px;
      border: 1px solid rgba(17,28,24,.08);
      background:
        radial-gradient(circle at 12% 0%, rgba(184,223,199,.28), transparent 34%),
        rgba(255,255,255,.72);
      box-shadow: var(--shadow-soft);
    }

    .care-copy p {
      color: var(--muted);
      line-height: 1.78;
    }

    .care-points {
      display: grid;
      gap: 12px;
      margin: 24px 0 28px;
    }

    .care-points div {
      padding: 15px 17px;
      border-radius: 18px;
      border: 1px solid rgba(17,28,24,.08);
      background: rgba(255,255,255,.72);
    }

    .care-points strong {
      display: block;
      color: var(--green);
      font-size: .96rem;
    }

    .care-points span {
      display: block;
      margin-top: 5px;
      color: var(--muted);
      line-height: 1.5;
      font-size: .9rem;
    }

    .care-images {
      position: relative;
      min-height: 620px;
    }

    .care-image {
      position: absolute;
      margin: 0;
      overflow: hidden;
      border-radius: 32px;
      border: 1px solid rgba(17,28,24,.08);
      background: #fff;
      box-shadow: var(--shadow);
    }

    .care-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .care-image figcaption {
      position: absolute;
      left: 16px;
      right: 16px;
      bottom: 16px;
      padding: 13px 15px;
      border-radius: 17px;
      color: var(--green);
      background: rgba(255,255,255,.78);
      border: 1px solid rgba(255,255,255,.42);
      backdrop-filter: blur(16px);
      font-weight: 850;
      font-size: .88rem;
    }

    .care-image-main {
      inset: 0 70px 70px 0;
    }

    .care-image-small {
      width: 48%;
      height: 42%;
      right: 0;
      bottom: 0;
      border-radius: 26px;
    }

    @media (max-width: 1020px) {
      .care-grid {
        grid-template-columns: 1fr;
      }

      .care-images {
        min-height: 580px;
      }
    }

    @media (max-width: 680px) {
      .care-section {
        padding: 20px 0 68px;
      }

      .care-images {
        min-height: 0;
        display: grid;
        gap: 14px;
      }

      .care-image {
        position: relative;
        inset: auto;
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 11;
        border-radius: 26px;
      }

      .care-image-small {
        width: 100%;
        height: auto;
      }
    }

  

    .results-gallery-wrap {
      margin-top: 34px;
    }

    .results-gallery-heading {
      max-width: 760px;
      margin-bottom: 24px;
    }

    .results-gallery-heading h3 {
      margin: 6px 0 10px;
      font-size: clamp(1.65rem, 3vw, 2.55rem);
      line-height: 1.1;
      letter-spacing: -.012em;
    }

    .results-gallery-heading > p:last-child {
      margin: 0;
      color: var(--muted);
      line-height: 1.7;
    }

    .results-gallery {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 20px;
    }

    .result-gallery-card {
      width: 100%;
      padding: 0;
      border: 0;
      border-radius: 26px;
      overflow: hidden;
      color: inherit;
      text-align: left;
      background: rgba(255,255,255,.78);
      box-shadow: 0 18px 45px rgba(19,52,43,.10);
      cursor: zoom-in;
      transition: transform .22s ease, box-shadow .22s ease;
    }

    .result-gallery-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 24px 56px rgba(19,52,43,.15);
    }

    .result-gallery-card:focus-visible {
      outline: 3px solid rgba(35,117,92,.34);
      outline-offset: 4px;
    }

    .result-gallery-image {
      position: relative;
      display: block;
      aspect-ratio: 16 / 9;
      overflow: hidden;
      background: #e9efeb;
    }

    .result-gallery-image img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .35s ease;
    }

    .result-gallery-card:hover .result-gallery-image img {
      transform: scale(1.025);
    }

    .result-gallery-zoom {
      position: absolute;
      right: 15px;
      bottom: 15px;
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #fff;
      background: rgba(13,74,58,.88);
      border: 1px solid rgba(255,255,255,.32);
      box-shadow: 0 10px 28px rgba(0,0,0,.18);
      font-size: 1.35rem;
      line-height: 1;
      backdrop-filter: blur(10px);
    }

    .result-gallery-caption {
      display: block;
      padding: 17px 19px 20px;
    }

    .result-gallery-caption strong {
      display: block;
      color: var(--green);
      font-size: 1rem;
    }

    .result-gallery-caption small {
      display: block;
      margin-top: 6px;
      color: var(--muted);
      font-size: .88rem;
      line-height: 1.5;
    }

    .gallery-lightbox {
      position: fixed;
      inset: 0;
      z-index: 99999;
      display: grid;
      place-items: center;
      padding: 30px;
      background: rgba(5,18,14,.88);
      opacity: 0;
      visibility: hidden;
      transition: opacity .22s ease, visibility .22s ease;
      backdrop-filter: blur(12px);
    }

    .gallery-lightbox.is-open {
      opacity: 1;
      visibility: visible;
    }

    .gallery-lightbox-dialog {
      position: relative;
      width: min(94vw, 1500px);
      max-height: 92vh;
      display: grid;
      gap: 12px;
      transform: scale(.975);
      transition: transform .22s ease;
    }

    .gallery-lightbox.is-open .gallery-lightbox-dialog {
      transform: scale(1);
    }

    .gallery-lightbox-image-wrap {
      overflow: hidden;
      border-radius: 24px;
      background: #101a17;
      box-shadow: 0 34px 100px rgba(0,0,0,.48);
    }

    .gallery-lightbox img {
      display: block;
      width: 100%;
      max-height: calc(92vh - 74px);
      object-fit: contain;
    }

    .gallery-lightbox-caption {
      color: rgba(255,255,255,.86);
      text-align: center;
      font-weight: 750;
    }

    .gallery-lightbox-close,
    .gallery-lightbox-arrow {
      position: absolute;
      z-index: 2;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255,255,255,.24);
      color: #fff;
      background: rgba(9,57,45,.82);
      box-shadow: 0 12px 34px rgba(0,0,0,.24);
      cursor: pointer;
      backdrop-filter: blur(12px);
    }

    .gallery-lightbox-close {
      top: 14px;
      right: 14px;
      width: 46px;
      height: 46px;
      border-radius: 50%;
      font-size: 1.45rem;
    }

    .gallery-lightbox-arrow {
      top: 50%;
      width: 50px;
      height: 58px;
      border-radius: 18px;
      transform: translateY(-50%);
      font-size: 1.8rem;
    }

    .gallery-lightbox-prev { left: 14px; }
    .gallery-lightbox-next { right: 14px; }

    body.gallery-open {
      overflow: hidden;
    }

    @media (max-width: 760px) {
      .results-gallery {
        grid-template-columns: 1fr;
      }

      .gallery-lightbox {
        padding: 12px;
      }

      .gallery-lightbox-dialog {
        width: 100%;
      }

      .gallery-lightbox-image-wrap {
        border-radius: 18px;
      }

      .gallery-lightbox-arrow {
        width: 42px;
        height: 50px;
        border-radius: 15px;
      }

      .gallery-lightbox-prev { left: 8px; }
      .gallery-lightbox-next { right: 8px; }
      .gallery-lightbox-close { top: 8px; right: 8px; }
    }

  
    @media (max-width: 820px) {
      .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 34px 28px;
      }
      .footer-brand {
        grid-column: 1 / -1;
        max-width: 560px;
      }
    }

    @media (max-width: 560px) {
      .footer-top {
        grid-template-columns: 1fr;
        gap: 28px;
      }
      .footer-brand {
        grid-column: auto;
      }
      .footer-bottom {
        flex-direction: column;
        gap: 8px;
      }
    }

  
    .servizi-title-centered {
      text-align: center;
      margin-left: auto;
      margin-right: auto;
      max-width: 820px;
    }

  
    #servizi .services-head {
      display: block;
      text-align: center;
      max-width: 980px;
      margin-left: auto;
      margin-right: auto;
    }

    #servizi .services-head > div {
      width: 100%;
    }

    #servizi .services-head h2 {
      max-width: 820px;
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }

    #servizi .services-head > p {
      max-width: 720px;
      margin: 18px auto 0;
      text-align: center;
    }

  
    @media (max-width: 680px) {
      .footer-logo-premium {
        padding: 10px 13px;
        border-radius: 15px;
      }
      .footer-logo-premium img {
        width: min(100%, 200px);
      }
    }


    /* Typography premium pentru toate titlurile */
    h1, h2, h3,
    .rev-title,
    .section-head h2,
    .slider-copy h2,
    .ambient-content h2,
    .method-intro h2,
    .cta-card h2,
    .care-copy h2,
    .bento-card h3,
    .step h3,
    .footer-column h3 {
      font-family: "Bodoni 72", Didot, "Cormorant Garamond", Georgia, serif;
      font-weight: 600;
      letter-spacing: -.012em;
    }

    .rev-title {
      font-weight: 600;
      letter-spacing: -.018em;
    }

    h2,
    .section-head h2,
    .slider-copy h2,
    .ambient-content h2,
    .method-intro h2,
    .cta-card h2,
    .care-copy h2 {
      line-height: 1.08;
    }

    h3,
    .bento-card h3,
    .step h3,
    .footer-column h3 {
      line-height: 1.16;
    }

  
    .contact-details {
      display: grid;
      gap: 13px;
      margin-top: 28px;
      max-width: 440px;
    }

    .contact-detail {
      display: grid;
      grid-template-columns: 50px 1fr;
      gap: 14px;
      align-items: center;
      padding: 14px 16px;
      border-radius: 20px;
      border: 1px solid rgba(18,63,52,.10);
      background: rgba(255,255,255,.68);
      box-shadow: 0 14px 32px rgba(17,28,24,.06);
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }

    .contact-detail:hover {
      transform: translateY(-2px);
      border-color: rgba(18,63,52,.20);
      background: rgba(255,255,255,.88);
    }

    .contact-icon {
      width: 50px;
      height: 50px;
      display: grid;
      place-items: center;
      border-radius: 17px;
      background: var(--green);
      color: #fff;
      box-shadow: 0 12px 26px rgba(18,63,52,.18);
    }

    .contact-icon svg {
      width: 22px;
      height: 22px;
      fill: currentColor;
    }

    .contact-detail small {
      display: block;
      margin: 0 0 4px;
      color: var(--muted);
      font-size: .78rem;
      font-weight: 750;
      letter-spacing: .04em;
      text-transform: uppercase;
    }

    .contact-detail strong {
      display: block;
      color: var(--green);
      font-size: 1rem;
      line-height: 1.3;
      letter-spacing: -.01em;
      word-break: break-word;
    }

    @media (max-width: 680px) {
      .contact-details {
        max-width: none;
      }

      .contact-detail {
        grid-template-columns: 46px 1fr;
        padding: 13px 14px;
      }

      .contact-icon {
        width: 46px;
        height: 46px;
        border-radius: 15px;
      }
    }

  

    /* MOBILE FIX — navigation and Come lavoriamo */
    @media (max-width: 680px) {
      .topbar {
        top: 8px;
        left: 0;
        right: 0;
      }

      .topbar .container {
        width: calc(100% - 20px);
        margin: 0 auto;
      }

      .nav {
        width: 100%;
        height: 64px;
        min-height: 64px;
        gap: 10px;
        padding: 0 10px 0 14px;
        border-radius: 30px;
      }

      .brand-logo-link {
        flex: 1 1 auto;
        min-width: 0;
        max-width: calc(100% - 58px);
        overflow: hidden;
      }

      .brand-logo-img {
        width: min(100%, 240px);
        height: 46px;
        object-fit: contain;
        object-position: left center;
      }

      .menu {
        display: grid;
        place-items: center;
        flex: 0 0 44px;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        font-size: 1rem;
      }

      .nav-links {
        left: 10px;
        right: 10px;
        top: 72px;
        max-height: calc(100vh - 96px);
        overflow-y: auto;
      }

      .process {
        padding: 58px 0;
      }

      .process .container {
        width: calc(100% - 24px);
      }

      .method-shell {
        display: block;
        width: 100%;
        padding: 10px;
        border-radius: 26px;
      }

      .method-intro {
        width: 100%;
        padding: 24px 20px;
        border-radius: 21px;
      }

      .method-intro h2 {
        max-width: none;
        font-size: clamp(2rem, 10vw, 2.7rem);
        line-height: 1.02;
        text-wrap: balance;
      }

      .method-intro p {
        font-size: .98rem;
        line-height: 1.7;
      }

      .method-pills {
        gap: 8px;
        margin-top: 20px;
      }

      .method-pills span {
        min-height: 36px;
        padding: 0 12px;
        font-size: .82rem;
      }

      .method-grid {
        display: grid;
        grid-template-columns: 1fr !important;
        width: 100%;
        gap: 12px;
        margin-top: 12px;
      }

      .step {
        width: 100%;
        min-width: 0;
        padding: 20px 18px;
        border-radius: 21px;
      }

      .step-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 13px;
        border-radius: 14px;
      }

      .step h3 {
        font-size: 1.35rem;
        line-height: 1.15;
      }

      .step p {
        font-size: .96rem;
        line-height: 1.65;
        overflow-wrap: normal;
        word-break: normal;
        hyphens: none;
      }
    }

    @media (max-width: 390px) {
      .brand-logo-img {
        width: min(100%, 210px);
        height: 42px;
      }

      .method-intro h2 {
        font-size: 2rem;
      }
    }

  
    
    
    /* RevSlider — compact premium mobile layout */
    @media (max-width: 680px) {
      .rev-hero {
        width: min(calc(100% - 14px), 560px);
        margin: 10px auto 48px;
        min-height: auto;
        padding: 94px 0 22px;
        display: block;
        overflow: hidden;
        border-radius: 28px;
        box-shadow: 0 20px 54px rgba(17,28,24,.12);
        background: #102720;
      }

      .rev-slide,
      .rev-slide.active {
        transform: none !important;
      }

      .rev-slide {
        inset: 0;
        background: #102720;
      }

      .rev-slide img {
        width: 100%;
        height: 315px;
        object-fit: cover;
        object-position: center;
        transform: none !important;
        filter: saturate(.95) contrast(1.01);
      }

      .rev-slide::after {
        background:
          linear-gradient(
            180deg,
            rgba(9,24,19,.06) 0%,
            rgba(9,24,19,.08) 32%,
            rgba(9,24,19,.22) 48%,
            rgba(9,24,19,.82) 66%,
            rgba(9,24,19,.96) 100%
          );
      }

      .rev-shell {
        width: min(100% - 24px, 520px);
        min-height: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 14px;
        padding-top: 250px;
      }

      .rev-copy {
        width: 100%;
        padding: 0;
      }

      .rev-kicker {
        max-width: 100%;
        padding: 8px 11px;
        font-size: .64rem;
        letter-spacing: .08em;
        line-height: 1.2;
      }

      .rev-title {
        margin-top: 14px;
        max-width: 100%;
        font-size: clamp(1.9rem, 8.8vw, 2.55rem);
        line-height: 1.01;
        letter-spacing: -.02em;
        text-wrap: balance;
      }

      .rev-text {
        margin-top: 13px;
        max-width: 100%;
        font-size: .93rem;
        line-height: 1.5;
        color: rgba(255,255,255,.84);
      }

      .rev-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 9px;
        margin-top: 18px;
      }

      .rev-btn {
        width: 100%;
        min-height: 46px;
        padding: 0 16px;
        font-size: .92rem;
      }

      .rev-panel {
        width: 100%;
        margin: 2px 0 0;
        padding: 13px;
        border-radius: 20px;
        background: rgba(255,255,255,.11);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: 0 14px 34px rgba(0,0,0,.16);
      }

      .rev-panel-top {
        padding-bottom: 9px;
      }

      .rev-panel-top strong {
        font-size: .88rem;
      }

      .rev-panel-top span {
        font-size: .74rem;
      }

      .rev-mini-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 7px;
      }

      .rev-mini {
        min-width: 0;
        padding: 9px 7px;
        border-radius: 14px;
      }

      .rev-mini b {
        font-size: .74rem;
      }

      .rev-mini small {
        font-size: .64rem;
        line-height: 1.18;
      }

      .rev-controls {
        width: auto;
        left: 50%;
        right: auto;
        bottom: 11px;
        transform: translateX(-50%);
        justify-content: center;
      }

      .rev-arrows,
      .scroll-hint {
        display: none;
      }

      .rev-dots {
        padding: 7px 10px;
        background: rgba(9,24,19,.40);
        border-radius: 999px;
        backdrop-filter: blur(9px);
      }
    }

    @media (max-width: 420px) {
      .rev-hero {
        width: min(calc(100% - 10px), 560px);
        border-radius: 24px;
        margin-bottom: 42px;
      }

      .rev-slide img {
        height: 280px;
      }

      .rev-shell {
        width: min(100% - 18px, 520px);
        padding-top: 220px;
      }

      .rev-title {
        font-size: 1.82rem;
      }

      .rev-text {
        font-size: .89rem;
      }

      .rev-mini-grid {
        grid-template-columns: 1fr;
      }

      .rev-mini {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 8px;
        align-items: center;
      }

      .rev-mini small {
        margin-top: 0;
      }
    }



  
    /* RevSlider performance optimisation for tablets */
    @media (min-width: 681px) and (max-width: 1180px) {
      .rev-slide {
        opacity: 0;
        transform: none !important;
        transition: opacity .42s ease !important;
        will-change: opacity;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
      }

      .rev-slide.active {
        opacity: 1;
        transform: none !important;
      }

      .rev-slide img {
        transform: none !important;
        animation: none !important;
        filter: none !important;
        will-change: auto;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
      }

      .rev-hero,
      .rev-slide {
        contain: paint;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .rev-slide {
        transition-duration: .01ms !important;
      }
    }

  
    /* FINAL OVERRIDES — clean logo + modern mobile revslider */
    .brand-logo-link {
      display: flex;
      align-items: center;
      flex: 0 1 420px;
      min-width: 240px;
    }

    .brand-logo-img {
      display: block;
      width: min(100%, 360px);
      height: 60px;
      object-fit: contain;
      object-position: left center;
      image-rendering: auto;
    }

    .footer-brand-link {
      display: inline-flex;
      align-items: center;
      padding: 10px 14px;
      border-radius: 20px;
      background: rgba(255,255,255,.10);
      border: 1px solid rgba(255,255,255,.12);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      margin-bottom: 22px;
    }

    .footer-brand-image {
      display: block;
      width: min(100%, 272px);
      height: auto;
      object-fit: contain;
      object-position: left center;
      filter: none !important;
      opacity: 1;
    }

    @media (max-width: 680px) {
      .topbar {
        top: 10px;
      }

      .brand-logo-link {
        flex: 1 1 auto;
        min-width: 0;
      }

      .brand-logo-img {
        width: min(100%, 250px);
        height: 48px;
      }

      .menu {
        width: 54px;
        height: 54px;
        flex: 0 0 54px;
      }

      .rev-hero {
        width: min(calc(100% - 12px), 560px);
        margin: 10px auto 42px;
        min-height: 760px;
        padding: 94px 0 16px;
        display: block;
        overflow: hidden;
        border-radius: 28px;
        background: #0e221c;
        box-shadow: 0 24px 60px rgba(17,28,24,.14);
      }

      .rev-slide {
        inset: 0;
        opacity: 0;
        transform: scale(1.08);
        transition: opacity .55s ease, transform 1.1s ease;
      }

      .rev-slide.active {
        opacity: 1;
        transform: scale(1);
      }

      .rev-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: saturate(.97) contrast(1.02);
      }

      .rev-slide:nth-of-type(1) img {
        object-position: 62% center;
      }

      .rev-slide:nth-of-type(2) img {
        object-position: 56% center;
      }

      .rev-slide:nth-of-type(3) img {
        object-position: 68% center;
      }

      .rev-slide::after {
        background:
          linear-gradient(180deg, rgba(8,18,15,.20) 0%, rgba(8,18,15,.16) 24%, rgba(8,18,15,.46) 56%, rgba(8,18,15,.94) 100%),
          linear-gradient(90deg, rgba(8,18,15,.45) 0%, rgba(8,18,15,.10) 62%);
      }

      .rev-shell {
        position: relative;
        z-index: 2;
        width: min(100% - 24px, 520px);
        min-height: 650px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        gap: 14px;
      }

      .rev-copy {
        width: 100%;
        padding: 20px 18px 18px;
        color: #fff;
        border-radius: 24px;
        background: rgba(9,24,19,.28);
        border: 1px solid rgba(255,255,255,.12);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        box-shadow: 0 18px 40px rgba(0,0,0,.20);
      }

      .rev-kicker {
        max-width: 100%;
        padding: 8px 11px;
        font-size: .64rem;
        letter-spacing: .09em;
        line-height: 1.2;
        background: rgba(255,255,255,.12);
      }

      .rev-title {
        margin-top: 14px;
        max-width: 100%;
        font-size: clamp(2rem, 9.6vw, 2.9rem);
        line-height: 1.01;
        letter-spacing: -.024em;
        text-wrap: balance;
      }

      .rev-text {
        margin-top: 12px;
        max-width: 100%;
        font-size: .94rem;
        line-height: 1.54;
        color: rgba(255,255,255,.86);
      }

      .rev-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 18px;
      }

      .rev-btn {
        width: 100%;
        min-height: 48px;
        padding: 0 17px;
        font-size: .93rem;
      }

      .rev-panel {
        width: 100%;
        margin: 0;
        padding: 12px;
        border-radius: 20px;
        background: rgba(255,255,255,.10);
        border: 1px solid rgba(255,255,255,.10);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        box-shadow: 0 14px 34px rgba(0,0,0,.18);
      }

      .rev-panel-top {
        text-align: left;
        padding-bottom: 10px;
      }

      .rev-panel-top strong {
        font-size: .88rem;
      }

      .rev-panel-top span {
        font-size: .74rem;
      }

      .rev-mini-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
      }

      .rev-mini {
        min-width: 0;
        padding: 10px 8px;
        border-radius: 14px;
        background: rgba(255,255,255,.08);
      }

      .rev-mini b {
        font-size: .75rem;
      }

      .rev-mini small {
        font-size: .64rem;
        line-height: 1.22;
      }

      .rev-controls {
        width: auto;
        left: 50%;
        right: auto;
        bottom: 14px;
        transform: translateX(-50%);
        justify-content: center;
      }

      .rev-arrows,
      .scroll-hint {
        display: none;
      }

      .rev-dots {
        padding: 7px 10px;
        background: rgba(9,24,19,.42);
        border-radius: 999px;
        backdrop-filter: blur(9px);
      }
    }

    @media (max-width: 420px) {
      .rev-hero {
        width: min(calc(100% - 8px), 560px);
        min-height: 710px;
        margin-bottom: 38px;
        border-radius: 24px;
      }

      .rev-shell {
        width: min(100% - 18px, 520px);
        min-height: 608px;
      }

      .rev-title {
        font-size: 1.88rem;
      }

      .rev-text {
        font-size: .90rem;
      }

      .rev-mini-grid {
        grid-template-columns: 1fr;
      }

      .rev-mini {
        display: grid;
        grid-template-columns: auto 1fr;
        align-items: center;
        gap: 8px;
      }

      .footer-brand-link {
        padding: 8px 12px;
        border-radius: 18px;
      }

      .footer-brand-image {
        width: min(100%, 230px);
      }
    }

  
    .brand-logo-img{
      width:min(100%, 355px) !important;
      height:62px !important;
      object-fit:contain !important;
      object-position:left center !important;
    }

    .footer-brand-image{
      width:min(100%, 280px) !important;
      height:auto !important;
      object-fit:contain !important;
      object-position:left center !important;
      filter:none !important;
    }

    @media (max-width: 680px){
      .brand-logo-img{
        width:min(100%, 250px) !important;
        height:50px !important;
      }
      .footer-brand-image{
        width:min(100%, 230px) !important;
      }
    }

  
    .brand-logo-img{
      width:min(100%, 355px) !important;
      height:62px !important;
      object-fit:contain !important;
      object-position:left center !important;
      image-rendering:auto !important;
      filter:none !important;
    }

    .footer-brand-image{
      width:min(100%, 280px) !important;
      height:auto !important;
      object-fit:contain !important;
      object-position:left center !important;
      image-rendering:auto !important;
      filter:none !important;
      opacity:1 !important;
    }

    @media (max-width: 680px){
      .brand-logo-img{
        width:min(100%, 250px) !important;
        height:50px !important;
      }
      .footer-brand-image{
        width:min(100%, 230px) !important;
      }
    }

.nav{justify-content:flex-end;}
.footer-about{padding-top:0;}
@media (max-width:680px){.nav{padding-left:14px;}}

.hp-field{position:absolute!important;left:-9999px!important;width:1px!important;height:1px!important;opacity:0!important;}


/* Structured package override: exact Vallora logo restored */
.nav{justify-content:space-between !important;}
.brand-logo-link{display:flex;align-items:center;flex:0 1 380px;min-width:220px;}
.brand-logo-img{display:block;width:min(100%,355px) !important;height:62px !important;object-fit:contain !important;object-position:left center !important;image-rendering:auto !important;filter:none !important;}
.footer-brand-link{display:inline-flex;align-items:center;padding:10px 14px;border-radius:20px;background:rgba(255,255,255,.10);border:1px solid rgba(255,255,255,.12);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);margin-bottom:22px;}
.footer-brand-image{display:block;width:min(100%,280px) !important;height:auto !important;object-fit:contain !important;object-position:left center !important;filter:none !important;opacity:1 !important;}
@media (max-width:680px){.brand-logo-link{flex:1 1 auto;min-width:0;}.brand-logo-img{width:min(100%,250px) !important;height:50px !important;}.footer-brand-image{width:min(100%,230px) !important;}}


/* FINAL FIX — logo sizing and footer cleanup */
.nav{justify-content:space-between !important;}
.brand-logo-link{
  display:flex !important;
  align-items:center !important;
  flex:0 1 440px !important;
  min-width:250px !important;
}
.brand-logo-img{
  display:block !important;
  width:min(100%, 390px) !important;
  height:72px !important;
  object-fit:contain !important;
  object-position:left center !important;
  image-rendering:auto !important;
  filter:none !important;
}

.footer-brand-link{
  display:inline-flex !important;
  align-items:center !important;
  padding:0 !important;
  margin:0 0 18px 0 !important;
  border-radius:0 !important;
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
  backdrop-filter:none !important;
  -webkit-backdrop-filter:none !important;
}
.footer-brand-image{
  display:block !important;
  width:min(100%, 210px) !important;
  height:auto !important;
  object-fit:contain !important;
  object-position:left center !important;
  filter:none !important;
  opacity:1 !important;
}

@media (max-width: 900px){
  .brand-logo-link{
    flex:0 1 360px !important;
    min-width:210px !important;
  }
  .brand-logo-img{
    width:min(100%, 320px) !important;
    height:60px !important;
  }
}

@media (max-width: 680px){
  .brand-logo-link{
    flex:1 1 auto !important;
    min-width:0 !important;
  }
  .brand-logo-img{
    width:min(100%, 270px) !important;
    height:56px !important;
  }
  .footer-brand-image{
    width:min(100%, 190px) !important;
  }
}


/* FINAL FOOTER RESET — solid colour only */
.site-footer {
  position: relative !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  isolation: auto !important;
  background: #123f34 !important;
  color: #ffffff !important;
  border: 0 !important;
  box-shadow: none !important;
}

.site-footer::before,
.site-footer::after,
.footer-wrap::before,
.footer-wrap::after {
  content: none !important;
  display: none !important;
  background: none !important;
  box-shadow: none !important;
  filter: none !important;
}

.footer-inner {
  position: relative !important;
  z-index: auto !important;
  padding-top: 56px !important;
  padding-bottom: 24px !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.footer-main {
  display: grid !important;
  grid-template-columns: minmax(320px, 1.35fr) minmax(150px, .55fr) minmax(190px, .62fr) !important;
  gap: clamp(36px, 6vw, 80px) !important;
  align-items: start !important;
  padding-bottom: 34px !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.footer-about,
.footer-column,
.footer-legal {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.footer-brand-link {
  display: inline-flex !important;
  align-items: center !important;
  margin: 0 0 18px 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.footer-brand-image {
  display: block !important;
  width: min(100%, 200px) !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: left center !important;
  filter: none !important;
  opacity: 1 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.footer-about p {
  margin: 0 !important;
  max-width: 490px !important;
  color: rgba(255,255,255,.78) !important;
  font-size: .96rem !important;
  line-height: 1.75 !important;
  text-shadow: none !important;
}

.footer-column h3 {
  margin: 0 0 15px !important;
  color: #ffffff !important;
  font-size: 1rem !important;
  line-height: 1.2 !important;
  letter-spacing: 0 !important;
  text-shadow: none !important;
}

.footer-column a,
.footer-column span {
  color: rgba(255,255,255,.76) !important;
  font-size: .94rem !important;
  line-height: 1.5 !important;
  text-shadow: none !important;
  transform: none !important;
}

.footer-column a:hover {
  color: #ffffff !important;
  transform: none !important;
}

.footer-legal {
  display: flex !important;
  justify-content: space-between !important;
  gap: 24px !important;
  padding-top: 20px !important;
  border-top: 1px solid rgba(255,255,255,.14) !important;
  color: rgba(255,255,255,.56) !important;
  font-size: .84rem !important;
  line-height: 1.5 !important;
  text-shadow: none !important;
}

@media (max-width: 1020px) {
  .footer-main {
    grid-template-columns: 1fr 1fr !important;
    gap: 32px 44px !important;
  }
  .footer-about {
    grid-column: 1 / -1 !important;
  }
}

@media (max-width: 680px) {
  .footer-inner {
    padding-top: 44px !important;
    padding-bottom: 22px !important;
  }
  .footer-main {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    padding-bottom: 28px !important;
  }
  .footer-about {
    grid-column: auto !important;
  }
  .footer-brand-image {
    width: min(100%, 180px) !important;
  }
  .footer-legal {
    flex-direction: column !important;
    gap: 8px !important;
  }
}

/* Final logo correction: transparent padding removed from the source image. */
.footer-brand-link{
  padding:0 !important;
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
  backdrop-filter:none !important;
  -webkit-backdrop-filter:none !important;
}
.footer-brand-image{
  width:170px !important;
  height:auto !important;
}


/* Final override: white footer logo only */
.footer-brand-image{filter: brightness(0) invert(1) !important; opacity: 1 !important;}


/* Operational contact form */
.form .btn-primary:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
  box-shadow: none;
}

.form-status {
  display: none;
  margin-top: 14px;
  padding: 13px 15px;
  border-radius: 14px;
  font-size: .92rem;
  font-weight: 750;
  line-height: 1.45;
  text-align: left;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  color: #0d513e;
  background: #e5f5ec;
  border: 1px solid rgba(13,81,62,.18);
}

.form-status.is-error {
  color: #842929;
  background: #fff0f0;
  border: 1px solid rgba(132,41,41,.18);
}

.form.is-loading input,
.form.is-loading select,
.form.is-loading textarea {
  opacity: .72;
}


/* Privacy consent inside the contact form */
.privacy-consent{
  display:grid !important;
  grid-template-columns:22px minmax(0,1fr);
  align-items:start;
  gap:12px;
  padding:14px 15px;
  border:1px solid rgba(18,63,52,.15);
  border-radius:16px;
  background:rgba(255,255,255,.58);
  color:var(--ink);
  font-size:.88rem;
  font-weight:500;
  line-height:1.55;
  cursor:pointer;
}
.privacy-consent input[type="checkbox"]{
  width:20px;
  height:20px;
  margin:2px 0 0;
  accent-color:var(--green);
  cursor:pointer;
}
.privacy-consent a{
  color:var(--green);
  font-weight:800;
  text-decoration:underline;
  text-underline-offset:3px;
}
.privacy-consent a:hover{opacity:.78;}

/* Privacy page */
.privacy-page{
  min-height:100vh;
  padding:140px 0 84px;
  background:
    radial-gradient(circle at 90% 4%, rgba(157,177,137,.20), transparent 28%),
    linear-gradient(180deg, #f7f5ee 0%, #ffffff 50%, #f3f5ef 100%);
}
.privacy-container{max-width:980px;}
.privacy-card{
  padding:clamp(28px,5vw,64px);
  border:1px solid rgba(18,63,52,.10);
  border-radius:32px;
  background:rgba(255,255,255,.90);
  box-shadow:0 28px 80px rgba(17,28,24,.10);
}
.privacy-heading{
  padding-bottom:30px;
  margin-bottom:34px;
  border-bottom:1px solid rgba(18,63,52,.12);
}
.privacy-eyebrow{
  display:inline-block;
  margin-bottom:12px;
  color:var(--green2);
  font-size:.78rem;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.privacy-heading h1{
  margin:0 0 16px;
  color:var(--green);
  font-family:Georgia, 'Times New Roman', serif;
  font-size:clamp(2.3rem,6vw,4.8rem);
  font-weight:500;
  line-height:1;
  letter-spacing:-.045em;
}
.privacy-heading p{
  max-width:760px;
  margin:0;
  color:var(--muted);
  font-size:1.04rem;
  line-height:1.75;
}
.privacy-heading .privacy-update{
  margin-top:14px;
  font-size:.84rem;
  font-weight:700;
}
.privacy-card section{
  padding:0 0 26px;
  margin:0 0 28px;
  border-bottom:1px solid rgba(18,63,52,.09);
}
.privacy-card section:last-of-type{
  border-bottom:0;
  margin-bottom:12px;
}
.privacy-card h2{
  margin:0 0 12px;
  color:var(--green);
  font-size:1.2rem;
  line-height:1.35;
}
.privacy-card p,
.privacy-card li{
  color:#33443e;
  font-size:.98rem;
  line-height:1.75;
}
.privacy-card p{margin:0 0 12px;}
.privacy-card ul{
  margin:10px 0 0;
  padding-left:22px;
}
.privacy-card li{margin:5px 0;}
.privacy-card a{
  color:var(--green);
  font-weight:750;
}
.privacy-actions{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:18px;
  padding-top:12px;
}
.privacy-secondary-link{
  text-decoration:underline;
  text-underline-offset:4px;
}
.footer-privacy-link{
  color:rgba(255,255,255,.86);
  font-size:.84rem;
  font-weight:700;
  text-decoration:underline;
  text-underline-offset:4px;
}
.footer-privacy-link:hover{color:#fff;}

@media (max-width:680px){
  .privacy-page{padding:112px 0 56px;}
  .privacy-card{border-radius:24px;}
  .privacy-actions{align-items:stretch;flex-direction:column;}
  .privacy-actions .btn{text-align:center;}
}
