/* ===========================================================================
   Aijò — Stylesheet condiviso per le pagine SEO dedicate (città / intento)
   Coerente con la palette e la tipografia della landing principale.
   =========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #07090e;
  --bg2: #0b0e16;
  --surface: #111520;
  --gold: #c8a76b;
  --gold-dim: rgba(200, 167, 107, 0.12);
  --gold-border: rgba(200, 167, 107, 0.22);
  --gold-glow: rgba(200, 167, 107, 0.08);
  --text: #ede8df;
  --muted: #7a7265;
  --dim: #3e3a34;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: var(--gold);
}

/* ─── NAV ─── */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(7, 9, 14, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gold-border);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo span {
  color: var(--gold);
}

.nav-logo-img {
  height: 30px;
  width: auto;
  border-radius: 6px;
  border: 1px solid rgba(200, 167, 107, 0.25);
}

.nav-links {
  display: flex;
  gap: 1.6rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  color: var(--gold) !important;
  border: 1px solid var(--gold-border);
  padding: .45rem 1.1rem;
  transition: background .2s, color .2s;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--bg) !important;
}

@media (max-width: 720px) {
  .nav-links .nav-hide-mobile {
    display: none;
  }
}

/* ─── WRAP ─── */
.wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  font-size: .66rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1.5rem;
}

.section-label::after {
  content: '';
  width: 2.5rem;
  height: 1px;
  background: var(--gold-border);
}

/* ─── BREADCRUMB ─── */
.breadcrumb {
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--dim);
  padding: 1.5rem 0 0;
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

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

/* ─── HERO ─── */
.page-hero {
  padding: 4rem 0 5rem;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 50%;
  height: 120%;
  background: radial-gradient(ellipse, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-bottom: 1.8rem;
  position: relative;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.page-hero .lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 640px;
  line-height: 1.9;
  margin-bottom: 2.5rem;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg);
  padding: .9rem 2rem;
  text-decoration: none;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  display: inline-block;
  transition: opacity .2s, transform .2s;
}

.btn-primary:hover {
  opacity: .85;
  transform: translateY(-1px);
}

/* ─── SECTION ─── */
section.block {
  padding: 4rem 0;
  border-top: 1px solid var(--gold-border);
}

section.block h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1.6rem;
}

section.block h2 em {
  font-style: italic;
  color: var(--gold);
}

section.block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.5rem;
  margin: 0 0 .7rem;
}

section.block p {
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.9;
  margin-bottom: 1.2rem;
  max-width: 760px;
}

section.block p strong {
  color: var(--text);
  font-weight: 500;
}

/* ─── CARD GRID ─── */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--gold-border);
  margin-top: 2.5rem;
}

.card {
  background: var(--bg2);
  padding: 2.2rem;
}

.card .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: .8rem;
  color: var(--gold);
  letter-spacing: .12em;
  margin-bottom: 1.2rem;
}

.card p {
  font-size: .9rem;
  margin: 0;
}

/* ─── FAQ ─── */
.faq-item {
  border-top: 1px solid var(--gold-border);
  padding: 1.6rem 0;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--gold-border);
}

.faq-item h3 {
  font-size: 1.25rem;
  margin-bottom: .6rem;
  color: var(--text);
}

.faq-item p {
  margin: 0;
}

/* ─── CTA BAND ─── */
.cta-band {
  text-align: center;
  padding: 5rem 2rem;
  background: var(--bg2);
  border-top: 1px solid var(--gold-border);
}

.cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.cta-band h2 em {
  font-style: italic;
  color: var(--gold);
}

.cta-band p {
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 2.5rem;
}

/* ─── INTERNAL LINKS ─── */
.related {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

.related a {
  font-size: .8rem;
  letter-spacing: .04em;
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--gold-border);
  padding: .7rem 1.2rem;
  transition: border-color .2s, color .2s;
}

.related a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ─── FOOTER ─── */
footer {
  text-align: center;
  padding: 3rem 2rem;
  border-top: 1px solid var(--gold-border);
  color: var(--dim);
  font-size: .8rem;
}

footer a {
  color: var(--muted);
  text-decoration: none;
}

footer a:hover {
  color: var(--gold);
}

footer .footer-cities {
  margin-top: .6rem;
  letter-spacing: .1em;
}
