/*
Theme Name: GV Design
Theme URI: https://www.gianlucavagnozzi.com
Author: Gianluca Vagnozzi
Description: Tema custom minimal elegante — logo sigillo, homepage modulare, portfolio, shop
Version: 5.0
Requires PHP: 7.4
*/

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --bg:        #F3F0EA;
  --bg-dark:   #0F0F0F;
  --ink:       #181818;
  --muted:     #6B6560;
  --accent:    #C9A96E;
  --surface:   #ECEAE3;
  --border:    #E0DDD6;
  --white:     #FAF9F7;
  --green:     #2D9E6B;
  --font-d:    'Playfair Display', serif;
  --font-b:    'Outfit', sans-serif;
  --ease:      cubic-bezier(.25,.46,.45,.94);
  --nav-h:     72px;
  --seal-drop: 16px;
  --r:         4px;
}

/* ============================================================
   RESET
   ============================================================ */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; font-size:16px; }
body { background:var(--bg); color:var(--ink); font-family:var(--font-b); font-weight:400; line-height:1.6; overflow-x:hidden; cursor:none; }
img  { display:block; max-width:100%; height:auto; }
a    { color:inherit; text-decoration:none; }
ul   { list-style:none; }

/* ============================================================
   CURSOR
   ============================================================ */
.gv-cursor { position:fixed; top:0; left:0; pointer-events:none; z-index:9999; }
.gv-cursor-dot  { position:absolute; width:8px; height:8px; background:var(--ink); border-radius:50%; transform:translate(-50%,-50%); transition:width .2s,height .2s,background .2s; }
.gv-cursor-ring { position:absolute; width:38px; height:38px; border:1.5px solid var(--ink); border-radius:50%; transform:translate(-50%,-50%); opacity:.2; transition:all .35s var(--ease); }
body.gv-hov .gv-cursor-dot  { width:5px; height:5px; background:var(--accent); }
body.gv-hov .gv-cursor-ring { width:56px; height:56px; opacity:.1; border-color:var(--accent); }

/* ============================================================
   SIPARIO
   ============================================================ */
.gv-sip { position:fixed; top:0; bottom:0; width:50%; z-index:7000; background:var(--bg-dark); }
#gvSipL { left:0; }
#gvSipR { right:0; }

/* ============================================================
   NAV
   ============================================================ */
.gv-nav {
  position:fixed; top:0; left:0; right:0; z-index:200;
  height:var(--nav-h);
  display:flex; align-items:center; justify-content:space-between;
  padding:0 64px;
  background:rgba(243,240,234,.97);
  backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px);
  border-bottom:1px solid var(--border);
  overflow:visible;
  transition:box-shadow .3s;
}
.gv-nav.scrolled { box-shadow:0 4px 40px rgba(0,0,0,.06); }

/* Sigillo logo */
.gv-logo {
  display:flex; align-items:center; gap:14px; cursor:none;
  margin-bottom:calc(-1 * var(--seal-drop));
  align-self:flex-end;
  padding-bottom:var(--seal-drop);
  position:relative; z-index:201;
  text-decoration:none;
}
.gv-seal {
  width:56px;
  height:calc(var(--nav-h) + var(--seal-drop));
  background:var(--bg-dark);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
  box-shadow:inset 0 0 0 1.5px rgba(201,169,110,.3);
  transition:height .3s;
  overflow:hidden;
}
.gv-nav.scrolled .gv-seal { height:calc(var(--nav-h) + 6px); }
.gv-seal-text {
  font-family:var(--font-d); font-size:20px; font-weight:900; font-style:italic;
  color:var(--accent); line-height:1; user-select:none;
}
.gv-logo-img { display:block; object-fit:contain; object-position:center; padding:8px 6px; }
.gv-logo-name { font-family:var(--font-d); font-size:20px; font-weight:700; color:var(--ink); }
.gv-logo-name span { color:var(--accent); }

/* Links desktop */
.gv-nav-links { display:flex; align-items:center; }
.gv-nav-links li a {
  display:block; padding:8px 16px;
  font-size:13px; font-weight:500; letter-spacing:.05em; color:var(--muted);
  cursor:none; transition:color .2s; position:relative;
}
.gv-nav-links li a::after {
  content:''; position:absolute; bottom:4px; left:16px; right:16px;
  height:1px; background:var(--accent);
  transform:scaleX(0); transition:transform .25s var(--ease); transform-origin:left;
}
.gv-nav-links li a:hover { color:var(--ink); }
.gv-nav-links li a:hover::after { transform:scaleX(1); }

/* CTA + hamburger */
.gv-nav-right { display:flex; align-items:center; gap:14px; }
.gv-nav-cta {
  padding:10px 22px; background:var(--ink); color:var(--white);
  font-size:11px; font-weight:600; letter-spacing:.09em; text-transform:uppercase;
  cursor:none; border:2px solid var(--ink); transition:all .25s; white-space:nowrap;
}
.gv-nav-cta:hover { background:var(--accent); border-color:var(--accent); }
.gv-burger {
  display:none; flex-direction:column; justify-content:center; align-items:center;
  gap:5px; width:44px; height:44px; background:transparent; border:none; cursor:pointer; padding:4px;
}
.gv-burger span { display:block; width:24px; height:1.5px; background:var(--ink); transition:all .3s var(--ease); }

/* Mobile menu overlay */
.gv-mobile-menu {
  position:fixed; inset:0; z-index:500;
  background:rgba(15,15,15,.5); backdrop-filter:blur(4px);
  opacity:0; pointer-events:none; transition:opacity .35s ease;
}
.gv-mobile-menu.open { opacity:1; pointer-events:auto; }
.gv-mobile-inner {
  position:absolute; top:0; right:0; width:min(320px,85vw); height:100%;
  background:var(--bg-dark); display:flex; flex-direction:column; padding:48px 36px;
  transform:translateX(100%); transition:transform .4s cubic-bezier(.76,0,.24,1);
}
.gv-mobile-menu.open .gv-mobile-inner { transform:translateX(0); }
.gv-mobile-close {
  position:absolute; top:20px; right:20px;
  background:none; border:none; color:rgba(255,255,255,.35); font-size:20px; cursor:pointer; padding:8px;
}
.gv-mobile-close:hover { color:var(--white); }
.gv-mobile-nav { display:flex; flex-direction:column; flex:1; margin-top:28px; }
.gv-mobile-nav a {
  font-family:var(--font-d); font-size:30px; font-weight:700; font-style:italic;
  color:rgba(255,255,255,.6); padding:13px 0;
  border-bottom:1px solid rgba(255,255,255,.07);
  transition:color .2s,padding-left .2s;
}
.gv-mobile-nav a:hover { color:var(--accent); padding-left:8px; }
.gv-mobile-cta {
  display:block; margin-top:36px; padding:15px 28px;
  background:var(--accent); color:var(--bg-dark);
  font-size:11px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; text-align:center;
  transition:opacity .2s;
}
.gv-mobile-cta:hover { opacity:.85; }
.gv-mobile-social { display:flex; gap:10px; margin-top:28px; }
.gv-mobile-social a {
  width:36px; height:36px; border:1px solid rgba(255,255,255,.15);
  display:flex; align-items:center; justify-content:center;
  font-size:11px; font-weight:700; color:rgba(255,255,255,.45);
  transition:all .2s;
}
.gv-mobile-social a:hover { border-color:var(--accent); color:var(--accent); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-dark   { display:inline-flex; align-items:center; gap:8px; padding:15px 36px; background:var(--ink); color:var(--white); font-size:12px; font-weight:600; letter-spacing:.1em; text-transform:uppercase; cursor:none; border:2px solid var(--ink); transition:all .25s; }
.btn-dark:hover { background:var(--accent); border-color:var(--accent); }
.btn-outline { display:inline-flex; align-items:center; gap:8px; padding:15px 36px; background:transparent; color:var(--ink); font-size:12px; font-weight:600; letter-spacing:.1em; text-transform:uppercase; cursor:none; border:2px solid var(--border); transition:border-color .2s; }
.btn-outline:hover { border-color:var(--ink); }
.btn-accent { display:inline-flex; align-items:center; gap:8px; padding:16px 44px; background:var(--accent); color:var(--bg-dark); font-size:12px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; cursor:none; border:2px solid var(--accent); transition:all .25s; }
.btn-accent:hover { background:transparent; color:var(--accent); }
.btn-ghost { font-size:11px; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:var(--muted); cursor:none; display:inline-flex; align-items:center; gap:8px; transition:color .2s; border-bottom:1px solid var(--border); padding-bottom:3px; }
.btn-ghost::after { content:'→'; transition:transform .2s; }
.btn-ghost:hover { color:var(--ink); border-color:var(--ink); }
.btn-ghost:hover::after { transform:translateX(4px); }

/* ============================================================
   HERO — diviso a metà, foto a destra
   ============================================================ */
.gv-hero {
  min-height:100vh;
  display:grid;
  grid-template-columns:52% 48%;
  padding-top:var(--nav-h);
  overflow:hidden;
  position:relative;
}

/* Lato sinistro */
.gv-hero-left {
  display:flex; flex-direction:column; justify-content:center;
  padding:80px 64px;
  position:relative;
}
.gv-hero-tag {
  font-size:11px; font-weight:600; letter-spacing:.2em; text-transform:uppercase;
  color:var(--accent); display:flex; align-items:center; gap:14px; margin-bottom:40px;
}
.gv-hero-tag::before { content:''; width:32px; height:1.5px; background:var(--accent); flex-shrink:0; }
.gv-hero-h1 {
  font-family:var(--font-d); font-size:clamp(48px,5.5vw,88px);
  font-weight:900; line-height:.96; letter-spacing:-.03em;
}
.gv-hero-h1 .it { display:block; font-weight:400; font-style:italic; color:var(--muted); }
.gv-hero-h1 .bd { display:block; color:var(--ink); }
.gv-hero-desc { max-width:400px; font-size:16px; line-height:1.75; color:var(--muted); margin-top:36px; margin-bottom:48px; }
.gv-hero-btns { display:flex; align-items:center; gap:18px; flex-wrap:wrap; }
.gv-hero-sig {
  display:flex; align-items:center; gap:12px;
  margin-top:64px; padding-top:36px; border-top:1px solid var(--border);
}
.gv-hero-sig-line { width:28px; height:1px; background:var(--accent); }
.gv-hero-sig-text { font-size:11px; font-weight:500; letter-spacing:.12em; text-transform:uppercase; color:var(--muted); }

/* Lato destro — foto o colore scuro */
.gv-hero-right {
  background:var(--bg-dark);
  position:relative; overflow:hidden;
}
.gv-hero-photo {
  width:100%; height:100%;
  object-fit:cover; object-position:center top;
  display:block;
}
/* Se non c'è foto — sfondo decorativo */
.gv-hero-mono {
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  font-family:var(--font-d); font-size:clamp(180px,22vw,340px);
  font-weight:900; font-style:italic; color:transparent;
  -webkit-text-stroke:1px rgba(255,255,255,.05);
  line-height:1; letter-spacing:-.06em; user-select:none;
}
.gv-hero-badge {
  position:absolute; bottom:40px; right:40px;
  width:100px; height:100px;
  animation:gv-spin 20s linear infinite;
}
.gv-hero-badge-dot {
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:7px; height:7px; background:var(--accent); border-radius:50%;
}
.gv-hero-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to right, rgba(15,15,15,.1) 0%, transparent 40%);
  pointer-events:none;
}

/* ============================================================
   PORTFOLIO
   ============================================================ */
.gv-works { padding:120px 64px; }
.gv-works-head {
  display:flex; align-items:flex-end; justify-content:space-between;
  margin-bottom:52px; flex-wrap:wrap; gap:20px;
}
.gv-section-tag {
  font-size:11px; font-weight:600; letter-spacing:.2em; text-transform:uppercase;
  color:var(--accent); display:flex; align-items:center; gap:12px; margin-bottom:16px;
}
.gv-section-tag::before { content:''; width:24px; height:1.5px; background:var(--accent); }
.gv-section-title {
  font-family:var(--font-d); font-size:clamp(32px,4vw,56px);
  font-weight:700; line-height:1.05; letter-spacing:-.025em;
}
.gv-section-title em { font-style:italic; font-weight:400; color:var(--muted); }
.gv-works-grid {
  display:grid;
  grid-template-columns:1.4fr 1fr;
  grid-template-rows:auto auto;
  gap:10px;
}
.gv-work-item { position:relative; overflow:hidden; background:var(--surface); cursor:none; }
.gv-work-item:nth-child(1) { grid-row:span 2; aspect-ratio:3/4; }
.gv-work-item:nth-child(2),.gv-work-item:nth-child(3) { aspect-ratio:4/3; }
.gv-work-item:nth-child(4) { grid-column:span 2; aspect-ratio:21/9; }
.gv-work-img { width:100%; height:100%; object-fit:cover; transition:transform .7s var(--ease); display:block; min-height:180px; }
.gv-work-ph {
  width:100%; min-height:180px;
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-d); font-style:italic; font-size:13px; color:var(--border);
  background:linear-gradient(135deg,var(--surface) 0%,#d8d5ce 100%);
  transition:transform .7s var(--ease);
}
.gv-work-item:hover .gv-work-img,
.gv-work-item:hover .gv-work-ph { transform:scale(1.04); }
.gv-work-over {
  position:absolute; inset:0;
  background:rgba(15,15,15,0);
  display:flex; flex-direction:column; justify-content:flex-end;
  padding:24px 28px; transition:background .4s;
}
.gv-work-item:hover .gv-work-over { background:rgba(15,15,15,.78); }
.gv-work-info { opacity:0; transform:translateY(10px); transition:all .35s .04s; }
.gv-work-item:hover .gv-work-info { opacity:1; transform:translateY(0); }
.gv-work-cat { font-size:10px; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:var(--accent); margin-bottom:5px; }
.gv-work-name { font-family:var(--font-d); font-size:20px; font-weight:700; color:var(--white); line-height:1.15; }
.gv-work-year { font-size:11px; color:rgba(255,255,255,.35); margin-top:4px; }

/* ============================================================
   STATS + TESTIMONIANZE
   ============================================================ */
.gv-mid { display:grid; grid-template-columns:1fr 1fr; min-height:500px; }

/* Statistiche — sfondo scuro */
.gv-stats {
  background:var(--bg-dark);
  padding:100px 64px;
  display:flex; flex-direction:column; justify-content:center;
}
.gv-stats-grid { display:grid; grid-template-columns:1fr 1fr; gap:48px 32px; margin-top:48px; }
.gv-stat-n {
  font-family:var(--font-d); font-size:clamp(48px,5vw,72px);
  font-weight:900; line-height:1; color:var(--accent);
}
.gv-stat-l { font-size:13px; font-weight:500; color:rgba(255,255,255,.4); margin-top:6px; letter-spacing:.04em; }

/* Testimonianze — sfondo chiaro */
.gv-testimonials {
  background:var(--surface);
  padding:100px 64px;
  display:flex; flex-direction:column; justify-content:center;
}
.gv-testi-list { display:flex; flex-direction:column; gap:40px; margin-top:48px; }
.gv-testi {
  padding:28px 32px;
  background:var(--white); border:1px solid var(--border); border-radius:var(--r);
  position:relative;
}
.gv-testi::before {
  content:'"'; position:absolute; top:-16px; left:24px;
  font-family:var(--font-d); font-size:72px; line-height:1;
  color:var(--accent); opacity:.25; user-select:none;
}
.gv-testi-text { font-size:15px; line-height:1.75; color:var(--muted); font-style:italic; }
.gv-testi-author { margin-top:16px; display:flex; align-items:center; gap:10px; }
.gv-testi-name { font-size:13px; font-weight:700; color:var(--ink); }
.gv-testi-role { font-size:12px; color:var(--muted); }
.gv-testi-sep { width:1px; height:14px; background:var(--border); }

/* ============================================================
   CTA
   ============================================================ */
.gv-cta {
  background:var(--bg-dark);
  padding:140px 64px;
  display:flex; align-items:center; justify-content:space-between;
  gap:48px; flex-wrap:wrap; position:relative; overflow:hidden;
}
.gv-cta-bg {
  position:absolute; right:-24px; top:50%; transform:translateY(-50%);
  font-family:var(--font-d); font-size:clamp(100px,18vw,240px);
  font-weight:900; font-style:italic; color:transparent;
  -webkit-text-stroke:1px rgba(255,255,255,.04);
  user-select:none; pointer-events:none; line-height:1;
}
.gv-cta-left { position:relative; z-index:1; }
.gv-cta-tag { font-size:11px; font-weight:600; letter-spacing:.2em; text-transform:uppercase; color:var(--accent); display:flex; align-items:center; gap:12px; margin-bottom:24px; }
.gv-cta-tag::before { content:''; width:24px; height:1.5px; background:var(--accent); }
.gv-cta-h { font-family:var(--font-d); font-size:clamp(32px,4.5vw,64px); font-weight:700; line-height:1.05; letter-spacing:-.02em; color:var(--white); }
.gv-cta-h em { font-style:italic; font-weight:400; color:rgba(255,255,255,.28); }
.gv-cta-right { position:relative; z-index:1; display:flex; flex-direction:column; gap:18px; align-items:flex-start; }
.gv-cta-sub { font-size:15px; line-height:1.65; color:rgba(255,255,255,.4); max-width:340px; }

/* ============================================================
   FOOTER
   ============================================================ */
.gv-footer { background:var(--bg-dark); color:var(--white); padding:72px 64px 36px; }
.gv-footer-top {
  display:flex; align-items:center; justify-content:space-between;
  flex-wrap:wrap; gap:32px;
  padding-bottom:52px; border-bottom:1px solid rgba(255,255,255,.08);
}
.gv-footer-logo { font-family:var(--font-d); font-size:22px; font-weight:700; color:var(--white); }
.gv-footer-logo span { color:var(--accent); }
.gv-footer-nav { display:flex; gap:24px; flex-wrap:wrap; }
.gv-footer-nav a { font-size:13px; font-weight:500; color:rgba(255,255,255,.35); cursor:none; transition:color .2s; }
.gv-footer-nav a:hover { color:var(--white); }
.gv-footer-social { display:flex; gap:8px; }
.gv-fsoc {
  width:38px; height:38px;
  border:1px solid rgba(255,255,255,.2);
  display:flex; align-items:center; justify-content:center;
  font-size:12px; font-weight:700; color:var(--white); cursor:none; transition:all .2s;
}
.gv-fsoc:hover { border-color:var(--accent); color:var(--accent); }
.gv-footer-legal {
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap:14px;
  padding:24px 0; border-bottom:1px solid rgba(255,255,255,.06); margin:0 0 28px;
}
.gv-footer-legal-links { display:flex; gap:20px; flex-wrap:wrap; }
.gv-footer-legal-links a { font-size:10px; font-weight:500; letter-spacing:.07em; text-transform:uppercase; color:rgba(255,255,255,.2); transition:color .2s; }
.gv-footer-legal-links a:hover { color:rgba(255,255,255,.55); }
.gv-footer-piva { font-size:10px; font-weight:500; letter-spacing:.07em; text-transform:uppercase; color:rgba(255,255,255,.2); }
.gv-footer-bottom { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:10px; }
.gv-footer-copy { font-size:11px; font-weight:500; letter-spacing:.06em; text-transform:uppercase; color:rgba(255,255,255,.18); }

/* ============================================================
   PAGINE INTERNE
   ============================================================ */
.gv-page-header { padding:calc(var(--nav-h) + 80px) 64px 64px; border-bottom:1px solid var(--border); }
.gv-page-title { font-family:var(--font-d); font-size:clamp(44px,5.5vw,80px); font-weight:700; line-height:1.0; letter-spacing:-.025em; }
.gv-page-title em { font-style:italic; font-weight:400; color:var(--muted); }
.gv-portfolio-filters { display:flex; gap:4px; margin-top:36px; flex-wrap:wrap; }
.gv-filter { padding:8px 20px; font-size:11px; font-weight:600; letter-spacing:.09em; text-transform:uppercase; border:1.5px solid var(--border); background:transparent; color:var(--muted); cursor:none; transition:all .2s; }
.gv-filter.active,.gv-filter:hover { background:var(--ink); color:var(--white); border-color:var(--ink); }
.gv-portfolio-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; padding:48px 64px 120px; }
.gv-portfolio-grid .gv-work-item { aspect-ratio:4/3; }

/* About */
.gv-about { display:grid; grid-template-columns:1fr 1fr; min-height:80vh; }
.gv-about-img { background:var(--surface); position:relative; overflow:hidden; min-height:500px; display:flex; align-items:center; justify-content:center; }
.gv-about-img-tag { position:absolute; top:40px; left:0; background:var(--accent); color:var(--bg-dark); font-size:10px; font-weight:700; letter-spacing:.18em; text-transform:uppercase; padding:8px 18px; }
.gv-about-content { padding:100px 60px; display:flex; flex-direction:column; justify-content:center; }
.gv-about-h { font-family:var(--font-d); font-size:clamp(32px,3.8vw,56px); font-weight:700; line-height:1.1; letter-spacing:-.02em; margin-bottom:28px; margin-top:20px; }
.gv-about-h em { font-style:italic; font-weight:400; color:var(--muted); }
.gv-about-body { font-size:16px; line-height:1.8; color:var(--muted); margin-bottom:44px; }

/* Servizi */
.gv-services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; padding:0 64px 120px; }
.gv-service-card { padding:52px 40px; background:var(--bg-dark); border:1px solid rgba(255,255,255,.07); display:flex; flex-direction:column; transition:background .3s; cursor:none; }
.gv-service-card:hover { background:#1a1a1a; }
.gv-sc-num { font-family:var(--font-d); font-size:11px; font-weight:700; letter-spacing:.2em; color:var(--accent); margin-bottom:36px; }
.gv-sc-name { font-family:var(--font-d); font-size:28px; font-weight:700; color:var(--white); line-height:1.15; margin-bottom:14px; }
.gv-sc-desc { font-size:14px; line-height:1.75; color:rgba(255,255,255,.4); flex:1; }
.gv-sc-price { margin-top:28px; font-size:12px; font-weight:600; letter-spacing:.08em; text-transform:uppercase; color:var(--accent); }

/* Prenota */
.gv-calendly { display:grid; grid-template-columns:1fr 1fr; min-height:calc(100vh - var(--nav-h)); }
.gv-cal-left { background:var(--bg-dark); padding:100px 60px; display:flex; flex-direction:column; justify-content:center; }
.gv-cal-h { font-family:var(--font-d); font-size:clamp(32px,3.8vw,56px); font-weight:700; line-height:1.1; color:var(--white); margin-bottom:20px; margin-top:20px; }
.gv-cal-h em { font-style:italic; font-weight:400; color:rgba(255,255,255,.3); }
.gv-cal-sub { font-size:15px; line-height:1.7; color:rgba(255,255,255,.4); margin-bottom:44px; }
.gv-cal-right { background:var(--bg-dark); display:flex; align-items:stretch; }
.gv-cal-right .calendly-inline-widget { flex:1; min-height:650px; }

/* Pagina generica */
.gv-main-content { padding:calc(var(--nav-h) + 80px) 64px 120px; max-width:860px; }
.gv-main-content h1 { font-family:var(--font-d); font-size:clamp(32px,4.5vw,60px); font-weight:700; line-height:1.05; letter-spacing:-.025em; margin-bottom:36px; }
.gv-main-content h2 { font-family:var(--font-d); font-size:26px; font-weight:700; margin:44px 0 14px; }
.gv-main-content p { font-size:16px; line-height:1.8; color:var(--muted); margin-bottom:18px; }

/* WooCommerce */
.woocommerce .gv-shop-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; padding:48px 64px 120px; }
.woocommerce a.button,.woocommerce button.button { font-family:var(--font-b); font-size:11px; font-weight:700; letter-spacing:.09em; text-transform:uppercase; background:var(--ink); color:var(--white); border:none; padding:11px 22px; cursor:pointer; border-radius:0; transition:background .2s; }
.woocommerce a.button:hover,.woocommerce button.button:hover { background:var(--accent); }

/* ============================================================
   ANIMAZIONI
   ============================================================ */
@keyframes gv-spin { to { transform:rotate(360deg); } }
@keyframes gv-up   { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
.gv-reveal { opacity:0; transform:translateY(24px); transition:opacity .65s var(--ease), transform .65s var(--ease); }
.gv-reveal.visible { opacity:1; transform:translateY(0); }
.gv-hero-left > * { opacity:0; animation:gv-up .65s var(--ease) both; }
.gv-hero-left > *:nth-child(1) { animation-delay:.05s; }
.gv-hero-left > *:nth-child(2) { animation-delay:.18s; }
.gv-hero-left > *:nth-child(3) { animation-delay:.30s; }
.gv-hero-left > *:nth-child(4) { animation-delay:.42s; }
.gv-hero-left > *:nth-child(5) { animation-delay:.54s; }
.gv-hero-right { opacity:0; animation:gv-up .7s var(--ease) .08s both; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1100px) {
  .gv-hero { grid-template-columns:1fr; }
  .gv-hero-right { min-height:55vw; }
  .gv-hero-left { padding:64px 32px 80px; }
  .gv-works { padding:80px 32px; }
  .gv-works-grid { grid-template-columns:1fr 1fr; }
  .gv-work-item:nth-child(1) { grid-row:span 1; aspect-ratio:4/3; }
  .gv-work-item:nth-child(4) { grid-column:span 2; aspect-ratio:16/9; }
  .gv-mid { grid-template-columns:1fr; }
  .gv-stats,.gv-testimonials { padding:80px 32px; }
  .gv-cta { padding:100px 32px; }
  .gv-footer { padding:60px 32px 32px; }
  .gv-portfolio-grid { grid-template-columns:1fr 1fr; padding:40px 32px 80px; }
  .gv-services-grid { grid-template-columns:1fr; padding:0 32px 80px; }
  .gv-about { grid-template-columns:1fr; }
  .gv-about-content { padding:60px 32px; }
  .gv-calendly { grid-template-columns:1fr; }
  .gv-cal-left { padding:80px 32px; }
  .gv-main-content { padding:calc(var(--nav-h) + 60px) 32px 80px; }
  .gv-page-header { padding:calc(var(--nav-h) + 48px) 32px 48px; }
}
@media (max-width:900px) {
  .gv-nav-links,.gv-nav-cta { display:none; }
  .gv-burger { display:flex; }
  .gv-nav { padding:0 20px; }
}
@media (max-width:680px) {
  :root { --nav-h:64px; --seal-drop:8px; }
  .gv-nav { padding:0 16px; }
  .gv-logo-name { display:none; }
  .gv-hero-left { padding:48px 20px 72px; }
  .gv-works { padding:64px 20px; }
  .gv-works-grid { grid-template-columns:1fr; }
  .gv-work-item:nth-child(4) { grid-column:span 1; aspect-ratio:4/3; }
  .gv-portfolio-grid { grid-template-columns:1fr; padding:28px 20px 60px; }
  .gv-stats-grid { grid-template-columns:1fr 1fr; gap:32px 20px; }
  .gv-cta { padding:80px 20px; flex-direction:column; }
  .gv-cta-bg { display:none; }
  .gv-footer { padding:48px 20px 28px; }
  .gv-footer-legal { flex-direction:column; align-items:flex-start; }
  .gv-main-content { padding:calc(var(--nav-h) + 40px) 20px 60px; }
  .gv-page-header { padding:calc(var(--nav-h) + 28px) 20px 28px; }
}

::-webkit-scrollbar { width:3px; }
::-webkit-scrollbar-track { background:var(--bg); }
::-webkit-scrollbar-thumb { background:var(--accent); }

/* ============================================================
   INTRO ANIMAZIONE
   ============================================================ */
#gv-intro {
  position:fixed; inset:0; z-index:8000;
  background:#0A0A0A;
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
}
#gv-intro.gv-intro-out {
  opacity:0; pointer-events:none;
  transition:opacity .4s ease;
}
.gv-intro-logo {
  width:min(280px,58vw);
  aspect-ratio:841.89/595.28;
}
#gv-intro-svg {
  width:100%; height:100%; overflow:visible;
  filter:drop-shadow(0 0 0px rgba(201,169,110,0));
  transition:filter 1.2s ease;
}
#gv-intro-svg.gv-intro-glow {
  filter:drop-shadow(0 0 22px rgba(201,169,110,.45));
}
.gv-intro-sep {
  width:0; height:1px;
  background:linear-gradient(90deg,transparent,#C9A96E,transparent);
  margin-top:36px;
  transition:width .9s cubic-bezier(.25,.46,.45,.94);
}
.gv-intro-name {
  font-family:'Playfair Display',serif;
  font-size:clamp(11px,1.8vw,14px);
  font-weight:400; letter-spacing:.44em; text-transform:uppercase;
  color:rgba(255,255,255,0);
  margin-top:22px; white-space:nowrap;
  transition:color .9s ease;
}
.gv-intro-tag {
  font-size:clamp(8px,1vw,10px);
  font-weight:400; letter-spacing:.28em; text-transform:uppercase;
  color:rgba(255,255,255,0);
  margin-top:10px; white-space:nowrap;
  transition:color .9s ease;
}
.gv-intro-bar {
  position:absolute; bottom:0; left:0; right:0;
  height:2px; background:rgba(255,255,255,.04);
}
.gv-intro-bar-fill {
  height:100%;
  background:linear-gradient(90deg,#C9A96E,#E8C98A);
  width:0; transition:width 7.5s linear;
}
.gv-seal svg {
  width:32px;
  height:auto;
  display:block;
}