:root {
  --italy-green: #009246;
  --italy-green-ui: #007a3d;
  --italy-green-deep: #006b38;
  --italy-white: #f4f1e9;
  --italy-red: #ce2b37;
  --italy-red-deep: #a81f2a;
  --ink: #20231f;
  --muted: #5b615b;
  --paper: #f3efe6;
  --paper-deep: #e9e3d7;
  --white: #fbfaf6;
  --navy: var(--italy-green);
  --navy-deep: var(--italy-green-deep);
  --navy-soft: #e2e8df;
  --rust: var(--italy-red);
  --rust-deep: var(--italy-red-deep);
  --rust-soft: #eee1df;
  --sage: var(--italy-green-deep);
  --sage-soft: #e2e8df;
  --gold: var(--italy-red);
  --line: #c9c5ba;
  --danger: var(--italy-red-deep);
  --danger-soft: #eee1df;
  --radius-sm: 2px;
  --radius-md: 3px;
  --radius-lg: 4px;
  --container: 1180px;
  --reading: 780px;
  --header-h: 82px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-wrap: break-word;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-underline-offset: .18em; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
[hidden] { display: none !important; }

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 10px;
  left: 10px;
  padding: 10px 15px;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--navy-deep);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform .15s ease;
}

.skip-link:focus { transform: none; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.reading { width: min(calc(100% - 40px), var(--reading)); margin-inline: auto; }

h1, h2, h3, .brand-name, .display {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy-deep);
}

h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(2.55rem, 5.6vw, 5rem); line-height: .98; letter-spacing: -.045em; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.07; letter-spacing: -.035em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); line-height: 1.2; }

.eyebrow {
  margin: 0 0 12px;
  color: var(--rust);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section { padding: 96px 0; }
.section-soft { background: var(--paper-deep); }
.section-dark { border-block: 1px solid var(--line); background: var(--white); color: var(--ink); }
.section-head { max-width: 790px; margin: 0 auto 44px; text-align: center; }
.section-head p:last-child { margin-bottom: 0; color: var(--muted); font-size: 1.12rem; }
.section-dark h2, .section-dark h3 { color: var(--italy-green-deep); }
.section-dark .eyebrow { color: var(--italy-red); }
.section-dark .section-head p:last-child { color: var(--muted); }

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary { background: var(--italy-green-ui); color: var(--white); }
.btn-primary:hover { background: var(--italy-green-deep); }
.btn-whatsapp { border-color: #075e54; background: #075e54; color: #fff; }
.btn-whatsapp:hover { border-color: #054b43; background: #054b43; }
.btn-whatsapp::before,
.footer-whatsapp::before,
.inline-whatsapp::before {
  width: 1.05em;
  height: 1.05em;
  flex: 0 0 auto;
  background: currentColor;
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 3h14a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H10l-5 4v-4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 3h14a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H10l-5 4v-4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2Z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.btn-telegram { background: var(--italy-red); color: var(--white); }
.btn-telegram:hover { background: var(--italy-red-deep); }
.btn-secondary { border-color: var(--italy-green); background: var(--white); color: var(--italy-green-deep); }
.btn-secondary:hover { border-color: var(--navy); background: var(--white); }
.btn-light { border-color: var(--italy-red); background: var(--white); color: var(--italy-red-deep); }

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  min-height: var(--header-h);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: flex; flex-direction: column; text-decoration: none; line-height: 1.15; }
.brand-name { font-size: 1.35rem; font-weight: 700; }
.brand-tagline { margin-top: 5px; color: var(--muted); font-size: .7rem; letter-spacing: .04em; }
.header-nav { display: flex; align-items: center; justify-content: flex-end; gap: 17px; }
.nav-link { min-height: 44px; display: inline-flex; align-items: center; color: var(--muted); font-size: .9rem; font-weight: 750; text-decoration: none; }
.nav-link:hover, .nav-link[aria-current="page"] { color: var(--navy-deep); }
.language-switcher { position: relative; margin-left: 4px; }
.language-switcher summary {
  min-width: 52px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--navy-deep);
  cursor: pointer;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .08em;
  list-style: none;
}
.language-switcher summary::-webkit-details-marker { display: none; }
.language-switcher summary::after { content: none; }
.language-switcher-list {
  position: absolute;
  z-index: 30;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  display: grid;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}
.language-switcher-list a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  color: var(--ink);
  text-decoration: none;
}
.language-switcher-list a:hover { background: var(--sage-soft); }
.language-switcher-list a[aria-current="true"] { color: var(--italy-green-deep); font-weight: 850; }
.header-phone,
.btn-header { min-height: 44px; padding: 10px 16px; background: var(--italy-green-ui); color: var(--white); }

.nav-toggle {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--navy-deep);
  cursor: pointer;
}

.nav-toggle span { width: 19px; height: 2px; background: currentColor; transition: transform .18s ease, opacity .18s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { border-bottom: 1px solid var(--line); background: var(--white); }
.mobile-menu nav { width: min(calc(100% - 40px), 560px); display: grid; gap: 4px; margin: auto; padding: 16px 0 24px; }
.mobile-link { min-height: 48px; display: flex; align-items: center; padding: 8px 14px; border-radius: var(--radius-sm); font-weight: 750; text-decoration: none; }
.mobile-link:hover { background: var(--paper-deep); }
.mobile-link.action { justify-content: center; margin-top: 5px; background: var(--italy-red); color: var(--white); }
.mobile-link.action + .mobile-link.action { background: var(--italy-green-ui); }

/* Hero */
.hero { min-height: calc(100vh - var(--header-h)); background: var(--white); }
.hero-grid { min-height: calc(100vh - var(--header-h)); display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr); align-items: stretch; }
.hero-grid.agency-hero { grid-template-columns: minmax(0, 1fr); }
.hero-grid.agency-hero .hero-copy { width: min(100%, 1180px); }
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 68px clamp(32px, 6vw, 88px) 68px max(20px, calc((100vw - var(--container))/2)); }
.hero-copy h1 { max-width: 760px; margin-bottom: 24px; }
.hero-lead { max-width: 680px; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.25rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 22px 0 30px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 9px; }
.hero-proof span { padding: 7px 12px; border: 1px solid #aebcaf; border-radius: var(--radius-sm); background: var(--white); color: var(--italy-green-deep); font-size: .86rem; font-weight: 750; }
.territory-flags { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 24px; }
.territory-flag { min-height: 42px; display: inline-flex; align-items: center; gap: 9px; padding: 7px 11px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); color: var(--ink); font-size: .78rem; font-weight: 800; }
.flag { position: relative; width: 38px; height: 25px; flex: 0 0 auto; overflow: hidden; border: 1px solid rgba(32,38,34,.2); border-radius: 2px; }
.flag-italy { background: var(--white); }
.flag-italy::before, .flag-italy::after { content: ""; position: absolute; inset-block: 0; width: 33.333%; }
.flag-italy::before { left: 0; background: var(--italy-green); }
.flag-italy::after { right: 0; background: var(--italy-red); }
.flag-emilia { display: grid; place-items: center; border-color: var(--italy-green); background: var(--white); color: var(--italy-green-deep); font-size: .64rem; font-weight: 900; letter-spacing: -.03em; }
.flag-emilia::before, .flag-emilia::after { content: ""; position: absolute; inset-inline: 0; }
.flag-emilia::before { bottom: 0; height: 16%; background: var(--italy-green); }
.flag-emilia::after { bottom: 16%; height: 12%; background: var(--italy-red); }
.flag-san-marino { display: grid; place-items: center; background: #5aafd8; color: #6e5418; font-size: .58rem; font-weight: 900; }
.flag-san-marino::before { content: ""; position: absolute; inset: 0 0 50%; background: var(--white); }
.hero-photo { position: relative; min-height: 650px; overflow: hidden; background: #d9ded9; }
.hero-photo picture, .hero-photo img { width: 100%; height: 100%; }
.hero-photo img { position: absolute; inset: 0; object-fit: cover; object-position: 50% 24%; }
.hero-caption { position: absolute; z-index: 2; right: 18px; bottom: 18px; margin: 0; padding: 7px 10px; background: var(--italy-green-deep); color: var(--white); font-weight: 750; }

/* Cards and home content */
.situations-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.situation-card {
  min-height: 245px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}
.situation-num { margin-bottom: auto; color: var(--rust); font-size: .78rem; font-weight: 850; letter-spacing: .12em; }
.situation-card h3 { margin: 34px 0 10px; }
.situation-card p { margin-bottom: 0; color: var(--muted); }
.service-note { margin-top: 24px; padding: 24px; border: 1px solid #d2aaa8; border-radius: var(--radius-sm); background: var(--rust-soft); }

.split { display: grid; grid-template-columns: .86fr 1.14fr; gap: clamp(36px, 8vw, 100px); align-items: center; }
.about-photo { overflow: hidden; border-radius: var(--radius-lg); }
.about-photo img { width: 100%; aspect-ratio: .85; object-fit: cover; object-position: center 24%; }
.about-copy p { color: var(--muted); }
.facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 28px; }
.fact { padding: 18px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); }
.fact strong { display: block; color: var(--navy-deep); }
.fact span { color: var(--muted); font-size: .91rem; }

.article-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.article-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  text-decoration: none;
}
.article-card:hover { border-color: var(--italy-green-deep); }
.article-card .tag { width: fit-content; margin-bottom: 32px; padding: 5px 9px; border-radius: var(--radius-sm); background: var(--sage-soft); color: var(--sage); font-size: .74rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.article-card h3 { margin-bottom: 12px; }
.article-card p { color: var(--muted); }
.article-card .read-more { margin-top: auto; color: var(--rust-deep); font-weight: 850; }
.article-actions { margin-top: 30px; text-align: center; }

.geo-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.geo-card { padding: 26px; border: 1px solid #bcd9c9; border-radius: var(--radius-md); background: var(--white); }
.geo-card p { margin-bottom: 0; color: var(--muted); }

.pricing-grid { max-width: 1040px; margin-inline: auto; border-top: 1px solid var(--line); }
.price-card { min-width: 0; min-height: 0; display: grid; grid-template-columns: minmax(150px, .7fr) minmax(220px, 1.15fr) minmax(160px, .55fr) minmax(240px, 1fr); gap: 20px; align-items: start; padding: 26px 0; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; background: transparent; }
.price-card.featured { border-color: var(--line); background: transparent; }
.price-card .tag, .price-card.featured .tag { width: auto; padding: 0; border-radius: 0; background: transparent; color: var(--rust-deep); font-size: .74rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.price-card h3 { margin: 0; }
.price-amount { margin: 0; overflow-wrap: anywhere; color: var(--navy-deep); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.6rem, 3vw, 2.35rem); font-weight: 700; line-height: 1.05; }
.price-amount small { font-family: "Helvetica Neue", Arial, sans-serif; font-size: .9rem; font-weight: 750; }
.price-card p:last-child { margin: 0; color: var(--muted); }
.pricing-note { max-width: 780px; margin: 26px auto 0; padding: 20px 24px; border: 1px solid #d2aaa8; border-radius: var(--radius-sm); background: var(--rust-soft); color: var(--muted); }

.callback-box { display: grid; grid-template-columns: 1.1fr .9fr; gap: 34px; align-items: center; padding: clamp(30px, 5vw, 56px); border: 1px solid #bcd9c9; border-radius: var(--radius-lg); background: var(--sage-soft); }
.callback-box h2 { margin-bottom: 14px; }
.callback-box p { margin-bottom: 0; color: var(--muted); }
.callback-actions { display: flex; flex-direction: column; gap: 10px; }

.faq-list { max-width: 860px; margin: auto; display: grid; gap: 10px; }
details { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); }
summary { min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 15px 19px; color: var(--navy-deep); font-weight: 800; cursor: pointer; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; flex: 0 0 auto; color: var(--rust); font-size: 1.5rem; }
details[open] summary::after { content: "−"; }
.details-body { padding: 0 19px 18px; color: var(--muted); }
.details-body p:last-child { margin-bottom: 0; }

/* Internal pages */
.page-hero { padding: 78px 0 62px; border-bottom: 1px solid var(--line); background: var(--white); }
.page-hero .container { max-width: 930px; margin-left: max(20px, calc((100vw - var(--container))/2)); }
.page-hero h1 { max-width: 940px; margin-bottom: 22px; }
.page-hero .lead { max-width: 760px; color: var(--muted); font-size: 1.18rem; }
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; margin-bottom: 24px; color: var(--muted); font-size: .87rem; }
.breadcrumbs a { min-height: 44px; display: inline-flex; align-items: center; color: var(--navy); }

.articles-intro { max-width: 820px; margin: 0 auto 44px; }
.articles-intro p { color: var(--muted); }
.articles-intro-spaced { margin-top: 64px; }
.all-articles { grid-template-columns: repeat(2, 1fr); }

.contacts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.contact-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); }
.contact-card h2 { font-size: 2rem; }
.contact-primary { display: block; margin: 12px 0; color: var(--navy-deep); font-family: Georgia, serif; font-size: clamp(1.45rem, 3vw, 2.2rem); font-weight: 700; }
.inline-whatsapp { display: inline-flex; align-items: center; gap: 6px; color: var(--italy-green-deep); font-weight: 800; }
.social-list { display: grid; gap: 10px; }
.social-list a { min-height: 50px; display: flex; align-items: center; justify-content: space-between; padding: 10px 15px; border: 1px solid var(--line); border-radius: var(--radius-sm); text-decoration: none; font-weight: 750; }

/* Exhibition announcements */
.event-filters {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 16px;
  align-items: end;
  margin: 0 0 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper-deep);
}
.filter-field { display: grid; gap: 7px; }
.filter-field label { color: var(--navy-deep); font-size: .9rem; font-weight: 800; }
.filter-field select {
  width: 100%;
  min-height: 50px;
  padding: 10px 42px 10px 14px;
  border: 1px solid #a9c8b7;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
}
.filter-status { margin: 0 0 24px; color: var(--muted); font-size: .94rem; }
.filter-empty { margin: 28px 0 0; padding: 22px; border: 1px solid #d2aaa8; background: var(--rust-soft); color: var(--muted); }
.event-list { display: grid; gap: 22px; }
.event-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  scroll-margin-top: calc(var(--header-h) + 24px);
}
.event-content { min-width: 0; }
.event-date { display: flex; flex-direction: column; padding-bottom: 18px; border-bottom: 5px solid var(--italy-red); color: var(--navy-deep); }
.event-date strong { font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.6rem, 5vw, 4.2rem); line-height: .95; letter-spacing: -.04em; }
.event-date span { margin-top: 10px; color: var(--muted); font-weight: 800; }
.event-date .event-status-label {
  width: fit-content;
  margin-top: 14px;
  padding: 5px 9px;
  border-radius: var(--radius-sm);
  background: #ebe8e1;
  color: #5c5b56;
  font-size: .75rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.event-content h2 { margin-bottom: 16px; font-size: clamp(2rem, 3.5vw, 3rem); }
.event-content > p:not(.eyebrow):not(.event-source-note) { max-width: 790px; color: var(--muted); }
.event-content .event-source-note {
  max-width: 790px;
  margin-top: 12px;
  color: #6d746f;
  font-size: .82rem;
}
.event-card-past { border-color: #bbb8af; background: #dfddd7; }
.event-card-past .event-content, .event-card-past .event-date { color: #62635e; }
.event-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }

/* Article */
.article-hero { padding: 64px 0 50px; border-bottom: 1px solid var(--line); background: var(--white); }
.article-hero h1 { max-width: 970px; margin-bottom: 20px; font-size: clamp(2.45rem, 5.3vw, 4.8rem); }
.article-deck { max-width: 790px; color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.26rem); }
.article-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 22px; color: var(--muted); font-size: .88rem; }
.article-layout { display: grid; grid-template-columns: minmax(0, 780px) 260px; gap: 56px; align-items: start; padding: 64px 0 96px; }
.article-body { min-width: 0; }
.article-body h2 { margin: 56px 0 20px; font-size: clamp(1.8rem, 3vw, 2.55rem); }
.article-body h3 { margin: 32px 0 12px; }
.article-body p, .article-body li { color: #343934; }
.article-body ul, .article-body ol { padding-left: 1.3em; }
.article-body li + li { margin-top: 8px; }
.article-body strong { color: var(--ink); }
.article-toc { position: sticky; top: calc(var(--header-h) + 24px); padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); }
.article-toc strong { display: block; margin-bottom: 10px; color: var(--navy-deep); }
.article-toc a { min-height: 44px; display: flex; align-items: center; padding: 8px 0; color: var(--muted); font-size: .89rem; text-decoration: none; }
.article-toc a:hover { color: var(--rust); }

.quick-help, .emergency, .plain-term, .phrase-box, .source-box {
  margin: 28px 0;
  padding: 24px;
  border-radius: var(--radius-md);
}
.quick-help { border: 1px solid #a8cfba; background: var(--sage-soft); }
.quick-help h2, .emergency h2, .phrase-box h2 { margin-top: 0; font-size: 1.65rem; }
.quick-help ol { margin-bottom: 0; }
.emergency { border: 2px solid #dba9a4; background: var(--danger-soft); }
.emergency h2 { color: var(--danger); }
.emergency .btn { margin-top: 8px; }
.plain-term { border: 1px solid #d2aaa8; background: var(--rust-soft); }
.plain-term strong { display: block; margin-bottom: 6px; }
.phrase-box { background: var(--italy-green-deep); color: var(--white); }
.phrase-box h2, .phrase-box strong { color: var(--white); }
.phrase-list { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.phrase-list li { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .9fr) minmax(0, 1fr); gap: 16px; padding-bottom: 9px; border-bottom: 1px solid rgba(255,255,255,.16); color: #e4edef; }
.phrase-list li:last-child { padding-bottom: 0; border-bottom: 0; }
.phrase-list span { color: #d5e5dc; }
.phrase-list .phrase-pronunciation { color: #ffd3d6; font-style: italic; }
.article-table-wrap { margin: 26px 0; overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); }
.article-table { width: 100%; min-width: 680px; border-collapse: collapse; }
.article-table th, .article-table td { padding: 13px 15px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.article-table th { background: var(--paper-deep); color: var(--navy-deep); font-size: .85rem; }
.article-table tr:last-child td { border-bottom: 0; }
.article-table .pronunciation { color: var(--rust-deep); font-style: italic; }
.species-gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; margin: 28px 0 38px; padding: 0; list-style: none; }
.species-card { overflow: hidden; margin: 0; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); }
.species-card img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: var(--paper-deep); }
.species-card figcaption { padding: 20px; }
.species-card h3 { margin: 0 0 12px; font-size: 1.24rem; }
.species-card p { margin: 8px 0 0; font-size: .94rem; }
.species-card .photo-credit { display: block; margin-top: 14px; color: var(--muted); font-size: .72rem; line-height: 1.45; }
.species-card .photo-credit a { color: inherit; text-decoration: underline; }
.species-danger { color: var(--rust-deep); }
.source-box { border: 1px solid var(--line); background: var(--paper-deep); }
.source-box h2 { margin-top: 0; font-size: 1.45rem; }
.source-box li { font-size: .93rem; }
.article-cta { margin-top: 50px; padding: 34px; border-radius: var(--radius-lg); background: var(--rust-soft); }
.article-cta h2 { margin-top: 0; }
.article-cta-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.article-note { margin: 26px 0; padding: 20px 22px; border: 1px solid #aebcaf; border-radius: var(--radius-sm); background: var(--sage-soft); }
.article-note p:last-child { margin-bottom: 0; }
.series-index { margin: 34px 0; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); }
.series-index h2 { margin-top: 0; font-size: 1.65rem; }
.series-index ol { margin-bottom: 0; }
.series-index a { color: var(--navy-deep); font-weight: 750; }
.series-nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 40px 0; }
.series-nav a { min-height: 96px; display: flex; flex-direction: column; justify-content: center; padding: 18px 20px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); color: var(--navy-deep); text-decoration: none; }
.series-nav a:hover { border-color: var(--rust); }
.series-nav small { display: block; margin-bottom: 4px; color: var(--muted); font-weight: 700; }
.series-nav .next { text-align: right; }
.article-source-link { font-weight: 750; }
.status-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin: 26px 0; }
.status-card { padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); }
.status-card h3 { margin-top: 0; }
.status-card p:last-child { margin-bottom: 0; }
.article-checklist { padding: 24px 26px; border: 1px solid #d9cbbd; border-radius: var(--radius-md); background: #fffaf4; }
.article-checklist h2, .article-checklist h3 { margin-top: 0; }
.related { padding: 70px 0; background: var(--paper-deep); }
.related .article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* Legal */
.legal-header-actions { display: flex; align-items: center; gap: 18px; }
.legal-back { color: var(--muted); font-weight: 750; text-decoration: none; }
.legal-main { padding: 70px 0 100px; }
.legal-hero { max-width: 840px; }
.legal-hero h1 { margin-bottom: 18px; font-size: clamp(2.35rem, 5vw, 4.2rem); }
.legal-notice { margin: 30px 0; padding: 20px; border: 1px solid #d2aaa8; background: var(--rust-soft); }
.legal-layout { display: grid; grid-template-columns: 240px minmax(0, 760px); gap: 60px; align-items: start; }
.legal-toc { position: sticky; top: calc(var(--header-h) + 24px); display: grid; gap: 8px; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); }
.legal-toc a { min-height: 44px; display: flex; align-items: center; color: var(--muted); text-decoration: none; }
.legal-section { padding: 12px 0 30px; }
.legal-section h2 { font-size: 2rem; }
.legal-section p, .legal-section li { color: var(--muted); }
.legal-meta { font-size: .9rem; }

/* Footer */
.site-footer { padding: 54px 0 100px; border-top: 1px solid var(--line); background: var(--italy-green-deep); color: #edf7f1; }
.footer-grid,
.footer-inner { display: grid; grid-template-columns: 1.05fr .8fr 1.15fr; gap: 34px; }
.footer-brand-name { margin-bottom: 8px; color: var(--white); font-family: Georgia, serif; font-size: 1.5rem; font-weight: 700; }
.footer-whatsapp {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--white);
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}
.footer-whatsapp:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.footer-links { display: grid; align-content: start; gap: 8px; }
.footer-link { min-height: 44px; display: flex; align-items: center; color: #edf7f1; text-decoration: none; }
.footer-link:hover { color: var(--white); text-decoration: underline; }
.footer-note,
.footer-disclaimer { color: #c9ded2; font-size: .87rem; }
.footer-copy { margin-bottom: 0; color: #c9ded2; font-size: .8rem; }

.mobile-contact-bar {
  position: fixed;
  z-index: 1100;
  inset: auto 0 0;
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 8px max(10px, env(safe-area-inset-right)) calc(8px + env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
  gap: 8px;
  border-top: 1px solid var(--line);
  background: var(--white);
}
.mobile-contact-bar .btn { min-width: 0; min-height: 46px; padding: 10px 6px; font-size: .9rem; hyphens: none; overflow-wrap: normal; }

:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 2px;
  box-shadow: 0 0 0 6px var(--ink);
}

@media (max-width: 1060px) {
  .hero-grid { grid-template-columns: 1.08fr .92fr; }
  .hero-copy { padding-left: 36px; }
  .situations-grid, .article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-layout { grid-template-columns: minmax(0, 1fr) 230px; gap: 36px; }
}

@media (max-width: 860px) {
  :root { --header-h: 72px; }
  .header-inner { flex-wrap: wrap; padding-block: 10px; }
  .header-nav { width: 100%; flex-wrap: wrap; justify-content: space-between; gap: 8px 14px; }
  .nav-link { font-size: .84rem; }
  .header-phone, .btn-header { min-height: 44px; padding: 10px 14px; }
  .nav-toggle { display: none; }
  .js .header-inner { flex-wrap: nowrap; padding-block: 0; }
  .js .header-nav { display: none; }
  .js .nav-toggle { display: flex; }
  .hero, .hero-grid { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding: 58px 24px 46px; }
  .hero-photo { min-height: 600px; }
  .split, .callback-box, .contacts-grid { grid-template-columns: 1fr; }
  .geo-grid { grid-template-columns: minmax(0, 1fr); }
  .article-layout { grid-template-columns: 1fr; }
  .article-toc { position: static; order: -1; }
  .related .article-grid { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; gap: 28px; }
  .legal-toc { position: static; }
  .footer-grid, .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-note, .footer-disclaimer { grid-column: 1 / -1; }
  .event-card { grid-template-columns: 1fr; gap: 26px; }
  .event-date { max-width: 260px; }
  .event-filters { grid-template-columns: 1fr 1fr; }
  .event-filters .btn { grid-column: 1 / -1; }
  .price-card { grid-template-columns: minmax(130px, .6fr) minmax(0, 1.4fr); }
  .price-amount, .price-card p:last-child { grid-column: 2; }
}

@media (max-width: 620px) {
  body { font-size: 16px; padding-bottom: 70px; }
  .container, .reading { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 70px 0; }
  .brand-tagline { display: none; }
  .brand-name { font-size: 1.15rem; }
  .hero-copy { padding-inline: 18px; }
  .hero-copy h1 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .hero-photo { min-height: 520px; }
  .hero-photo img { object-position: 50% 22%; }
  .situations-grid, .article-grid, .all-articles { grid-template-columns: minmax(0, 1fr); }
  .price-card { grid-template-columns: minmax(0, 1fr); gap: 10px; padding: 22px 0; }
  .price-amount, .price-card p:last-child { grid-column: auto; }
  .species-gallery { grid-template-columns: minmax(0, 1fr); }
  .situation-card { min-height: 215px; }
  .facts { grid-template-columns: 1fr; }
  .page-hero, .article-hero { padding: 54px 0 42px; }
  .page-hero .container { margin-inline: auto; }
  .page-hero h1, .event-content h2 { overflow-wrap: anywhere; }
  .article-layout { padding: 42px 0 70px; }
  .quick-help, .emergency, .plain-term, .phrase-box, .source-box { margin: 22px 0; padding: 20px; border-radius: var(--radius-md); }
  .phrase-list li { grid-template-columns: 1fr; gap: 2px; }
  .article-cta { padding: 24px; }
  .article-cta-actions { display: grid; }
  .status-cards, .series-nav { grid-template-columns: 1fr; }
  .series-nav .next { text-align: left; }
  .legal-header-actions .legal-back { display: none; }
  .legal-header-actions .btn { min-height: 42px; padding: 9px 13px; font-size: .82rem; }
  .footer-grid, .footer-inner { grid-template-columns: 1fr; }
  .footer-note, .footer-disclaimer { grid-column: auto; }
  .mobile-contact-bar { display: grid; }
  .event-actions { display: grid; }
  .event-actions .btn { width: 100%; }
  .event-filters { grid-template-columns: 1fr; padding: 18px; }
  .event-filters .btn { grid-column: auto; width: 100%; }
}

@media (max-width: 360px) {
  .header-inner { gap: 8px; }
  .brand { min-width: 0; }
  .language-switcher { flex: 0 0 auto; margin-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
