:root{
    --forest-deep:#0F2A1B;
    --forest:#1D4A2E;
    --forest-soft:#2C5E3C;
    --sage:#94AC7B;
    --cream:#F6F0DE;
    --cream-2:#EEE5C9;
    --gold:#D6A03D;
    --soil:#4A3728;
    --ink:#12271A;
    --radius:18px;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    font-family:'Work Sans', sans-serif;
    background:var(--cream);
    color:var(--ink);
    overflow-x:hidden;
  }
  h1,h2,h3,.display{
    font-family:'Fraunces', serif;
    font-weight:600;
    letter-spacing:-0.01em;
    line-height:1.05;
  }
  a{ text-decoration:none; color:inherit; }
  img{ display:block; max-width:100%; }
  .wrap{
    max-width:1180px;
    margin:0 auto;
    padding:0 32px;
  }
  ::selection{ background:var(--gold); color:var(--forest-deep); }

  /* focus visibility */
  a:focus-visible, button:focus-visible{
    outline:3px solid var(--gold);
    outline-offset:3px;
  }

  @media (prefers-reduced-motion: reduce){
    *{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important; }
  }

  /* ---------- NAV ---------- */
  header{
    position:sticky; top:0; z-index:50;
    background:rgba(15,42,27,0.92);
    backdrop-filter:blur(8px);
    border-bottom:1px solid rgba(255,255,255,0.08);
  }
  nav.wrap{
    display:flex; align-items:center; justify-content:space-between;
    padding-top:14px; padding-bottom:14px;
  }
  .brand{ display:flex; align-items:center; gap:12px; }
  .brand img{ height:44px; width:44px; border-radius:50%; }
  .brand span{
    font-family:'Fraunces', serif; font-weight:600; font-size:1.15rem;
    color:var(--cream); letter-spacing:0.01em;
  }
  .nav-links{
    display:flex; gap:32px; list-style:none;
    font-size:0.92rem; font-weight:500;
  }
  .nav-links a{ color:var(--cream); opacity:0.85; transition:opacity .2s; position:relative; }
  .nav-links a:hover{ opacity:1; }
  .btn{
    display:inline-flex; align-items:center; gap:8px;
    padding:11px 22px; border-radius:999px;
    font-weight:600; font-size:0.9rem;
    border:1px solid transparent;
    cursor:pointer;
    transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
  }
  .btn:hover{ transform:translateY(-2px); }
  .btn-gold{ background:var(--gold); color:var(--forest-deep); }
  .btn-gold:hover{ box-shadow:0 10px 24px -8px rgba(214,160,61,0.6); }
  .btn-ghost{ background:transparent; border-color:rgba(246,240,222,0.4); color:var(--cream); }
  .btn-ghost:hover{ background:rgba(246,240,222,0.1); }
  .nav-cta{ display:flex; align-items:center; gap:18px; }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1010;
  }
  .burger span {
    width: 100%;
    height: 2px;
    background-color: var(--cream);
    transition: all 0.3s ease;
  }

  /* ---------- HERO ---------- */
  .hero{
    position:relative;
    background:radial-gradient(120% 140% at 15% -10%, #24593A 0%, var(--forest) 45%, var(--forest-deep) 100%);
    color:var(--cream);
    padding:96px 0 120px;
    overflow:hidden;
  }
  .hero-grid{
    display:grid; grid-template-columns:1.1fr 0.9fr; gap:48px; align-items:center;
    position:relative; z-index:2;
  }
  .eyebrow{
    display:inline-flex; align-items:center; gap:8px;
    font-size:0.78rem; font-weight:600; text-transform:uppercase; letter-spacing:0.14em;
    color:var(--gold); margin-bottom:20px;
  }
  .eyebrow::before{ content:''; width:22px; height:1px; background:var(--gold); }
  .hero h1{ font-size:clamp(2.4rem, 4.6vw, 4rem); color:var(--cream); }
  .hero h1 em{ font-style:italic; color:var(--sage); }
  .hero p.lead{
    margin-top:22px; font-size:1.08rem; line-height:1.65;
    color:rgba(246,240,222,0.82); max-width:46ch;
  }
  .logosf{
    width: 390px;
    height: 160px;
  }
  .hero-location{
    display:flex; align-items:center; gap:8px;
    margin-top:16px;
    color:var(--cream);
    font-size:0.92rem;
    font-weight:600;
  }
  .hero-location svg{
    width:18px;
    height:18px;
    color:var(--gold);
    flex:none;
  }
  .hero-location a,
  .contact-location-link{
    display:flex;
    align-items:center;
    gap:8px;
    color:inherit;
  }
  .hero-location a:hover,
  .contact-location-link:hover{
    color:var(--gold);
  }
  .location-arrow{
    width:16px;
    height:16px;
    object-fit:contain;
    flex:none;
    filter:brightness(0) invert(1);
    transition:transform .2s ease;
  }
  .hero-location a:hover .location-arrow,
  .contact-location-link:hover .location-arrow{
    transform:translate(2px, -2px);
  }
  .hero-actions{ display:flex; gap:16px; margin-top:36px; flex-wrap:wrap; }
  .hero-stats{ display:flex; gap:36px; margin-top:56px; flex-wrap:wrap; }
  .hero-stats div strong{ display:block; font-family:'Fraunces',serif; font-size:1.9rem; color:var(--gold); }
  .hero-stats div span{ font-size:0.82rem; color:rgba(246,240,222,0.68); }

  .hero-art{
    position:relative;
    aspect-ratio:1/1;
    display:flex; align-items:center; justify-content:center;
  }
  .hero-blob{
    position:absolute; inset:0;
    background:linear-gradient(155deg, var(--forest-soft), var(--forest-deep));
    border-radius:42% 58% 63% 37% / 41% 45% 55% 59%;
    box-shadow: inset 0 0 60px rgba(0,0,0,0.25);
    animation:blobMove 12s ease-in-out infinite;
  }
  @keyframes blobMove{
    0%,100%{ border-radius:42% 58% 63% 37% / 41% 45% 55% 59%; }
    50%{ border-radius:58% 42% 40% 60% / 55% 60% 40% 45%; }
  }
  .hero-image {
    position: relative;
    z-index: 2;
    width: 82%;
    height: 82%;
    object-fit: cover;
    border-radius: var(--radius);
    border: 4px solid var(--cream-2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    transition: transform 0.4s ease;
  }
  .hero-art:hover .hero-image,
  .hero-art.is-hovered .hero-image {
    transform: translate(62px, -26px) scale(0.82) rotate(25deg);
  }
  .hero-stack-photo {
    position: absolute;
    z-index: 1;
    width: 82%;
    height: 82%;
    object-fit: cover;
    border: 4px solid var(--cream-2);
    border-radius: var(--radius);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.35s ease;
    transform: translate(0, 0) rotate(-2deg);
  }
  .hero-art:hover .hero-stack-photo,
  .hero-art.is-hovered .hero-stack-photo {
    opacity: 1;
    transform: translate(-38px, 30px) rotate(-8deg);
  }

  /* wavy bottom divider */
  .wave{
    position:absolute; left:0; right:0; bottom:-2px; line-height:0; z-index:1;
  }
  .wave svg{ width:100%; height:80px; display:block; }

  /* ---------- VINE (signature element) ---------- */
  .vine-track{
    position:absolute; left:50%; top:0; bottom:0;
    width:2px; transform:translateX(-1px);
    pointer-events:none;
  }
  .section-vine{ position:relative; }
  .vine-svg{
    position:absolute; left:50%; top:0; height:100%; width:60px;
    transform:translateX(-30px);
    z-index:0; opacity:0.9;
  }
  .vine-path{
    fill:none; stroke:var(--sage); stroke-width:2.5;
    stroke-dasharray:1400; stroke-dashoffset:1400;
    transition:stroke-dashoffset 1.6s ease;
  }
  .vine-path.in-view{ stroke-dashoffset:0; }
  .leaf-node{ opacity:0; transform:scale(0.4); transform-origin:center; transition:all .5s ease .3s; }
  .leaf-node.in-view{ opacity:1; transform:scale(1); }

  /* ---------- SECTION shells ---------- */
  section{ position:relative; padding:100px 0; }
  .tag{
    display:inline-block; font-size:0.76rem; font-weight:700; letter-spacing:0.14em;
    text-transform:uppercase; color:var(--forest-soft); margin-bottom:14px;
  }
  .section-head{ max-width:640px; margin:0 auto 56px; text-align:center; }
  .section-head h2{ font-size:clamp(1.9rem, 3.4vw, 2.6rem); color:var(--forest-deep); }
  .section-head p{ margin-top:16px; color:#4B5A4E; font-size:1.02rem; line-height:1.6; }

  /* ---------- WHATSAPP CTA ---------- */
  .whatsapp-cta {
    background: var(--cream-2);
    overflow: hidden;
  }
  .whatsapp-cta-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }
  .whatsapp-cta .tag {
    color: var(--forest-soft);
  }
  .whatsapp-cta h2 {
    margin-top: 4px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--forest-deep);
  }
  .whatsapp-cta p {
    margin: 18px auto 30px;
    max-width: 38ch;
    color: #465347;
    font-size: 1.05rem;
    line-height: 1.6;
  }
  .whatsapp-cta-button {
    min-width: min(100%, 360px);
    min-height: 68px;
    justify-content: center;
    background: #1FAF5A;
    color: #fff;
    font-size: 1.08rem;
    box-shadow: 0 16px 28px -14px rgba(18, 79, 43, 0.7);
  }
  .whatsapp-cta-button svg {
    width: 26px;
    height: 26px;
  }
  .whatsapp-cta-button:hover {
    background: #168B47;
    box-shadow: 0 18px 32px -14px rgba(18, 79, 43, 0.8);
  }

  /* ---------- CATEGORIES ---------- */
  .categories{ background:var(--forest-deep); color:var(--cream); }
  .categories .section-head h2{ color:var(--cream); }
  .categories .section-head p{ color:rgba(246,240,222,0.72); }
  .categories .tag{ color:var(--gold); }
  .cat-grid{
    display:grid; grid-template-columns:repeat(2, 1fr); gap:22px;
  }
  .cat-card{
    position: relative;
    background:rgba(246,240,222,0.05);
    border:1px solid rgba(246,240,222,0.12);
    border-radius:var(--radius);
    padding:30px 26px;
    transition:transform .25s ease, background .25s ease, border-color .25s ease;
  }
  .cat-card:hover{
    transform:translateY(-6px);
    background:rgba(246,240,222,0.09);
    border-color:var(--gold);
  }
  .card-arrow {
    width: 25px;
    height: 25px;
    filter: brightness(0) invert(1);
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.25rem;
    color: rgba(246, 240, 222, 0.4);
    transition: transform 0.25s ease, color 0.25s ease;
  }
  .cat-card:hover .card-arrow {
    transform: translate(3px, -3px);
    color: var(--gold);
  }
  .ico-img-container {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--forest-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  .cat-ico-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  .cat-card:hover .cat-ico-img {
    transform: scale(1.15);
  }
  .cat-card h3{ font-size:1.12rem; margin-bottom:8px; color:var(--cream); }
  .cat-card p{ font-size:0.9rem; color:rgba(246,240,222,0.66); line-height:1.55; }

  /* ---------- MODAIS E HOVER DE ESPÉCIES ---------- */
  .modal-trigger {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .modal-trigger:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
  }

  .catalog-modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 42, 27, 0.85);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(4px);
  }
  .catalog-modal.active {
    opacity: 1;
    pointer-events: auto;
  }
  
  .catalog-modal-content {
    background: var(--cream);
    width: 90%;
    max-width: 900px;
    max-height: 85vh;
    border-radius: var(--radius);
    padding: 40px;
    position: relative;
    overflow-y: auto;
    transform: translateY(20px);
    transition: transform 0.4s ease;
  }
  .catalog-modal.active .catalog-modal-content {
    transform: translateY(0);
  }

  .close-modal {
    position: absolute;
    top: 20px; right: 25px;
    background: none; border: none;
    font-size: 2.5rem;
    color: var(--forest);
    cursor: pointer;
    line-height: 1;
  }
  
  .list-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(15, 42, 27, 0.1);
  }
  .list-card-header h3 {
    font-size: 1.8rem;
    color: var(--forest-deep);
  }
  .modal-ico-img-container {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--forest-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(15, 42, 27, 0.15);
  }
  .modal-ico-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* ---------- LISTA DE ESPÉCIES ---------- */
  .species-list {
    list-style: none;
    margin-top: 15px;
  }
  .species-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: var(--forest);
    cursor: pointer;
    transition: color 0.2s, transform 0.2s;
    display: inline-block;
    width: 100%;
    page-break-inside: avoid;
    break-inside: avoid;
  }
  .species-list li a {
    display: block;
  }
  .species-list li::before {
    content: '•';
    color: var(--gold);
    position: absolute;
    left: 0;
    top: -2px;
    font-size: 1.4rem;
  }
  .species-list li:hover {
    color: var(--gold);
    transform: translateX(4px);
  }

  /* PREVIEW DE FOTOS DAS MUDAS - IMPLEMENTAR FUTURAMENTE
  .hover-preview-container {
    position: fixed;
    z-index: 1050;
    width: 220px;
    height: 180px;
    overflow: hidden;
    background: var(--cream);
    border: 3px solid var(--cream-2);
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(15, 42, 27, 0.25);
  }

  .hover-preview-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hover-preview-container.show {
    display: block;
  }
  */

  .col-2 { column-count: 2; column-gap: 40px; }
  .col-4 { column-count: 4; column-gap: 30px; }
  @media (max-width: 920px) {
    .col-4 { column-count: 2; }
    .col-2 { column-count: 1; }
  }
  @media (max-width: 560px) {
    .col-4 { column-count: 1; }
  }

  /* ---------- DIFERENCIAIS ---------- */
  .diff{ background:var(--cream-2); }
  .diff-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:36px; }
  .diff-item{ text-align:center; padding:0 14px; }
  .diff-ico-container {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--forest);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid var(--sage);
  }
  .diff-ico-img {
    background-color: #F6F0DE;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    transition: transform 0.3s ease;
  }
  .diff-item:hover .diff-ico-img {
    transform: scale(1.15);
  }
  .diff-item h3{ font-size:1.15rem; color:var(--forest-deep); margin-bottom:10px; }
  .diff-item p{ font-size:0.94rem; color:#4B5A4E; line-height:1.6; }

  /* ---------- GALLERY ---------- */
  .gallery{ background:var(--cream); }
  .gal-grid{
    display:grid; grid-template-columns:repeat(4, 1fr); grid-auto-rows:150px; gap:18px;
  }
  .gal-item{
    border-radius:14px; position:relative; overflow:hidden;
    display:flex; align-items:flex-end; padding:16px;
    color:var(--cream); font-weight:600; font-size:0.92rem;
  }
  .gal-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.3s ease, filter 0.3s ease;
  }
  .gal-item video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  .video-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 2px;
    background: rgba(15, 42, 27, 0.85);
    color: var(--cream);
    border: 2px solid var(--cream);
    font-size: 0.85rem;
  }
  .gal-item::before{ content:''; position:absolute; inset:0; opacity:0.3; z-index:1; transition:opacity .3s; }
  .gal-item:hover::before{ opacity:0.1; }
  .g1{ grid-column:span 2; grid-row:span 2; }
  .g1::before{ background:linear-gradient(135deg,#2C5E3C,#0F2A1B); }
  .g2::before{ background:linear-gradient(135deg,#94AC7B,#4A6640); }
  .g3::before{ background:linear-gradient(135deg,#D6A03D,#8C6A24); }
  .g4::before{ background:linear-gradient(135deg,#4A3728,#2B1F17); }
  .g6::before{ background:linear-gradient(135deg,#4A3728,#2B1F17); }
  .g5{ grid-column:span 2; }
  .g5::before{ background:linear-gradient(135deg,#1D4A2E,#94AC7B); }

  /* Slot "Mais" Borrado na Galeria */
  .g-more {
    cursor: pointer;
    background: linear-gradient(135deg, rgba(15, 42, 27, 0.7), rgba(74, 55, 40, 0.7));
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .g-more img {
    filter: blur(6px);
    opacity: 0.35;
    transform: scale(1.08);
  }
  .g-more-content {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    gap: 4px;
  }
  .g-more-content .plus-icon {
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: 500;
    line-height: 1;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
  }
  .g-more-content span {
    font-family: 'Fraunces', serif;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
  }
  .g-more:hover img {
    transform: scale(1.15);
    filter: blur(8px);
    opacity: 0.25;
  }
  .g-more:hover .plus-icon {
    transform: scale(1.2) rotate(90deg);
  }

  /* Grid de Imagens dentro do Modal da Galeria */
  .modal-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    object-fit: contain;
  }
  .modal-gallery-item {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(15, 42, 27, 0.08);
    border: 0;
    background: transparent;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .modal-gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(15, 42, 27, 0.15);
  }
  .modal-gallery-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
  }
  .modal-gallery-item video {
    width: 100%;
    height: 160px;
    object-fit: cover;
    background: #12271A;
  }
  .modal-gallery-item span {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--forest-deep);
    text-align: center;
    padding: 0 10px;
  }
  .gallery-photo-placeholder {
    height: 160px;
    background: linear-gradient(135deg, var(--cream-2), var(--cream));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--forest-soft);
    gap: 8px;
  }
  .gallery-photo-placeholder svg {
    color: var(--sage);
    transition: transform 0.3s ease;
  }
  .modal-gallery-item:hover .gallery-photo-placeholder svg {
    transform: translateY(-2px);
  }
  .gallery-photo-placeholder span {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--forest-soft);
  }

  /* ---------- TESTIMONIAL ---------- */
  .quote-sec{ background:var(--forest); color:var(--cream); text-align:center; }
  .review-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
  }
  .review-stars {
    color: var(--gold);
    font-size: 1.35rem;
    letter-spacing: 3px;
  }
  .google-source {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(246,240,222,0.82);
    font-size: 0.9rem;
    font-weight: 600;
  }
  .google-logo {
    font-family: Arial, sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1;
    background: conic-gradient(from -45deg, #4285F4 0 25%, #34A853 25% 43%, #FBBC05 43% 68%, #EA4335 68% 84%, #4285F4 84% 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .quote-sec blockquote{
    max-width:720px; margin:0 auto; font-family:'Fraunces',serif; font-weight:500; font-style:italic;
    font-size:clamp(1.3rem, 2.4vw, 1.9rem); line-height:1.5;
  }
  .quote-sec cite{
    display:block; margin-top:28px; font-style:normal; font-size:0.9rem;
    color:var(--sage); font-weight:600; letter-spacing:0.04em;
  }

  /* ---------- CONTACT ---------- */
  .contact{ background:var(--forest-deep); color:var(--cream); }
  .contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
  .contact h2{ color:var(--cream); font-size:clamp(1.9rem,3.4vw,2.5rem); margin-bottom:18px; }
  .contact p{ color:rgba(246,240,222,0.75); line-height:1.7; margin-bottom:30px; max-width:44ch; }
  .contact-info{ display:grid; gap:18px; margin-bottom:32px; }
  .contact-info div{ display:flex; gap:14px; align-items:flex-start; font-size:0.95rem; }
  .contact-location-link{ align-items:flex-start; }
  .contact-phone-link{
    display:flex;
    align-items:center;
    gap:8px;
    color:inherit;
  }
  .contact-phone-link:hover{
    color:var(--gold);
  }
  .contact-info .ico{
    width:38px; height:38px; border-radius:10px; background:rgba(246,240,222,0.08);
    display:flex; align-items:center; justify-content:center; flex:none;
  }
  .contact-info .ico svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
  }
  .contact-card{
    background:var(--cream); color:var(--ink); border-radius:var(--radius);
    padding:40px; box-shadow:0 30px 60px -20px rgba(0,0,0,0.5);
  }
  .contact-card h3{ font-family:'Fraunces',serif; font-size:1.4rem; margin-bottom:8px; color:var(--forest-deep); }
  .contact-card p{ color:#5A6B57; font-size:0.92rem; margin-bottom:24px; }
  .field{ margin-bottom:16px; }
  .field label{ display:block; font-size:0.82rem; font-weight:600; margin-bottom:6px; color:#3B4A38; }
  .field input, .field textarea{
    width:100%; padding:12px 14px; border-radius:10px; border:1px solid #D8D0B4;
    background:#FBF8ED; font-family:inherit; font-size:0.94rem; color:var(--ink);
  }
  .field textarea{ resize:vertical; min-height:80px; }
  .contact-card .btn{ width:100%; justify-content:center; margin-top:6px; }

  /* ---------- FOOTER ---------- */
  /* ---------- FOOTER ---------- */
  footer {
    background: var(--soil);
    color: rgba(246, 240, 222, 0.75);
    padding: 60px 0 30px;
    border-top: 4px solid var(--gold);
  }
  .footer-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
  }
  .footer-brand {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .footer-logo-text {
    font-family: 'Fraunces', serif;
    font-size: 1.6rem;
    color: var(--cream);
    font-weight: 600;
  }
  .footer-logo-text span {
    font-family: 'Work Sans', sans-serif;
    color: var(--gold);
    font-weight: 500;
    font-size: 0.85rem;
    display: block;
    margin-top: 2px;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  .footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(246, 240, 222, 0.8);
  }
  .footer-socials {
    display: flex;
    gap: 16px;
    margin-top: 8px;
  }
  .footer-socials .social-icon {
    color: var(--cream);
    background: rgba(246, 240, 222, 0.08);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
  }
  .footer-socials .social-icon:hover {
    background: var(--gold);
    color: var(--forest-deep);
    transform: translateY(-3px);
  }
  .foot-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(246, 240, 222, 0.12);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.82rem;
    color: rgba(246, 240, 222, 0.5);
  }
  .policy-link {
    color: rgba(246, 240, 222, 0.6);
    text-decoration: underline;
    transition: color 0.2s ease;
  }
  .policy-link:hover {
    color: var(--gold);
  }
  .site-credit {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding-top: 4px;
    text-align: center;
  }
  .site-credit-label {
    margin-bottom: 8px;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(246, 240, 222, 0.6);
  }
  .site-credit-link {
    display: block;
    width: min(150px, 42vw);
    line-height: 0;
  }
  .site-credit-link img {
    display: block;
    justify-content: center;
    justify-items: center;
    margin-left: 26px;
    width: 55%;
    height: auto;
    opacity: 0.72;
    filter: invert(1);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .site-credit-link[href]:hover img {
    opacity: 1;
    transform: scale(1.03);
  }

  /* ---------- LIGHTBOX DA GALERIA ---------- */
  .lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 42, 27, 0.95);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .lightbox.active {
    display: flex;
    opacity: 1;
  }
  .lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    border: 0;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transform: scale(0.95);
    transition: transform 0.3s ease;
  }
  .lightbox-content[hidden] {
    display: none;
  }
  .lightbox.active .lightbox-content {
    transform: scale(1);
  }
  .lightbox-nav {
    position: absolute;
    top: 50%;
    z-index: 1;
    display: grid;
    width: 64px;
    height: 76px;
    place-items: center;
    padding: 0;
    color: var(--cream);
    background: transparent;
    border: 0;
    cursor: pointer;
    transform: translateY(-50%);
    transition: color 0.2s ease, transform 0.2s ease;
  }
  .lightbox-nav svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .lightbox-prev { left: 28px; }
  .lightbox-next { right: 28px; }
  .lightbox-nav:hover {
    color: var(--gold);
    transform: translateY(-50%) scale(1.06);
  }
  .close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--cream);
    font-size: 3.5rem;
    font-weight: 200;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease, transform 0.2s ease;
    user-select: none;
  }
  .close-lightbox:hover {
    color: var(--gold);
    transform: scale(1.1);
  }
  @media (max-width: 768px) {
    .close-lightbox {
      top: 20px;
      right: 25px;
      font-size: 2.8rem;
    }
    .lightbox-nav {
      width: 64px;
      height: 76px;
      color: #fff;
      background: transparent;
      border: 0;
    }
    .lightbox-nav svg {
      width: 38px;
      height: 38px;
      stroke-width: 2;
      filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.85));
    }
    .lightbox-prev { left: 12px; }
    .lightbox-next { right: 12px; }
  }

  /* fade-up reveal */
  .reveal{ opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease; }
  .reveal.in-view{ opacity:1; transform:translateY(0); }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 920px){
    .vine-svg{ display:none; }
    .burger { display: flex; }
    .nav-links {
      display: none;
      flex-direction: column;
      position: fixed;
      top: 0;
      right: 0;
      width: 280px;
      height: 100vh;
      background: var(--forest-deep);
      padding: 100px 40px;
      gap: 24px;
      box-shadow: -10px 0 30px rgba(15, 42, 27, 0.3);
      z-index: 1000;
    }
    .nav-links.active {
      display: flex;
    }
    .nav-links a {
      font-size: 1.15rem;
      font-weight: 600;
    }
    .burger.active span:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }
    .burger.active span:nth-child(2) {
      opacity: 0;
    }
    .burger.active span:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }
    .hero-grid, .contact-grid{ grid-template-columns:1fr; }
    .hero-art{ order:-1; max-width:340px; margin:0 auto; }
    .list-grid, .cat-grid, .diff-grid{ grid-template-columns:repeat(2,1fr); }
    .col-4 { column-count: 2; }
    .col-2 { column-count: 1; }
    .gal-grid{ grid-template-columns:repeat(2,1fr); }
    .g1{ grid-column:span 2; }
    .g5{ grid-column:span 2; }
    .g-more{ grid-column:span 2; }
  }
  .btn-gold{ 
  white-space: nowrap;
}
  @media (max-width: 560px){
    .wrap{ padding:0 20px; }
    section{ padding:70px 0; }
    .list-grid, .cat-grid, .diff-grid{ grid-template-columns:1fr; }
    .cat-grid { gap: 16px; }
    .cat-card {
      width: 100%;
      box-sizing: border-box;
      padding: 24px 20px;
    }
    .col-4 { column-count: 1; }
    .hero-stats{ gap:24px; }
    .nav-cta .btn-ghost{ display:none; }
    .catalog-modal-content {
      width: 95%;
      padding: 24px 16px;
      max-height: 90vh;
    }
    .modal-gallery-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }
    .modal-gallery-item img {
      height: 140px;
    }
    .list-card-header {
      margin-bottom: 16px;
      padding-bottom: 12px;
    }
    .close-modal {
      top: 12px;
      right: 16px;
      font-size: 2rem;
    }
    .contact-card {
      padding: 24px 20px;
    }
    .foot-bottom {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 8px;
    }
    .site-credit-link {
      width: min(150px, 60vw);
      margin-inline: auto;
    }
  }
