/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
  /* Palette — Planner editoriale caldo */
  --paper:        #FBF8F3;
  --paper-warm:   #F3ECE0;
  --paper-deep:   #EBE1D1;
  --ink:          #241F1B;
  --ink-soft:     #6E655B;
  --ink-faint:    #A99E8F;
  --gold:         #9A7A45;
  --gold-deep:    #7C5F32;
  --gold-soft:    #C8A86A;
  --espresso:     #211C18;
  --espresso-2:   #2C2620;
  --line:         rgba(36, 31, 27, 0.12);
  --line-strong:  rgba(36, 31, 27, 0.22);
  --gold-line:    rgba(154, 122, 69, 0.30);
  --white:        #ffffff;

  /* Tipografia */
  --display: 'Fraunces', 'Times New Roman', serif;
  --body:    'Hanken Grotesk', system-ui, -apple-system, sans-serif;

  /* Misure */
  --maxw: 1200px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --radius: 4px;
  --radius-lg: 10px;

  /* Easing */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Accessibilità e utility */
.skip-link {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 200;
  padding: 0.6rem 1rem;
  border-radius: 0 0 6px 0;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-120%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid var(--gold-soft);
  outline-offset: 3px;
}

.text-paper {
  color: var(--paper);
}

.text-gold-soft {
  color: var(--gold-soft);
}

.section-title-spaced {
  margin: 1rem 0 1.2rem;
}

.section-title-compact {
  margin: 1rem 0;
}

.section-action {
  margin-top: 2.6rem;
}

.faq-contact-link {
  margin-top: 1.6rem;
}

.hero-card-seal {
  width: 54px;
  height: 54px;
  background: var(--ink);
}

.hero-card-monogram {
  color: var(--gold-soft);
  font-size: 1.1rem;
}

.hero-card-title {
  font-family: var(--display);
  font-size: 1.05rem;
}

.privacy-error {
  margin-top: -0.8rem;
  margin-bottom: 0.8rem;
}

.footer-address {
  display: flex;
  gap: 0.55rem;
}

.footer-address svg {
  width: 1rem;
  height: 1rem;
  color: var(--gold-soft);
  flex-shrink: 0;
}

.form-error-message {
  display: none;
  padding: 1rem 0;
}

.form-error-message.is-visible {
  display: block;
}

.form-error-message h3 {
  margin-bottom: 0.6rem;
}

.form-error-message p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.form-error-message a {
  color: var(--gold-deep);
  text-decoration: underline;
}

.btn[aria-busy="true"] {
  cursor: wait;
  opacity: 0.72;
}

.legal-page {
  min-height: 100vh;
  padding: clamp(3rem, 8vw, 7rem) 0;
  background: var(--paper);
}

.legal-content {
  max-width: 52rem;
}

.legal-content h1 {
  margin: 1.5rem 0;
  font-family: var(--display);
  font-size: clamp(2.5rem, 7vw, 5rem);
}

.legal-content h2 {
  margin: 2.2rem 0 0.75rem;
  font-size: 1.4rem;
}

.legal-content p {
  color: var(--ink-soft);
  line-height: 1.75;
}

.legal-back,
.legal-content a {
  color: var(--gold-deep);
  text-decoration: underline;
}

.legal-notice {
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--gold);
  background: var(--paper-warm);
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--body);
  background-color: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

::selection { background: var(--gold-soft); color: var(--espresso); }

:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ============================================================
   3. TIPOGRAFIA
   ============================================================ */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 500; line-height: 1.1; letter-spacing: -0.01em; }

.display-xl { font-size: clamp(2.6rem, 6.2vw, 5rem); font-weight: 400; line-height: 1.02; letter-spacing: -0.02em; }
.display-l  { font-size: clamp(2rem, 4.2vw, 3.3rem); font-weight: 400; line-height: 1.06; letter-spacing: -0.018em; }
.display-m  { font-size: clamp(1.6rem, 3vw, 2.3rem); }

.italic-accent { font-style: italic; color: var(--gold-deep); font-weight: 400; }

.eyebrow {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: 1.8rem;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.is-centered { justify-content: center; }

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: var(--ink-soft);
  font-weight: 400;
  line-height: 1.7;
}

.muted { color: var(--ink-soft); }

/* ============================================================
   4. LAYOUT
   ============================================================ */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(4.5rem, 9vw, 8rem); position: relative; }
.section--warm { background: var(--paper-warm); }
.section--deep { background: var(--espresso); color: var(--paper); }

.section-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.is-centered { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 1.1rem; }
.section-head h2 { margin-bottom: 1.1rem; }

.hairline { height: 1px; background: var(--line); border: 0; }
.gold-rule { width: 3rem; height: 2px; background: var(--gold); border: 0; }

/* ============================================================
   5. Planner SEAL (signature element)
   ============================================================ */
.seal {
  width: 84px; height: 84px;
  border-radius: 50%;
  display: grid; place-items: center;
  position: relative;
  flex-shrink: 0;
}
.seal svg { width: 100%; height: 100%; }
.seal .seal-mark {
  position: absolute;
  font-family: var(--display);
  font-size: 1.55rem;
  font-style: italic;
  letter-spacing: 0.02em;
}

/* ============================================================
   6. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--body); font-weight: 600; font-size: 0.86rem;
  letter-spacing: 0.02em;
  padding: 1rem 1.7rem;
  border-radius: 100px;
  transition: transform 0.3s var(--ease), background-color 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn--primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 10px 30px -12px rgba(36, 31, 27, 0.5);
}
.btn--primary:hover { background: var(--gold-deep); transform: translateY(-2px); box-shadow: 0 16px 36px -12px rgba(124, 95, 50, 0.55); }
.btn--gold { background: var(--gold-deep); color: var(--paper); }
.btn--gold:hover { background: var(--ink); transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-deep); background: rgba(154,122,69,0.05); }
.btn--light {
  background: var(--paper);
  color: var(--ink);
}
.btn--light:hover { background: var(--gold-soft); color: var(--espresso); transform: translateY(-2px); }
.btn--on-dark-ghost { border: 1px solid rgba(251,248,243,0.25); color: var(--paper); }
.btn--on-dark-ghost:hover { border-color: var(--gold-soft); color: var(--gold-soft); }
.btn--lg { padding: 1.15rem 2.1rem; font-size: 0.92rem; }
.btn--block { width: 100%; justify-content: center; }

/* ============================================================
   7. HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background-color 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(251, 248, 243, 0.88);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 30px -18px rgba(36,31,27,0.4);
}
.nav {
  height: 74px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; gap: 0.7rem; position: relative; z-index: 110; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--ink); color: var(--gold-soft);
  display: grid; place-items: center;
  font-family: var(--display); font-style: italic; font-size: 1rem;
}
.brand-name { font-family: var(--display); font-size: 1.1rem; letter-spacing: 0.04em; }
.brand-name small { display: block; font-family: var(--body); font-size: 0.56rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold-deep); margin-top: -2px; }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: 0.86rem; color: var(--ink-soft); position: relative; transition: color 0.25s; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 1px;
  background: var(--gold); transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: inline-flex; }

.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; position: relative; z-index: 110; }
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--ink); position: relative; transition: transform 0.3s var(--ease), opacity 0.3s; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 24px; height: 1.5px; background: var(--ink); transition: transform 0.3s var(--ease); }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 105;
  background: var(--paper);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.4rem;
  opacity: 0; visibility: hidden; transition: opacity 0.35s var(--ease), visibility 0.35s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu a { font-family: var(--display); font-size: 1.8rem; color: var(--ink); }
.mobile-menu a.btn { font-family: var(--body); font-size: 0.95rem; margin-top: 1rem; }

/* ============================================================
   8. HERO
   ============================================================ */
.hero { padding-top: 74px; position: relative; overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding-block: clamp(3rem, 7vw, 6rem);
}
.hero-copy { max-width: 36rem; }
.hero-copy .eyebrow { margin-bottom: 1.6rem; }
.hero h1 { margin-bottom: 1.6rem; }
.hero .lead { margin-bottom: 2.2rem; max-width: 32rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.4rem; }

.hero-trust { display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem 1.6rem; }
.hero-trust-item { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: var(--ink-soft); }
.hero-trust-item svg { width: 1rem; height: 1rem; color: var(--gold-deep); }
.hero-trust .stars { display: inline-flex; gap: 1px; color: var(--gold); }
.hero-trust .stars svg { width: 0.9rem; height: 0.9rem; }
.hero-trust .divider { width: 1px; height: 1rem; background: var(--line-strong); }

.hero-figure { position: relative; }
.hero-figure .frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--paper-deep);
  box-shadow: 0 40px 80px -40px rgba(36,31,27,0.45);
}
.hero-figure .frame::after {
  content: ""; position: absolute; inset: 12px; border: 1px solid rgba(251,248,243,0.45); border-radius: 6px; pointer-events: none;
}
.hero-figure img { width: 100%; height: 100%; object-fit: cover; }
.hero-card {
  position: absolute; left: -1.5rem; bottom: 2rem;
  background: var(--paper); border-radius: var(--radius-lg);
  padding: 1.1rem 1.3rem; box-shadow: 0 24px 50px -22px rgba(36,31,27,0.5);
  display: flex; align-items: center; gap: 0.9rem; max-width: 17rem;
  border: 1px solid var(--line);
}
.hero-card .hc-rating { font-family: var(--display); font-size: 1.7rem; line-height: 1; }
.hero-card .hc-stars { display: flex; gap: 1px; color: var(--gold); margin-bottom: 2px; }
.hero-card .hc-stars svg { width: 0.8rem; height: 0.8rem; }
.hero-card small { font-size: 0.72rem; color: var(--ink-soft); }

/* ============================================================
   9. QUICK ANSWER (AEO)
   ============================================================ */
.quick-answer {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--paper-warm);
}
.quick-answer .qa-inner { padding-block: clamp(2.4rem, 4vw, 3.4rem); display: grid; grid-template-columns: auto 1fr; gap: 1.8rem; align-items: start; }
.quick-answer .qa-label { font-family: var(--display); font-style: italic; font-size: 1.3rem; color: var(--gold-deep); white-space: nowrap; }
.quick-answer p { font-size: clamp(1.05rem, 1.7vw, 1.3rem); line-height: 1.6; color: var(--ink); max-width: 56rem; }
.quick-answer strong { font-weight: 600; }

/* ============================================================
   10. PROBLEM CARDS
   ============================================================ */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); gap: 1.2rem; }
.card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 1.9rem 1.7rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 26px 50px -30px rgba(36,31,27,0.35); border-color: var(--gold-line); }
.card-icon {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--paper-warm); color: var(--gold-deep); margin-bottom: 1.2rem;
}
.card-icon svg { width: 22px; height: 22px; }
.card h3 { font-size: 1.18rem; margin-bottom: 0.5rem; font-weight: 500; }
.card p { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.6; }

/* ============================================================
   11. SOLUTION (split)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split-figure { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 5/6; background: var(--paper-deep); position: relative; box-shadow: 0 40px 80px -45px rgba(36,31,27,0.4); }
.split-figure::after { content:""; position:absolute; inset:12px; border:1px solid rgba(251,248,243,0.4); border-radius:6px; pointer-events:none; }
.split-figure img { width: 100%; height: 100%; object-fit: cover; }
.solution-list { margin-top: 1.8rem; display: grid; gap: 1.1rem; }
.solution-item { display: flex; gap: 0.9rem; }
.solution-item .tick { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--ink); color: var(--paper); display: grid; place-items: center; margin-top: 2px; }
.solution-item .tick svg { width: 15px; height: 15px; }
.solution-item h3 { font-family: var(--body); font-size: 1rem; font-weight: 600; margin-bottom: 0.15rem; letter-spacing: 0; }
.solution-item p { font-size: 0.9rem; color: var(--ink-soft); }

/* ============================================================
   12. WHY US (feature grid)
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.feature {
  grid-column: span 3;
  background: var(--paper); padding: 2rem 1.8rem;
  transition: background-color 0.35s var(--ease);
}
.feature:nth-child(n + 5) { grid-column: span 4; }
.feature:hover { background: var(--paper-warm); }
.feature .feature-icon { color: var(--gold-deep); margin-bottom: 1rem; }
.feature .feature-icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.15rem; margin-bottom: 0.45rem; font-weight: 500; }
.feature p { font-size: 0.9rem; color: var(--ink-soft); }
.section--deep .feature-grid { background: rgba(251,248,243,0.12); border-color: rgba(251,248,243,0.14); }
.section--deep .feature { background: var(--espresso); }
.section--deep .feature:hover { background: var(--espresso-2); }
.section--deep .feature p { color: rgba(251,248,243,0.62); }
.section--deep .feature .feature-icon { color: var(--gold-soft); }

/* ============================================================
   13. PROCESS (steps)
   ============================================================ */
.steps { display: grid; gap: 0; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: 1.8rem;
  padding-block: 1.8rem; border-top: 1px solid var(--line); align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step-num { font-family: var(--display); font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 400; color: var(--gold); line-height: 1; font-style: italic; min-width: 3.2rem; }
.step-body { display: grid; grid-template-columns: 1fr auto; gap: 0.6rem 2rem; align-items: baseline; }
.step-body h3 { font-size: 1.4rem; font-weight: 500; }
.step-body p { font-size: 0.95rem; color: var(--ink-soft); grid-column: 1 / -1; max-width: 44rem; }
.step-tag { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; }

/* ============================================================
   14. SERVICES
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr)); gap: 1.2rem; }
.service {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.9rem 1.7rem; background: var(--paper);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  position: relative; overflow: hidden;
}
.service::before {
  content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 3px;
  background: var(--gold); transform: scaleY(0); transform-origin: top; transition: transform 0.4s var(--ease);
}
.service:hover { transform: translateY(-4px); box-shadow: 0 26px 50px -30px rgba(36,31,27,0.35); border-color: var(--gold-line); }
.service:hover::before { transform: scaleY(1); }
.service .service-icon { color: var(--gold-deep); margin-bottom: 1rem; }
.service .service-icon svg { width: 26px; height: 26px; }
.service h3 { font-size: 1.2rem; margin-bottom: 0.5rem; font-weight: 500; }
.service p { font-size: 0.9rem; color: var(--ink-soft); }

/* ============================================================
   15. LOCATIONS
   ============================================================ */
.loc-wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.loc-list { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.6rem; }
.loc-chip {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.6rem 1.05rem; border: 1px solid var(--line-strong);
  border-radius: 100px; font-size: 0.88rem; color: var(--ink);
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}
.loc-chip svg { width: 0.95rem; height: 0.95rem; color: var(--gold-deep); }
.loc-chip:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.loc-chip:hover svg { color: var(--gold-soft); }
.loc-note {
  margin-top: 2rem; padding: 1.3rem 1.5rem; border-radius: var(--radius-lg);
  background: var(--paper-warm); border: 1px solid var(--gold-line);
  display: flex; gap: 0.9rem; align-items: flex-start;
}
.loc-note svg { width: 1.3rem; height: 1.3rem; color: var(--gold-deep); flex-shrink: 0; margin-top: 2px; }
.loc-note p { font-size: 0.92rem; color: var(--ink); }
.loc-figure { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; background: var(--paper-deep); box-shadow: 0 40px 80px -45px rgba(36,31,27,0.4); }
.loc-figure img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   16. STATS
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(251,248,243,0.14); border: 1px solid rgba(251,248,243,0.14); border-radius: var(--radius-lg); overflow: hidden; }
.stat { background: var(--espresso); padding: 2.2rem 1.4rem; text-align: center; }
.stat .stat-num { font-family: var(--display); font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 400; line-height: 1; color: var(--gold-soft); font-variant-numeric: tabular-nums; }
.stat .stat-label { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(251,248,243,0.6); margin-top: 0.7rem; }

/* ============================================================
   17. TESTIMONIALS
   ============================================================ */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr)); gap: 1.4rem; }
.testi {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.9rem 1.8rem; display: flex; flex-direction: column;
}
.testi .testi-stars { display: flex; gap: 2px; color: var(--gold); margin-bottom: 1rem; }
.testi .testi-stars svg { width: 1rem; height: 1rem; }
.testi blockquote { font-family: var(--display); font-size: 1.12rem; line-height: 1.5; color: var(--ink); font-weight: 400; margin-bottom: 1.4rem; flex-grow: 1; }
.testi blockquote::before { content: "“"; color: var(--gold); font-size: 1.4em; line-height: 0; vertical-align: -0.35em; margin-right: 0.05em; }
.testi-author { display: flex; align-items: center; gap: 0.8rem; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--paper-deep); color: var(--gold-deep); display: grid; place-items: center; font-family: var(--display); font-style: italic; font-size: 1rem; flex-shrink: 0; }
.testi-author .ta-name { font-weight: 600; font-size: 0.92rem; }
.testi-author .ta-meta { display: inline-block; margin-top: 0.12rem; font-size: 0.78rem; color: var(--ink-soft); }

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  min-height: 2.5rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: border-color 0.25s, background-color 0.25s;
}
.lang-switch:hover { border-color: var(--gold); background: var(--paper-warm); }
.lang-switch img { width: 1.55rem; height: 1rem; border-radius: 3px; object-fit: cover; box-shadow: 0 0 0 1px rgba(36,31,27,0.2); }
.mobile-menu .lang-switch { align-self: flex-start; margin-bottom: 0.35rem; }
.mobile-lang { display: none; }

/* ============================================================
   18. PORTFOLIO GALLERY
   ============================================================ */
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 0.9rem; }
.gallery figure { overflow: hidden; border-radius: var(--radius-lg); position: relative; background: var(--paper-deep); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figure figcaption {
  position: absolute; inset: auto 0 0 0; padding: 1.4rem 1.1rem 1rem;
  background: linear-gradient(to top, rgba(33,28,24,0.8), transparent);
  color: var(--paper); font-size: 0.82rem; opacity: 0; transform: translateY(8px); transition: opacity 0.4s, transform 0.4s;
}
.gallery figure:hover figcaption { opacity: 1; transform: translateY(0); }
.g-tall { grid-column: span 4; aspect-ratio: 3/4; }
.g-wide { grid-column: span 8; aspect-ratio: 16/10; }
.g-sq   { grid-column: span 4; aspect-ratio: 1/1; }
.g-half { grid-column: span 6; aspect-ratio: 4/3; }

/* ============================================================
   19. CREDIBILITY
   ============================================================ */
.cred-bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.4rem 3rem; }
.cred-item { font-family: var(--display); font-size: clamp(1rem, 1.8vw, 1.35rem); color: var(--ink-soft); font-style: italic; letter-spacing: 0.01em; transition: color 0.3s; }
.cred-item:hover { color: var(--gold-deep); }
.cred-trust { display: grid; grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr)); gap: 1rem; margin-top: 3rem; }
.cred-trust .ct {
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.3rem 1.4rem;
  display: flex; align-items: center; gap: 0.9rem; background: var(--paper);
}
.cred-trust .ct svg { width: 1.7rem; height: 1.7rem; color: var(--gold-deep); flex-shrink: 0; }
.cred-trust .ct strong { display: block; font-size: 0.92rem; font-weight: 600; }
.cred-trust .ct span { font-size: 0.8rem; color: var(--ink-soft); }

/* ============================================================
   20. FAQ
   ============================================================ */
.faq-wrap { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 1.2rem;
  padding: 1.35rem 0; font-family: var(--display); font-size: 1.15rem; font-weight: 500; color: var(--ink);
  transition: color 0.25s;
}
.faq-q:hover { color: var(--gold-deep); }
.faq-icon { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; transition: transform 0.4s var(--ease), background-color 0.3s, border-color 0.3s; }
.faq-icon svg { width: 14px; height: 14px; transition: color 0.3s; }
.faq-item.is-open .faq-icon { transform: rotate(135deg); background: var(--ink); border-color: var(--ink); }
.faq-item.is-open .faq-icon svg { color: var(--paper); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.faq-a-inner { padding-bottom: 1.4rem; color: var(--ink-soft); font-size: 0.96rem; line-height: 1.7; max-width: 44rem; }

/* ============================================================
   21. CONTACT / FINAL CTA
   ============================================================ */
.contact { background: var(--espresso); color: var(--paper); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.4rem, 5vw, 4.5rem); align-items: start; }
.contact-copy .eyebrow { color: var(--gold-soft); }
.contact-copy .eyebrow::before { background: var(--gold-soft); }
.contact-copy h2 { color: var(--paper); margin-bottom: 1.2rem; }
.contact-copy .lead { color: rgba(251,248,243,0.72); margin-bottom: 2rem; }
.contact-points { display: grid; gap: 1rem; margin-bottom: 2rem; }
.contact-point { display: flex; gap: 0.8rem; align-items: center; font-size: 0.95rem; color: rgba(251,248,243,0.85); }
.contact-point svg { width: 1.2rem; height: 1.2rem; color: var(--gold-soft); flex-shrink: 0; }
.contact-direct { display: flex; flex-wrap: wrap; gap: 1.2rem 2rem; padding-top: 1.6rem; border-top: 1px solid rgba(251,248,243,0.14); }
.contact-direct a { display: inline-flex; align-items: center; gap: 0.55rem; font-size: 0.92rem; color: var(--paper); transition: color 0.25s; }
.contact-direct a svg { width: 1.05rem; height: 1.05rem; color: var(--gold-soft); }
.contact-direct a:hover { color: var(--gold-soft); }

.form-card { background: var(--paper); color: var(--ink); border-radius: var(--radius-lg); padding: clamp(1.8rem, 3vw, 2.6rem); box-shadow: 0 50px 90px -40px rgba(0,0,0,0.6); }
.form-card h3 { font-size: 1.5rem; margin-bottom: 0.4rem; }
.form-card .form-sub { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 1.6rem; }
.field { margin-bottom: 1.1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 0.45rem; }
.field label .req { color: var(--gold-deep); }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.85rem 1rem; border: 1px solid var(--line-strong); border-radius: var(--radius);
  background: var(--paper); color: var(--ink); font-size: 0.95rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.field input::placeholder, .field textarea::placeholder { color: #776D61; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(154,122,69,0.12); }
.field textarea { resize: vertical; min-height: 96px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%236E655B' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.4rem; }
.field-consent {
  position: relative;
  margin-bottom: 1.4rem;
}

.field-consent input[type="checkbox"] {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 2rem;
  height: 2rem;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.field-consent label {
  position: relative;
  display: block;
  min-height: 1.5rem;
  padding-left: 2rem;
  font-size: 0.78rem;
  color: var(--ink-soft);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  line-height: 1.5;
  cursor: pointer;
}

.field-consent label::before {
  content: "";
  position: absolute;
  top: 0.08rem;
  left: 0;
  width: 1.15rem;
  height: 1.15rem;
  border: 1.5px solid var(--gold-deep);
  border-radius: 3px;
  background: var(--paper);
  box-shadow: 0 0 0 1px rgba(124, 95, 50, 0.05);
}

.field-consent label::after {
  content: "";
  position: absolute;
  top: 0.28rem;
  left: 0.27rem;
  width: 0.52rem;
  height: 0.28rem;
  border-left: 2px solid var(--paper);
  border-bottom: 2px solid var(--paper);
  opacity: 0;
  transform: rotate(-45deg);
}

.field-consent input[type="checkbox"]:checked + label::before {
  border-color: var(--gold-deep);
  background: var(--gold-deep);
}

.field-consent input[type="checkbox"]:checked + label::after {
  opacity: 1;
}

.field-consent input[type="checkbox"]:focus-visible + label::before {
  outline: 3px solid var(--gold-soft);
  outline-offset: 3px;
}

.field-consent input[type="checkbox"][aria-invalid="true"] + label::before {
  border-color: #b4452f;
}
.field-consent a { color: var(--gold-deep); text-decoration: underline; }
.field-error { color: #b4452f; font-size: 0.78rem; margin-top: 0.35rem; display: none; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #b4452f; }
.field.has-error .field-error { display: block; }
.form-reassure { text-align: center; font-size: 0.78rem; color: var(--ink-soft); margin-top: 0.9rem; display: flex; align-items: center; justify-content: center; gap: 0.4rem; }
.form-reassure svg { width: 0.9rem; height: 0.9rem; color: var(--gold-deep); }

.form-success { display: none; text-align: center; padding: 1rem 0; }
.form-success.is-visible { display: block; }
.form-success .fs-icon { width: 60px; height: 60px; border-radius: 50%; background: var(--ink); color: var(--paper); display: grid; place-items: center; margin: 0 auto 1.2rem; }
.form-success .fs-icon svg { width: 28px; height: 28px; }
.form-success h3 { margin-bottom: 0.6rem; }
.form-success p { color: var(--ink-soft); font-size: 0.95rem; }

/* ============================================================
   22. FOOTER
   ============================================================ */
.site-footer { background: var(--espresso-2); color: rgba(251,248,243,0.7); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(251,248,243,0.12); }
.footer-brand .brand-name { color: var(--paper); }
.footer-brand p { font-size: 0.88rem; margin-top: 1.1rem; max-width: 22rem; line-height: 1.7; }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1.4rem; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(251,248,243,0.2); display: grid; place-items: center; color: rgba(251,248,243,0.75); transition: background-color 0.3s, color 0.3s, border-color 0.3s; }
.footer-social a svg { width: 1.05rem; height: 1.05rem; }
.footer-social a:hover { background: var(--gold-deep); color: var(--paper); border-color: var(--gold-deep); }
.footer-col h4 { font-family: var(--body); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 1.1rem; font-weight: 600; }
.footer-col ul { display: grid; gap: 0.6rem; }
.footer-col a, .footer-col span { font-size: 0.88rem; color: rgba(251,248,243,0.7); transition: color 0.25s; }
.footer-col a:hover { color: var(--paper); }
.footer-contact a { display: flex; align-items: center; gap: 0.55rem; }
.footer-contact svg { width: 1rem; height: 1rem; color: var(--gold-soft); flex-shrink: 0; }
.footer-entity { font-size: 0.8rem; line-height: 1.7; color: rgba(251,248,243,0.55); padding-top: 2rem; max-width: 60rem; }
.footer-entity strong { color: rgba(251,248,243,0.8); font-weight: 600; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; align-items: center; padding-top: 1.6rem; }
.footer-bottom p { font-size: 0.8rem; color: rgba(251,248,243,0.5); }
.footer-legal { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.footer-legal a { font-size: 0.8rem; color: rgba(251,248,243,0.6); }
.footer-legal a:hover { color: var(--paper); }

/* ============================================================
   23. STICKY MOBILE CTA + COOKIE
   ============================================================ */
.sticky-cta {
  position: fixed; inset: auto 0 0 0; z-index: 90;
  background: rgba(251,248,243,0.95); backdrop-filter: blur(16px);
  border-top: 1px solid var(--line); padding: 0.75rem var(--gutter);
  display: none; align-items: center; justify-content: space-between; gap: 1rem;
  transform: translateY(100%); transition: transform 0.4s var(--ease);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta .sc-text { font-size: 0.82rem; }
.sticky-cta .sc-text strong { display: block; font-family: var(--display); font-size: 1rem; }

.cookie {
  position: fixed; left: var(--gutter); bottom: var(--gutter); z-index: 95;
  max-width: 26rem; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 1.3rem 1.4rem; box-shadow: 0 30px 60px -28px rgba(36,31,27,0.5);
  transform: translateY(20px); opacity: 0; transition: transform 0.4s var(--ease), opacity 0.4s;
}
.cookie.is-visible { transform: translateY(0); opacity: 1; }
.cookie p { font-size: 0.84rem; color: var(--ink-soft); margin-bottom: 1rem; }
.cookie p a { color: var(--gold-deep); text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.cookie-actions .btn { padding: 0.7rem 1.2rem; font-size: 0.8rem; }

/* ============================================================
   24. REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ============================================================
   25. RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature, .feature:nth-child(n + 5) { grid-column: auto; }
  .feature:last-child { grid-column: 1 / -1; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-figure { max-width: 26rem; margin-inline: auto; order: -1; }
  .split { grid-template-columns: 1fr; }
  .split-figure { order: -1; max-width: 30rem; }
  .loc-wrap { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .faq-wrap { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .quick-answer .qa-inner { grid-template-columns: 1fr; gap: 0.8rem; }
}
@media (max-width: 760px) {
  .desktop-lang { display: none; }
  .mobile-lang { display: inline-flex; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature:last-child { grid-column: auto; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .stats { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .g-tall, .g-wide, .g-sq, .g-half { grid-column: span 1; aspect-ratio: 1/1; }
  .step-body { grid-template-columns: 1fr; }
  .step-tag { grid-row: 1; }
  .field-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 70px; }
  .cookie { left: 0.8rem; right: 0.8rem; max-width: none; bottom: 78px; }
}
@media (max-width: 460px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .hero-card { left: 0; right: 0; margin-inline: auto; max-width: 90%; }
}
