
    /* ─── RESET ────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html {
      scroll-behavior: smooth;
      scroll-padding-top: 80px;
      font-feature-settings: 'ss01','cv11';
    }
    body {
      font-family: 'Inter', system-ui, sans-serif;
      background: #F7F2E8;
      color: #1E2A22;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    img { display: block; max-width: 100%; height: auto; }
    a   { color: inherit; }
    button { font-family: inherit; }

    /* ─── TOKENS ───────────────────────────────────────── */
    :root {
      --cream:       #F7F2E8;
      --cream-warm:  #F0E0D2;
      --ink:         #1E2A22;
      --sage:        #9DB29A;
      --sage-deep:   #2D4036;
      --terra:       #C2683E;
      --terra-soft:  #E6C7B0;
      --border:      #E2DACB;
      --muted:       #6B7A6F;
      --shadow-soft: 0 30px 60px -30px rgba(45,64,54,.18);
      --shadow-card: 0 1px 0 rgba(45,64,54,.04), 0 20px 40px -20px rgba(45,64,54,.12);
    }

    /* ─── TYPOGRAPHY ───────────────────────────────────── */
    h1, h2, h3, h4 {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-weight: 400;
      letter-spacing: -.01em;
    }

    /* ─── CONTAINER ─────────────────────────────────────  */
    .container {
      max-width: 72rem;
      margin-inline: auto;
      padding-inline: 1.25rem;
    }
    @media (min-width: 640px)  { .container { padding-inline: 2rem; } }
    @media (min-width: 1024px) { .container { padding-inline: 2.5rem; } }

    /* ─── GRID ──────────────────────────────────────────── */
    /* Two-column grids become single-column on mobile */
    .grid-2col {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2.5rem;
    }
    @media (min-width: 768px) {
      .grid-2col { grid-template-columns: 1fr 1fr; gap: 4rem; }
    }

    /* hero-specific: 7/5 split */
    .grid-hero {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2.5rem;
      align-items: flex-end;
    }
    @media (min-width: 768px) {
      .grid-hero { grid-template-columns: 7fr 5fr; gap: 3.5rem; }
    }

    /* about-specific: 5/7 split */
    .grid-about {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2.5rem;
      align-items: center;
    }
    @media (min-width: 768px) {
      .grid-about { grid-template-columns: 5fr 7fr; gap: 4rem; }
      .grid-about .portrait-col { order: 0; }
      .grid-about .text-col     { order: 1; }
    }

    /* method: 5/7 */
    .grid-method {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2.5rem;
    }
    @media (min-width: 768px) {
      .grid-method { grid-template-columns: 5fr 7fr; gap: 4rem; align-items: start; }
      .steps-col   { padding-top: 3rem; }
    }

    /* faq: 4/8 */
    .grid-faq {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2.5rem;
      align-items: start;
    }
    @media (min-width: 768px) {
      .grid-faq { grid-template-columns: 4fr 8fr; gap: 4rem; }
    }

    /* ─── UTILITIES ─────────────────────────────────────── */
    .gradient-warm { background: linear-gradient(135deg, #F7F2E8 0%, #F0E0D2 100%); }
    .gradient-sage  { background: linear-gradient(180deg, rgba(157,178,154,.10) 0%, rgba(45,64,54,.04) 100%); }

    .eyebrow {
      display: inline-flex; align-items: center; gap: .5rem;
      font-size: .72rem; text-transform: uppercase; letter-spacing: .22em;
      color: var(--muted);
    }
    .eyebrow::before {
      content: ""; display: inline-block;
      width: 2rem; height: 1px; background: var(--terra); flex-shrink: 0;
    }

    .link-underline { position: relative; display: inline-block; text-decoration: none; }
    .link-underline::after {
      content: ""; position: absolute; left: 0; bottom: -2px;
      height: 1px; width: 0; background: currentColor;
      transition: width .5s cubic-bezier(.22,1,.36,1);
    }
    .link-underline:hover::after { width: 100%; }

    .btn-primary {
      display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
      background: var(--sage-deep); color: var(--cream);
      padding: .875rem 1.75rem; border-radius: 9999px;
      font-size: .875rem; text-decoration: none;
      border: none; cursor: pointer;
      transition: background .3s;
      white-space: nowrap;
    }
    .btn-primary:hover  { background: var(--terra); }
    .btn-primary:disabled { opacity: .6; cursor: not-allowed; }

    /* ─── REVEAL ────────────────────────────────────────── */
    .reveal {
      opacity: 0; transform: translateY(18px);
      transition: opacity .85s cubic-bezier(.22,1,.36,1),
                  transform .85s cubic-bezier(.22,1,.36,1);
    }
    .reveal.is-visible { opacity: 1; transform: translateY(0); }

    /* ─── HEADER ────────────────────────────────────────── */
    header {
      position: fixed; inset-block-start: 0; inset-inline: 0; z-index: 100;
      height: 64px;
      background: rgba(247,242,232,.78);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(226,218,203,.4);
    }
    .header-inner {
      height: 100%; display: flex; align-items: center;
      justify-content: space-between; gap: 1rem;
    }
    .logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem; letter-spacing: -.01em;
      text-decoration: none; color: var(--ink); white-space: nowrap;
    }
    .logo span { color: var(--terra); }

    /* desktop nav */
    .desk-nav { display: flex; align-items: center; gap: 1.75rem; }
    .desk-nav a {
      font-size: .8rem; color: var(--muted); text-decoration: none;
      white-space: nowrap; transition: color .2s;
    }
    .desk-nav a:hover { color: var(--ink); }

    /* hamburger */
    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      background: none; border: none; cursor: pointer; padding: 6px;
      flex-shrink: 0;
    }
    .hamburger span {
      display: block; width: 22px; height: 2px;
      background: var(--ink); border-radius: 2px;
      transition: transform .25s, opacity .25s;
    }

    @media (max-width: 767px) {
      .desk-nav  { display: none; }
      .hamburger { display: flex; }
    }

    /* mobile overlay */
    #mob-nav {
      display: none; position: fixed; inset: 0; z-index: 90;
      background: rgba(247,242,232,.97);
      backdrop-filter: blur(14px);
      flex-direction: column; align-items: center; justify-content: center;
      gap: 1.75rem; opacity: 0; transition: opacity .25s;
    }
    #mob-nav a {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem; color: var(--sage-deep); text-decoration: none;
      transition: color .2s;
    }
    #mob-nav a:hover { color: var(--terra); }
    .mob-cta {
      margin-top: .5rem !important;
      background: var(--sage-deep) !important; color: var(--cream) !important;
      padding: .75rem 2.25rem; border-radius: 9999px;
      font-size: 1rem !important;
    }
    .mob-cta:hover { background: var(--terra) !important; }

    /* ─── HERO ──────────────────────────────────────────── */
    #top {
      padding-top: 7rem; padding-bottom: 4rem;
    }
    @media (min-width: 768px) { #top { padding-top: 9rem; padding-bottom: 6rem; } }

    h1 {
      font-size: clamp(2.8rem, 8vw, 6rem);
      line-height: .95; color: var(--sage-deep);
    }
    h1 em { color: var(--terra); font-style: italic; font-weight: 500; }

    .hero-eyebrow { margin-bottom: 1.5rem; }
    .hero-sub {
      margin-top: 1.75rem;
      font-size: clamp(.95rem, 2vw, 1.1rem);
      color: var(--muted); line-height: 1.7;
    }
    .hero-actions {
      margin-top: 2rem; display: flex; flex-wrap: wrap;
      align-items: center; gap: 1rem;
    }
    .hero-actions .link-underline { font-size: .875rem; color: var(--ink); }

    .hero-img-wrap {
      aspect-ratio: 4/5; overflow: hidden; border-radius: 2px;
      box-shadow: var(--shadow-soft);
      background: rgba(157,178,154,.2);
      display: flex; align-items: center; justify-content: center;
    }
    .hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
    .hero-img-wrap svg { width: 5rem; height: 5rem; color: rgba(157,178,154,.35); }

    .hero-stats {
      margin-top: 1.5rem; display: flex;
      align-items: center; gap: 1.25rem;
    }
    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.875rem; color: var(--terra);
      display: block; line-height: 1;
    }
    .stat-label {
      font-size: .68rem; text-transform: uppercase;
      letter-spacing: .1em; color: var(--muted);
    }
    .stat-sep { width: 1px; height: 2.5rem; background: var(--border); }

    /* ─── MARQUEE ───────────────────────────────────────── */
    .marquee-wrap {
      border-top: 1px solid rgba(226,218,203,.6);
      border-bottom: 1px solid rgba(226,218,203,.6);
      padding: 1.25rem 0; overflow: hidden;
      background: rgba(157,178,154,.18);
    }
    .marquee-track {
      display: flex; white-space: nowrap;
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.1rem, 2.5vw, 1.5rem);
      color: var(--muted);
      animation: marquee 38s linear infinite;
    }
    .marquee-track:hover { animation-play-state: paused; }
    .marquee-block { display: flex; gap: 3rem; align-items: center; flex-shrink: 0; padding-right: 3rem; }
    .marquee-item  { display: flex; align-items: center; gap: 3rem; }
    .marquee-dot   { display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: var(--terra); flex-shrink: 0; }
    @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    /* ─── SECTIONS ──────────────────────────────────────── */
    section { padding-block: 5rem; }
    @media (min-width: 768px) { section { padding-block: 7rem; } }

    h2 {
      font-size: clamp(1.9rem, 4vw, 3rem);
      line-height: 1.12; color: var(--sage-deep);
    }
    h2 em { color: var(--terra); font-style: italic; }
    h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.3rem, 2.5vw, 1.6rem);
      color: var(--sage-deep); margin-bottom: .6rem; line-height: 1.15;
    }

    .section-eyebrow { margin-bottom: 1.25rem; }

    /* ─── ABOUT ─────────────────────────────────────────── */
    .portrait {
      aspect-ratio: 4/5; overflow: hidden; border-radius: 2px;
      box-shadow: var(--shadow-card);
      background: rgba(157,178,154,.1);
      display: flex; align-items: center; justify-content: center;
    }
    .portrait img { width: 100%; height: 100%; object-fit: cover; }
    .portrait svg { width: 4.5rem; height: 4.5rem; color: rgba(157,178,154,.3); }

    .about-body { margin-top: 1.75rem; display: flex; flex-direction: column; gap: 1rem; }
    .about-body p { font-size: .9rem; color: var(--muted); line-height: 1.8; }

    .credentials {
      margin-top: 2rem;
      display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
    }
    @media (max-width: 420px) { .credentials { grid-template-columns: 1fr; } }
    .credential { border-left: 2px solid var(--terra); padding-left: .875rem; }
    .credential .cred-title { font-size: .85rem; font-weight: 500; color: var(--ink); }
    .credential .cred-sub   { font-size: .72rem; color: var(--muted); margin-top: .2rem; }

    /* ─── SERVICES ──────────────────────────────────────── */
    .section-header {
      display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 3rem;
    }
    @media (min-width: 768px) {
      .section-header {
        flex-direction: row; align-items: flex-end;
        justify-content: space-between; gap: 2rem;
      }
    }
    .section-aside { max-width: 20rem; font-size: .875rem; color: var(--muted); }

    .services-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1px;
      background: rgba(226,218,203,.6);
      border: 1px solid rgba(226,218,203,.6);
    }
    @media (min-width: 560px)  { .services-grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1024px) { .services-grid { grid-template-columns: 1fr 1fr 1fr; } }

    .service-card { background: var(--cream); padding: 2rem; transition: background .2s; }
    .service-card:hover { background: rgba(194,104,62,.05); }
    .service-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.5rem; }
    .service-num  { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--terra); }
    .service-arrow { color: var(--muted); font-size: 1.1rem; transition: color .2s; }
    .service-card:hover .service-arrow { color: var(--terra); }
    .service-desc { font-size: .83rem; color: var(--muted); line-height: 1.75; }

    /* ─── METHOD ────────────────────────────────────────── */
    .method-img {
      margin-top: 2rem; aspect-ratio: 4/3;
      overflow: hidden; border-radius: 2px;
      box-shadow: var(--shadow-card);
      background: rgba(157,178,154,.1);
      display: flex; align-items: center; justify-content: center;
    }
    .method-img img { width: 100%; height: 100%; object-fit: cover; }
    .method-img svg { width: 3.5rem; height: 3.5rem; color: rgba(157,178,154,.3); }

    .steps { display: flex; flex-direction: column; }
    .step {
      display: grid; grid-template-columns: 2.75rem 1fr;
      gap: 1.25rem; padding: 1.75rem 0;
      border-bottom: 1px solid rgba(226,218,203,.6);
    }
    .step-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.875rem; color: var(--terra);
      font-style: italic; line-height: 1;
    }
    .step p { font-size: .88rem; color: var(--muted); line-height: 1.75; }

    /* ─── TESTIMONIALS ──────────────────────────────────── */
    #testimonials { background: var(--sage-deep); color: var(--cream); }
    #testimonials .eyebrow { color: rgba(247,242,232,.55); }
    #testimonials h2        { color: var(--cream); }
    #testimonials h2 em     { color: var(--terra-soft); }

    .testimonials-grid {
      margin-top: 3.5rem;
      display: grid; grid-template-columns: 1fr;
      gap: 2rem;
    }
    @media (min-width: 640px)  { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1024px) { .testimonials-grid { grid-template-columns: 1fr 1fr 1fr; } }

    figure { border-top: 1px solid rgba(247,242,232,.2); padding-top: 1.75rem; }
    .quote-mark {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3.5rem; color: var(--terra); line-height: 1; margin-bottom: .75rem;
    }
    blockquote {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem; line-height: 1.45;
      font-style: italic; margin-bottom: 1.25rem;
    }
    figcaption {
      font-size: .68rem; text-transform: uppercase;
      letter-spacing: .2em; color: rgba(247,242,232,.55);
    }

    /* ─── FAQ ───────────────────────────────────────────── */
    .faq-intro p { margin-top: 1.25rem; font-size: .875rem; color: var(--muted); }
    .faq-intro p a { color: var(--terra); }

    details { border-bottom: 1px solid rgba(226,218,203,.6); }
    summary {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.1rem, 2.5vw, 1.25rem);
      color: var(--sage-deep);
      padding: 1.25rem 0;
      display: flex; align-items: center;
      justify-content: space-between; gap: 1rem;
      list-style: none; cursor: pointer; transition: color .2s;
    }
    summary::-webkit-details-marker { display: none; }
    summary:hover            { color: var(--terra); }
    details[open] summary    { color: var(--terra); }
    .chevron                 { transition: transform .3s; flex-shrink: 0; color: var(--terra); }
    details[open] .chevron   { transform: rotate(180deg); }
    .faq-body { font-size: .88rem; color: var(--muted); line-height: 1.8; padding-bottom: 1.25rem; }

    /* ─── CONTACT ───────────────────────────────────────── */
    .contact-title {
      font-size: clamp(2rem, 5vw, 3.5rem);
      line-height: 1.05; color: var(--sage-deep); margin-top: 1rem;
    }
    .contact-sub {
      margin-top: 1.5rem; font-size: .9rem;
      color: var(--muted); max-width: 28rem;
    }
    .contact-details { margin-top: 2.5rem; display: flex; flex-direction: column; }
    .contact-row {
      display: grid; grid-template-columns: 5.5rem 1fr;
      gap: .75rem; padding-bottom: .875rem; margin-bottom: .875rem;
      border-bottom: 1px solid rgba(226,218,203,.6);
      font-size: .875rem;
    }
    .contact-label {
      font-size: .68rem; text-transform: uppercase;
      letter-spacing: .2em; color: var(--muted); padding-top: .15rem;
    }
    .contact-value { color: var(--ink); line-height: 1.6; }

    /* form card */
    .form-card {
      background: var(--cream); padding: clamp(1.5rem, 4vw, 2.5rem);
      border-radius: 2px; box-shadow: var(--shadow-card);
      border: 1px solid rgba(226,218,203,.4);
      display: flex; flex-direction: column; gap: 1.25rem;
    }
    .field { display: flex; flex-direction: column; gap: .4rem; }
    .field label {
      font-size: .68rem; text-transform: uppercase;
      letter-spacing: .2em; color: var(--muted);
    }
    .field input, .field textarea {
      width: 100%; background: transparent; border: none;
      border-bottom: 1px solid var(--border); outline: none;
      padding: .45rem 0; color: var(--ink);
      font-family: inherit; font-size: .95rem;
      transition: border-color .3s;
      -webkit-appearance: none;
    }
    .field input:focus,
    .field textarea:focus  { border-bottom-color: var(--terra); }
    .field input::placeholder,
    .field textarea::placeholder { color: rgba(107,122,111,.35); }
    .field textarea { resize: vertical; min-height: 90px; }

    .alert {
      border-radius: 2px; padding: .875rem 1rem;
      font-size: .85rem; display: none; line-height: 1.5;
    }
    .alert-ok  { background: rgba(157,178,154,.2); border: 1px solid var(--sage); color: var(--sage-deep); }
    .alert-err { background: rgba(194,104,62,.1);  border: 1px solid var(--terra); color: var(--terra); }
    .alert.show { display: block; }

    /* ─── FOOTER ────────────────────────────────────────── */
    footer {
      border-top: 1px solid var(--border);
      background: var(--cream); padding-block: 2.5rem;
    }
    .footer-inner {
      display: flex; flex-direction: column; gap: 1.25rem;
    }
    @media (min-width: 768px) {
      .footer-inner {
        flex-direction: row; align-items: center;
        justify-content: space-between;
      }
    }
    .footer-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem; color: var(--sage-deep); text-decoration: none;
    }
    .footer-logo span { color: var(--terra); }
    .footer-copy  { font-size: .78rem; color: var(--muted); }
    .footer-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
    .footer-links a { font-size: .78rem; color: var(--muted); text-decoration: none; transition: color .2s; }
    .footer-links a:hover { color: var(--terra); }

    /* ─── BACK TO TOP ───────────────────────────────────── */
    #back-top {
      position: fixed; bottom: 1.25rem; right: 1.25rem; z-index: 50;
      width: 2.5rem; height: 2.5rem; border-radius: 50%;
      background: var(--sage-deep); color: var(--cream);
      border: none; cursor: pointer; font-size: 1rem;
      display: flex; align-items: center; justify-content: center;
      box-shadow: var(--shadow-card);
      opacity: 0; pointer-events: none;
      transition: opacity .3s, background .2s;
    }
    #back-top.visible { opacity: 1; pointer-events: auto; }
    #back-top:hover   { background: var(--terra); }

    /* ─── GOOGLE REVIEWS ────────────────────────────────── */
    #reviews {
      background: #fff; padding-block: 5rem;
    }
    @media (min-width: 768px) { #reviews { padding-block: 7rem; } }

    .gr-wrap {
      display: flex; gap: 3rem; align-items: flex-start;
      flex-direction: column;
    }
    @media (min-width: 900px) {
      .gr-wrap { flex-direction: row; align-items: center; }
    }

    /* Badge ECCELLENTE */
    .gr-badge {
      flex-shrink: 0; display: flex; flex-direction: column;
      align-items: flex-start; min-width: 180px;
    }
    .gr-eccellente {
      font-size: 1.5rem; font-weight: 700; color: #1a1a1a;
      letter-spacing: .02em; text-transform: uppercase; margin-bottom: .5rem;
    }
    .gr-stars-row { display: flex; gap: 3px; margin-bottom: .4rem; }
    .gr-star { font-size: 1.75rem; color: #FBBC04; line-height: 1; }
    .gr-base { font-size: .82rem; color: #555; margin-bottom: .75rem; }
    .gr-base strong { color: #1a1a1a; }
    .gr-google-logo {
      font-family: 'Product Sans', Arial, sans-serif;
      font-size: 1.4rem; font-weight: 400; letter-spacing: -.02em;
      display: inline-flex; line-height: 1;
    }
    .gl-b { color: #4285F4; }
    .gl-r { color: #EA4335; }
    .gl-y { color: #FBBC05; }
    .gl-g { color: #34A853; }

    /* Slider */
    .gr-slider-wrap {
      flex: 1; overflow: hidden; position: relative;
    }
    .gr-slider {
      display: flex; gap: 1rem; transition: transform .4s cubic-bezier(.22,1,.36,1);
    }
    .gr-card {
      flex: 0 0 calc(33.333% - .67rem);
      min-width: 260px;
      background: #fff;
      border: 1px solid #e0e0e0;
      border-radius: 8px; padding: 1.25rem;
      display: flex; flex-direction: column; gap: .75rem;
      box-shadow: 0 1px 4px rgba(0,0,0,.08);
    }
    @media (max-width: 900px) { .gr-card { flex: 0 0 calc(50% - .5rem); } }
    @media (max-width: 560px) { .gr-card { flex: 0 0 100%; } }

    .gr-card-top {
      display: flex; align-items: center;
      justify-content: space-between;
    }
    .gr-card-author { display: flex; align-items: center; gap: .6rem; }
    .gr-avatar {
      width: 40px; height: 40px; border-radius: 50%;
      object-fit: cover; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; font-weight: 600; color: #fff;
    }
    .gr-author-name { font-size: .88rem; font-weight: 600; color: #1a1a1a; line-height: 1.2; }
    .gr-author-date { font-size: .75rem; color: #777; margin-top: .1rem; }
    .gr-g-icon { flex-shrink: 0; }

    .gr-card-stars { display: flex; gap: 2px; align-items: center; }
    .gr-card-stars .gr-star { font-size: 1.05rem; }
    .gr-verified { color: #1a73e8; font-size: .9rem; margin-left: 2px; }

    .gr-card-text {
      font-size: .85rem; color: #333; line-height: 1.6;
    }
    .gr-read-more {
      font-size: .82rem; color: #555; cursor: pointer;
      text-decoration: none; display: inline-block; margin-top: .25rem;
    }
    .gr-read-more:hover { color: #1a73e8; }

    /* Nav arrows */
    .gr-nav {
      display: flex; gap: .5rem; margin-top: 1.5rem;
      justify-content: flex-end;
    }
    .gr-arrow {
      width: 36px; height: 36px; border-radius: 50%;
      border: 1px solid #ddd; background: #fff;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; font-size: 1rem; color: #555;
      transition: background .2s, border-color .2s;
    }
    .gr-arrow:hover { background: #f5f5f5; border-color: #bbb; }
    .gr-arrow:disabled { opacity: .35; cursor: not-allowed; }

    /* Scrivi recensione CTA */
    .gr-cta-wrap { margin-top: 2.5rem; text-align: center; }
    .gr-cta {
      display: inline-flex; align-items: center; gap: .5rem;
      background: #1a73e8; color: #fff;
      padding: .75rem 1.75rem; border-radius: 4px;
      font-size: .88rem; font-weight: 500; text-decoration: none;
      transition: background .2s; letter-spacing: .01em;
    }
    .gr-cta:hover { background: #1557b0; }

    /* ─── COOKIE BANNER ─────────────────────────────────── */
    #cookie-banner {
      position: fixed; bottom: 1.25rem; left: 50%; z-index: 9999;
      transform: translateX(-50%);
      width: calc(100% - 2.5rem); max-width: 700px;
      background: var(--ink);
      border: 1px solid rgba(226,218,203,.15);
      border-radius: 6px;
      padding: 1rem 1.25rem;
      display: flex; flex-wrap: wrap; align-items: center;
      gap: .75rem 1.25rem;
      box-shadow: 0 8px 32px rgba(0,0,0,.4);
      animation: ckUp .4s cubic-bezier(.22,1,.36,1) both;
    }
    @keyframes ckUp {
      from { opacity:0; transform:translate(-50%,.75rem); }
      to   { opacity:1; transform:translate(-50%,0); }
    }
    .ck-text {
      flex: 1 1 220px;
      font-size: .8rem; color: rgba(247,242,232,.78); line-height: 1.55;
    }
    .ck-text a { color: var(--terra-soft); text-decoration: underline; }
    .ck-actions { display: flex; gap: .5rem; flex-shrink: 0; flex-wrap: wrap; }
    .ck-btn {
      padding: .5rem 1.1rem; border-radius: 9999px;
      font-size: .78rem; font-family: inherit;
      cursor: pointer; border: none;
      transition: background .2s, color .2s; white-space: nowrap;
    }
    .ck-accept        { background: var(--terra); color: #fff; }
    .ck-accept:hover  { background: #a85530; }
    .ck-decline       { background: rgba(255,255,255,.1); color: rgba(247,242,232,.7); }
    .ck-decline:hover { background: rgba(255,255,255,.18); }

    /* ─── COOKIE BANNER ─────────────────────────────────── */
    #cookie-banner {
      position: fixed; bottom: 1.25rem; left: 50%; z-index: 9999;
      transform: translateX(-50%);
      width: calc(100% - 2.5rem); max-width: 700px;
      background: var(--ink);
      border: 1px solid rgba(226,218,203,.15);
      border-radius: 6px;
      padding: 1rem 1.25rem;
      display: flex; flex-wrap: wrap; align-items: center;
      gap: .75rem 1.25rem;
      box-shadow: 0 8px 32px rgba(0,0,0,.4);
      animation: ckUp .4s cubic-bezier(.22,1,.36,1) both;
    }
    @keyframes ckUp {
      from { opacity:0; transform:translate(-50%,.75rem); }
      to   { opacity:1; transform:translate(-50%,0); }
    }
    .ck-text {
      flex: 1 1 220px;
      font-size: .8rem; color: rgba(247,242,232,.78); line-height: 1.55;
    }
    .ck-text a { color: var(--terra-soft); text-decoration: underline; }
    .ck-actions { display: flex; gap: .5rem; flex-shrink: 0; flex-wrap: wrap; }
    .ck-btn {
      padding: .5rem 1.1rem; border-radius: 9999px;
      font-size: .78rem; font-family: inherit;
      cursor: pointer; border: none;
      transition: background .2s, color .2s; white-space: nowrap;
    }
    .ck-accept        { background: var(--terra); color: #fff; }
    .ck-accept:hover  { background: #a85530; }
    .ck-decline       { background: rgba(255,255,255,.1); color: rgba(247,242,232,.7); }
    .ck-decline:hover { background: rgba(255,255,255,.18); }

    /* ─── BOOK SHOP ─────────────────────────────────────── */
    #book {
      background: linear-gradient(160deg, #0d1117 0%, #1a1a2e 50%, #16213e 100%);
      padding-block: 5rem; color: #fff;
    }
    @media (min-width: 768px) { #book { padding-block: 7rem; } }

    .book-wrap {
      display: grid; grid-template-columns: 1fr;
      gap: 3rem; align-items: center;
    }
    @media (min-width: 768px) {
      .book-wrap { grid-template-columns: 380px 1fr; gap: 5rem; }
    }

    /* Book cover with 3D tilt shadow */
    .book-cover-col { display: flex; justify-content: center; }
    .book-cover-wrap {
      position: relative; width: 280px;
    }
    @media (min-width: 768px) { .book-cover-wrap { width: 340px; } }
    .book-cover-shadow {
      position: absolute; bottom: -20px; left: 10px; right: -10px;
      height: 100%; background: rgba(0,0,0,.5);
      filter: blur(20px); border-radius: 4px; z-index: 0;
    }
    .book-cover {
      position: relative; z-index: 1;
      width: 100%; border-radius: 4px;
      box-shadow: -8px 8px 30px rgba(0,0,0,.6), 4px 0 12px rgba(255,255,255,.05);
      transform: perspective(800px) rotateY(5deg);
      transition: transform .4s ease, box-shadow .4s ease;
    }
    .book-cover:hover {
      transform: perspective(800px) rotateY(0deg) scale(1.02);
      box-shadow: 0 20px 60px rgba(0,0,0,.7);
    }

    /* Info col */
    .book-info-col { display: flex; flex-direction: column; gap: 1.5rem; }
    .book-eyebrow {
      display: inline-flex; align-items: center; gap: .5rem;
      font-size: .7rem; text-transform: uppercase; letter-spacing: .25em;
      color: rgba(255,255,255,.45);
    }
    .book-eyebrow::before {
      content: ""; display: inline-block;
      width: 1.5rem; height: 1px; background: #C2683E; flex-shrink: 0;
    }
    .book-author {
      font-size: .9rem; color: rgba(255,255,255,.55); margin-bottom: -.75rem;
    }
    .book-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 400; line-height: 1.1;
      color: #fff;
    }
    .book-title em {
      color: #c8f135; font-style: normal;
      display: block;
    }
    .book-subtitle {
      font-size: .85rem; color: rgba(255,255,255,.5);
      font-style: italic; line-height: 1.6;
      border-left: 2px solid rgba(194,104,62,.6);
      padding-left: 1rem;
    }
    .book-publisher {
      font-size: .78rem; color: rgba(255,255,255,.35);
      text-transform: uppercase; letter-spacing: .15em;
    }
    .book-divider {
      width: 3rem; height: 1px; background: rgba(255,255,255,.15);
    }
    .book-desc {
      font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.75;
    }
    .book-price-row {
      display: flex; align-items: baseline; gap: 1rem;
      flex-wrap: wrap;
    }
    .book-price {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3rem; font-weight: 600; color: #fff; line-height: 1;
    }
    .book-price-note {
      font-size: .78rem; color: rgba(255,255,255,.4);
    }
    .book-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
    .btn-buy {
      display: inline-flex; align-items: center; gap: .6rem;
      background: #C2683E; color: #fff;
      padding: 1rem 2rem; border-radius: 4px;
      font-size: .9rem; font-weight: 500; text-decoration: none;
      border: none; cursor: pointer;
      transition: background .2s, transform .15s;
      letter-spacing: .03em;
    }
    .btn-buy:hover { background: #a85530; transform: translateY(-2px); }
    .btn-buy svg { width: 18px; height: 18px; flex-shrink: 0; }
    .book-badge {
      display: inline-flex; align-items: center; gap: .4rem;
      font-size: .75rem; color: rgba(255,255,255,.5);
      border: 1px solid rgba(255,255,255,.15);
      padding: .35rem .75rem; border-radius: 9999px;
    }
    .book-badge svg { width: 14px; height: 14px; opacity: .6; }

    /* ─── MOBILE & OVERFLOW FIXES ───────────────────────── */
    html { overflow-x: hidden; }

    /* Fix slider overflow: contiene il track senza rompere i flex-basis % */
    .gr-slider-wrap { min-width: 0; }

    /* Override min-width: 260px solo su mobile piccolo */
    @media (max-width: 559px) {
      .gr-card {
        flex: 0 0 calc(100vw - 3rem) !important;
        min-width: 0 !important;
        max-width: calc(100vw - 3rem);
      }
      .gr-badge { min-width: 0; }
    }
    @media (min-width: 560px) and (max-width: 899px) {
      .gr-card { flex: 0 0 calc(50% - .5rem) !important; min-width: 0 !important; }
    }

    /* ── Keep 2-col layout on mobile for image sections ── */
    @media (max-width: 767px) {
      /* Hero */
      .grid-hero {
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem !important;
        align-items: center !important;
      }
      .grid-hero h1        { font-size: clamp(1.35rem, 5.5vw, 2.4rem) !important; }
      .grid-hero .hero-sub { font-size: .72rem; margin-top: .75rem; line-height: 1.5; }
      .hero-actions        { margin-top: .875rem; gap: .5rem; }
      .btn-primary         { padding: .6rem .9rem; font-size: .72rem; }
      .hero-actions .link-underline { font-size: .68rem; }
      .hero-img-wrap       { aspect-ratio: 3/4; }
      .stat-num            { font-size: 1.35rem; }
      .stat-label          { font-size: .58rem; }

      /* About */
      .grid-about {
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem !important;
        align-items: start !important;
      }
      .grid-about h2    { font-size: clamp(1.2rem, 5vw, 1.8rem) !important; }
      .about-body p     { font-size: .75rem; line-height: 1.6; }
      .credentials      { grid-template-columns: 1fr; gap: .6rem; margin-top: 1rem; }
      .cred-title       { font-size: .75rem; }
      .cred-sub         { font-size: .65rem; }

      /* Method */
      .grid-method {
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem !important;
      }
      .grid-method h2 { font-size: clamp(1.1rem, 4.5vw, 1.6rem) !important; }
      .steps-col      { padding-top: 0; }
      .step           { grid-template-columns: 1.6rem 1fr; gap: .6rem; padding: .9rem 0; }
      .step-num       { font-size: 1.2rem; }
      .step h3        { font-size: 1rem; margin-bottom: .25rem; }
      .step p         { font-size: .72rem; line-height: 1.55; }
      .method-img     { margin-top: 1rem; aspect-ratio: 4/3; }

      /* FAQ */
      .grid-faq {
        grid-template-columns: 2fr 3fr !important;
        gap: 1rem !important;
      }
      .faq-intro h2 { font-size: clamp(1.1rem, 4vw, 1.6rem) !important; }
      summary       { font-size: .85rem; padding: .75rem 0; }
      .faq-body     { font-size: .78rem; }

      /* Contact: singola colonna su mobile per usabilità form */
      #contact .grid-2col {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
      }
      .contact-title { font-size: clamp(1.1rem, 4.5vw, 1.8rem) !important; }
      .contact-sub   { font-size: .75rem; margin-top: .75rem; }
      .contact-row   { grid-template-columns: 3.5rem 1fr; gap: .5rem; font-size: .72rem; padding-bottom: .6rem; margin-bottom: .6rem; }
      .contact-label { font-size: .6rem; }
      .form-card     { padding: 1rem 1rem; gap: .75rem; }
      .field label   { font-size: .6rem; }
      .field input, .field textarea { font-size: .8rem; }
      .field textarea { min-height: 70px; }

      /* General */
      section          { padding-block: 3rem !important; }
      #top             { padding-top: 5rem !important; padding-bottom: 2rem !important; }
      h2               { line-height: 1.1 !important; }
      .section-eyebrow { margin-bottom: .75rem; }

      /* AI widget position */
      #ai-panel {
        bottom: 4.25rem; left: .75rem;
        width: calc(100vw - 1.5rem);
        max-height: calc(100vh - 6rem);
      }
      #ai-toggle { bottom: 1rem; left: 1rem; width: 48px; height: 48px; }
      #ai-toggle svg { width: 22px; height: 22px; }
    }

    /* Very small screens: single column, hide deco images */
    @media (max-width: 360px) {
      .grid-hero, .grid-about, .grid-method,
      .grid-faq, .grid-2col {
        grid-template-columns: 1fr !important;
      }
      .hero-img-wrap, .portrait, .method-img { display: none !important; }
    }

    /* ─── AI AGENT WIDGET ───────────────────────────────── */
    #ai-toggle {
      position: fixed; bottom: 1.5rem; left: 1.5rem; z-index: 8000;
      width: 56px; height: 56px; border-radius: 50%;
      background: var(--sage-deep); color: var(--cream);
      border: none; cursor: pointer;
      box-shadow: 0 4px 20px rgba(45,64,54,.35);
      display: flex; align-items: center; justify-content: center;
      transition: background .2s, transform .2s, box-shadow .2s;
    }
    #ai-toggle:hover {
      background: var(--terra); transform: scale(1.08);
      box-shadow: 0 6px 24px rgba(194,104,62,.4);
    }
    #ai-toggle svg { width: 26px; height: 26px; flex-shrink: 0; }

    #ai-panel {
      position: fixed; bottom: 5.5rem; left: 1.5rem; z-index: 7999;
      width: min(380px, calc(100vw - 3rem));
      background: var(--cream);
      border: 1px solid var(--border);
      border-radius: 12px;
      box-shadow: 0 20px 60px rgba(45,64,54,.25);
      display: flex; flex-direction: column;
      overflow: hidden;
      transform: translateY(16px) scale(.97);
      opacity: 0; pointer-events: none;
      transition: transform .3s cubic-bezier(.22,1,.36,1),
                  opacity .3s cubic-bezier(.22,1,.36,1);
      max-height: calc(100vh - 8rem);
    }
    #ai-panel.open {
      transform: translateY(0) scale(1);
      opacity: 1; pointer-events: auto;
    }

    .ai-header {
      background: var(--sage-deep); color: var(--cream);
      padding: 1rem 1.25rem;
      display: flex; align-items: center; gap: .875rem;
      flex-shrink: 0;
    }
    .ai-header-avatar {
      width: 38px; height: 38px; border-radius: 50%;
      background: rgba(255,255,255,.12);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem; flex-shrink: 0;
    }
    .ai-header-info { flex: 1; min-width: 0; }
    .ai-header-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem; font-weight: 500; line-height: 1.2;
    }
    .ai-header-status {
      font-size: .68rem; color: rgba(247,242,232,.6);
      display: flex; align-items: center; gap: .35rem; margin-top: .15rem;
    }
    .ai-status-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: #4ade80; flex-shrink: 0;
      animation: blink-dot 2s ease infinite;
    }
    @keyframes blink-dot {
      0%,100% { opacity: 1; } 50% { opacity: .4; }
    }
    .ai-close-btn {
      background: rgba(255,255,255,.1); border: none;
      width: 28px; height: 28px; border-radius: 50%;
      color: var(--cream); cursor: pointer; font-size: .9rem;
      display: flex; align-items: center; justify-content: center;
      transition: background .2s; flex-shrink: 0;
    }
    .ai-close-btn:hover { background: rgba(255,255,255,.2); }

    .ai-messages {
      flex: 1; overflow-y: auto; padding: 1rem;
      display: flex; flex-direction: column; gap: .75rem;
      min-height: 260px; max-height: 380px;
      scroll-behavior: smooth;
    }
    .ai-messages::-webkit-scrollbar { width: 4px; }
    .ai-messages::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

    .ai-msg {
      display: flex; gap: .5rem; align-items: flex-end;
      animation: msgIn .25s ease both;
    }
    @keyframes msgIn {
      from { opacity:0; transform:translateY(6px); }
      to   { opacity:1; transform:translateY(0); }
    }
    .ai-msg.user { flex-direction: row-reverse; }
    .ai-msg-avatar {
      width: 28px; height: 28px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: .75rem; flex-shrink: 0; margin-bottom: 2px;
    }
    .ai-msg.bot  .ai-msg-avatar { background: var(--sage-deep); color: var(--cream); }
    .ai-msg.user .ai-msg-avatar { background: var(--terra); color: #fff; }
    .ai-msg-bubble {
      max-width: 82%; padding: .65rem .9rem;
      border-radius: 12px; font-size: .82rem; line-height: 1.55;
    }
    .ai-msg.bot  .ai-msg-bubble {
      background: #fff; color: var(--ink);
      border: 1px solid var(--border);
      border-bottom-left-radius: 3px;
    }
    .ai-msg.user .ai-msg-bubble {
      background: var(--sage-deep); color: var(--cream);
      border-bottom-right-radius: 3px;
    }

    /* typing indicator */
    .ai-typing .ai-msg-bubble {
      display: flex; gap: 4px; align-items: center; padding: .75rem .9rem;
    }
    .ai-typing .dot {
      width: 7px; height: 7px; border-radius: 50%;
      background: var(--muted); animation: typing-dot 1.2s ease infinite;
    }
    .ai-typing .dot:nth-child(2) { animation-delay: .2s; }
    .ai-typing .dot:nth-child(3) { animation-delay: .4s; }
    @keyframes typing-dot {
      0%,60%,100% { transform: translateY(0); opacity:.4; }
      30%          { transform: translateY(-5px); opacity:1; }
    }

    /* quick suggestions */
    .ai-suggestions {
      padding: .5rem 1rem .25rem;
      display: flex; flex-wrap: wrap; gap: .4rem;
      flex-shrink: 0;
    }
    .ai-suggestion {
      font-size: .72rem; padding: .3rem .7rem;
      border: 1px solid var(--border); border-radius: 9999px;
      background: #fff; color: var(--sage-deep);
      cursor: pointer; transition: background .15s, border-color .15s;
      white-space: nowrap;
    }
    .ai-suggestion:hover { background: var(--sage-deep); color: var(--cream); border-color: var(--sage-deep); }

    .ai-input-row {
      display: flex; gap: .5rem; padding: .75rem 1rem 1rem;
      border-top: 1px solid var(--border); flex-shrink: 0;
    }
    #ai-input {
      flex: 1; border: 1px solid var(--border); border-radius: 9999px;
      padding: .55rem 1rem; font-family: inherit; font-size: .82rem;
      outline: none; background: #fff; color: var(--ink);
      transition: border-color .2s;
    }
    #ai-input:focus { border-color: var(--sage-deep); }
    #ai-input::placeholder { color: rgba(107,122,111,.5); }
    #ai-send {
      width: 36px; height: 36px; border-radius: 50%;
      background: var(--sage-deep); color: var(--cream);
      border: none; cursor: pointer; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      transition: background .2s; align-self: center;
    }
    #ai-send:hover { background: var(--terra); }
    #ai-send:disabled { opacity: .45; cursor: not-allowed; }
    #ai-send svg { width: 16px; height: 16px; }
    .ai-disclaimer {
      text-align: center; font-size: .62rem; color: var(--muted);
      padding: 0 1rem .5rem; line-height: 1.4; flex-shrink: 0;
    }
  
/* ── GALLERY SECTION ─────────────────────── */
.gallery-section { padding: 5rem 0; }
.gallery-title { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; margin-bottom: .5rem; }
.gallery-subtitle { color: var(--muted); font-size: .95rem; margin-bottom: 2.5rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.gallery-grid img {
  width: 100%; height: 220px; object-fit: cover;
  border-radius: 12px; cursor: pointer;
  transition: transform .3s, box-shadow .3s;
}
.gallery-grid img:hover { transform: scale(1.02); box-shadow: 0 12px 32px rgba(45,64,54,.18); }

.gallery-slider-wrap { position: relative; overflow: hidden; border-radius: 18px; }
.gallery-slider { display: flex; transition: transform .5s cubic-bezier(.22,1,.36,1); }
.gallery-slider img { min-width: 100%; height: 480px; object-fit: cover; flex-shrink: 0; }
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(247,242,232,.85); border: none; width: 44px; height: 44px;
  border-radius: 50%; cursor: pointer; font-size: 1.2rem; z-index: 2;
  transition: background .2s;
}
.slider-btn:hover { background: rgba(247,242,232,1); }
.slider-btn.prev { left: 1rem; }
.slider-btn.next { right: 1rem; }
.slider-dots { display: flex; gap: .4rem; justify-content: center; margin-top: 1rem; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); cursor: pointer; transition: background .2s; }
.slider-dot.active { background: var(--terra); }

#lightbox {
  display: none; position: fixed; inset: 0; z-index: 9000;
  background: rgba(30,42,34,.92); align-items: center; justify-content: center;
}
#lightbox.open { display: flex; }
#lightbox img { max-width: 92vw; max-height: 90vh; object-fit: contain; border-radius: 8px; }
#lightbox-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; color: white; font-size: 2rem; cursor: pointer; }
