    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    html, body { overflow-x: hidden; }

    :root {
      --bg:        #faf4f1;
      --white:     #ffffff;
      --gold:      #b28d77;
      --gold-dark: #a78957;
      --gold-pale: #e8d9ce;
      --charcoal:  #464646;
      --black:     #111;
      --mid:       #69727d;
      --soft:      #a7aba5;
      --border:    rgba(178,141,119,0.22);
      --script:    'Lato', sans-serif;
    }

    body {
      background: var(--bg);
      font-family: var(--script);
      color: var(--charcoal);
      font-size: 19px;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
    }

    img, video { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }

    /* ── HERO ── */
    .hero {
      position: relative;
      width: 100%;
      height: 100svh;
      min-height: 560px;
      overflow: hidden;
      background: #1a1410;
    }

    .hero-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(17,11,7,0.1) 0%,
        rgba(17,11,7,0.3) 45%,
        rgba(17,11,7,0.85) 78%,
        rgba(17,11,7,0.97) 100%
      );
    }

    .hero-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: clamp(32px,6vw,64px) clamp(28px,5vw,80px) clamp(48px,7vw,80px);
      text-align: center;
    }

    .hero-tag {
      display: inline-block;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 18px;
    }

    .hero h1 {
      font-family: var(--script);
      font-size: clamp(40px, 9vw, 84px);
      font-weight: 300;
      line-height: 1.12;
      color: #faf4f1;
      margin-bottom: 18px;
      letter-spacing: -0.5px;
      overflow-wrap: break-word;
    }

    .hero h1 span {
      font-weight: 700;
      font-style: italic;
      color: var(--gold);
    }

    .hero-claim {
      font-size: clamp(18px, 3.2vw, 26px);
      font-weight: bold;
      font-style: italic;
      color: var(--gold);
      margin-bottom: 10px;
      letter-spacing: 0.3px;
      text-decoration: underline;
    }

    .hero-sub {
      font-size: clamp(18px, 2.8vw, 22px);
      font-weight: 300;
      color: rgba(250,244,241,0.72);
      line-height: 1.75;
      max-width: 520px;
      margin: 0 auto 32px;
    }

    .btn {
      display: inline-block;
      padding: 16px 44px;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      border-radius: 2px;
      transition: background 0.2s, color 0.2s, border-color 0.2s;
      cursor: pointer;
      border: none;
    }

    .btn-gold {
      background: var(--gold);
      color: var(--white);
    }
    .btn-gold:hover { background: var(--gold-dark); }

    .btn-outline {
      background: transparent;
      color: var(--gold);
      border: 1.5px solid var(--gold);
    }
    .btn-outline:hover { background: var(--gold); color: var(--white); }

    .btn-dark {
      background: var(--black);
      color: var(--gold);
    }
    .btn-dark:hover { background: var(--gold); color: var(--white); }

    /* ── PROMISE STRIP ── */
    .strip {
      background: var(--gold);
      padding: 22px clamp(28px,5vw,48px);
      text-align: center;
    }
    .strip p {
      font-size: clamp(16px, 2.8vw, 19px);
      font-weight: 300;
      font-style: italic;
      color: var(--white);
      letter-spacing: 0.3px;
    }

    /* ── LAYOUT ── */
    .wrap {
      max-width: 960px;
      margin: 0 auto;
      padding-left: clamp(28px,5vw,48px);
      padding-right: clamp(28px,5vw,48px);
    }

    .section {
      padding-top: clamp(56px,8vw,88px);
      padding-bottom: clamp(56px,8vw,88px);
    }
    .section-alt { background: var(--white); }
    .section-dark { background: var(--black); }

    .eyebrow {
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 14px;
    }
    .eyebrow-light { color: var(--gold-pale); }

    .title {
      font-size: clamp(30px, 5.5vw, 48px);
      font-weight: 300;
      color: var(--charcoal);
      line-height: 1.2;
      margin-bottom: 12px;
      overflow-wrap: break-word;
      word-wrap: break-word;
    }
    .title b { font-weight: 700; }
    .title-light { color: #faf4f1; }

    .intro {
      font-size: 18px;
      font-weight: 300;
      color: var(--mid);
      line-height: 1.8;
      max-width: 640px;
    }
    .intro-light { color: rgba(250,244,241,0.65); }

    .divider {
      width: 40px;
      height: 2px;
      background: var(--gold);
      margin: 20px 0;
    }
    .divider-center { margin: 20px auto; }

    .section-cta {
      text-align: center;
      margin-top: clamp(32px, 5vw, 48px);
    }
    .section-cta .btn-gold {
      animation: goldPulse 3s ease-in-out infinite;
    }
    .section-cta .btn-gold:hover,
    .section-cta .btn-gold:focus {
      animation: none;
      background: var(--gold-dark);
    }

    /* ── PERKS ── */
    .perks-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }

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

    .perk {
      padding: clamp(28px,4vw,44px) clamp(20px,3vw,36px);
      border-right: 1px solid rgba(250,244,241,0.08);
      border-bottom: 1px solid rgba(250,244,241,0.08);
      text-align: center;
      transition: background 0.2s;
    }

    .perk:last-child { border-right: none; }

    @media (max-width: 700px) {
      .perk:nth-child(2n) { border-right: none; }
      .perk:nth-child(3), .perk:nth-child(4) { border-bottom: none; }
    }

    @media (max-width: 380px) {
      .perk { border-right: none; }
      .perk:last-child { border-bottom: none; }
    }

    .perk:hover { background: rgba(178,141,119,0.07); }

    .perk-icon {
      width: 56px; height: 56px;
      border-radius: 50%;
      background: rgba(178,141,119,0.14);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
    }

    .perk-icon svg {
      width: 24px; height: 24px;
      stroke: var(--gold);
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .perk-title {
      font-size: 20px;
      font-weight: 700;
      letter-spacing: 0.5px;
      color: #faf4f1;
      margin-bottom: 8px;
      line-height: 1.3;
    }

    .perk-desc {
      font-size: 18px;
      font-weight: 300;
      color: rgba(250,244,241,0.55);
      line-height: 1.65;
    }

    /* ── CHI SONO ── */
    .bio-grid {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: clamp(24px,4vw,56px);
      align-items: center;
      margin-top: 40px;
    }

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

    .bio-img-wrap {
      position: relative;
    }

    .bio-img-wrap img {
      width: 100%;
      aspect-ratio: 3/4;
      object-fit: cover;
      object-position: center top;
      border-radius: 4px;
    }

    .bio-img-badge {
      position: absolute;
      bottom: -16px;
      right: -16px;
      background: var(--gold);
      color: var(--white);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 13px 20px;
      border-radius: 2px;
    }

    @media (max-width: 620px) {
      .bio-img-badge { bottom: 12px; right: 12px; }
    }

    .bio-text { padding-bottom: 8px; }

    .bio-name {
      font-size: clamp(26px, 4vw, 40px);
      font-weight: 700;
      color: var(--black);
      margin-bottom: 4px;
    }

    .bio-role {
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
    }

    .bio-quote {
      font-size: 18px;
      font-style: italic;
      font-weight: 300;
      color: var(--mid);
      line-height: 1.8;
      border-left: 2px solid var(--gold);
      padding-left: 18px;
      margin-bottom: 24px;
    }

    .bio-p {
      font-size: 17px;
      font-weight: 300;
      color: var(--charcoal);
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .specializations {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 6px;
    }

    .spec-tag {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 2px;
      background: var(--gold-pale);
      color: var(--gold-dark);
    }

    @media (max-width: 480px) {
      .specializations { gap: 6px; }
      .spec-tag {
        width: 100%;
        text-align: center;
        padding: 8px 14px;
        font-size: 12px;
      }
    }

    /* ── I LAVORI ── */
    .works-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: 36px;
    }

    @media (max-width: 520px) {
      .works-grid { grid-template-columns: repeat(2, 1fr); }
    }

    .work-item {
      aspect-ratio: 1/1;
      overflow: hidden;
      border-radius: 4px;
      position: relative;
    }

    .work-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .work-item:hover img { transform: scale(1.05); }

    .work-label {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(17,11,7,0.85), transparent);
      padding: 20px 14px 12px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(250,244,241,0.9);
    }

    /* ── CORSI ── */
    .corsi-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 36px;
    }

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

    .corso-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: clamp(24px,4vw,36px);
    }

    .corso-card.primo {
      border-top: 3px solid var(--gold);
    }

    .corso-card.secondo {
      background: var(--black);
      border: none;
      border-top: 3px solid var(--gold);
    }

    .corso-badge {
      display: inline-block;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 20px;
      margin-bottom: 16px;
    }

    .badge-b { background: var(--gold-pale); color: var(--gold-dark); }
    .badge-a { background: rgba(178,141,119,0.15); color: var(--gold-pale); }

    .corso-name {
      font-size: clamp(24px, 4vw, 32px);
      font-weight: 700;
      color: var(--charcoal);
      margin-bottom: 8px;
    }

    .corso-name-light { color: #faf4f1; }

    .corso-desc {
      font-size: 16px;
      font-weight: 300;
      color: var(--mid);
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .corso-desc-light { color: rgba(250,244,241,0.6); }

    .corso-list { list-style: none; }

    .corso-list li {
      font-size: 16px;
      font-weight: 400;
      padding: 9px 0;
      border-bottom: 1px solid rgba(178,141,119,0.12);
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .corso-list li:last-child { border-bottom: none; }
    .corso-list li.light { color: rgba(250,244,241,0.75); }

    .check {
      width: 18px; height: 18px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .check svg {
      width: 9px; height: 9px;
      stroke: #fff;
      fill: none;
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* ── PERCHÉ YULIA ── */
    .reasons {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
      margin-top: 36px;
    }

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

    .reason {
      padding: 26px;
      border: 1px solid rgba(178,141,119,0.18);
      border-radius: 4px;
      background: rgba(178,141,119,0.05);
    }

    .reason-num {
      font-size: 48px;
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 10px;
    }

    .reason-title {
      font-size: 16px;
      font-weight: 700;
      color: #faf4f1;
      margin-bottom: 6px;
      letter-spacing: 0.5px;
    }

    .reason-text {
      font-size: 15px;
      font-weight: 300;
      color: rgba(250,244,241,0.6);
      line-height: 1.65;
    }

    /* ── INCLUDE ── */
    .include-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin-top: 32px;
    }

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

    .include-item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      padding: 20px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 4px;
    }

    .inc-icon {
      width: 36px; height: 36px;
      background: var(--gold-pale);
      border-radius: 50%;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .inc-icon svg {
      width: 18px; height: 18px;
      stroke: var(--gold-dark);
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .inc-text strong {
      display: block;
      font-size: 18px;
      font-weight: 700;
      color: var(--black);
      margin-bottom: 3px;
    }

    .inc-text span {
      font-size: 17px;
      font-weight: 300;
      color: var(--mid);
      line-height: 1.55;
    }

    /* ── TESTIMONIAL SLIDER ── */
    .testi-slider-wrap {
      margin-top: 36px;
      position: relative;
    }

    .testi-track {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }

    .testi-track::-webkit-scrollbar { display: none; }

    .testi {
      flex: 0 0 100%;
      scroll-snap-align: start;
      background: var(--gold-pale);
      border-left: 3px solid var(--gold);
      padding: 26px 32px;
      border-radius: 0 4px 4px 0;
    }

    .testi p {
      font-size: 19px;
      font-style: italic;
      font-weight: 300;
      color: var(--charcoal);
      line-height: 1.7;
      margin-bottom: 10px;
    }

    .testi span {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold-dark);
    }

    .testi-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-top: 16px;
    }

    .testi-btn {
      width: 38px; height: 38px;
      border-radius: 50%;
      background: var(--gold-pale);
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s;
      flex-shrink: 0;
    }

    .testi-btn:hover { background: var(--gold); }

    .testi-btn:hover svg { stroke: #fff; }

    .testi-btn svg {
      width: 15px; height: 15px;
      stroke: var(--gold-dark);
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .testi-dots {
      display: flex;
      gap: 8px;
    }

    .testi-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--gold-pale);
      border: 1.5px solid var(--gold);
      cursor: pointer;
      padding: 0;
      transition: background 0.2s, transform 0.2s;
    }

    .testi-dot.active {
      background: var(--gold);
      transform: scale(1.25);
    }

    /* ── FORM ── */
    .form-box {
      background: var(--white);
      border: 1px solid var(--border);
      border-top: 3px solid var(--gold);
      border-radius: 4px;
      padding: clamp(32px,5vw,52px);
      max-width: 660px;
      margin: 36px auto 0;
    }

    .form-title {
      font-size: clamp(24px, 4vw, 34px);
      font-weight: 300;
      color: var(--black);
      margin-bottom: 6px;
    }

    .form-sub {
      font-size: 17px;
      font-weight: 300;
      color: var(--mid);
      margin-bottom: 28px;
      line-height: 1.7;
    }

    /* honeypot anti-spam — must stay off-screen but accessible to bots */
    .hp-field {
      position: absolute !important;
      left: -10000px !important;
      top: auto;
      width: 1px;
      height: 1px;
      overflow: hidden;
    }

    .form-error {
      background: #fdecea;
      color: #8a1f1f;
      border: 1px solid #f5c1bb;
      border-radius: 3px;
      padding: 14px 16px;
      font-size: 15px;
      line-height: 1.5;
      margin-bottom: 20px;
    }

    .field { margin-bottom: 20px; }

    .field label {
      display: block;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--charcoal);
      margin-bottom: 7px;
    }

    .field input,
    .field select,
    .field textarea {
      width: 100%;
      padding: 14px 18px;
      border: 1px solid rgba(70,70,70,0.2);
      border-radius: 3px;
      background: var(--bg);
      font-family: var(--script);
      font-size: 17px;
      font-weight: 300;
      color: var(--black);
      outline: none;
      transition: border-color 0.2s;
      -webkit-appearance: none;
      appearance: none;
    }

    .field input:focus,
    .field select:focus,
    .field textarea:focus {
      border-color: var(--gold);
    }

    .field textarea {
      resize: vertical;
      min-height: 100px;
      line-height: 1.65;
    }

    .field select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2369727d' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 16px center;
      padding-right: 40px;
    }

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

    @media (max-width: 420px) {
      .field-row { grid-template-columns: 1fr; }
    }

    .field-check {
      margin-bottom: 20px;
    }

    .check-label {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 15px;
      font-weight: 300;
      color: var(--mid);
      line-height: 1.55;
      cursor: pointer;
    }

    .check-label input[type="checkbox"] {
      flex-shrink: 0;
      width: 17px;
      height: 17px;
      margin-top: 2px;
      accent-color: var(--gold);
      cursor: pointer;
    }

    .check-label a {
      color: var(--gold-dark);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .check-label a:hover { color: var(--gold); }

    .submit-btn {
      width: 100%;
      padding: 18px;
      background: var(--gold);
      color: var(--white);
      border: none;
      border-radius: 3px;
      font-family: var(--script);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      cursor: pointer;
      margin-top: 6px;
      transition: background 0.2s;
    }

    .submit-btn:hover { background: var(--gold-dark); }

    .form-note {
      text-align: center;
      font-size: 14px;
      font-weight: 300;
      color: var(--soft);
      margin-top: 14px;
      line-height: 1.6;
    }

    /* ── SUCCESS ── */
    .success-msg { display: none; text-align: center; padding: 40px 16px; }
    .success-msg.visible { display: block; }

    .success-circle {
      width: 64px; height: 64px;
      border-radius: 50%;
      background: var(--gold-pale);
      margin: 0 auto 20px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .success-circle svg {
      width: 28px; height: 28px;
      stroke: var(--gold-dark);
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .success-title {
      font-size: 32px;
      font-weight: 300;
      color: var(--black);
      margin-bottom: 10px;
    }

    .success-text {
      font-size: 17px;
      font-weight: 300;
      color: var(--mid);
      line-height: 1.75;
    }

    /* ── WA FLOAT ── */
    .wa-float {
      position: fixed;
      bottom: 24px;
      right: 24px;
      z-index: 999;
      width: 58px; height: 58px;
      border-radius: 50%;
      background: #25D366;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(0,0,0,0.2);
      transition: transform 0.2s;
    }

    .wa-float:hover { transform: scale(1.08); }

    .wa-float svg {
      width: 30px; height: 30px;
      fill: #fff;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--black);
      padding: clamp(48px,7vw,72px) clamp(28px,5vw,48px);
      text-align: center;
    }

    .footer-logo-img {
      width: clamp(160px, 40vw, 280px);
      margin: 0 auto 20px;
      display: block;
      filter: invert(1);
    }

    .footer-tag {
      font-size: 14px;
      font-weight: 300;
      color: var(--soft);
      letter-spacing: 3px;
      text-transform: uppercase;
      margin-bottom: 28px;
    }

    .footer-contacts {
      display: flex;
      flex-direction: column;
      gap: 16px;
      align-items: center;
      margin-bottom: 32px;
    }

    .footer-contact {
      font-size: 17px;
      font-weight: 300;
      color: var(--soft);
      display: flex;
      align-items: center;
      gap: 10px;
      transition: color 0.2s;
    }

    .footer-contact:hover { color: var(--gold-pale); }

    .footer-contact svg {
      width: 18px; height: 18px;
      stroke: var(--gold);
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
      flex-shrink: 0;
    }

    .footer-line {
      width: 36px; height: 1px;
      background: var(--gold);
      margin: 0 auto 20px;
      opacity: 0.4;
    }

    .footer-hours {
      font-size: 13px;
      color: var(--soft);
      font-weight: 300;
      letter-spacing: 1.5px;
    }

    .footer-piva {
      font-size: 13px;
      color: rgba(167,171,165,0.55);
      font-weight: 300;
      letter-spacing: 1px;
      margin-top: 10px;
    }

    /* ── SCROLL ARROW ── */
    .scroll-arrow {
      position: absolute;
      bottom: 28px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      opacity: 0.55;
      animation: arrowBounce 2s infinite ease-in-out;
    }

    .scroll-arrow span {
      display: block;
      width: 1px;
      height: 36px;
      background: var(--gold);
    }

    .scroll-arrow svg {
      width: 12px; height: 12px;
      stroke: var(--gold);
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    @keyframes arrowBounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50%       { transform: translateX(-50%) translateY(8px); }
    }

    @keyframes goldPulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(178,141,119,0); }
      50%      { box-shadow: 0 0 0 8px rgba(178,141,119,0.2); }
    }

    .grecaptcha-badge { left: 16px !important; right: auto !important; }

    @media (max-width: 640px) {
      .scroll-arrow { display: none; }

      .hero-overlay {
        background: linear-gradient(
          to bottom,
          rgba(17,11,7,0.0) 0%,
          rgba(17,11,7,0.2) 30%,
          rgba(17,11,7,0.85) 65%,
          rgba(17,11,7,0.97) 100%
        );
      }

      .hero-content {
        padding: clamp(32px,6vw,64px) clamp(24px,5vw,80px) clamp(40px,8vw,48px);
      }

      .hero-tag {
        font-size: 11px;
        letter-spacing: 2.5px;
        margin-bottom: 10px;
      }
      .hero h1 {
        font-size: clamp(25px, 9vw, 38px);
        margin-bottom: 10px;
      }
      .hero-claim { margin-bottom: 8px; }
      .hero-sub { margin-bottom: 20px; }

      .hero .btn-gold {
        background: transparent;
        color: var(--gold);
        border: 1.5px solid var(--gold);
        animation: goldPulse 3s ease-in-out infinite;
      }
      .hero .btn-gold:hover,
      .hero .btn-gold:focus {
        background: var(--gold);
        color: var(--white);
        animation: none;
      }
    }
