/* Fotografia 360 — Verona
   Visual system: radial service compass / dashboard
   Local-only assets, no external dependencies. */

:root {
  --bg: #0c0d12;
  --bg-2: #12141c;
  --panel: #171a24;
  --panel-2: #1e2230;
  --line: #2a2f40;
  --line-soft: #20242f;
  --ink: #f4f1ea;
  --ink-soft: #b9bccb;
  --ink-dim: #8990a3;
  --amber: #f0a755;
  --amber-2: #ffce8a;
  --teal: #5fd3c4;
  --violet: #9b8cff;
  --radius: 18px;
  --radius-s: 12px;
  --maxw: 1180px;
  --shadow: 0 18px 50px -20px rgba(0,0,0,.7);
  --font: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  background: radial-gradient(1200px 700px at 78% -8%, rgba(240,167,85,.10), transparent 60%),
              radial-gradient(900px 600px at 8% 12%, rgba(95,211,196,.07), transparent 55%),
              var(--bg);
  color: var(--ink);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .74rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--amber); font-weight: 700;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: linear-gradient(90deg, var(--amber), transparent);
}

h1,h2,h3 { line-height: 1.12; margin: 0; letter-spacing: -.02em; }
h2.section-title { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin: 14px 0 12px; }
.section-lead { color: var(--ink-soft); max-width: 62ch; font-size: 1.02rem; }

/* ---- Scroll progress ---- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--amber), var(--amber-2), var(--teal));
  z-index: 120; transition: width .12s linear;
}

/* ---- Header ---- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(12,13,18,.72);
  border-bottom: 1px solid var(--line-soft);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: -.01em; }
.brand .mark {
  width: 38px; height: 38px; border-radius: 50%; flex: none;
  background: conic-gradient(from 130deg, var(--amber), var(--amber-2), var(--teal), var(--violet), var(--amber));
  position: relative;
}
.brand .mark::after {
  content: ""; position: absolute; inset: 8px; border-radius: 50%; background: var(--bg);
}
.brand .mark::before {
  content: ""; position: absolute; inset: 15px; border-radius: 50%; background: var(--amber); z-index: 1;
}
.brand b { font-size: 1.04rem; }
.brand span { display: block; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-dim); font-weight: 600; }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { color: var(--ink-soft); font-size: .92rem; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  padding: 10px 18px; border-radius: 999px; font-weight: 700; font-size: .9rem;
  background: var(--amber); color: #1a1206;
  transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 26px -10px rgba(240,167,85,.6); }
.nav-toggle { display: none; }

.btn {
  display: inline-flex; align-items: center; gap: 9px; cursor: pointer;
  padding: 13px 24px; border-radius: 999px; font-weight: 700; font-size: .95rem;
  border: 1px solid transparent; transition: transform .2s, box-shadow .2s, background .2s, border-color .2s;
}
.btn-primary { background: var(--amber); color: #1a1206; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px -12px rgba(240,167,85,.65); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--amber); color: var(--amber-2); }

/* ---- HERO: radial service compass ---- */
.hero { padding: 54px 0 30px; position: relative; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center;
}
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); margin: 18px 0 16px; }
.hero h1 .accent { color: var(--amber-2); }
.hero p.lead { color: var(--ink-soft); font-size: 1.1rem; max-width: 52ch; }
.hero-actions { display: flex; gap: 14px; margin-top: 26px; flex-wrap: wrap; }
.hero-meta { display: flex; gap: 26px; margin-top: 30px; flex-wrap: wrap; }
.hero-meta div { display: flex; flex-direction: column; }
.hero-meta b { font-size: 1.02rem; color: var(--ink); }
.hero-meta small { color: var(--ink-dim); font-size: .82rem; letter-spacing: .04em; }

/* Compass */
.compass {
  position: relative; aspect-ratio: 1/1; width: 100%; max-width: 460px; margin: 0 auto;
  display: grid; place-items: center;
}
.compass-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at center, rgba(240,167,85,.06), transparent 62%);
}
.compass-ring.r2 { inset: 14%; border-style: dashed; border-color: var(--line-soft); }
.compass-ring.r3 { inset: 30%; border-color: var(--line); }
.compass-spin {
  position: absolute; inset: 6%; border-radius: 50%;
  border-top: 2px solid var(--amber);
  border-right: 2px solid transparent; border-bottom: 2px solid transparent; border-left: 2px solid transparent;
  animation: spin 14s linear infinite;
}
.compass-spin.s2 { inset: 22%; border-top-color: var(--teal); animation-duration: 9s; animation-direction: reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .compass-spin { animation: none; } }

.compass-core {
  position: relative; z-index: 3; width: 38%; aspect-ratio: 1/1; border-radius: 50%;
  overflow: hidden; border: 2px solid var(--amber); box-shadow: var(--shadow);
}
.compass-core img { width: 100%; height: 100%; object-fit: cover; }
.compass-core .core-label {
  position: absolute; inset: auto 0 0 0; padding: 10px 0 8px; text-align: center;
  background: linear-gradient(transparent, rgba(12,13,18,.92));
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; color: var(--amber-2);
}
/* Compass nodes */
.compass-node {
  position: absolute; z-index: 4; transform: translate(-50%, -50%);
  background: var(--panel); border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 14px; font-size: .8rem; font-weight: 600; white-space: nowrap;
  display: flex; align-items: center; gap: 7px; box-shadow: 0 8px 22px -14px rgba(0,0,0,.8);
  transition: border-color .25s, transform .25s, color .25s;
}
.compass-node:hover { border-color: var(--amber); color: var(--amber-2); transform: translate(-50%, -50%) scale(1.06); }
.compass-node .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); }
.compass-node.n1 { top: 6%;  left: 50%; }
.compass-node.n2 { top: 27%; left: 95%; }
.compass-node.n2 .dot { background: var(--teal); }
.compass-node.n3 { top: 75%; left: 95%; }
.compass-node.n3 .dot { background: var(--violet); }
.compass-node.n4 { top: 96%; left: 50%; }
.compass-node.n4 .dot { background: var(--amber-2); }
.compass-node.n5 { top: 75%; left: 5%; }
.compass-node.n5 .dot { background: var(--teal); }
.compass-node.n6 { top: 27%; left: 5%; }
.compass-node.n6 .dot { background: var(--violet); }

/* ---- Marquee / ticker ---- */
.ticker {
  border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
  background: var(--bg-2); overflow: hidden; padding: 14px 0; margin-top: 22px;
}
.ticker-track {
  display: flex; gap: 42px; width: max-content; animation: marquee 28s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }
.ticker-item { display: inline-flex; align-items: center; gap: 12px; color: var(--ink-soft); font-weight: 600; font-size: .92rem; }
.ticker-item span.sep { width: 6px; height: 6px; border-radius: 50%; background: var(--amber); }

/* ---- Section base ---- */
section.block { padding: 78px 0; }
.block-head { margin-bottom: 38px; }

/* ---- Service compass section (segmented selector) ---- */
.segmented {
  display: inline-flex; flex-wrap: wrap; gap: 6px; padding: 6px; margin: 6px 0 30px;
  background: var(--panel); border: 1px solid var(--line); border-radius: 999px;
}
.seg-btn {
  border: none; background: transparent; color: var(--ink-soft); cursor: pointer;
  padding: 10px 20px; border-radius: 999px; font-weight: 600; font-size: .9rem;
  font-family: inherit; transition: background .2s, color .2s;
}
.seg-btn[aria-selected="true"] { background: var(--amber); color: #1a1206; }
.seg-btn:hover:not([aria-selected="true"]) { color: var(--ink); }

.seg-panel { display: none; }
.seg-panel.active { display: grid; grid-template-columns: 1.1fr 1fr; gap: 34px; align-items: center; animation: fade .35s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.seg-panel h3 { font-size: 1.5rem; margin-bottom: 12px; }
.seg-panel p { color: var(--ink-soft); }
.seg-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 10px; }
.seg-list li { display: flex; gap: 11px; align-items: flex-start; color: var(--ink-soft); }
.seg-list li::before {
  content: ""; margin-top: 8px; width: 7px; height: 7px; border-radius: 50%; flex: none;
  background: var(--amber); box-shadow: 0 0 0 3px rgba(240,167,85,.18);
}
.seg-figure { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.seg-figure img { width: 100%; height: 360px; object-fit: cover; }

/* ---- Bento grid ---- */
.bento {
  display: grid; gap: 16px;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 150px;
}
.bento-card {
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel);
  padding: 22px; position: relative; overflow: hidden;
  transition: border-color .25s, transform .25s;
}
.bento-card:hover { border-color: var(--amber); transform: translateY(-3px); }
.bento-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.bento-card p { color: var(--ink-soft); font-size: .92rem; margin: 0; }
.bento-card .tag { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--amber); font-weight: 700; }
.bento-card.span2 { grid-column: span 2; }
.bento-card.row2 { grid-row: span 2; }
.bento-card.img-card { padding: 0; }
.bento-card.img-card img { width: 100%; height: 100%; object-fit: cover; }
.bento-card.img-card .cap {
  position: absolute; inset: auto 0 0 0; padding: 30px 20px 16px;
  background: linear-gradient(transparent, rgba(12,13,18,.9)); font-weight: 700;
}
.bento-card .corner {
  position: absolute; top: 16px; right: 16px; width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--line); display: grid; place-items: center; color: var(--amber); font-weight: 800; font-size: .8rem;
}

/* ---- Checklist ---- */
.check-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 44px; align-items: center; }
.check-figure { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); position: relative; }
.check-figure img { width: 100%; height: 460px; object-fit: cover; }
.check-figure .badge {
  position: absolute; top: 16px; left: 16px; background: rgba(12,13,18,.82); border: 1px solid var(--line);
  padding: 8px 14px; border-radius: 999px; font-size: .8rem; font-weight: 700; color: var(--amber-2);
}
.check-steps { list-style: none; padding: 0; margin: 0; counter-reset: step; display: grid; gap: 14px; }
.check-steps li {
  display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start;
  padding: 16px 18px; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-s);
  transition: border-color .25s;
}
.check-steps li:hover { border-color: var(--amber); }
.check-steps li::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-weight: 800; color: var(--amber); font-size: 1.05rem;
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: var(--panel-2); border: 1px solid var(--line);
}
.check-steps h4 { margin: 0 0 3px; font-size: 1.02rem; }
.check-steps p { margin: 0; color: var(--ink-soft); font-size: .9rem; }

/* ---- Gallery masonry bands ---- */
.masonry { columns: 3; column-gap: 16px; }
.masonry figure { margin: 0 0 16px; break-inside: avoid; border-radius: var(--radius-s); overflow: hidden; border: 1px solid var(--line); position: relative; }
.masonry img { width: 100%; height: auto; transition: transform .4s; }
.masonry figure:hover img { transform: scale(1.05); }
.masonry figcaption {
  position: absolute; inset: auto 0 0 0; padding: 22px 14px 12px; font-size: .82rem; font-weight: 600;
  background: linear-gradient(transparent, rgba(12,13,18,.88));
  opacity: 0; transition: opacity .3s;
}
.masonry figure:hover figcaption { opacity: 1; }

/* ---- FAQ accordion ---- */
.faq-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 44px; align-items: start; }
.faq-list { display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-s); background: var(--panel); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: transparent; border: none; cursor: pointer;
  font-family: inherit; color: var(--ink); font-size: 1.02rem; font-weight: 600;
  padding: 18px 20px; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q .ic { flex: none; width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: transform .3s, background .3s, color .3s; color: var(--amber); font-weight: 800; }
.faq-item[open] .faq-q .ic, .faq-q[aria-expanded="true"] .ic { transform: rotate(45deg); background: var(--amber); color: #1a1206; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 20px 18px; color: var(--ink-soft); font-size: .95rem; }

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.contact-card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); padding: 30px; }
.contact-figure { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); position: relative; }
.contact-figure img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.contact-figure .overlay { position: absolute; inset: auto 0 0 0; padding: 30px 22px 20px; background: linear-gradient(transparent, rgba(12,13,18,.92)); }
.contact-figure .overlay h3 { font-size: 1.3rem; margin-bottom: 6px; }
.contact-figure .overlay p { color: var(--ink-soft); margin: 0; font-size: .92rem; }

.field { margin-bottom: 16px; }
.field label { display: block; font-size: .82rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 7px; letter-spacing: .02em; }
.field input, .field textarea {
  width: 100%; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-s);
  color: var(--ink); font-family: inherit; font-size: .95rem; padding: 12px 14px; transition: border-color .2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--amber); }
.field textarea { min-height: 120px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { font-size: .8rem; color: var(--ink-dim); margin-top: 12px; }
.form-status { font-size: .88rem; margin-top: 14px; color: var(--teal); min-height: 1.2em; }

.info-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 14px; }
.info-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-soft); font-size: .95rem; }
.info-list b { color: var(--ink); display: block; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 2px; }
.info-list .ico { flex: none; width: 36px; height: 36px; border-radius: 10px; background: var(--panel-2); border: 1px solid var(--line); display: grid; place-items: center; color: var(--amber); }

/* ---- Footer ---- */
.site-footer { border-top: 1px solid var(--line-soft); background: var(--bg-2); padding: 54px 0 30px; margin-top: 20px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 36px; }
.footer-grid p { color: var(--ink-dim); font-size: .9rem; max-width: 38ch; }
.footer-col h4 { font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink); margin: 0 0 14px; }
.footer-col a { display: block; color: var(--ink-soft); font-size: .92rem; padding: 5px 0; transition: color .2s; }
.footer-col a:hover { color: var(--amber-2); }
.footer-legal { color: var(--ink-dim); font-size: .85rem; line-height: 1.7; }
.footer-bottom { border-top: 1px solid var(--line-soft); margin-top: 36px; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: var(--ink-dim); font-size: .82rem; }

/* ---- Sticky mobile CTA ---- */
.sticky-cta {
  position: fixed; left: 50%; transform: translateX(-50%); bottom: 16px; z-index: 90;
  display: none; gap: 10px; background: rgba(18,20,28,.95); border: 1px solid var(--line);
  padding: 8px; border-radius: 999px; box-shadow: var(--shadow); backdrop-filter: blur(8px);
}
.sticky-cta a { padding: 11px 18px; border-radius: 999px; font-weight: 700; font-size: .88rem; }
.sticky-cta .call { background: var(--panel-2); color: var(--ink); }
.sticky-cta .req { background: var(--amber); color: #1a1206; }

/* ---- Legal pages ---- */
.legal { padding: 60px 0 40px; }
.legal-wrap { max-width: 820px; }
.legal h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 10px; }
.legal .updated { color: var(--ink-dim); font-size: .88rem; margin-bottom: 30px; }
.legal h2 { font-size: 1.3rem; margin: 34px 0 12px; color: var(--ink); }
.legal h3 { font-size: 1.05rem; margin: 22px 0 8px; }
.legal p, .legal li { color: var(--ink-soft); font-size: .97rem; }
.legal ul { padding-left: 20px; }
.legal a { color: var(--amber-2); }
.legal .back { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 24px; color: var(--ink-soft); font-size: .9rem; }
.legal .card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-s); padding: 20px 24px; margin: 24px 0; }

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .compass { max-width: 380px; }
  .seg-panel.active { grid-template-columns: 1fr; }
  .seg-figure img { height: 280px; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-card.span2 { grid-column: span 2; }
  .check-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
  .masonry { columns: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0;
    background: var(--bg-2); border-bottom: 1px solid var(--line); padding: 18px 22px; gap: 16px;
  }
  .nav-toggle { display: inline-flex; background: var(--panel); border: 1px solid var(--line); color: var(--ink); border-radius: 10px; padding: 9px 12px; cursor: pointer; font-size: 1.1rem; }
  .masonry { columns: 1; }
  .bento { grid-template-columns: 1fr; }
  .bento-card.span2 { grid-column: span 1; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .sticky-cta { display: flex; }
  section.block { padding: 56px 0; }
}
