/* ============================================
   TINTORI AVVOCATO — Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Source+Sans+3:wght@300;400;500;600&display=swap');

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

:root {
  --cream:      #faf8f4;
  --warm-bg:    #f4f0e8;
  --sand:       #e8dfd0;
  --rust:       #b85c38;
  --rust-lt:    #d4724f;
  --rust-pale:  #f0e0d8;
  --forest:     #2d4a3e;
  --ink:        #1e2420;
  --body:       #3d3d3a;
  --muted:      #7a7570;
  --white:      #ffffff;
  --blue:       #1a8cc7;
  --nav-h:      72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--cream);
  color: var(--body);
  line-height: 1.75;
  font-size: 17px;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--warm-bg); }
::-webkit-scrollbar-thumb { background: var(--rust); border-radius: 3px; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
  font-family: 'Lora', serif;
  font-weight: 500;
  line-height: 1.22;
  color: var(--ink);
}

/* ── UTILITIES ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 48px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .7rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--rust); margin-bottom: 14px;
  font-family: 'Source Sans 3', sans-serif;
}
.section-tag::before { content: ''; width: 18px; height: 2px; background: var(--rust); }
.section-title {
  font-size: clamp(1.7rem, 2.8vw, 2.6rem);
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--rust); }
.section-lead { font-size: 1rem; color: var(--muted); line-height: 1.85; }

.btn-primary {
  background: var(--rust); color: var(--white) !important;
  font-size: .9rem; font-weight: 600;
  padding: 14px 30px; border-radius: 8px;
  text-decoration: none !important;
  box-shadow: 0 4px 20px rgba(184,92,56,.4);
  transition: background .25s, transform .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--rust-lt); transform: translateY(-2px); }

.btn-ghost-light {
  background: rgba(255,255,255,.12); color: var(--white) !important;
  font-size: .9rem; font-weight: 500;
  padding: 14px 28px; border-radius: 8px;
  text-decoration: none !important; border: 1px solid rgba(255,255,255,.25);
  transition: background .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-ghost-light:hover { background: rgba(255,255,255,.2); }

/* Reveal animation */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── NAVIGATION ── */
#site-header {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--sand);
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  transition: box-shadow .3s;
}
#site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.09); }

.site-logo img { height: 44px; width: auto; }
.site-logo { text-decoration: none; display: flex; align-items: center; }

#primary-nav { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
#primary-nav > li { position: relative; }
#primary-nav a {
  font-size: .88rem; font-weight: 500;
  color: var(--body); text-decoration: none;
  transition: color .2s;
}
#primary-nav a:hover { color: var(--blue); }

/* Dropdown */
#primary-nav .sub-menu {
  display: none; list-style: none;
  position: absolute; top: calc(100% + 12px); left: 0;
  background: var(--white); border: 1px solid var(--sand);
  border-radius: 8px; min-width: 270px;
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  padding: 8px 0; z-index: 100; margin: 0;
}
#primary-nav li:hover > .sub-menu { display: block; }
#primary-nav .sub-menu a {
  display: block; padding: 10px 20px;
  border-left: 3px solid transparent;
  transition: background .2s, border-color .2s, color .2s;
}
#primary-nav .sub-menu a:hover { background: var(--cream); border-left-color: var(--blue); color: var(--blue); }
#primary-nav .sub-menu .sub-menu { top: 0; left: 100%; }

.nav-right { display: flex; align-items: center; gap: 14px; }

.nav-social { display: flex; gap: 8px; }
.nav-social a {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 700; color: white !important;
  text-decoration: none !important;
  transition: opacity .2s, transform .2s;
}
.nav-social a:hover { opacity: .85; transform: translateY(-1px); }
.soc-fb  { background: #1877f2; }
.soc-wc  { background: #07c160; }
.soc-wa  { background: #25d366; }
.soc-tg  { background: #2aabee; }

.nav-cta {
  background: var(--rust); color: var(--white) !important;
  font-size: .82rem; font-weight: 600;
  padding: 10px 22px; border-radius: 6px;
  text-decoration: none !important;
  transition: background .2s, transform .2s; white-space: nowrap;
}
.nav-cta:hover { background: var(--rust-lt); transform: translateY(-1px); }

/* ── HERO ── */
#hero {
  margin-top: var(--nav-h);
  position: relative; min-height: 88vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 30%;
  filter: brightness(.45); transform: scale(1.03);
  transition: transform 8s ease;
}
#hero:hover .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(30,36,32,.85) 0%, rgba(30,36,32,.55) 55%, rgba(30,36,32,.2) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 80px 64px; max-width: 720px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9); font-size: .72rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 99px;
  margin-bottom: 28px; width: fit-content;
  animation: fadeUp .7s .1s both;
}
.hero-eyebrow .dot { width: 6px; height: 6px; background: #7ec8a0; border-radius: 50%; }
.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  color: var(--white); margin-bottom: 24px;
  animation: fadeUp .8s .22s both;
}
.hero-title em { font-style: italic; color: #a8d5b5; }
.hero-body {
  font-size: 1rem; color: rgba(255,255,255,.78);
  max-width: 560px; line-height: 1.85; font-weight: 300;
  animation: fadeUp .8s .34s both;
}
.hero-body p + p { margin-top: 12px; }
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-top: 40px; animation: fadeUp .8s .48s both;
}
.hero-tags {
  margin-top: 48px; display: flex; flex-wrap: wrap; gap: 10px;
  animation: fadeUp .8s .62s both;
}
.hero-tag {
  font-size: .74rem; color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  padding: 6px 14px; border-radius: 99px;
}
.hero-studio-card {
  position: absolute; bottom: 40px; right: 60px; z-index: 3;
  background: rgba(255,255,255,.95); backdrop-filter: blur(10px);
  border-radius: 12px; padding: 20px 26px;
  display: flex; align-items: center; gap: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
  animation: fadeUp .8s .75s both;
}
.hero-studio-card img { height: 38px; width: auto; }
.hero-studio-card strong { display: block; font-size: .82rem; font-weight: 600; color: var(--ink); }
.hero-studio-card span { font-size: .72rem; color: var(--muted); }

/* ── STRIP ── */
.strip {
  background: var(--forest); padding: 28px 48px;
}
.strip-inner {
  max-width: 1000px; margin: 0 auto;
  display: flex; align-items: center; gap: 24px;
}
.strip-icon {
  width: 44px; height: 44px; background: rgba(255,255,255,.15);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #a8d5b5; font-size: 1.2rem; flex-shrink: 0;
}
.strip-inner p {
  font-family: 'Lora', serif; font-size: 1rem;
  font-style: italic; color: rgba(255,255,255,.85); line-height: 1.7;
}

/* ── SERVICES ── */
#services { background: var(--white); padding: 96px 0; }
.services-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: end; margin-bottom: 52px;
}
.services-body { font-size: .95rem; color: var(--body); line-height: 1.85; }
.services-body p + p { margin-top: 14px; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--sand); }
.service-card { background: var(--white); overflow: hidden; position: relative; transition: box-shadow .3s; }
.service-card:hover { box-shadow: 0 0 0 2px var(--rust) inset; z-index: 1; }
.service-card-img { width: 100%; aspect-ratio: 16/9; overflow: hidden; position: relative; }
.service-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s, filter .5s;
  filter: grayscale(20%) brightness(.92);
}
.service-card:hover .service-card-img img { transform: scale(1.04); filter: grayscale(0%) brightness(1); }
.service-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,36,32,.5) 0%, transparent 60%);
}
.service-card-body { padding: 28px 28px 32px; }
.service-card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; background: var(--rust-pale);
  border-radius: 10px; font-size: 1.3rem; margin-bottom: 16px;
}
.service-title { font-size: 1.12rem; margin-bottom: 10px; }
.service-desc { font-size: .88rem; color: var(--muted); line-height: 1.8; }
.service-subs { margin-top: 16px; display: flex; flex-direction: column; gap: 6px; }
.service-sub {
  font-size: .78rem; color: var(--body); padding: 5px 10px;
  background: var(--cream); border-radius: 5px;
  display: flex; align-items: center; gap: 7px;
}
.service-sub::before { content: '→'; color: var(--rust); font-size: .7rem; font-weight: 700; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px; font-size: .82rem; font-weight: 600;
  color: var(--rust); text-decoration: none; transition: gap .2s;
}
.service-link:hover { gap: 12px; }

/* ── METHOD ── */
#method { background: var(--warm-bg); padding: 96px 0; }
.method-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.method-steps { display: flex; flex-direction: column; }
.method-step { display: flex; gap: 22px; padding: 26px 0; border-bottom: 1px solid var(--sand); }
.method-step:last-child { border-bottom: none; }
.method-num {
  width: 38px; height: 38px; background: var(--forest); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Lora', serif; font-weight: 600; font-size: .85rem; flex-shrink: 0;
}
.method-step-title { font-size: 1.05rem; margin-bottom: 7px; }
.method-step-text { font-size: .88rem; color: var(--muted); line-height: 1.8; }
.method-photo img { width: 100%; border-radius: 12px; aspect-ratio: 4/3; object-fit: cover; object-position: center 20%; }
.method-callout { margin-top: 22px; background: var(--forest); border-radius: 12px; padding: 26px; color: white; }
.method-callout h4 { font-size: 1.05rem; font-style: italic; color: #a8d5b5; margin-bottom: 10px; }
.method-callout p { font-size: .88rem; color: rgba(255,255,255,.72); line-height: 1.8; }
.method-callout a {
  display: inline-block; margin-top: 14px; color: #a8d5b5;
  font-size: .82rem; font-weight: 600; text-decoration: none;
  border-bottom: 1px solid rgba(168,213,181,.3); transition: border-color .2s;
}
.method-callout a:hover { border-color: #a8d5b5; }

/* ── ABOUT ── */
#about { background: var(--white); padding: 96px 0; }
.about-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.about-photo-wrap { position: relative; }
.about-photo-wrap img { width: 100%; border-radius: 12px; aspect-ratio: 3/4; object-fit: cover; object-position: top; }
.about-pullquote {
  position: absolute; bottom: -16px; right: -16px;
  background: var(--forest); color: var(--white);
  padding: 18px 22px; border-radius: 10px; max-width: 215px;
  box-shadow: 0 8px 28px rgba(0,0,0,.15);
}
.about-pullquote p { font-family: 'Lora', serif; font-size: .88rem; font-style: italic; line-height: 1.55; color: rgba(255,255,255,.9); }
.about-pullquote small { font-size: .67rem; color: #7ec8a0; margin-top: 8px; display: block; }
.about-body { font-size: .95rem; color: var(--body); line-height: 1.9; }
.about-body p + p { margin-top: 16px; }
.about-highlights { margin-top: 30px; display: flex; flex-direction: column; gap: 12px; }
.highlight { display: flex; align-items: flex-start; gap: 14px; padding: 15px 18px; background: var(--cream); border-radius: 8px; border-left: 3px solid var(--rust); }
.highlight-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.highlight-text { font-size: .88rem; color: var(--body); line-height: 1.6; }
.highlight-text strong { color: var(--ink); display: block; font-size: .9rem; margin-bottom: 2px; }

/* ── CONTACT ── */
#contact { background: var(--warm-bg); padding: 96px 0; }
.contact-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.contact-card { display: flex; gap: 16px; align-items: flex-start; padding: 18px 20px; background: var(--white); border-radius: 10px; border: 1px solid var(--sand); }
.contact-card-icon { width: 42px; height: 42px; background: var(--forest); color: white; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.contact-card-label { font-size: .65rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.contact-card-val { font-size: .92rem; color: var(--ink); font-weight: 500; }
.contact-card-sub { font-size: .75rem; color: var(--muted); margin-top: 2px; }
.wechat-card { background: var(--white); border-radius: 10px; border: 1px solid var(--sand); padding: 18px 20px; display: flex; gap: 16px; align-items: center; }
.wechat-card img { width: 64px; height: 64px; border-radius: 6px; }
.wechat-label { font-size: .65rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.wechat-val { font-size: .88rem; color: var(--ink); font-weight: 500; }
.wechat-sub { font-size: .74rem; color: var(--muted); margin-top: 2px; }
.contact-note { margin-top: 20px; padding: 16px 20px; background: var(--rust-pale); border-radius: 10px; border: 1px solid rgba(184,92,56,.18); display: flex; gap: 12px; align-items: flex-start; }
.contact-note p { font-size: .87rem; color: var(--forest); line-height: 1.7; }

/* Contact form */
.contact-form { background: var(--white); border: 1px solid var(--sand); border-radius: 16px; padding: 40px; }
.contact-form h3 { font-size: 1.3rem; color: var(--ink); margin-bottom: 6px; }
.form-lead { font-size: .87rem; color: var(--muted); margin-bottom: 26px; }
.form-row { margin-bottom: 15px; }
.form-row label { display: block; font-size: .77rem; font-weight: 600; color: var(--body); margin-bottom: 6px; }
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%; background: var(--cream); border: 1.5px solid var(--sand);
  border-radius: 8px; padding: 12px 15px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: .92rem; color: var(--ink); outline: none;
  transition: border-color .25s, box-shadow .25s;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus { border-color: var(--rust); box-shadow: 0 0 0 3px rgba(184,92,56,.1); }
.form-row textarea { resize: vertical; min-height: 110px; }
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit {
  width: 100%; background: var(--rust); color: white;
  border: none; border-radius: 8px; padding: 15px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: .95rem; font-weight: 600;
  cursor: pointer; transition: background .2s, transform .2s; margin-top: 4px;
}
.form-submit:hover { background: var(--rust-lt); transform: translateY(-1px); }
.privacy-note { font-size: .71rem; color: var(--muted); margin-top: 12px; line-height: 1.65; text-align: center; }

/* ── FOOTER ── */
#site-footer { background: var(--forest); color: rgba(255,255,255,.65); padding: 60px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-logo img { height: 40px; width: auto; margin-bottom: 16px; filter: brightness(10); opacity: .85; }
.footer-brand p { font-size: .83rem; line-height: 1.85; }
.footer-col h4 { font-size: .68rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: white; margin-bottom: 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: .83rem; color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: #a8d5b5; }
.footer-social { display: flex; gap: 8px; margin-top: 16px; }
.footer-social a { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .72rem; font-weight: 700; text-decoration: none !important; color: white !important; transition: opacity .2s, transform .2s; }
.footer-social a:hover { opacity: .8; transform: translateY(-2px); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; font-size: .75rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom a { color: rgba(255,255,255,.4); text-decoration: none; transition: color .2s; }
.footer-bottom a:hover { color: white; }

/* ── INNER PAGES ── */
.page-hero {
  margin-top: var(--nav-h);
  background: var(--forest); padding: 60px 0;
  position: relative; overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(.25) saturate(.5); }
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: white; font-size: clamp(1.8rem, 3vw, 3rem); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,.72); font-size: 1rem; max-width: 600px; }
.breadcrumb { font-size: .78rem; color: rgba(255,255,255,.5); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,.6); text-decoration: none; }
.breadcrumb a:hover { color: #a8d5b5; }

.page-content { padding: 80px 0; background: var(--white); }
.page-content-inner { display: grid; grid-template-columns: 1fr 320px; gap: 60px; align-items: start; }
.page-body { font-size: .97rem; color: var(--body); line-height: 1.9; }
.page-body h2 { font-size: 1.5rem; color: var(--ink); margin: 36px 0 14px; }
.page-body h3 { font-size: 1.2rem; color: var(--ink); margin: 28px 0 10px; }
.page-body p { margin-bottom: 16px; }
.page-body ul { margin: 0 0 16px 20px; }
.page-body li { margin-bottom: 8px; }
.page-sidebar { position: sticky; top: calc(var(--nav-h) + 24px); }
.sidebar-cta { background: var(--forest); border-radius: 12px; padding: 28px; color: white; margin-bottom: 20px; }
.sidebar-cta h4 { font-size: 1.05rem; font-style: italic; color: #a8d5b5; margin-bottom: 10px; }
.sidebar-cta p { font-size: .85rem; color: rgba(255,255,255,.72); line-height: 1.8; margin-bottom: 18px; }
.sidebar-cta .btn-sidebar {
  display: block; text-align: center;
  background: var(--rust); color: white !important; text-decoration: none !important;
  padding: 13px; border-radius: 8px; font-weight: 600; font-size: .88rem;
  transition: background .2s;
}
.sidebar-cta .btn-sidebar:hover { background: var(--rust-lt); }
.sidebar-services { background: var(--cream); border-radius: 12px; border: 1px solid var(--sand); padding: 24px; }
.sidebar-services h4 { font-size: .7rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.sidebar-services ul { list-style: none; margin: 0; padding: 0; }
.sidebar-services li { border-bottom: 1px solid var(--sand); }
.sidebar-services li:last-child { border-bottom: none; }
.sidebar-services a { display: block; padding: 11px 0; font-size: .88rem; color: var(--body); text-decoration: none; transition: color .2s; }
.sidebar-services a:hover { color: var(--rust); }
.sidebar-services a.active { color: var(--rust); font-weight: 600; }

/* ── SUBSERVICE CARDS (pagine interne) ── */
.subservice-cards { display: flex; flex-direction: column; gap: 32px; margin-top: 40px; }
.subservice-card {
  background: var(--cream); border-radius: 12px;
  border: 1px solid var(--sand); padding: 32px 36px;
  transition: box-shadow .3s;
}
.subservice-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.07); }
.subservice-header { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.subservice-icon {
  width: 48px; height: 48px; background: var(--rust-pale);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 1.4rem; flex-shrink: 0;
}
.subservice-header h2 { font-size: 1.25rem; margin: 0; }
.subservice-card p { font-size: .95rem; color: var(--body); line-height: 1.85; margin-bottom: 12px; }
.subservice-card ul { margin: 12px 0 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.subservice-card li {
  font-size: .88rem; color: var(--body); padding: 8px 12px;
  background: var(--white); border-radius: 6px; border: 1px solid var(--sand);
  display: flex; align-items: center; gap: 8px;
}
.subservice-card li::before { content: '→'; color: var(--rust); font-size: .75rem; font-weight: 700; flex-shrink: 0; }

.info-box {
  margin-top: 16px; padding: 14px 18px;
  background: rgba(45,74,62,.06); border-radius: 8px;
  border-left: 3px solid var(--forest);
  font-size: .88rem; color: var(--forest); line-height: 1.7;
}

.page-cta-box {
  margin-top: 52px; background: var(--forest);
  border-radius: 14px; padding: 40px 44px;
  color: white; text-align: center;
}
.page-cta-box h3 { color: #a8d5b5; font-size: 1.4rem; margin-bottom: 12px; }
.page-cta-box p { font-size: .95rem; color: rgba(255,255,255,.75); line-height: 1.8; margin-bottom: 28px; max-width: 540px; margin-left: auto; margin-right: auto; }

/* Chi siamo page */
.about-page-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; }
@media (max-width: 760px) { .about-page-grid { grid-template-columns: 1fr; } }

/* Immigrazione — box lingua */
.language-box {
  margin-top: 40px; padding: 28px 32px;
  background: var(--cream); border-radius: 12px;
  border: 1px solid var(--sand);
  border-left: 4px solid var(--rust);
  display: flex; gap: 20px; align-items: flex-start;
}
.language-box-icon { font-size: 2rem; flex-shrink: 0; }
.language-box h3 { font-size: 1.1rem; color: var(--ink); margin-bottom: 10px; }
.language-box p { font-size: .9rem; color: var(--body); line-height: 1.8; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ── RESPONSIVE ── */
@media (max-width: 980px) {
  #site-header { padding: 0 20px; }
  #primary-nav, .nav-social { display: none; }
  .hero-content { padding: 52px 20px; }
  .hero-studio-card { display: none; }
  .container { padding: 0 20px; }
  #services, #method, #about, #contact { padding: 64px 0; }
  .services-header, .method-inner, .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .strip { padding: 22px 20px; }
  .page-content-inner { grid-template-columns: 1fr; }
  .page-sidebar { position: static; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .form-2col { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
}
