:root {
  --ink: #13201e;
  --ink-2: #1d2d2a;
  --ink-3: #2b3d39;
  --paper: #f4f0e8;
  --paper-2: #ebe5da;
  --paper-3: #ded5c7;
  --white: #fffdf8;
  --bronze: #9a7452;
  --bronze-dark: #765337;
  --sage: #9ca99f;
  --text: #23302d;
  --muted: #66716e;
  --line: rgba(19, 32, 30, .14);
  --line-light: rgba(255,255,255,.15);
  --danger: #8f3b36;
  --success: #287150;
  --shadow-sm: 0 14px 38px rgba(19, 32, 30, .08);
  --shadow-lg: 0 28px 80px rgba(19, 32, 30, .16);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 38px;
  --container: min(1240px, calc(100% - 40px));
  --header-height: 88px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--text);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--bronze); color: var(--white); }

.container { width: var(--container); margin-inline: auto; }
.serif, h1, h2, h3 { font-family: "DM Serif Display", Georgia, serif; font-weight: 400; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--bronze-dark);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.35;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; }
.section-title {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.65rem, 5vw, 5rem);
  line-height: .98;
  letter-spacing: -.035em;
}
.section-lead { max-width: 710px; margin: 24px 0 0; color: var(--muted); font-size: clamp(1.02rem, 1.6vw, 1.25rem); }
.muted { color: var(--muted); }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  transition: background .3s ease, box-shadow .3s ease, height .3s ease;
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: rgba(255,255,255,.13);
  transition: background .3s ease;
}
.site-header.is-scrolled {
  height: 76px;
  background: rgba(244, 240, 232, .92);
  box-shadow: 0 10px 34px rgba(19,32,30,.08);
  backdrop-filter: blur(16px);
}
.site-header.is-scrolled::after { background: var(--line); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 13px; color: var(--white); min-width: max-content; }
.site-header.is-scrolled .brand { color: var(--ink); }
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1rem;
  letter-spacing: -.05em;
}
.site-header.is-scrolled .brand-mark { border-color: rgba(19,32,30,.3); }
.brand-copy { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: "DM Serif Display", Georgia, serif; font-size: 1.3rem; letter-spacing: -.02em; }
.brand-role { margin-top: 5px; font-size: .61rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; opacity: .68; }
.header-actions { display: flex; align-items: center; gap: 18px; }
.desktop-nav { display: flex; align-items: center; gap: clamp(17px, 2.1vw, 32px); }
.nav-link {
  position: relative;
  color: rgba(255,255,255,.78);
  font-size: .79rem;
  font-weight: 700;
  letter-spacing: .055em;
  text-transform: uppercase;
  transition: color .2s ease;
}
.site-header.is-scrolled .nav-link { color: rgba(19,32,30,.68); }
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -9px;
  height: 1px;
  background: var(--bronze);
  transition: right .25s ease;
}
.nav-link:hover, .nav-link.is-active { color: var(--white); }
.site-header.is-scrolled .nav-link:hover,
.site-header.is-scrolled .nav-link.is-active { color: var(--ink); }
.nav-link:hover::after, .nav-link.is-active::after { right: 0; }
.header-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  color: var(--white);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.header-quote:hover { background: var(--white); color: var(--ink); }
.site-header.is-scrolled .header-quote { border-color: var(--ink); color: var(--ink); }
.site-header.is-scrolled .header-quote:hover { background: var(--ink); color: var(--white); }
.language-switcher { display: flex; align-items: center; gap: 5px; }
.language-link {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: rgba(255,255,255,.62);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .04em;
  transition: background .2s ease, color .2s ease;
}
.site-header.is-scrolled .language-link { color: var(--muted); }
.language-link:hover, .language-link.is-active { background: rgba(255,255,255,.13); color: var(--white); }
.site-header.is-scrolled .language-link:hover,
.site-header.is-scrolled .language-link.is-active { background: var(--ink); color: var(--white); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
.site-header.is-scrolled .menu-toggle { border-color: rgba(19,32,30,.3); }
.menu-toggle span { display: block; width: 18px; height: 1px; margin: 5px auto; background: var(--white); transition: transform .25s ease, opacity .25s ease; }
.site-header.is-scrolled .menu-toggle span { background: var(--ink); }
.menu-toggle.is-open span:first-child { transform: translateY(3px) rotate(45deg); }
.menu-toggle.is-open span:last-child { transform: translateY(-3px) rotate(-45deg); }
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  align-content: center;
  padding: 110px 24px 40px;
  background: var(--ink);
  color: var(--white);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-14px);
  transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-nav { display: grid; gap: 4px; width: min(520px, 100%); margin-inline: auto; }
.mobile-nav a { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.12); font-family: "DM Serif Display", Georgia, serif; font-size: clamp(1.8rem, 7vw, 2.8rem); line-height: 1.15; }
.mobile-meta { width: min(520px, 100%); margin: 34px auto 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; color: rgba(255,255,255,.65); }

.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .095em;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--bronze); color: var(--white); box-shadow: 0 14px 34px rgba(118,83,55,.23); }
.btn-primary:hover { background: var(--bronze-dark); box-shadow: 0 18px 40px rgba(118,83,55,.3); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--ink-3); }
.btn-light { background: var(--white); color: var(--ink); }
.btn-light:hover { box-shadow: var(--shadow-sm); }
.btn-outline { border-color: rgba(19,32,30,.28); color: var(--ink); }
.btn-outline:hover { border-color: var(--ink); background: var(--ink); color: var(--white); }
.btn-outline-light { border-color: rgba(255,255,255,.3); color: var(--white); }
.btn-outline-light:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn svg { width: 18px; height: 18px; }

.hero {
  position: relative;
  min-height: 790px;
  display: flex;
  align-items: stretch;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 22% 22%, rgba(156,169,159,.19), transparent 34%), linear-gradient(90deg, rgba(19,32,30,.98) 0%, rgba(19,32,30,.92) 48%, rgba(19,32,30,.25) 74%, rgba(19,32,30,.14) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  z-index: 3;
  height: 100px;
  background: var(--paper);
  clip-path: polygon(0 70%, 72% 100%, 100% 62%, 100% 100%, 0 100%);
}
.hero-background { position: absolute; inset: 0 0 0 46%; }
.hero-background img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.78) contrast(.92); }
.hero-inner { position: relative; z-index: 4; width: var(--container); margin: auto; padding: calc(var(--header-height) + 100px) 0 150px; }
.hero-copy { max-width: 760px; }
.hero .eyebrow { color: #d5b18f; }
.hero h1 { max-width: 820px; margin: 0; font-size: clamp(3.5rem, 7.2vw, 7.5rem); line-height: .88; letter-spacing: -.052em; text-wrap: balance; }
.hero-lead { max-width: 670px; margin: 30px 0 0; color: rgba(255,255,255,.7); font-size: clamp(1.06rem, 1.65vw, 1.35rem); line-height: 1.75; }
.hero-actions { margin-top: 38px; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 26px 42px; margin-top: 54px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.15); }
.hero-fact { max-width: 270px; }
.hero-fact strong { display: block; font-family: "DM Serif Display", Georgia, serif; font-size: 1.35rem; font-weight: 400; }
.hero-fact span { display: block; margin-top: 4px; color: rgba(255,255,255,.55); font-size: .74rem; letter-spacing: .08em; line-height: 1.5; text-transform: uppercase; }
.appointment-ribbon {
  position: absolute;
  right: clamp(20px, 4vw, 64px);
  bottom: 135px;
  z-index: 5;
  max-width: 310px;
  padding: 22px 24px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius-sm);
  background: rgba(19,32,30,.72);
  backdrop-filter: blur(14px);
  color: rgba(255,255,255,.78);
  font-size: .71rem;
  font-weight: 800;
  letter-spacing: .11em;
  line-height: 1.6;
  text-transform: uppercase;
}

.section { padding: clamp(90px, 10vw, 150px) 0; }
.section-compact { padding: clamp(68px, 8vw, 110px) 0; }
.section-dark { background: var(--ink); color: var(--white); }
.section-dark .section-title { color: var(--white); }
.section-dark .section-lead { color: rgba(255,255,255,.62); }
.section-dark .eyebrow { color: #d5b18f; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 62px; }
.section-head .section-lead { max-width: 440px; margin: 0; }

.services-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.service-card {
  position: relative;
  grid-column: span 4;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,253,248,.5);
  overflow: hidden;
  transition: transform .28s ease, background .28s ease, box-shadow .28s ease;
}
.service-card:nth-child(1), .service-card:nth-child(5) { grid-column: span 5; }
.service-card:nth-child(2), .service-card:nth-child(6) { grid-column: span 7; }
.service-card:nth-child(3), .service-card:nth-child(4) { grid-column: span 6; }
.service-card::after {
  content: "";
  position: absolute;
  width: 190px; height: 190px;
  right: -85px; bottom: -90px;
  border: 1px solid rgba(154,116,82,.23);
  border-radius: 50%;
  transition: transform .4s ease;
}
.service-card:hover { transform: translateY(-6px); background: var(--white); box-shadow: var(--shadow-sm); }
.service-card:hover::after { transform: scale(1.25); }
.service-number { color: var(--bronze); font-size: .72rem; font-weight: 800; letter-spacing: .12em; }
.service-card h3 { max-width: 560px; margin: auto 0 18px; color: var(--ink); font-size: clamp(1.75rem, 3vw, 2.75rem); line-height: 1.08; letter-spacing: -.025em; }
.service-card p { position: relative; z-index: 1; max-width: 580px; margin: 0; color: var(--muted); }

.price-panel {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  overflow: hidden;
}
.price-main, .price-note { padding: clamp(30px, 5vw, 54px); background: var(--ink); color: var(--white); }
.price-main p, .price-note p { margin: 0; }
.price-main p:first-child { font-family: "DM Serif Display", Georgia, serif; font-size: clamp(2rem, 4vw, 3.75rem); line-height: 1.05; }
.price-note { display: flex; flex-direction: column; justify-content: center; background: var(--paper-2); color: var(--ink); }
.price-note p:first-child { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 700; }
.price-note p:last-child { margin-top: 12px; color: var(--muted); }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.16); }
.process-step { position: relative; padding: 38px 28px 0 0; }
.process-step::before { content: ""; position: absolute; top: -5px; left: 0; width: 10px; height: 10px; border-radius: 50%; background: var(--bronze); }
.process-number { color: #d5b18f; font-size: .73rem; font-weight: 800; letter-spacing: .12em; }
.process-step h3 { margin: 26px 0 12px; font-size: clamp(1.65rem, 2.5vw, 2.35rem); line-height: 1.1; }
.process-step p { margin: 0; color: rgba(255,255,255,.58); }

.page-hero {
  position: relative;
  padding: calc(var(--header-height) + 100px) 0 95px;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}
.page-hero::before { content: ""; position: absolute; width: 560px; height: 560px; right: -230px; top: -260px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.page-hero::after { content: ""; position: absolute; width: 330px; height: 330px; right: -80px; top: -145px; border: 1px solid rgba(213,177,143,.24); border-radius: 50%; }
.page-hero .eyebrow { color: #d5b18f; }
.page-hero h1 { position: relative; z-index: 1; max-width: 940px; margin: 0; font-size: clamp(3.4rem, 7vw, 7rem); line-height: .9; letter-spacing: -.045em; }
.page-hero p { position: relative; z-index: 1; max-width: 710px; margin: 28px 0 0; color: rgba(255,255,255,.65); font-size: clamp(1.05rem, 1.8vw, 1.3rem); }

.profile-intro { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(48px, 8vw, 110px); align-items: center; }
.profile-image-wrap { position: relative; }
.profile-image-wrap::before { content: ""; position: absolute; inset: 26px -24px -26px 24px; border: 1px solid rgba(154,116,82,.38); border-radius: var(--radius-lg); }
.profile-image { position: relative; width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.profile-copy > p { margin: 0; color: var(--muted); font-size: clamp(1.12rem, 1.8vw, 1.38rem); }
.credential-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 38px; }
.credential-card { min-height: 180px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(255,253,248,.62); }
.credential-card h3 { margin: 0 0 14px; color: var(--bronze-dark); font-family: "Manrope", sans-serif; font-size: .7rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.credential-card p { margin: 0; color: var(--text); font-size: .91rem; line-height: 1.65; }
.editorial-copy { max-width: 960px; margin-inline: auto; }
.editorial-copy > p { color: var(--muted); font-size: 1.12rem; }
.editorial-section { display: grid; grid-template-columns: .48fr 1.52fr; gap: 60px; padding: 58px 0; border-top: 1px solid var(--line); }
.editorial-section h2 { margin: 0; color: var(--ink); font-size: clamp(2rem, 3.5vw, 3.2rem); line-height: 1; }
.editorial-list { display: grid; gap: 26px; margin: 0; padding: 0; list-style: none; }
.editorial-list li { position: relative; padding-left: 28px; color: var(--muted); }
.editorial-list li::before { content: ""; position: absolute; left: 0; top: .78em; width: 10px; height: 1px; background: var(--bronze); }
.editorial-list strong { color: var(--ink); }
.language-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.language-chip { padding: 13px 18px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); }
.language-chip span { color: var(--bronze-dark); }
.notice { padding: clamp(28px, 5vw, 48px); border-radius: var(--radius); background: #f0dfd8; border: 1px solid rgba(143,59,54,.18); }
.notice h2 { margin: 0 0 14px; color: var(--danger); font-size: clamp(1.8rem, 3vw, 2.7rem); }
.notice p { margin: 0; color: #6d403d; }

.specialization-feature { display: grid; grid-template-columns: 1.06fr .94fr; gap: 18px; }
.specialization-photo { min-height: 650px; border-radius: var(--radius-lg); overflow: hidden; }
.specialization-photo img { width: 100%; height: 100%; object-fit: cover; }
.specialization-intro { display: flex; flex-direction: column; justify-content: space-between; padding: clamp(34px, 6vw, 64px); border-radius: var(--radius-lg); background: var(--ink); color: var(--white); }
.specialization-intro > p { margin: 0; color: rgba(255,255,255,.66); font-size: clamp(1.15rem, 2vw, 1.45rem); }
.specialization-intro .button-row { margin-top: 48px; }
.specialization-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 18px; }
.specialization-item { padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,253,248,.55); }
.specialization-item h2 { margin: 0 0 14px; color: var(--ink); font-size: clamp(1.55rem, 2.4vw, 2.2rem); line-height: 1.1; }
.specialization-item p { margin: 0; color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 18px; }
.contact-panel { min-height: 520px; padding: clamp(34px, 6vw, 64px); border-radius: var(--radius-lg); }
.contact-panel-dark { display: flex; flex-direction: column; background: var(--ink); color: var(--white); }
.contact-panel-light { background: var(--white); border: 1px solid var(--line); }
.contact-label { margin: 0 0 10px; color: #d5b18f; font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.contact-value { display: inline-block; margin: 0 0 34px; font-family: "DM Serif Display", Georgia, serif; font-size: clamp(1.65rem, 3.3vw, 3.1rem); line-height: 1.08; word-break: break-word; }
.contact-value:hover { color: #d5b18f; }
.contact-panel-dark .contact-actions { margin-top: auto; }
.contact-panel-light address { margin-top: 28px; color: var(--ink); font-family: "DM Serif Display", Georgia, serif; font-size: clamp(1.9rem, 3vw, 3rem); font-style: normal; line-height: 1.28; }
.map-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 38px; color: var(--bronze-dark); font-weight: 800; }

.quote-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 18px; align-items: start; }
.quote-aside { position: sticky; top: 105px; padding: clamp(30px, 4vw, 46px); border-radius: var(--radius-lg); background: var(--ink); color: var(--white); }
.quote-aside p { color: rgba(255,255,255,.65); }
.quote-aside a { color: #d5b18f; text-decoration: underline; text-underline-offset: 4px; }
.quote-aside ul { margin: 18px 0 0; padding-left: 20px; color: rgba(255,255,255,.7); }
.quote-note { margin-top: 28px; padding: 20px; border-left: 3px solid var(--bronze); background: rgba(255,255,255,.07); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; color: rgba(255,255,255,.82); }
.quote-card { padding: clamp(30px, 5vw, 56px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px 18px; }
.form-field { min-width: 0; }
.form-field-full { grid-column: 1 / -1; }
.form-field label { display: block; margin: 0 0 9px; color: var(--ink); font-size: .77rem; font-weight: 800; letter-spacing: .045em; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  border: 1px solid rgba(19,32,30,.18);
  border-radius: var(--radius-sm);
  background: #faf8f3;
  color: var(--ink);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.form-field input, .form-field select { min-height: 54px; padding: 0 16px; }
.form-field textarea { min-height: 160px; padding: 15px 16px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--bronze); background: var(--white); box-shadow: 0 0 0 4px rgba(154,116,82,.12); }
.form-helper { margin: 8px 0 0; color: var(--muted); font-size: .8rem; }
.file-stack { display: grid; gap: 10px; }
.file-input { padding: 9px !important; }
.file-input::file-selector-button { margin-right: 12px; padding: 9px 14px; border: 0; border-radius: 9px; background: var(--paper-2); color: var(--ink); font-weight: 700; cursor: pointer; }
.add-file { margin-top: 12px; padding: 0; border: 0; background: transparent; color: var(--bronze-dark); font-weight: 800; cursor: pointer; }
.add-file:disabled { opacity: .45; cursor: not-allowed; }
.alert { margin-bottom: 18px; padding: 20px 22px; border-radius: var(--radius-sm); }
.alert-success { border: 1px solid rgba(40,113,80,.22); background: #e2f0e8; color: #245b43; }
.alert-error { border: 1px solid rgba(143,59,54,.2); background: #f4dfdc; color: #733b37; }
.alert ul { margin: 8px 0 0; padding-left: 20px; }
.loading-overlay { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: 20px; background: rgba(19,32,30,.82); backdrop-filter: blur(8px); opacity: 0; visibility: hidden; transition: opacity .2s ease, visibility .2s ease; }
.loading-overlay.is-visible { opacity: 1; visibility: visible; }
.loading-card { width: min(440px, 100%); padding: 38px; border-radius: var(--radius); background: var(--paper); text-align: center; }
.spinner { width: 46px; height: 46px; margin: 0 auto 22px; border: 3px solid var(--paper-3); border-top-color: var(--bronze); border-radius: 50%; animation: spin .8s linear infinite; }
.loading-card h3 { margin: 0 0 10px; color: var(--ink); font-size: 2rem; }
.loading-card p { margin: 0; color: var(--muted); }
@keyframes spin { to { transform: rotate(360deg); } }

.privacy-layout { display: grid; grid-template-columns: .42fr 1.58fr; gap: clamp(38px, 7vw, 92px); align-items: start; }
.privacy-meta { position: sticky; top: 110px; }
.privacy-date { padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: .82rem; }
.privacy-date strong { display: block; margin-top: 6px; color: var(--ink); font-weight: 700; }
.privacy-content { display: grid; gap: 0; }
.privacy-content section { padding: 38px 0; border-top: 1px solid var(--line); }
.privacy-content section:first-child { padding-top: 0; border-top: 0; }
.privacy-content h2 { margin: 0 0 15px; color: var(--ink); font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.08; }
.privacy-content h3 { margin: 28px 0 10px; color: var(--ink); font-size: 1.55rem; }
.privacy-content p, .privacy-content li { color: var(--muted); }
.privacy-content ul { padding-left: 20px; }

.site-footer { padding: 84px 0 32px; background: #0d1715; color: var(--white); }
.footer-top { display: grid; grid-template-columns: 1.25fr .75fr .75fr; gap: 70px; }
.footer-brand { max-width: 430px; }
.footer-brand h2 { margin: 0; font-size: clamp(2.3rem, 4vw, 4rem); line-height: 1; }
.footer-brand > p { margin: 22px 0 0; color: rgba(255,255,255,.55); }
.footer-heading { margin: 0 0 18px; color: #d5b18f; font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.footer-links { display: grid; gap: 9px; }
.footer-links a, .footer-contact p { color: rgba(255,255,255,.62); }
.footer-links a:hover { color: var(--white); }
.reviews-link { display: inline-flex; flex-direction: column; gap: 6px; margin-top: 28px; padding: 16px 18px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-sm); }
.reviews-stars { color: #e3bd74; letter-spacing: .08em; }
.reviews-copy { color: rgba(255,255,255,.58); font-size: .8rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 70px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.4); font-size: .75rem; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

@media (max-width: 1120px) {
  .desktop-nav, .header-quote, .header-actions > .language-switcher { display: none; }
  .menu-toggle { display: block; }
  .hero-background { left: 36%; }
  .service-card, .service-card:nth-child(n) { grid-column: span 6; }
  .credential-grid { grid-template-columns: 1fr; }
  .credential-card { min-height: auto; }
}

@media (max-width: 900px) {
  :root { --header-height: 78px; }
  .brand-role { display: none; }
  .hero { display: block; min-height: 820px; }
  .hero::before { background: linear-gradient(180deg, rgba(19,32,30,.9) 0%, rgba(19,32,30,.82) 58%, rgba(19,32,30,.65) 100%); }
  .hero-background { inset: 0; opacity: .48; }
  .hero-inner { padding-top: calc(var(--header-height) + 90px); }
  .appointment-ribbon { position: relative; right: auto; bottom: auto; z-index: 5; width: var(--container); max-width: none; margin: -118px auto 105px; }
  .section-head { display: block; }
  .section-head .section-lead { max-width: 680px; margin-top: 24px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); row-gap: 55px; }
  .profile-intro, .specialization-feature, .contact-grid, .quote-layout, .privacy-layout { grid-template-columns: 1fr; }
  .profile-image-wrap { width: min(560px, calc(100% - 24px)); }
  .editorial-section { grid-template-columns: 1fr; gap: 24px; }
  .specialization-photo { min-height: 480px; }
  .quote-aside, .privacy-meta { position: static; }
  .privacy-meta { display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: end; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  :root { --container: min(100% - 28px, 1240px); }
  .brand-mark { width: 38px; height: 38px; }
  .brand-name { font-size: 1.12rem; }
  .hero { min-height: 760px; }
  .hero-inner { padding-bottom: 125px; }
  .hero h1 { font-size: clamp(3.05rem, 14vw, 4.8rem); }
  .hero-actions .btn { width: 100%; }
  .hero-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .appointment-ribbon { margin-top: -96px; }
  .section { padding: 82px 0; }
  .section-compact { padding: 62px 0; }
  .section-head { margin-bottom: 40px; }
  .services-grid { display: grid; grid-template-columns: 1fr; }
  .service-card, .service-card:nth-child(n) { grid-column: auto; min-height: 290px; padding: 28px; }
  .price-panel { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; border-top: 0; }
  .process-step { padding: 24px 0 30px 32px; border-left: 1px solid rgba(255,255,255,.16); }
  .process-step::before { top: 32px; left: -5px; }
  .process-step h3 { margin-top: 14px; }
  .page-hero { padding-top: calc(var(--header-height) + 72px); padding-bottom: 68px; }
  .page-hero h1 { font-size: clamp(3rem, 13vw, 4.7rem); }
  .profile-intro { gap: 62px; }
  .profile-image-wrap::before { inset: 18px -14px -18px 14px; }
  .specialization-photo { min-height: 380px; }
  .specialization-list { grid-template-columns: 1fr; }
  .contact-panel { min-height: auto; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field-full { grid-column: auto; }
  .quote-card, .quote-aside { border-radius: var(--radius); }
  .privacy-meta { display: block; }
  .privacy-date { margin-top: 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 42px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .mobile-meta { align-items: flex-start; flex-direction: column; }
}

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

/* MDC PREMIUM START */

/* Monogramma principale */
.brand-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;

  width: 48px;
  height: 48px;

  padding-left: 0.09em;
  border: 1px solid rgba(181, 145, 91, 0.62);
  border-radius: 15px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.13),
      rgba(255, 255, 255, 0.025)
    );

  color: inherit;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 8px 24px rgba(7, 20, 18, 0.11);

  overflow: hidden;
  isolation: isolate;

  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease;
}

/* Riflesso molto discreto */
.brand-mark::before {
  content: "";
  position: absolute;
  inset: 4px;
  z-index: -1;

  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 11px;

  pointer-events: none;
}

/* Piccolo dettaglio editoriale */
.brand-mark::after {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 7px;

  width: 9px;
  height: 1px;

  background: currentColor;
  opacity: 0.42;

  pointer-events: none;
}

.site-header a:hover .brand-mark,
.site-header a:focus-visible .brand-mark {
  transform: translateY(-2px);
  border-color: rgba(181, 145, 91, 0.95);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 12px 30px rgba(7, 20, 18, 0.16);
}

/* Header più raffinato quando si scorre */
.site-header {
  transition:
    background-color 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease,
    backdrop-filter 240ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(19, 32, 30, 0.09);

  box-shadow:
    0 1px 0 rgba(19, 32, 30, 0.04),
    0 14px 38px rgba(19, 32, 30, 0.055);

  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled .brand-mark {
  border-color: rgba(181, 145, 91, 0.58);
}

/* Mobile */
@media (max-width: 767px) {
  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    font-size: 0.78rem;
  }

  .brand-mark::before {
    inset: 3px;
    border-radius: 10px;
  }

  .brand-mark::after {
    right: 7px;
    bottom: 6px;
    width: 8px;
  }
}

/* MDC PREMIUM END */

/* COMPACT SERVICES START */

.services-grid {
  gap: 14px;
}

.service-card,
.service-card:nth-child(n) {
  min-height: 245px;
  padding: 26px 28px;
}

.service-card h3 {
  margin: auto 0 12px;
  font-size: clamp(1.5rem, 2.25vw, 2.05rem);
  line-height: 1.08;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-card::after {
  width: 135px;
  height: 135px;
  right: -60px;
  bottom: -65px;
}

@media (max-width: 1120px) {
  .service-card,
  .service-card:nth-child(n) {
    min-height: 225px;
    padding: 24px;
  }
}

@media (max-width: 680px) {
  .services-grid {
    gap: 12px;
  }

  .service-card,
  .service-card:nth-child(n) {
    min-height: 205px;
    padding: 21px 22px;
    border-radius: 18px;
  }

  .service-card h3 {
    margin-bottom: 10px;
    font-size: clamp(1.4rem, 7vw, 1.7rem);
  }

  .service-card p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .service-number {
    font-size: 0.68rem;
  }

  .service-card::after {
    width: 105px;
    height: 105px;
    right: -48px;
    bottom: -50px;
  }
}

/* COMPACT SERVICES END */

/* HERO POSITIONING START */
.hero-positioning {
    max-width: 760px;
    margin-top: 1.45rem;
    padding: 1rem 1.15rem;
    border-left: 2px solid var(--accent, #b89555);
    border-radius: 0 14px 14px 0;
    background: rgba(255, 255, 255, 0.045);
}

.hero-positioning-title {
    margin: 0 0 0.4rem;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--accent, #d0b06d);
}

.hero-positioning p:last-child {
    max-width: 68ch;
    margin: 0;
    font-size: 0.96rem;
    line-height: 1.65;
    opacity: 0.84;
}

@media (max-width: 700px) {
    .hero-positioning {
        margin-top: 1.15rem;
        padding: 0.9rem 1rem;
    }

    .hero-positioning-title {
        font-size: 1rem;
    }

    .hero-positioning p:last-child {
        font-size: 0.92rem;
    }
}
/* HERO POSITIONING END */

/* WHY CHOOSE ME CSS START */
.why-me-section {
    padding: clamp(70px, 9vw, 120px) 24px;
}

.why-me-inner {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.why-me-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
    gap: clamp(30px, 6vw, 80px);
    align-items: end;
    margin-bottom: 42px;
}

.why-me-heading h2 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(2.25rem, 5vw, 4.5rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.why-me-heading > p {
    max-width: 660px;
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.75;
    opacity: 0.78;
}

.why-me-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.why-me-card {
    position: relative;
    min-height: 310px;
    padding: 30px 26px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.035);
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background 180ms ease;
}

.why-me-card:hover {
    transform: translateY(-4px);
    border-color: rgba(208, 176, 109, 0.55);
    background: rgba(255, 255, 255, 0.055);
}

.why-me-number {
    display: block;
    margin-bottom: 52px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--accent, #d0b06d);
}

.why-me-card h3 {
    margin: 0 0 14px;
    font-size: 1.28rem;
    line-height: 1.2;
}

.why-me-card p {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.68;
    opacity: 0.76;
}

.why-me-closing {
    max-width: 900px;
    margin: 38px 0 0;
    padding-left: 20px;
    border-left: 2px solid var(--accent, #d0b06d);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    font-weight: 600;
    line-height: 1.55;
}

@media (max-width: 980px) {
    .why-me-heading {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .why-me-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .why-me-card {
        min-height: 265px;
    }
}

@media (max-width: 620px) {
    .why-me-section {
        padding: 64px 18px;
    }

    .why-me-grid {
        grid-template-columns: 1fr;
    }

    .why-me-card {
        min-height: auto;
        padding: 25px 22px;
    }

    .why-me-number {
        margin-bottom: 30px;
    }
}
/* WHY CHOOSE ME CSS END */

/* LANGUAGE GATE CSS START */
.language-gate[hidden] {
    display: none !important;
}

.language-gate {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
}

.language-gate-backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 50% 30%,
            rgba(31, 60, 55, 0.72),
            rgba(5, 11, 10, 0.96) 70%
        );
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.language-gate-dialog {
    position: relative;
    width: min(720px, 100%);
    max-height: calc(100vh - 44px);
    overflow-y: auto;
    padding: clamp(32px, 6vw, 58px);
    border: 1px solid rgba(208, 176, 109, 0.42);
    border-radius: 28px;
    background:
        linear-gradient(
            145deg,
            rgba(24, 42, 39, 0.99),
            rgba(10, 20, 18, 0.99)
        );
    box-shadow:
        0 35px 100px rgba(0, 0, 0, 0.65),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    text-align: center;
}

.language-gate-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    margin: 0 auto 18px;
    border: 1px solid rgba(208, 176, 109, 0.42);
    border-radius: 50%;
    background: rgba(208, 176, 109, 0.1);
    font-size: 2rem;
}

.language-gate-kicker {
    margin: 0 0 12px;
    color: var(--accent, #d0b06d);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.language-gate-dialog h2 {
    margin: 0;
    font-size: clamp(2.15rem, 6vw, 4.4rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.language-gate-description {
    max-width: 580px;
    margin: 18px auto 30px;
    font-size: clamp(0.96rem, 2vw, 1.08rem);
    line-height: 1.65;
    opacity: 0.76;
}

.language-gate-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.language-gate-choice {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 86px;
    padding: 18px 22px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.045);
    color: #ffffff;
    font-size: clamp(1.05rem, 2.5vw, 1.25rem);
    font-weight: 800;
    text-decoration: none;
    transition:
        transform 160ms ease,
        border-color 160ms ease,
        background 160ms ease;
}

.language-gate-choice:hover,
.language-gate-choice:focus-visible {
    transform: translateY(-3px);
    border-color: var(--accent, #d0b06d);
    background: rgba(208, 176, 109, 0.14);
    outline: none;
}

.language-gate-flag {
    margin-right: 15px;
    font-size: 2rem;
    line-height: 1;
}

.language-gate-note {
    margin: 24px 0 0;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.52;
}

html.language-gate-pending,
body.language-gate-open {
    overflow: hidden !important;
}

@media (max-width: 560px) {
    .language-gate {
        padding: 14px;
    }

    .language-gate-dialog {
        padding: 30px 19px 26px;
        border-radius: 22px;
    }

    .language-gate-icon {
        width: 54px;
        height: 54px;
        margin-bottom: 14px;
        font-size: 1.65rem;
    }

    .language-gate-options {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .language-gate-choice {
        min-height: 68px;
        padding: 13px 18px;
    }

    .language-gate-flag {
        font-size: 1.7rem;
    }

    .language-gate-description {
        margin-bottom: 22px;
    }
}
/* LANGUAGE GATE CSS END */


/* LANGUAGE GATE VISIBILITY FORCE START */
.language-gate {
    color: #ffffff !important;
}

.language-gate-backdrop {
    background: rgba(0, 0, 0, 0.97) !important;
    opacity: 1 !important;
    filter: none !important;
}

.language-gate-dialog {
    color: #ffffff !important;
    background: #07120f !important;
    border: 3px solid #e3bf72 !important;
    opacity: 1 !important;
    filter: none !important;
    box-shadow: 0 30px 100px #000000 !important;
}

.language-gate-dialog h2 {
    color: #ffffff !important;
    opacity: 1 !important;
    filter: none !important;
    text-shadow: none !important;
    font-weight: 700 !important;
}

.language-gate-kicker {
    color: #f5cf78 !important;
    opacity: 1 !important;
    filter: none !important;
    font-size: 0.9rem !important;
    font-weight: 900 !important;
}

.language-gate-description {
    color: #ffffff !important;
    opacity: 1 !important;
    filter: none !important;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    line-height: 1.55 !important;
}

.language-gate-note {
    color: #ffffff !important;
    opacity: 1 !important;
    filter: none !important;
    font-size: 0.9rem !important;
    font-weight: 900 !important;
}

.language-gate-choice {
    color: #07120f !important;
    background: #ffffff !important;
    border: 3px solid #ffffff !important;
    opacity: 1 !important;
    filter: none !important;
    font-size: 1.25rem !important;
    font-weight: 900 !important;
    text-shadow: none !important;
}

.language-gate-choice span {
    color: #07120f !important;
    opacity: 1 !important;
    filter: none !important;
}

.language-gate-choice:hover,
.language-gate-choice:focus-visible {
    color: #07120f !important;
    background: #e3bf72 !important;
    border-color: #e3bf72 !important;
}

.language-gate-choice:hover span,
.language-gate-choice:focus-visible span {
    color: #07120f !important;
}

.language-gate-icon,
.language-gate-flag {
    opacity: 1 !important;
    filter: none !important;
}

@media (max-width: 560px) {
    .language-gate-dialog {
        padding: 28px 18px !important;
    }

    .language-gate-dialog h2 {
        font-size: 2.25rem !important;
    }

    .language-gate-description {
        font-size: 1.05rem !important;
    }

    .language-gate-choice {
        min-height: 72px !important;
        font-size: 1.2rem !important;
    }
}
/* LANGUAGE GATE VISIBILITY FORCE END */



/* LANGUAGE PICKER CLEAN CSS START */
.language-picker {
    position: relative;
    display: block;
    flex: 0 0 auto;
    z-index: 10000;
}

.language-picker-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 82px;
    height: 44px;
    margin: 0;
    padding: 0 12px;
    cursor: pointer;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    background: rgba(10, 27, 24, 0.88);
    box-shadow: none;
    font: inherit;
}

.language-picker-button:hover,
.language-picker-button:focus-visible {
    border-color: #d8b46e;
    background: #142d28;
    outline: none;
}

.language-picker-current-flag {
    display: block !important;
    width: 24px !important;
    height: 16px !important;
    min-width: 24px;
    max-width: 24px !important;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 2px;
}

.language-picker-current-code {
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.05em;
}

.language-picker-caret {
    display: inline-block;
    color: #d8b46e;
    font-size: 0.85rem;
    line-height: 1;
    transform: translateY(-1px);
}

.language-picker.is-open .language-picker-caret {
    transform: rotate(180deg) translateY(1px);
}

.language-picker-menu[hidden] {
    display: none !important;
}

.language-picker-menu {
    position: absolute !important;
    top: calc(100% + 11px) !important;
    right: 0 !important;
    left: auto !important;
    width: 238px !important;
    min-width: 238px !important;
    margin: 0 !important;
    padding: 11px !important;
    color: #ffffff !important;
    border: 1px solid rgba(216, 180, 110, 0.55) !important;
    border-radius: 16px !important;
    background: #0b1d19 !important;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.6) !important;
    transform: none !important;
    opacity: 1 !important;
}

.language-picker-title {
    margin: 3px 9px 9px !important;
    color: #d8b46e !important;
    font-size: 0.7rem !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
    letter-spacing: 0.1em !important;
    text-align: left !important;
    text-transform: uppercase !important;
}

.language-picker-option {
    display: grid !important;
    grid-template-columns: 28px minmax(0, 1fr) 25px !important;
    align-items: center !important;
    gap: 10px !important;
    width: 100% !important;
    min-height: 48px !important;
    margin: 2px 0 !important;
    padding: 8px 10px !important;
    color: #ffffff !important;
    border: 1px solid transparent !important;
    border-radius: 10px !important;
    background: transparent !important;
    text-decoration: none !important;
    white-space: nowrap !important;
}

.language-picker-option:hover,
.language-picker-option:focus-visible {
    color: #ffffff !important;
    border-color: rgba(216, 180, 110, 0.5) !important;
    background: rgba(216, 180, 110, 0.12) !important;
    outline: none !important;
}

.language-picker-option.is-active {
    color: #10201d !important;
    border-color: #d8b46e !important;
    background: #d8b46e !important;
}

.language-picker-option-flag {
    display: block !important;
    width: 28px !important;
    height: 19px !important;
    min-width: 28px !important;
    max-width: 28px !important;
    object-fit: cover !important;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 2px;
}

.language-picker-option-name {
    color: inherit !important;
    font-size: 0.9rem !important;
    font-weight: 750 !important;
    line-height: 1 !important;
    text-align: left !important;
}

.language-picker-option-code {
    color: inherit !important;
    font-size: 0.68rem !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    text-align: right !important;
    opacity: 0.75;
}

.header-actions {
    gap: 13px !important;
}

.desktop-nav {
    gap: clamp(17px, 1.8vw, 29px) !important;
}

/* Le lingue del menu mobile rimangono visibili */
.mobile-meta .language-switcher {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mobile-meta .language-link {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 66px;
    min-height: 42px;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
}

.mobile-meta .language-flag {
    display: block !important;
    width: 24px !important;
    height: 16px !important;
    max-width: 24px !important;
}

@media (max-width: 900px) {
    .language-picker {
        display: none !important;
    }
}
/* LANGUAGE PICKER CLEAN CSS END */

/* MDC LEGAL DISCLAIMER START */
.site-footer > .footer-legal-disclaimer {
    width: min(1180px, calc(100% - 2.5rem));
    box-sizing: border-box;
    margin: 0 auto 2rem;
    overflow: hidden;
    border: 1px solid rgba(196, 64, 64, 0.75);
    border-radius: 6px;
    background: rgba(126, 22, 22, 0.12);
}

.footer-legal-disclaimer__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.footer-legal-disclaimer__summary::-webkit-details-marker {
    display: none;
}

.footer-legal-disclaimer__summary::marker {
    display: none;
    content: "";
}

.footer-legal-disclaimer__title {
    color: #e08888;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.025em;
}

.footer-legal-disclaimer__arrow {
    width: 0.55rem;
    height: 0.55rem;
    flex: 0 0 auto;
    border-right: 2px solid #e08888;
    border-bottom: 2px solid #e08888;
    transform: rotate(45deg);
    transition: transform 180ms ease;
}

.footer-legal-disclaimer[open]
.footer-legal-disclaimer__arrow {
    transform: rotate(225deg);
}

.footer-legal-disclaimer__content {
    padding: 1.1rem 1.25rem 1.25rem;
    border-top: 1px solid rgba(196, 64, 64, 0.35);
}

.footer-legal-disclaimer__content p {
    max-width: 1050px;
    margin: 0 0 0.9rem;
    font-size: 0.84rem;
    line-height: 1.7;
    opacity: 0.86;
}

.footer-legal-disclaimer__content p:last-child {
    margin-bottom: 0;
}

.footer-legal-disclaimer__summary:focus-visible {
    outline: 2px solid #e08888;
    outline-offset: -3px;
}

@media (max-width: 640px) {
    .site-footer > .footer-legal-disclaimer {
        width: calc(100% - 2rem);
        margin-bottom: 1.5rem;
    }

    .footer-legal-disclaimer__summary {
        padding: 0.9rem 1rem;
    }

    .footer-legal-disclaimer__content {
        padding: 1rem;
    }

    .footer-legal-disclaimer__content p {
        font-size: 0.8rem;
    }
}
/* MDC LEGAL DISCLAIMER END */
