:root {
  --blue: #0B3C6F;
  --blue-dark: #071E35;
  --sky: #3FA9F5;
  --light: #F4F7FA;
  --soft-blue: #EAF5FE;
  --warm-white: #FBFCFD;
  --white: #FFFFFF;
  --ink: #172334;
  --muted: #66778D;
  --line: rgba(11, 60, 111, 0.14);
  --shadow: 0 24px 70px rgba(11, 60, 111, 0.16);
  --radius: 8px;
  --header-bar: 78px;
  --safe-top: env(safe-area-inset-top, 0px);
  --header-height: calc(var(--header-bar) + var(--safe-top));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background-color: #ffffff;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background-color: #ffffff;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin: 0; }

::selection {
  color: var(--white);
  background: var(--blue);
}

h1, h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.95;
}

h1 { max-width: 920px; font-size: clamp(2.35rem, 5.2vw, 4.1rem); }
h2 { font-size: clamp(1.85rem, 3.8vw, 3.1rem); color: var(--blue); }
h3 { font-size: 1.06rem; line-height: 1.28; }

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 40;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  margin: 0;
  padding-top: constant(safe-area-inset-top);
  padding-top: env(safe-area-inset-top, 0px);
  padding-inline: max(20px, calc((100vw - 1160px) / 2));
  border: 0;
  border-bottom: 1px solid rgba(11, 60, 111, 0.12);
  background: #ffffff;
  background-color: #ffffff;
  /* Niente transform qui: rompe position:fixed di .site-nav (figlio) su iOS */
  overflow: visible;
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: #ffffff;
  background-color: #ffffff;
  box-shadow: 0 14px 44px rgba(11, 60, 111, 0.11);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--blue);
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong, .brand small { display: block; }
.brand strong { color: var(--blue); font-weight: 800; line-height: 1.08; }
.brand small { color: var(--muted); font-size: 0.76rem; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 800;
}

.site-nav a:not(.nav-cta) {
  position: relative;
  padding-block: 8px;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--sky);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown > a::before {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
  order: 2;
  transition: transform 180ms ease;
}

.nav-dropdown:hover > a::before,
.nav-dropdown:focus-within > a::before,
.nav-dropdown.is-open > a::before {
  transform: rotate(225deg) translate(-2px, -1px);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 60;
  width: min(360px, 86vw);
  max-height: min(70vh, 520px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 8px 12px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 4px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

/* Copre il passaggio voce → menu (anche pochi px fanno chiudere il tendina) */
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -16px;
  height: 16px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 11px 12px;
  border-radius: 6px;
  color: var(--blue);
  font-size: 0.86rem;
  line-height: 1.2;
}

.nav-dropdown-menu a:hover {
  background: var(--light);
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: var(--radius);
  background: var(--blue);
  padding: 12px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn-primary,
.nav-cta {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #095694 55%, var(--sky));
  box-shadow: 0 18px 36px rgba(63, 169, 245, 0.26);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.btn:hover, .nav-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(63, 169, 245, 0.32);
}

.btn:active,
.nav-cta:active {
  transform: translateY(0) scale(0.99);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 46px) 0 68px;
  color: var(--white);
  background: var(--blue-dark);
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 30, 53, 0.95) 0%, rgba(7, 30, 53, 0.82) 42%, rgba(7, 30, 53, 0.22) 78%, rgba(7, 30, 53, 0.08) 100%),
    linear-gradient(180deg, rgba(7, 30, 53, 0.18), rgba(7, 30, 53, 0.42));
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 46px;
  align-items: end;
}

.eyebrow,
.section-kicker {
  color: var(--sky);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 18px;
}

.hero-subtitle {
  max-width: 700px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 3vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.hero-panel span {
  display: block;
  color: var(--sky);
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin-top: 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.2rem;
  line-height: 1;
}

.hero-panel p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
}

.section,
.rail-section { padding: 88px 0; }

.stats {
  background: linear-gradient(180deg, var(--white), var(--warm-white));
  border-bottom: 1px solid var(--line);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  box-shadow: 0 18px 60px rgba(11, 60, 111, 0.08);
}

.stats-grid article {
  padding: 30px 22px;
  background: var(--white);
}

.stats-grid strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--blue);
  font-size: clamp(2.6rem, 8vw, 4.2rem);
  line-height: 0.9;
}

.stats-grid span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 800;
}

.editorial-grid,
.section-heading,
.deep-grid,
.office-layout,
.process-layout,
.quote-layout,
.page-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: start;
}

.section-heading {
  align-items: end;
  margin-bottom: 42px;
}

.copy-stack p,
.lead,
.deep-copy p,
.areas-panel p,
.areas-copy p,
.quote-copy p,
.page-copy p {
  color: var(--muted);
  font-size: 1.02rem;
}

.copy-stack p + p,
.page-copy p + p { margin-top: 18px; }

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 24px;
  color: var(--blue);
  font-weight: 800;
  border-bottom: 2px solid var(--sky);
}

.care-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(234, 245, 254, 0.96), rgba(255, 255, 255, 0.98));
}

.care-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 60, 111, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(11, 60, 111, 0.04) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}

.care-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.care-statement h2 {
  max-width: 760px;
  font-size: clamp(2.7rem, 8vw, 5.8rem);
}

.care-copy {
  padding: 34px;
  border: 1px solid rgba(11, 60, 111, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 60px rgba(11, 60, 111, 0.08);
  backdrop-filter: blur(12px);
}

.care-copy p {
  color: var(--ink);
  font-size: 1.08rem;
}

.care-copy p + p {
  margin-top: 18px;
  color: var(--muted);
}

.about-preview {
  background: var(--white);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 64px;
  align-items: start;
}

.about-narrative {
  position: sticky;
  top: 112px;
}

.about-narrative p {
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.08rem;
}

.about-story {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 1.02rem;
}

.about-story > p:first-child {
  color: var(--ink);
  font-size: 1.16rem;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.about-values article {
  min-height: 160px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--white), var(--light));
}

.about-values strong {
  display: block;
  color: var(--blue);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.about-values span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.services-overview,
.office-section,
.process-section,
.quote-section { background: var(--light); }

.service-mosaic {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.service-mosaic article,
.why-grid article,
.office-cards article,
.process-steps article,
.quote-form,
.page-card,
.reviews-grid article,
.result-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 44px rgba(11, 60, 111, 0.07);
}

.service-mosaic article,
.why-grid article,
.office-cards article,
.process-steps article,
.reviews-grid article,
.page-card {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-mosaic article:hover,
.why-grid article:hover,
.office-cards article:hover,
.process-steps article:hover,
.reviews-grid article:hover,
.page-card:hover {
  transform: translateY(-5px);
  border-color: rgba(63, 169, 245, 0.34);
  box-shadow: 0 24px 64px rgba(11, 60, 111, 0.13);
}

.service-mosaic article {
  grid-column: span 2;
  min-height: 178px;
  padding: 24px;
}

.service-mosaic .large {
  position: relative;
  grid-column: span 3;
  min-height: 390px;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-dark);
}

.service-tile.large img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-tile.large::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 30, 53, 0.12), rgba(7, 30, 53, 0.86));
}

.service-tile.large div {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 28px;
}

.service-tile.large span {
  color: var(--sky);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-tile.large h3 {
  margin-top: 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: 0.96;
}

.service-tile.large p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
}

.service-mosaic article:not(.large) h3,
.why-grid h3,
.office-cards h3,
.process-steps h3,
.page-card h3 { color: var(--blue); }

.service-mosaic article:not(.large) p,
.why-grid p,
.office-cards p,
.process-steps p,
.page-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.94rem;
}

.deep-service { background: var(--white); }

.deep-media {
  position: sticky;
  top: 110px;
}

.deep-media img {
  width: 100%;
  min-height: 620px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.deep-copy {
  padding: 18px 0;
}

.deep-copy .btn { margin-top: 28px; }

.detail-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 26px;
}

.detail-list span,
.area-list span {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--blue);
  background: var(--white);
  font-weight: 800;
  font-size: 0.86rem;
}

.office-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.office-cards article,
.why-grid article,
.process-steps article,
.page-card { padding: 24px; }

.office-cards strong,
.process-steps strong {
  display: block;
  margin-bottom: 26px;
  color: var(--sky);
  font-weight: 800;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.why-grid span {
  display: block;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 50%;
  background:
    linear-gradient(var(--sky), var(--sky)) center / 14px 2px no-repeat,
    linear-gradient(90deg, var(--sky), var(--sky)) center / 2px 14px no-repeat,
    rgba(63, 169, 245, 0.12);
}

.process-steps {
  display: grid;
  gap: 14px;
}

.process-steps article {
  display: grid;
  grid-template-columns: 70px 0.75fr 1.25fr;
  gap: 18px;
  align-items: start;
}

.before-after-section {
  background:
    linear-gradient(135deg, #071E35 0%, #0B3C6F 100%);
}

.before-after-section h2 {
  color: var(--white);
}

.before-after-section .section-kicker {
  color: rgba(255, 255, 255, 0.72);
}

.reviews-section {
  background: var(--white);
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.result-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-dark);
}

.result-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.result-card:hover img {
  transform: scale(1.05);
}

.result-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 30, 53, 0.06), rgba(7, 30, 53, 0.82));
}

.result-card div {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 28px;
}

.result-card span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.result-card p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.reviews-grid article {
  min-height: 360px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(180deg, var(--white), #F9FBFD);
}

.stars {
  color: #F5B301;
  font-size: 1.15rem;
  letter-spacing: 0;
}

.reviews-grid p {
  margin-top: 24px;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 2.4vw, 1.68rem);
  line-height: 1.16;
}

.reviews-grid strong {
  display: block;
  margin-top: 24px;
  color: var(--blue);
  font-size: 0.88rem;
}

.areas-section {
  color: var(--ink);
  background:
    linear-gradient(180deg, var(--light), var(--white));
}

.areas-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
}

.areas-panel h2,
.areas-panel p { color: var(--white); }
.areas-panel p { margin-top: 18px; opacity: 0.82; }

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-list span {
  color: var(--blue);
  background: var(--white);
  border-color: var(--line);
}

.areas-elegant {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: center;
}

.areas-copy h2,
.areas-copy p {
  color: var(--blue);
}

.areas-copy p {
  margin-top: 20px;
  color: var(--muted);
}

.area-map {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(234,245,254,0.76));
  box-shadow: var(--shadow);
}

.area-feature {
  padding: 26px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #095694);
}

.area-feature span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.area-feature strong {
  display: block;
  margin-top: 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 0.98;
}

.area-feature p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.78);
}

.final-cta {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-dark);
}

.final-cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 30, 53, 0.94), rgba(7, 30, 53, 0.42));
}

.final-cta-content {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  max-width: 850px;
  color: var(--white);
}

.quote-copy {
  position: sticky;
  top: 110px;
}

.quote-copy p { margin-top: 20px; }

.contact-strip {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-strip a {
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--blue);
  font-weight: 800;
  background: var(--white);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 24px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 800;
}

.quote-form .full { grid-column: 1 / -1; }

input, select, textarea {
  width: 100%;
  border: 1px solid rgba(11, 60, 111, 0.18);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  padding: 14px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

textarea { resize: vertical; }

input:focus, select:focus, textarea:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 4px rgba(63, 169, 245, 0.14);
}

.form-note {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.86rem;
  text-align: center;
}

.page-hero {
  min-height: 62svh;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

.page-content { padding: 88px 0; }

.page-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.site-footer {
  padding: 38px 0 20px;
  color: rgba(255, 255, 255, 0.8);
  background: var(--blue-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 0.95fr 1fr;
  gap: 24px;
}

.footer-grid strong { color: var(--white); }
.footer-grid a {
  display: block;
  color: var(--white);
  font-weight: 700;
  font-size: 0.92rem;
}

.footer-grid nav a + a,
.footer-grid div:last-child a + a { margin-top: 8px; }

.footer-grid nav strong,
.footer-contacts strong {
  display: block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
}

.footer-brand p {
  max-width: 360px;
  margin-top: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
}

.footer-bottom a {
  color: var(--white);
  font-weight: 800;
}

.floating-actions {
  position: fixed;
  right: max(14px, env(safe-area-inset-right, 0px));
  bottom: max(14px, env(safe-area-inset-bottom, 0px));
  z-index: 30;
  display: grid;
  gap: 10px;
  transition: bottom 180ms ease, opacity 220ms ease, transform 220ms ease;
}

body.cookie-visible .floating-actions {
  bottom: calc(12px + env(safe-area-inset-bottom, 0px) + var(--cookie-offset, 220px));
}

.floating-call,
.floating-whatsapp {
  display: none;
  min-height: 48px;
  min-width: 48px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: var(--white);
  box-shadow: var(--shadow);
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav-backdrop {
  position: fixed;
  top: var(--header-height);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 35;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(7, 30, 53, 0.46);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

body.nav-open .nav-backdrop {
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 981px) {
  .nav-backdrop { display: none !important; }
}

.floating-whatsapp {
  display: inline-flex;
  background: #25D366;
}

.floating-call {
  background: var(--sky);
}

.floating-call:hover,
.floating-whatsapp:hover {
  transform: translateY(-3px);
}

.floating-actions.is-deferred {
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav-toggle { display: block; }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    bottom: auto;
    z-index: 45;
    display: grid;
    gap: 0;
    max-height: calc(100dvh - var(--header-height));
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 12px 20px 24px;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    transform: translateY(-110%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 220ms ease, visibility 0s linear 220ms;
  }

  body.nav-open .site-nav {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
    transition: transform 220ms ease, visibility 0s linear 0s;
  }

  .site-nav a { padding: 14px 0; }
  .nav-cta { margin-top: 8px; }

  .nav-dropdown-menu {
    position: static;
    left: auto;
    display: none;
    width: 100%;
    max-height: none;
    margin: 0;
    padding: 4px 0 10px 12px;
    border: 0;
    border-left: 2px solid rgba(11, 60, 111, 0.12);
    box-shadow: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  /* Mobile: niente tendina su hover/focus — solo accordion .is-open */
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    display: grid;
    transform: none;
  }

  .nav-dropdown:hover > a::before,
  .nav-dropdown:focus-within > a::before {
    transform: rotate(45deg) translateY(-3px);
  }

  .nav-dropdown.is-open > a::before {
    transform: rotate(225deg) translate(-2px, -1px);
  }

  .nav-dropdown-menu::before {
    display: none;
  }

  .nav-dropdown-menu a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 0;
    color: var(--muted);
  }

  .nav-dropdown > a {
    width: 100%;
    justify-content: space-between;
  }

  .hero-grid,
  .editorial-grid,
  .care-grid,
  .about-story-grid,
  .section-heading,
  .deep-grid,
  .office-layout,
  .process-layout,
  .quote-layout,
  .page-grid,
  .areas-panel,
  .areas-elegant,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .quote-copy,
  .deep-media,
  .about-narrative { position: static; }

  .about-values {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-grid,
  .why-grid,
  .reviews-grid,
  .page-card-grid { grid-template-columns: repeat(2, 1fr); }

  .service-mosaic { grid-template-columns: repeat(2, 1fr); }
  .service-mosaic article,
  .service-mosaic .large { grid-column: span 1; }
  .process-steps article { grid-template-columns: 1fr; gap: 8px; }
  .before-after-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --header-bar: 70px; }
  .container { width: min(100% - 28px, 1160px); }
  .brand-mark { width: 42px; height: 42px; }
  .brand small { display: none; }

  .hero {
    min-height: 96svh;
    padding-top: calc(var(--header-height) + 34px);
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(7, 30, 53, 0.94) 0%, rgba(7, 30, 53, 0.78) 62%, rgba(7, 30, 53, 0.64) 100%);
  }

  .hero-actions,
  .hero-actions .btn { width: 100%; }

  .section,
  .rail-section,
  .page-content { padding: 64px 0; }

  .stats-grid,
  .service-mosaic,
  .why-grid,
  .office-cards,
  .detail-list,
  .reviews-grid,
  .about-values,
  .page-card-grid,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .service-mosaic article,
  .service-mosaic .large {
    grid-column: auto;
  }

  .stats-grid article { padding: 24px 16px; }
  .care-copy,
  .area-map {
    padding: 18px;
  }
  .about-values article,
  .reviews-grid article {
    min-height: auto;
  }
  .service-mosaic .large { min-height: 330px; }
  .deep-media img { min-height: 360px; }
  .quote-form { padding: 18px; }
  .result-card { min-height: 330px; }
  .floating-actions {
    right: max(12px, env(safe-area-inset-right, 0px));
    bottom: max(12px, env(safe-area-inset-bottom, 0px));
  }
  .floating-call { display: inline-flex; }
  .floating-call,
  .floating-whatsapp {
    min-height: 44px;
    min-width: 44px;
    padding-inline: 16px;
    font-size: 0.86rem;
  }

  .site-nav {
    z-index: 45;
  }

  .site-footer {
    padding-bottom: calc(28px + env(safe-area-inset-bottom, 0px) + var(--float-stack, 110px));
  }

  .hp-hero,
  .home-premium .hp-hero,
  .page-hero,
  .service-hero {
    padding-bottom: calc(36px + var(--float-stack, 110px));
  }

  .quote-form input,
  .quote-form select,
  .quote-form textarea,
  input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
  select,
  textarea {
    font-size: 16px;
  }

  .form-consent {
    padding: 4px 0;
  }

  .form-consent input[type="checkbox"] {
    width: 22px;
    height: 22px;
    min-width: 22px;
    margin-top: 1px;
  }

  .nav-dropdown-menu > a:first-child {
    color: var(--blue);
    font-weight: 800;
  }
}

/* About page visual rhythm refinements */
.about-redesign h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

.about-redesign h2 {
  font-size: clamp(2.15rem, 6.2vw, 4.35rem);
}

.story-editorial-image {
  grid-column: 2;
  margin: 18px 0 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.story-editorial-image img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
}

.story-editorial-image figcaption,
.care-image-pair figcaption {
  padding: 16px 18px;
  color: var(--muted);
  background: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
}

.care-image-pair {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 24px;
}

.care-image-pair figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.care-image-pair figure:nth-child(2) {
  transform: translateY(46px);
}

.care-image-pair img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
}

.care-image-pair figcaption {
  color: var(--blue);
}

.values-editorial__image {
  margin: 34px 0 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.values-editorial__image img {
  width: 100%;
  min-height: 500px;
  object-fit: cover;
}

.choose-visual {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 18px;
  align-items: stretch;
}

.choose-visual > img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

@media (max-width: 980px) {
  .story-editorial-image {
    grid-column: auto;
  }

  .care-image-pair,
  .choose-visual {
    grid-template-columns: 1fr;
  }

  .care-image-pair figure:nth-child(2) {
    transform: none;
  }
}

@media (max-width: 640px) {
  .story-editorial-image img,
  .care-image-pair img,
  .values-editorial__image img,
  .choose-visual > img {
    min-height: 320px;
  }
}

/* Editorial text consistency */
.about-redesign h1,
.about-redesign h2,
.about-redesign h3,
.about-redesign .about-hero__note strong,
.about-redesign .values-editorial__list span,
.about-redesign .about-numbers strong {
  color: var(--blue);
}

.about-redesign .about-hero h1,
.about-redesign .about-hero__note strong,
.about-redesign .care-manifesto h2,
.about-redesign .about-final-cta h2 {
  color: var(--white);
}

.about-redesign .section-kicker,
.about-redesign .eyebrow,
.about-redesign .about-hero__note span {
  color: var(--sky);
}

.about-redesign .about-long-copy p,
.about-redesign .about-long-copy p:first-child,
.about-redesign .care-manifesto__copy p,
.about-redesign .care-manifesto__copy p:first-child,
.about-redesign .values-editorial__intro p,
.about-redesign .values-editorial__list p,
.about-redesign .why-clients-choose p,
.about-redesign .about-method__steps p,
.about-redesign .choose-panel span,
.about-redesign .about-numbers span {
  color: var(--muted);
  font-size: 1.05rem;
}

.about-redesign .care-manifesto__copy p,
.about-redesign .care-manifesto__copy p:first-child {
  color: rgba(255, 255, 255, 0.8);
}

.about-redesign .about-final-cta p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

.about-redesign .story-editorial-image figcaption,
.about-redesign .care-image-pair figcaption {
  color: var(--muted);
}

/* About page redesign */
.about-redesign {
  background: #F8FBFD;
}

.about-hero {
  position: relative;
  min-height: 86svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: calc(var(--header-height) + 46px) 0 72px;
  color: var(--white);
  background: var(--blue-dark);
}

.about-hero__media,
.about-hero__media img,
.about-hero__shade {
  position: absolute;
  inset: 0;
}

.about-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero__shade {
  background:
    linear-gradient(90deg, rgba(7, 30, 53, 0.96), rgba(7, 30, 53, 0.74) 52%, rgba(7, 30, 53, 0.22)),
    linear-gradient(180deg, rgba(7, 30, 53, 0.08), rgba(7, 30, 53, 0.62));
}

.about-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 54px;
  align-items: end;
}

.about-hero__copy {
  max-width: 920px;
}

.about-hero__copy p:not(.eyebrow) {
  max-width: 690px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 2.4vw, 1.32rem);
}

.about-hero__note {
  padding: 26px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
}

.about-hero__note span {
  color: var(--sky);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.about-hero__note strong {
  display: block;
  margin-top: 14px;
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.4rem;
  line-height: 0.98;
}

.about-story-section,
.care-manifesto,
.about-method,
.values-editorial,
.why-clients-choose,
.about-numbers,
.about-final-cta {
  padding: 96px 0;
}

.about-story-section {
  background: var(--white);
}

.about-story-layout,
.care-manifesto__grid,
.values-editorial__grid,
.why-clients-choose__grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 70px;
  align-items: start;
}

.about-section-label {
  position: sticky;
  top: 112px;
}

.about-long-copy p,
.care-manifesto__copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.about-long-copy p:first-child,
.care-manifesto__copy p:first-child {
  color: var(--ink);
  font-size: 1.16rem;
}

.about-long-copy p + p,
.care-manifesto__copy p + p {
  margin-top: 20px;
}

.care-manifesto {
  background:
    linear-gradient(135deg, var(--blue), #082D52);
  color: var(--white);
}

.care-manifesto h2,
.care-manifesto p {
  color: var(--white);
}

.care-manifesto__copy {
  padding-left: 34px;
  border-left: 2px solid rgba(255,255,255,0.22);
}

.care-manifesto__copy p {
  color: rgba(255,255,255,0.78);
}

.care-manifesto__copy p:first-child {
  color: rgba(255,255,255,0.92);
}

.about-method {
  background: var(--light);
}

.about-method__heading {
  max-width: 850px;
  margin-bottom: 40px;
}

.about-method__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.about-method__steps article {
  min-height: 300px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 44px rgba(11, 60, 111, 0.06);
}

.about-method__steps strong {
  color: var(--sky);
  font-size: 0.9rem;
}

.about-method__steps h3 {
  margin-top: 42px;
  color: var(--blue);
}

.about-method__steps p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.values-editorial {
  background: var(--white);
}

.values-editorial__intro {
  position: sticky;
  top: 112px;
}

.values-editorial__intro p {
  margin-top: 22px;
  color: var(--muted);
}

.values-editorial__list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
  box-shadow: var(--shadow);
}

.values-editorial__list article {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 24px;
  align-items: center;
  min-height: 122px;
  padding: 26px;
  background: var(--white);
}

.values-editorial__list span {
  color: var(--blue);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 0.98;
}

.values-editorial__list p {
  color: var(--muted);
}

.why-clients-choose {
  background:
    linear-gradient(180deg, var(--light), var(--white));
}

.why-clients-choose p {
  margin-top: 22px;
  color: var(--muted);
}

.choose-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.choose-panel span {
  min-height: 110px;
  display: flex;
  align-items: end;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--blue);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(11, 60, 111, 0.06);
  font-weight: 800;
}

.about-numbers {
  background: var(--white);
}

.about-numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.about-numbers article {
  padding: 30px;
  border-right: 1px solid var(--line);
}

.about-numbers article:last-child {
  border-right: 0;
}

.about-numbers strong {
  display: block;
  color: var(--blue);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 0.85;
}

.about-numbers span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 800;
}

.about-final-cta {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-dark);
}

.about-final-cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 30, 53, 0.94), rgba(7, 30, 53, 0.38));
}

.about-final-cta__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.about-final-cta h2 {
  color: var(--white);
}

.about-final-cta p:not(.eyebrow) {
  max-width: 660px;
  margin-top: 22px;
  color: rgba(255,255,255,0.82);
  font-size: 1.08rem;
}

@media (max-width: 980px) {
  .about-hero__grid,
  .about-story-layout,
  .care-manifesto__grid,
  .values-editorial__grid,
  .why-clients-choose__grid {
    grid-template-columns: 1fr;
  }

  .about-section-label,
  .values-editorial__intro {
    position: static;
  }

  .about-method__steps,
  .about-numbers__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-editorial__list article {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .about-hero {
    min-height: 88svh;
    align-items: center;
  }

  .about-hero__note {
    display: none;
  }

  .about-story-section,
  .care-manifesto,
  .about-method,
  .values-editorial,
  .why-clients-choose,
  .about-numbers,
  .about-final-cta {
    padding: 66px 0;
  }

  .care-manifesto__copy {
    padding-left: 0;
    border-left: 0;
  }

  .about-method__steps,
  .choose-panel,
  .about-numbers__grid {
    grid-template-columns: 1fr;
  }

  .about-numbers article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-numbers article:last-child {
    border-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Premium homepage redesign */
/* NON mettere background colorato sul body: su iPhone tinge la status bar */
.home-redesign {
  background: transparent;
}

.home-redesign .site-header {
  background: #ffffff !important;
  background-color: #ffffff !important;
}

.designer-hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: calc(var(--header-height) + 32px) 0 40px;
  color: var(--white);
  background: var(--blue-dark);
}

.designer-hero__image,
.designer-hero__image img,
.designer-hero__wash {
  position: absolute;
  inset: 0;
}

.designer-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.designer-hero__wash {
  background:
    linear-gradient(90deg, rgba(7, 30, 53, 0.98) 0%, rgba(7, 30, 53, 0.88) 36%, rgba(7, 30, 53, 0.34) 70%, rgba(7, 30, 53, 0.12) 100%),
    linear-gradient(180deg, rgba(7, 30, 53, 0.08), rgba(7, 30, 53, 0.72));
}

.designer-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 54px;
  align-items: end;
}

.designer-hero__copy {
  max-width: 920px;
}

.designer-hero__copy p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.65vw, 1.16rem);
}

.designer-hero__aside {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.designer-hero__aside span {
  color: var(--sky);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.designer-hero__aside strong {
  display: block;
  margin-top: 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3rem;
  line-height: 0.9;
}

.designer-hero__aside p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
}

.designer-hero__rail {
  position: absolute;
  z-index: 3;
  right: max(22px, calc((100vw - 1160px) / 2));
  top: 112px;
  display: flex;
  gap: 8px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.designer-hero__rail span {
  padding: 10px 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.proof-strip {
  position: relative;
  z-index: 4;
  margin-top: -32px;
  padding-bottom: 42px;
}

.proof-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.proof-strip article {
  padding: 22px;
  border-right: 1px solid var(--line);
}

.proof-strip article:last-child {
  border-right: 0;
}

.proof-strip strong {
  display: block;
  color: var(--blue);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.35rem, 4.8vw, 3.8rem);
  line-height: 0.85;
}

.proof-strip span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 800;
}

.editorial-care,
.quick-request,
.signature-about,
.service-gallery,
.condo-chapter,
.office-chapter,
.result-editorial,
.trust-board,
.method-line,
.quote-wall,
.area-composition,
.closing-form {
  padding: 82px 0;
}

.quick-request {
  padding-top: 0;
  background: #F8FBFD;
}

.quick-request__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr) auto;
  gap: 20px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 54px rgba(11, 60, 111, 0.1);
}

.quick-request h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
}

.quick-request p:not(.section-kicker) {
  color: var(--muted);
  font-size: 0.98rem;
}

.editorial-care {
  background:
    linear-gradient(135deg, #EAF5FE 0%, #FFFFFF 72%);
}

.editorial-care__grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 64px;
  align-items: center;
}

.editorial-care__title h2 {
  font-size: clamp(2.7rem, 6.6vw, 5.4rem);
}

.editorial-care__text {
  padding-left: 34px;
  border-left: 2px solid rgba(63, 169, 245, 0.42);
}

.editorial-care__text p {
  color: var(--ink);
  font-size: 1.12rem;
}

.editorial-care__text p + p {
  margin-top: 20px;
  color: var(--muted);
}

.signature-about {
  background: var(--white);
}

.signature-about__grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 70px;
  align-items: center;
}

.signature-about__media {
  min-height: 680px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.signature-about__media img {
  width: 100%;
  height: 100%;
  min-height: 680px;
  object-fit: cover;
}

.signature-about__story p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.03rem;
}

.signature-values,
.chapter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.signature-values span,
.chapter-tags span {
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue);
  background: var(--light);
  font-weight: 800;
  font-size: 0.86rem;
}

.service-gallery {
  background: #071E35;
  color: var(--white);
}

.service-gallery h2 {
  color: var(--white);
}

.service-gallery__heading {
  max-width: 860px;
  margin-bottom: 44px;
}

.service-gallery__heading p:not(.section-kicker) {
  max-width: 720px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.72);
}

.service-gallery__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.service-gallery__grid > article {
  grid-column: span 2;
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  transition: transform 220ms ease, background 220ms ease;
}

.service-gallery__grid > article:not(.service-feature):nth-last-child(-n + 4) {
  grid-column: span 3;
}

.service-gallery__grid > article:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.11);
}

.service-gallery__grid h3 {
  color: var(--white);
}

.service-gallery__grid p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.service-feature {
  position: relative;
  grid-column: span 3 !important;
  min-height: 430px !important;
  padding: 0 !important;
  overflow: hidden;
}

.service-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 30, 53, 0.08), rgba(7, 30, 53, 0.9));
}

.service-feature div {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 30px;
}

.service-feature span {
  color: var(--sky);
  font-weight: 800;
}

.service-feature h3 {
  margin-top: 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 0.9;
}

.condo-chapter {
  background: linear-gradient(180deg, var(--white), var(--light));
}

.condo-chapter__grid,
.office-chapter__grid,
.trust-board__grid,
.area-composition__grid,
.closing-form__grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 64px;
  align-items: start;
}

.chapter-label {
  position: sticky;
  top: 118px;
  padding: 28px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #095694);
}

.chapter-label span {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  opacity: 0.72;
}

.chapter-label strong {
  display: block;
  margin-top: 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 4rem;
  line-height: 0.9;
}

.condo-chapter p,
.office-chapter p,
.area-composition p,
.closing-form__copy p {
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.04rem;
}

.office-chapter {
  background: var(--white);
}

.office-chapter__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.office-chapter__cards article {
  min-height: 180px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--white), var(--light));
}

.office-chapter__cards strong,
.office-chapter__cards span {
  display: block;
}

.office-chapter__cards strong {
  color: var(--blue);
}

.office-chapter__cards span {
  margin-top: 12px;
  color: var(--muted);
}

.result-editorial {
  color: var(--white);
  background: #071E35;
}

.result-editorial h2 {
  color: var(--white);
}

.result-editorial__heading {
  max-width: 780px;
  margin-bottom: 40px;
}

.result-editorial__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
  align-items: stretch;
}

.result-editorial figure {
  margin: 0;
  min-height: 500px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.result-editorial figure:nth-child(2) {
  transform: translateY(46px);
}

.result-editorial img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.result-editorial figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 28px;
  background: linear-gradient(180deg, transparent, rgba(7, 30, 53, 0.86));
}

.result-editorial figcaption strong,
.result-editorial figcaption span {
  display: block;
}

.result-editorial figcaption strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3rem;
  line-height: 1;
}

.result-editorial figcaption span {
  max-width: 480px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.trust-board {
  background: var(--white);
}

.trust-board__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.trust-board__items article,
.method-line__steps article,
.quote-wall__grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 44px rgba(11, 60, 111, 0.06);
}

.trust-board__items span {
  display: block;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 50%;
  background:
    linear-gradient(var(--sky), var(--sky)) center / 14px 2px no-repeat,
    linear-gradient(90deg, var(--sky), var(--sky)) center / 2px 14px no-repeat,
    rgba(63, 169, 245, 0.12);
}

.trust-board__items h3 {
  color: var(--blue);
}

.trust-board__items p {
  margin-top: 10px;
  color: var(--muted);
}

.method-line {
  background: var(--light);
}

.method-line__heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.method-line__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.method-line__steps strong {
  color: var(--sky);
}

.method-line__steps h3 {
  margin-top: 28px;
  color: var(--blue);
}

.method-line__steps p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.quote-wall {
  background: var(--white);
}

.quote-wall__heading {
  display: grid;
  grid-template-columns: 0.35fr 0.65fr;
  gap: 42px;
  align-items: end;
  margin-bottom: 40px;
}

.quote-wall__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.quote-wall__grid article {
  min-height: 385px;
}

.quote-wall__grid p {
  margin-top: 22px;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.32rem, 2.2vw, 1.62rem);
  line-height: 1.16;
}

.quote-wall__grid strong {
  display: block;
  margin-top: 26px;
  color: var(--blue);
}

.area-composition {
  background:
    linear-gradient(135deg, var(--blue), #082D52);
  color: var(--white);
}

.area-composition h2,
.area-composition p {
  color: var(--white);
}

.area-composition p {
  opacity: 0.82;
}

.area-composition__panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.11);
}

.area-composition__panel strong,
.area-composition__panel span {
  display: block;
}

.area-composition__panel strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 0.9;
}

.area-composition__panel span {
  margin-top: 12px;
  color: var(--sky);
  font-weight: 800;
}

.area-composition__panel div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.area-composition__panel em {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  font-style: normal;
  font-weight: 800;
  font-size: 0.84rem;
}

.closing-form {
  background: linear-gradient(180deg, var(--white), var(--light));
}

.closing-form .quote-form {
  box-shadow: var(--shadow);
}

@media (max-width: 980px) {
  .designer-hero__grid,
  .editorial-care__grid,
  .signature-about__grid,
  .condo-chapter__grid,
  .office-chapter__grid,
  .trust-board__grid,
  .area-composition__grid,
  .closing-form__grid,
  .quick-request__grid,
  .quote-wall__heading {
    grid-template-columns: 1fr;
  }

  .designer-hero__rail {
    display: none;
  }

  .proof-strip__grid,
  .service-gallery__grid,
  .method-line__steps,
  .quote-wall__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-gallery__grid > article,
  .service-gallery__grid > article:not(.service-feature):nth-last-child(-n + 4),
  .service-feature {
    grid-column: span 1 !important;
  }

  .chapter-label {
    position: static;
  }

  .result-editorial figure:nth-child(2) {
    transform: none;
  }
}

@media (max-width: 640px) {
  .designer-hero {
    min-height: 94svh;
    align-items: center;
  }

  .designer-hero__wash {
    background: linear-gradient(180deg, rgba(7, 30, 53, 0.95), rgba(7, 30, 53, 0.78));
  }

  .designer-hero__aside {
    display: none;
  }

  .proof-strip {
    margin-top: 0;
    padding: 0;
  }

  .proof-strip__grid,
  .service-gallery__grid,
  .office-chapter__cards,
  .trust-board__items,
  .method-line__steps,
  .quote-wall__grid,
  .result-editorial__grid {
    grid-template-columns: 1fr;
  }

  .editorial-care,
  .signature-about,
  .service-gallery,
  .condo-chapter,
  .office-chapter,
  .result-editorial,
  .trust-board,
  .method-line,
  .quote-wall,
  .area-composition,
  .closing-form {
    padding: 66px 0;
  }

  .editorial-care__text {
    padding-left: 0;
    border-left: 0;
  }

  .signature-about__media,
  .signature-about__media img {
    min-height: 380px;
  }

  .service-feature,
  .result-editorial figure,
  .result-editorial img {
    min-height: 350px !important;
  }
}

/* Service pages system */
.service-index,
.service-page {
  background: #F8FBFD;
}

.service-hero {
  position: relative;
  min-height: 78svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: calc(var(--header-height) + 44px) 0 74px;
  color: var(--white);
  background: var(--blue-dark);
}

.service-hero__media,
.service-hero__media img,
.service-hero__shade {
  position: absolute;
  inset: 0;
}

.service-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-hero__shade {
  background:
    linear-gradient(90deg, rgba(7, 30, 53, 0.97), rgba(7, 30, 53, 0.76) 55%, rgba(7, 30, 53, 0.24)),
    linear-gradient(180deg, rgba(7, 30, 53, 0.08), rgba(7, 30, 53, 0.64));
}

.service-hero__content {
  position: relative;
  z-index: 1;
  max-width: 960px;
}

.service-hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

.service-hero p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 2.4vw, 1.32rem);
}

.service-intro,
.service-catalog,
.service-deep,
.service-included,
.service-method,
.service-faq,
.service-contact,
.service-mid-cta,
.service-areas {
  padding: 92px 0;
}

.service-intro {
  background: var(--white);
}

.service-editorial-grid,
.service-deep__grid,
.service-included__grid,
.service-contact__grid,
.service-areas__grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 66px;
  align-items: start;
}

.service-editorial-copy p,
.service-deep p,
.service-included p,
.service-areas p,
.service-contact p {
  color: var(--muted);
  font-size: 1.05rem;
}

.service-editorial-copy p + p,
.service-deep p + p,
.service-included p + p {
  margin-top: 20px;
}

.service-catalog {
  background: var(--light);
}

.service-catalog__heading,
.service-method__heading,
.service-faq__heading {
  max-width: 860px;
  margin-bottom: 40px;
}

.service-catalog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-catalog__grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 44px rgba(11, 60, 111, 0.06);
}

.service-catalog__grid h3 {
  color: var(--blue);
}

.service-catalog__grid p {
  margin-top: 12px;
  color: var(--muted);
}

.service-catalog__grid a {
  display: inline-flex;
  margin-top: 22px;
  color: var(--blue);
  font-weight: 800;
  border-bottom: 2px solid var(--sky);
}

.service-deep {
  background: var(--white);
}

.service-deep__image,
.service-included__image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-deep__image img,
.service-included__image img {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
}

.service-included {
  background: linear-gradient(180deg, var(--white), var(--light));
}

.service-checks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.service-checks span {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--blue);
  background: var(--white);
  font-weight: 800;
  font-size: 0.9rem;
}

.service-method {
  background: var(--blue-dark);
  color: var(--white);
}

.service-method h2,
.service-method h3 {
  color: var(--white);
}

.service-method__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.service-method__steps article {
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
}

.service-method__steps strong {
  color: var(--sky);
}

.service-method__steps h3 {
  margin-top: 34px;
}

.service-method__steps p {
  margin-top: 10px;
  color: rgba(255,255,255,0.76);
  font-size: 0.92rem;
}

.service-mid-cta {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #095694);
}

.service-mid-cta__content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
}

.service-mid-cta h2 {
  max-width: 780px;
  color: var(--white);
}

.service-mid-cta p {
  max-width: 620px;
  margin-top: 18px;
  color: rgba(255,255,255,0.8);
}

.service-areas {
  background: var(--white);
}

.service-area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-area-tags span {
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue);
  background: var(--light);
  font-weight: 800;
}

.service-faq {
  background: var(--light);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(11,60,111,0.05);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--blue);
  font-weight: 800;
}

.faq-list p {
  padding: 0 22px 22px;
  color: var(--muted);
}

.service-contact {
  background: linear-gradient(180deg, var(--white), var(--light));
}

.service-contact .quote-form {
  box-shadow: var(--shadow);
}

.service-signature {
  padding: 92px 0;
  background: var(--white);
}

.service-signature.alt {
  background: linear-gradient(180deg, var(--white), var(--light));
}

.service-signature.dark {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #082D52);
}

.service-signature.dark h2,
.service-signature.dark h3 {
  color: var(--white);
}

.service-signature.dark p {
  color: rgba(255,255,255,0.78);
}

.service-signature__grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 64px;
  align-items: start;
}

.service-signature__intro {
  position: sticky;
  top: 112px;
}

.service-signature__intro p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.05rem;
}

.service-signature.dark .service-signature__intro p {
  color: rgba(255,255,255,0.78);
}

.service-signature__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.service-signature__cards article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 44px rgba(11,60,111,0.06);
}

.service-signature.dark .service-signature__cards article {
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.09);
}

.service-signature__cards h3 {
  color: var(--blue);
}

.service-signature__cards p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.service-signature__media {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 22px;
}

.service-signature__media figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-signature__media figure:nth-child(2) {
  transform: translateY(42px);
}

.service-signature__media img {
  width: 100%;
  min-height: 410px;
  object-fit: cover;
}

.service-signature__media figcaption {
  padding: 16px 18px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

@media (max-width: 980px) {
  .service-editorial-grid,
  .service-deep__grid,
  .service-included__grid,
  .service-contact__grid,
  .service-areas__grid,
  .service-mid-cta__content,
  .service-signature__grid {
    grid-template-columns: 1fr;
  }

  .service-catalog__grid,
  .service-method__steps,
  .service-signature__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-signature__intro {
    position: static;
  }

  .service-signature__media {
    grid-template-columns: 1fr;
  }

  .service-signature__media figure:nth-child(2) {
    transform: none;
  }
}

@media (max-width: 640px) {
  .service-hero {
    min-height: 84svh;
    align-items: center;
  }

  .service-intro,
  .service-catalog,
  .service-deep,
  .service-included,
  .service-method,
  .service-faq,
  .service-contact,
  .service-mid-cta,
  .service-areas {
    padding: 64px 0;
  }

  .service-catalog__grid,
  .service-method__steps,
  .service-checks,
  .service-signature__cards {
    grid-template-columns: 1fr;
  }

  .service-deep__image img,
  .service-included__image img,
  .service-signature__media img {
    min-height: 330px;
  }
}

/* Contact conversion page */
.contact-page {
  background: #F8FBFD;
}

.contact-hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: calc(var(--header-height) + 44px) 0 72px;
  color: var(--white);
  background: var(--blue-dark);
}

.contact-hero__media,
.contact-hero__media img,
.contact-hero__shade {
  position: absolute;
  inset: 0;
}

.contact-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-hero__shade {
  background:
    linear-gradient(90deg, rgba(7,30,53,0.97), rgba(7,30,53,0.76) 55%, rgba(7,30,53,0.18)),
    linear-gradient(180deg, rgba(7,30,53,0.08), rgba(7,30,53,0.68));
}

.contact-hero__grid,
.contact-trust__grid,
.quick-contacts__grid,
.contact-areas__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 58px;
  align-items: end;
}

.contact-hero__copy {
  max-width: 950px;
}

.contact-hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

.contact-hero__copy p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 24px;
  color: rgba(255,255,255,0.84);
  font-size: clamp(1.08rem, 2.4vw, 1.32rem);
}

.contact-hero__panel {
  padding: 26px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
}

.contact-hero__panel span {
  color: var(--sky);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.contact-hero__panel strong {
  display: block;
  margin-top: 12px;
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3rem;
  line-height: 0.92;
}

.contact-hero__panel p {
  margin-top: 16px;
  color: rgba(255,255,255,0.78);
}

.contact-trust,
.contact-timeline,
.contact-form-section,
.quick-contacts,
.contact-areas,
.contact-final-cta {
  padding: 96px 0;
}

.contact-trust {
  background: var(--white);
}

.contact-trust__intro h2,
.contact-timeline h2,
.contact-form-copy h2,
.quick-contacts h2,
.contact-areas h2 {
  color: var(--blue);
}

.contact-trust__panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.contact-trust__panel article {
  min-height: 150px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--white), var(--light));
  box-shadow: 0 12px 36px rgba(11,60,111,0.06);
}

.contact-trust__panel span {
  color: var(--sky);
  font-weight: 800;
}

.contact-trust__panel strong {
  display: block;
  margin-top: 28px;
  color: var(--blue);
  font-size: 1.05rem;
}

.contact-timeline {
  background: var(--light);
}

.contact-timeline__heading {
  max-width: 840px;
  margin-bottom: 38px;
}

.contact-timeline__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.contact-timeline__steps article {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 44px rgba(11,60,111,0.06);
}

.contact-timeline__steps strong {
  color: var(--sky);
}

.contact-timeline__steps h3 {
  margin-top: 42px;
  color: var(--blue);
}

.contact-timeline__steps p,
.contact-form-copy p,
.quick-contacts p,
.contact-areas p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-form-section {
  background: var(--white);
}

.contact-form-shell {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 58px;
  align-items: start;
}

.contact-form-copy {
  position: sticky;
  top: 112px;
}

.contact-premium-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--white), var(--light));
  box-shadow: var(--shadow);
}

.contact-premium-form label {
  display: grid;
  gap: 8px;
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 800;
}

.contact-premium-form .full {
  grid-column: 1 / -1;
}

.quick-contacts {
  background: var(--blue-dark);
  color: var(--white);
}

.quick-contacts h2,
.quick-contacts p {
  color: var(--white);
}

.quick-contacts p {
  opacity: 0.82;
}

.quick-contacts__cards {
  display: grid;
  gap: 14px;
}

.quick-contacts__cards article {
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
}

.quick-contacts__cards span {
  display: block;
  color: var(--sky);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.quick-contacts__cards a,
.quick-contacts__cards strong {
  display: block;
  margin-top: 10px;
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.contact-areas {
  background: linear-gradient(180deg, var(--white), var(--light));
}

.contact-areas__visual {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-areas__visual strong {
  display: block;
  color: var(--blue);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 0.95;
}

.contact-areas__visual div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.contact-areas__visual span {
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue);
  background: var(--light);
  font-weight: 800;
}

.contact-final-cta {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-dark);
}

.contact-final-cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,30,53,0.94), rgba(7,30,53,0.34));
}

.contact-final-cta__content {
  position: relative;
  z-index: 1;
  max-width: 920px;
}

.contact-final-cta h2 {
  max-width: 860px;
  color: var(--white);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 120;
  display: grid;
  gap: 0;
  max-width: 760px;
  margin-inline: auto;
  padding: 0;
  border: 1px solid rgba(11, 60, 111, 0.14);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(7, 30, 53, 0.22);
}

/* Desktop: lascia spazio al float WhatsApp a destra */
@media (min-width: 981px) {
  .cookie-banner {
    right: max(16px, 168px);
  }
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px 20px;
  align-items: center;
  padding: 16px 18px;
}

.cookie-banner strong {
  display: block;
  color: var(--blue, #0B3C6F);
  font-size: 0.95rem;
  font-weight: 800;
}

.cookie-banner p {
  margin-top: 4px;
  color: var(--muted, #5b6b7c);
  font-size: 0.86rem;
  line-height: 1.45;
  max-width: 42ch;
}

.cookie-banner__links {
  margin-top: 6px !important;
  font-size: 0.8rem !important;
}

.cookie-banner__links a {
  color: var(--blue, #0B3C6F);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.cookie-actions button,
.cookie-preferences button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(11, 60, 111, 0.18);
  border-radius: 10px;
  background: #fff;
  color: var(--blue, #0B3C6F);
  font-weight: 700;
  font-size: 0.86rem;
  cursor: pointer;
}

.cookie-actions button[data-cookie-accept],
.cookie-preferences button[data-cookie-save] {
  color: #fff;
  background: var(--blue, #0B3C6F);
  border-color: var(--blue, #0B3C6F);
}

.cookie-preferences {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  align-items: center;
  padding: 12px 18px 16px;
  border-top: 1px solid rgba(11, 60, 111, 0.1);
  background: #F7FAFC;
  border-radius: 0 0 14px 14px;
  font-size: 0.84rem;
  color: var(--muted, #5b6b7c);
}

.cookie-preferences[hidden] {
  display: none !important;
}

.cookie-preferences label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 980px) {
  .cookie-banner__inner {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions button {
    flex: 1 1 auto;
  }
}

@media (max-width: 640px) {
  .cookie-banner {
    left: max(10px, env(safe-area-inset-left, 0px));
    right: max(10px, env(safe-area-inset-right, 0px));
    bottom: max(10px, env(safe-area-inset-bottom, 0px));
    border-radius: 12px;
  }

  .cookie-banner__inner {
    padding: 12px 14px;
    gap: 12px;
  }

  .cookie-banner p {
    font-size: 0.8rem;
    max-width: none;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-actions button[data-cookie-accept] {
    grid-column: 1 / -1;
  }

  .cookie-actions button,
  .cookie-preferences button {
    min-height: 44px;
    font-size: 0.8rem;
  }

  .cookie-preferences {
    padding: 10px 14px 14px;
    gap: 10px;
    font-size: 0.78rem;
  }
}

@media (max-width: 980px) {
  .contact-hero__grid,
  .contact-trust__grid,
  .contact-form-shell,
  .quick-contacts__grid,
  .contact-areas__grid {
    grid-template-columns: 1fr;
  }

  .contact-form-copy {
    position: static;
  }

  .contact-timeline__steps,
  .contact-trust__panel {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .contact-hero {
    min-height: 88svh;
    align-items: center;
  }

  .contact-hero__panel {
    display: none;
  }

  .contact-trust,
  .contact-timeline,
  .contact-form-section,
  .quick-contacts,
  .contact-areas,
  .contact-final-cta {
    padding: 64px 0;
  }

  .contact-timeline__steps,
  .contact-trust__panel,
  .contact-premium-form {
    grid-template-columns: 1fr;
  }
}

/* Final pre-launch refinements */
.legal-hero {
  min-height: 58svh;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
}

.legal-section {
  padding-block: 72px;
}

@media (max-width: 980px) {
  .footer-grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .designer-hero {
    min-height: 88svh;
  }

  .quick-request {
    padding: 28px 0 54px;
  }

  .quick-request__grid {
    padding: 18px;
  }

  .quick-request .btn {
    width: 100%;
  }

  .editorial-care,
  .quick-request,
  .signature-about,
  .service-gallery,
  .condo-chapter,
  .office-chapter,
  .result-editorial,
  .trust-board,
  .method-line,
  .quote-wall,
  .area-composition,
  .closing-form {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .footer-grid--compact {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .site-footer {
    padding: 32px 0 calc(28px + env(safe-area-inset-bottom, 0px) + var(--float-stack, 110px));
  }

  .footer-bottom {
    margin-top: 20px;
    font-size: 0.8rem;
  }

  .floating-actions {
    right: max(10px, env(safe-area-inset-right, 0px));
    bottom: max(10px, env(safe-area-inset-bottom, 0px));
    gap: 8px;
  }

  .floating-call,
  .floating-whatsapp {
    min-height: 44px;
    min-width: 44px;
    padding-inline: 14px;
    border-radius: 9px;
    font-size: 0.84rem;
  }

  .home-premium .hp-hero,
  .hp-hero--cinematic {
    min-height: auto;
    align-items: start;
    padding-bottom: calc(28px + var(--float-stack, 110px));
  }

  .hp-hero__lead {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .hp-hero__aside {
    padding: 14px 16px;
  }

  .hp-hero__proof {
    gap: 10px 12px;
  }

  .hp-hero__proof li strong {
    font-size: 1.05rem;
  }

  .hp-hero__proof li span {
    font-size: 0.78rem;
  }
}

/* Brand logo */
.brand-logo {
  display: block;
  width: auto;
  height: 52px;
  max-width: min(200px, 46vw);
  object-fit: contain;
}

.brand-copy { display: none; }

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-consent {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  grid-template-columns: none !important;
  font-size: 0.86rem;
  font-weight: 500 !important;
  line-height: 1.5;
  color: var(--muted) !important;
}

.form-consent input[type="checkbox"] {
  width: auto;
  min-width: 18px;
  flex: 0 0 auto;
  margin-top: 3px;
  accent-color: var(--blue);
}

.form-consent > span {
  flex: 1 1 auto;
  min-width: 0;
  display: block;
  white-space: normal;
}

.form-consent a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Home wow — lean composition */
.home-wow .designer-hero--solo {
  min-height: 100svh;
  align-items: center;
  padding: calc(var(--header-height) + 48px) 0 72px;
}

.home-wow .designer-hero__image img {
  transform: scale(1.06);
  animation: rim-hero-pan 18s ease-in-out infinite alternate;
}

@keyframes rim-hero-pan {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(-1.5%, -1%, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .home-wow .designer-hero__image img { animation: none; }
}

.home-wow .designer-hero__wash {
  background:
    linear-gradient(105deg, rgba(7, 30, 53, 0.92) 0%, rgba(7, 30, 53, 0.72) 42%, rgba(7, 30, 53, 0.28) 72%, rgba(7, 30, 53, 0.18) 100%),
    linear-gradient(180deg, rgba(7, 30, 53, 0.18), rgba(7, 30, 53, 0.55));
}

.home-wow .designer-hero__grid--solo {
  grid-template-columns: 1fr;
  max-width: 920px;
}

.home-wow .designer-hero__copy .eyebrow {
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.14em;
}

.home-wow .designer-hero__copy h1 {
  max-width: 14ch;
  text-wrap: balance;
}

.home-wow .designer-hero__copy p:not(.eyebrow) {
  max-width: 34rem;
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
}

.home-wow .service-gallery--focus {
  padding-top: 28px;
}

.home-wow .service-gallery__grid--wow {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.home-wow .service-gallery__grid--wow .service-feature {
  grid-column: auto !important;
  min-height: 380px !important;
}

.home-wow .service-gallery__grid--wow .service-feature a {
  position: absolute;
  inset: 0;
  z-index: 2;
  color: inherit;
}

.home-wow .service-gallery__grid--wow .service-feature h3 {
  font-size: clamp(1.85rem, 3.4vw, 2.7rem);
}

.home-wow .service-gallery__more {
  margin-top: 28px;
  text-align: center;
}

.home-wow .trust-board--compact .trust-board__items {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-wow .quote-form .form-note.is-ok {
  color: var(--blue);
  font-weight: 600;
}

@media (max-width: 900px) {
  .brand-logo { height: 44px; }

  .home-wow .service-gallery__grid--wow,
  .home-wow .trust-board--compact .trust-board__items {
    grid-template-columns: 1fr;
  }

  .home-wow .designer-hero--solo {
    min-height: 88svh;
    align-items: end;
  }
}

/* Home compact — brief cliente */
.site-header--solid,
.home-compact .site-header,
.home-redesign .site-header {
  background: #ffffff !important;
  background-color: #ffffff !important;
  border-bottom: 1px solid rgba(11, 60, 111, 0.12);
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.site-header--solid.is-scrolled,
.home-compact .site-header.is-scrolled,
.home-redesign .site-header.is-scrolled {
  background: #ffffff !important;
  background-color: #ffffff !important;
  box-shadow: 0 10px 28px rgba(11, 60, 111, 0.08);
}

.home-editorial-about {
  padding: 64px 0;
  background: var(--white);
}

.home-editorial-about__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: center;
}

.home-editorial-about__media img {
  width: 100%;
  height: clamp(320px, 42vw, 460px);
  object-fit: cover;
  border-radius: var(--radius);
}

.home-editorial-about__copy h2 {
  margin-top: 8px;
  max-width: 16ch;
}

.home-editorial-about__copy p {
  margin-top: 14px;
  color: var(--muted);
  max-width: 38rem;
  line-height: 1.65;
}

.home-editorial-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 18px;
}

.home-editorial-stats span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--light);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 600;
}

.home-editorial-stats strong {
  color: var(--blue);
  margin-right: 4px;
}

.home-services-block__head--editorial {
  max-width: 760px;
}

.home-services-block__head--editorial h2 {
  max-width: 18ch;
}

.home-services-block__head--editorial p:not(.section-kicker) {
  margin-top: 12px;
  color: var(--muted);
}

.home-method {
  padding: 56px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.home-method__head {
  max-width: 640px;
  margin-bottom: 28px;
}

.home-method__head p:not(.section-kicker) {
  margin-top: 10px;
  color: var(--muted);
}

.home-method__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.home-method__steps article {
  padding: 18px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--light);
}

.home-method__steps strong {
  color: var(--sky);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}

.home-method__steps h3 {
  margin-top: 10px;
  color: var(--blue);
}

.home-method__steps p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.home-before-after {
  padding: 56px 0;
}

.home-trust-zone {
  padding: 56px 0;
  background: #F7FAFC;
}

.home-trust-zone__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 28px;
}

.home-trust-zone__points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 22px;
}

.home-trust-zone__points article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.home-trust-zone__points h3 {
  color: var(--blue);
  font-size: 1rem;
}

.home-trust-zone__points p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.88rem;
}

.home-trust-zone__aside {
  padding: 24px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--blue-dark), var(--blue));
  color: #fff;
}

.home-trust-zone__aside h3 {
  margin-top: 8px;
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.05;
}

.home-trust-zone__aside > p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.home-trust-zone__links {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.home-trust-zone__links a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 0.9rem;
  font-weight: 600;
}

@media (max-width: 980px) {
  .home-editorial-about__grid,
  .home-method__steps,
  .home-trust-zone__grid,
  .home-trust-zone__points {
    grid-template-columns: 1fr;
  }
}

.home-compact .designer-hero__copy h1 {
  max-width: 18ch;
  font-size: clamp(2.2rem, 4.6vw, 3.55rem);
  line-height: 1.05;
}

.home-compact .designer-hero__copy p:not(.eyebrow) {
  max-width: 38rem;
  margin-top: 12px;
  font-size: 1.02rem;
}

.home-compact .hero-proof-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 22px;
}

.home-compact .hero-proof-inline span {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.84rem;
  font-weight: 600;
}

.home-compact .hero-proof-inline strong {
  color: #fff;
  font-size: 1rem;
}

.home-services-block {
  padding: 48px 0 28px;
  background: #F7FAFC;
}

.home-services-block__head {
  max-width: 720px;
  margin-bottom: 28px;
}

.home-services-block__head h2 {
  margin-top: 8px;
}

.home-focus-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}

.home-focus-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.home-focus-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 6px;
}

.home-focus-card h3 {
  color: var(--blue);
  font-size: 1.15rem;
}

.home-focus-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.home-focus-card .text-link {
  display: inline-block;
  margin-top: 12px;
}

.home-service-icons {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.home-service-icons article {
  padding: 14px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.home-service-icons h3 {
  margin-top: 8px;
  color: var(--blue);
  font-size: 0.95rem;
}

.home-service-icons p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.svc-ico {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--soft-blue);
  font-size: 1.05rem;
}

.home-services-more {
  margin-top: 20px;
  text-align: center;
}

.home-mid-cta {
  padding: 8px 0 28px;
  background: #F7FAFC;
}

.home-mid-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  border-radius: var(--radius);
  background: linear-gradient(120deg, var(--blue-dark), var(--blue));
  color: #fff;
}

.home-mid-cta__inner h2 {
  margin-top: 6px;
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.home-mid-cta__inner .eyebrow {
  color: rgba(255, 255, 255, 0.75);
}

.home-mid-cta__inner .btn-primary {
  background: #fff;
  color: var(--blue);
}

.home-about-compact {
  padding: 48px 0;
}

.home-about-compact__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.home-about-compact p {
  margin-top: 12px;
  color: var(--muted);
}

.home-about-badges {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.home-about-badges li {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--light);
}

.home-about-badges strong {
  display: block;
  color: var(--blue);
  font-size: 1.45rem;
  line-height: 1;
}

.home-about-badges span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.84rem;
}

.closing-form--compact {
  padding-top: 36px;
}

.quote-form--simple {
  grid-template-columns: 1fr 1fr;
}

.service-catalog__grid article .svc-ico {
  margin-bottom: 4px;
}

.service-catalog__grid--priority article:nth-child(1),
.service-catalog__grid--priority article:nth-child(2) {
  border-color: rgba(11, 60, 111, 0.28);
  background: linear-gradient(180deg, #fff, var(--soft-blue));
}

body.cookie-visible .designer-hero--compact {
  padding-bottom: 28px;
}

@media (max-width: 980px) {
  .home-focus-grid,
  .home-about-compact__grid,
  .home-service-icons {
    grid-template-columns: 1fr;
  }

  .home-focus-card {
    grid-template-columns: 1fr;
  }

  .home-focus-card img {
    height: 180px;
  }

  .home-mid-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-service-icons {
    grid-template-columns: 1fr 1fr;
  }

  .home-compact .designer-hero--compact {
    min-height: auto;
    padding-bottom: 32px;
  }
}

@media (max-width: 560px) {
  .home-service-icons {
    grid-template-columns: 1fr;
  }
}

/* ========== HOME PREMIUM (€3000 level) ========== */
/* Background soft solo su main: body resta bianco sotto la status bar iOS */
.home-premium {
  background: transparent;
  color: var(--ink);
}

.home-premium main,
.home-redesign main {
  background: #FBFCFD;
}

.home-premium .container {
  width: min(1220px, calc(100% - 48px));
}

.home-premium .site-header--solid {
  background: #ffffff !important;
  border-bottom: 1px solid rgba(11, 60, 111, 0.1);
  backdrop-filter: none;
  padding-inline: max(24px, calc((100vw - 1220px) / 2));
}

.hp-section-head {
  max-width: none;
  margin-bottom: 32px;
}

/* Titoli: larghezza piena del container, a capo solo se serve (mai overflow) */
.home-premium .hp-section-head h2,
.home-premium .hp-section-head > p:not(.section-kicker) {
  max-width: none;
  white-space: normal;
}

.hp-section-head h2 {
  margin-top: 8px;
  line-height: 1.12;
}

.hp-section-head > p:not(.section-kicker) {
  margin-top: 12px;
  max-width: 46rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
}

.hp-hero {
  position: relative;
  min-height: min(78vh, 720px);
  display: grid;
  align-items: end;
  padding: calc(var(--header-height) + 40px) 0 48px;
  color: #fff;
  overflow: hidden;
  background: var(--blue-dark);
}

.hp-hero__media,
.hp-hero__media img,
.hp-hero__wash {
  position: absolute;
  inset: 0;
}

.hp-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
}

.hp-hero__wash {
  background:
    linear-gradient(105deg, rgba(7, 30, 53, 0.94) 0%, rgba(7, 30, 53, 0.78) 40%, rgba(7, 30, 53, 0.62) 68%, rgba(7, 30, 53, 0.72) 100%),
    linear-gradient(180deg, rgba(7, 30, 53, 0.18), rgba(7, 30, 53, 0.58));
}

.hp-hero__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.72fr);
  gap: 40px;
  align-items: end;
}

.hp-hero__copy .eyebrow {
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.12em;
}

.hp-hero__copy h1 {
  margin-top: 10px;
  max-width: 16ch;
  white-space: normal;
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  line-height: 1.06;
  color: #fff;
}

.hp-hero__lead {
  margin-top: 14px;
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.02rem;
  line-height: 1.55;
}

.hp-hero__aside {
  justify-self: end;
  width: min(100%, 320px);
}

.hp-hero__proof {
  list-style: none;
  margin: 0;
  padding: 16px 14px;
  display: grid;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  background: rgba(6, 24, 42, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.hp-hero__proof li {
  display: grid;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hp-hero__proof strong {
  color: #fff;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.hp-hero__proof span {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.86rem;
  font-weight: 500;
}

.hp-about {
  padding: 72px 0;
  background: #fff;
}

.hp-about__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 48px;
  align-items: center;
}

.hp-about__figure img {
  width: 100%;
  height: clamp(340px, 44vw, 480px);
  object-fit: cover;
  border-radius: var(--radius);
}

.hp-about__copy h2 {
  margin-top: 8px;
  max-width: 18ch;
  white-space: normal;
  line-height: 1.12;
}

.hp-about__copy .section-kicker {
  margin-top: 0;
  margin-bottom: 18px;
  color: var(--sky);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.3;
  max-width: none;
}

.hp-about__copy p:not(.section-kicker) {
  margin-top: 14px;
  color: #4d5d72;
  max-width: 38rem;
  line-height: 1.7;
  font-size: 1.02rem;
}

.hp-about__copy .text-link {
  display: inline-block;
  margin-top: 18px;
}

.hp-services {
  padding: 64px 0 56px;
  background: #F4F7FA;
}

.hp-focus {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-bottom: 28px;
}

.hp-focus__card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(11, 60, 111, 0.04);
}

.hp-focus__card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
}

.hp-focus__card h3 {
  color: var(--blue);
  font-size: 1.2rem;
}

.hp-focus__card p {
  margin-top: 8px;
  color: #55657a;
  font-size: 0.93rem;
  line-height: 1.55;
}

.hp-focus__card .text-link {
  display: inline-block;
  margin-top: 12px;
}

/* Signature focus panels (home wow) */
.hp-focus--signature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

.hp-focus__panel {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid rgba(11, 60, 111, 0.1);
  box-shadow: 0 14px 36px rgba(11, 60, 111, 0.08);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 320ms ease;
}

.hp-focus__panel--flip .hp-focus__media {
  order: initial;
}

.hp-focus__panel--flip .hp-focus__body {
  order: initial;
}

.hp-focus__panel:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(11, 60, 111, 0.14);
}

.hp-focus__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  min-height: 0;
}

.hp-focus__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hp-focus__panel:hover .hp-focus__media img {
  transform: scale(1.07);
}

.hp-focus__body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 20px 22px 22px;
  background: #fff;
}

.hp-focus__body .section-kicker {
  margin: 0 0 10px;
  color: var(--sky);
}

.hp-focus__body h3 {
  margin: 0;
  max-width: none;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--blue);
  white-space: normal;
}

.hp-focus__body p:not(.section-kicker) {
  margin-top: 10px;
  max-width: none;
  color: #55657a;
  font-size: 0.95rem;
  line-height: 1.55;
}

.hp-focus__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 700;
}

.hp-focus__cta::after {
  content: "→";
  transition: transform 280ms ease;
}

.hp-focus__panel:hover .hp-focus__cta::after {
  transform: translateX(5px);
}

.hp-service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.hp-service-grid article,
.hp-service-grid > a {
  padding: 16px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: inherit;
  text-decoration: none;
  display: block;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

.hp-service-grid > a:hover {
  transform: translateY(-4px);
  border-color: rgba(11, 60, 111, 0.22);
  box-shadow: 0 16px 36px rgba(11, 60, 111, 0.1);
}

.hp-service-grid span {
  display: block;
  color: var(--sky);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.hp-service-grid h3 {
  margin-top: 8px;
  color: var(--blue);
  font-size: 0.98rem;
  line-height: 1.25;
}

.hp-service-grid p {
  margin-top: 6px;
  color: #66778d;
  font-size: 0.82rem;
  line-height: 1.4;
}

.hp-more {
  margin-top: 22px;
  text-align: center;
}

.hp-method {
  padding: 64px 0;
  background: #fff;
}

.hp-method__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.hp-method__steps article {
  padding: 20px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #F7FAFC;
}

.hp-method__steps strong {
  color: var(--sky);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.hp-method__steps h3 {
  margin-top: 10px;
  color: var(--blue);
}

.hp-method__steps p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.hp-results {
  padding: 64px 0;
  background: #F4F7FA;
}

.hp-results__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.hp-results__grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
}

.hp-results__grid img {
  width: 100%;
  height: clamp(240px, 32vw, 360px);
  object-fit: cover;
}

.hp-results__grid figcaption {
  display: grid;
  gap: 6px;
  padding: 16px 18px 18px;
}

.hp-results__grid strong {
  color: var(--blue);
  font-size: 1rem;
}

.hp-results__grid span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.hp-results__grid--editorial {
  gap: 24px;
}

.hp-results__grid--editorial figure {
  border: 0;
  background: transparent;
  border-radius: 0;
  overflow: visible;
}

.hp-results__frame {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(11, 60, 111, 0.12);
}

.hp-results__frame img {
  height: clamp(280px, 36vw, 420px);
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hp-results__grid--editorial figure:hover .hp-results__frame img {
  transform: scale(1.05);
}

.hp-results__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(7, 30, 53, 0.82);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hp-results__badge--after {
  background: rgba(11, 60, 111, 0.92);
}

.hp-results__grid--editorial figcaption {
  padding: 14px 4px 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.hp-trust {
  padding: 64px 0;
  background: #fff;
}

.hp-trust__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 28px;
  align-items: start;
}

.hp-trust__grid > div > h2 {
  max-width: 18ch;
  white-space: normal;
  line-height: 1.12;
}

.hp-trust__points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.hp-trust__points article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #F7FAFC;
}

.hp-trust__points h3 {
  color: var(--blue);
  font-size: 1rem;
}

.hp-trust__points p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.88rem;
}

.hp-trust__aside {
  padding: 28px 24px;
  border-radius: var(--radius);
  background: linear-gradient(155deg, #071E35 0%, #0B3C6F 70%, #1260a8 100%);
  color: #fff;
}

.hp-trust__aside .section-kicker {
  color: rgba(255, 255, 255, 0.7);
}

.hp-trust__aside h3 {
  margin-top: 8px;
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  line-height: 1.05;
}

.hp-trust__aside > p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.hp-trust__links {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.hp-trust__links a {
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hp-reviews {
  padding: 64px 0;
  background: #F4F7FA;
}

.hp-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hp-reviews__grid article {
  padding: 22px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.hp-reviews__grid .stars {
  color: #d4a017;
  letter-spacing: 2px;
}

.hp-reviews__grid p {
  margin-top: 12px;
  color: #445566;
  line-height: 1.55;
  font-size: 0.95rem;
}

.hp-reviews__grid strong {
  display: block;
  margin-top: 16px;
  color: var(--blue);
  font-size: 0.86rem;
}

.hp-quote {
  padding: 64px 0 72px;
  background: #fff;
}

.hp-quote__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: start;
}

.hp-quote__copy h2 {
  max-width: 16ch;
  white-space: normal;
  line-height: 1.12;
}

.hp-quote__copy > p {
  margin-top: 12px;
  color: var(--muted);
  max-width: 34rem;
}

.hp-quote .quote-form {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #F7FAFC;
  box-shadow: 0 16px 40px rgba(11, 60, 111, 0.06);
}

@media (max-width: 980px) {
  .hp-about__grid,
  .hp-focus,
  .hp-method__steps,
  .hp-results__grid,
  .hp-trust__grid,
  .hp-trust__points,
  .hp-reviews__grid,
  .hp-quote__grid,
  .hp-service-grid,
  .hp-hero__layout {
    grid-template-columns: 1fr;
  }

  .hp-focus__card,
  .hp-focus__panel {
    grid-template-columns: 1fr;
  }

  .hp-service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hp-hero {
    min-height: auto;
    padding-bottom: 36px;
  }

  .hp-hero__aside {
    justify-self: stretch;
    width: 100%;
  }

  .hp-hero__proof {
    grid-template-columns: 1fr 1fr;
  }

  .hp-section-head h2,
  .hp-section-head > p:not(.section-kicker),
  .hp-hero__copy h1,
  .hp-about__copy h2,
  .hp-trust__grid > div > h2,
  .hp-quote__copy h2 {
    max-width: none;
    white-space: normal;
  }
}

@media (max-width: 560px) {
  .hp-service-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== CHI SIAMO PREMIUM ========== */
.about-premium .ap-hero .hp-hero__copy h1 {
  max-width: 18ch;
  white-space: normal;
  font-size: clamp(2.15rem, 3.8vw, 3.1rem);
}

.about-premium .ap-hero .hp-hero__lead {
  max-width: 36rem;
  white-space: normal;
  font-size: 1.02rem;
}

.about-premium .ap-hero .eyebrow {
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0;
  margin-bottom: 18px;
}

.ap-story {
  padding: 80px 0;
  background: #fff;
}

.ap-story__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 52px;
  align-items: center;
}

.ap-story__figure {
  margin: 0;
}

.ap-story__figure img {
  width: 100%;
  height: clamp(360px, 46vw, 520px);
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 24px 50px rgba(11, 60, 111, 0.12);
}

.ap-story__figure figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.ap-story__copy .section-kicker {
  margin-top: 0;
  margin-bottom: 18px;
  color: var(--sky);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.3;
  max-width: none;
}

.ap-story__copy h2 {
  margin-top: 8px;
  max-width: 18ch;
  white-space: normal;
  line-height: 1.1;
}

.ap-story__copy p:not(.section-kicker) {
  margin-top: 14px;
  color: #4d5d72;
  max-width: 38rem;
  font-size: 1.02rem;
  line-height: 1.7;
}

.ap-care {
  padding: 72px 0 80px;
  background: linear-gradient(180deg, #F3F7FB 0%, #EEF4F9 100%);
}

.ap-care__head {
  max-width: none;
}

.ap-care__head h2 {
  max-width: 18ch;
  white-space: normal;
}

.ap-care__quote {
  margin: 0 0 28px;
  padding: 28px 32px;
  border-left: 3px solid var(--sky);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: #fff;
  box-shadow: 0 14px 36px rgba(11, 60, 111, 0.06);
}

.ap-care__quote p {
  margin: 0;
  max-width: 46rem;
  color: var(--blue);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2.4vw, 1.95rem);
  font-weight: 600;
  line-height: 1.28;
}

.ap-care__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 22px;
}

.ap-care__card {
  padding: 24px 22px;
  border: 1px solid rgba(11, 60, 111, 0.08);
  border-radius: var(--radius);
  background: #fff;
}

.ap-care__card h3 {
  color: var(--blue);
  font-size: 1.15rem;
}

.ap-care__card p {
  margin-top: 10px;
  color: #55657a;
  font-size: 0.95rem;
  line-height: 1.6;
}

.ap-care__gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
}

.ap-care__gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(11, 60, 111, 0.08);
}

.ap-care__gallery img {
  width: 100%;
  height: clamp(240px, 30vw, 360px);
  object-fit: cover;
  display: block;
  transition: transform 520ms ease;
}

.ap-care__gallery figure:hover img {
  transform: scale(1.03);
}

.ap-care__gallery figcaption {
  padding: 14px 16px 16px;
  color: var(--muted);
  font-size: 0.88rem;
}

.ap-method {
  padding: 72px 0;
  background: #fff;
}

.ap-method__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.ap-method__steps article {
  padding: 24px 18px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #F8FBFD 0%, #fff 70%);
}

.ap-method__steps strong {
  color: var(--sky);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.ap-method__steps h3 {
  margin-top: 10px;
  color: var(--blue);
}

.ap-method__steps p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.ap-values {
  padding: 72px 0;
  background: #071E35;
  color: #fff;
}

.ap-values .section-kicker {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 18px;
}

.ap-values h2 {
  color: #fff;
  max-width: 22ch;
  white-space: normal;
}

.ap-values__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.ap-values__grid article {
  padding: 22px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.ap-values__grid span {
  display: block;
  color: var(--sky);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.ap-values__grid h3 {
  margin-top: 10px;
  color: #fff;
  font-size: 1.08rem;
}

.ap-values__grid p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.5;
}

.ap-audience {
  padding: 72px 0 80px;
  background: #F4F7FA;
}

.ap-services {
  padding: 72px 0 80px;
  background: #fff;
  border-top: 1px solid rgba(11, 60, 111, 0.12);
}

.ap-services__focus {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.ap-services__focus a {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 0 0 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #F8FBFD 0%, #fff 72%);
  text-decoration: none;
  color: inherit;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.ap-services__focus a:hover {
  border-color: rgba(63, 169, 245, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(11, 60, 111, 0.08);
}

.ap-services__focus img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.ap-services__focus strong,
.ap-services__focus h3,
.ap-services__focus p,
.ap-services__focus .text-link {
  padding-inline: 20px;
}

.ap-services__focus strong {
  margin-top: 16px;
  color: var(--sky);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.ap-services__focus h3 {
  color: var(--blue);
  font-size: 1.18rem;
}

.ap-services__focus p {
  color: #55657a;
  font-size: 0.93rem;
  line-height: 1.55;
}

.ap-services__focus .text-link {
  margin-top: 6px;
}

.ap-services__more {
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #F4F7FA;
}

.ap-services__more-label {
  margin: 0 0 18px;
  color: var(--sky);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.3;
}

.ap-services__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ap-services__links a {
  padding: 10px 14px;
  border: 1px solid rgba(11, 60, 111, 0.1);
  border-radius: 8px;
  background: #fff;
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease;
}

.ap-services__links a:hover {
  background: #EAF4FC;
  border-color: rgba(63, 169, 245, 0.45);
}

.ap-services__cta {
  margin: 26px 0 0;
  text-align: center;
}

.ap-audience__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.ap-audience__card {
  display: block;
  padding: 24px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(11, 60, 111, 0.04);
  text-decoration: none;
  color: inherit;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.ap-audience__card:hover {
  border-color: rgba(63, 169, 245, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(11, 60, 111, 0.08);
}

.ap-audience__card h3 {
  color: var(--blue);
  font-size: 1.12rem;
}

.ap-audience__card p {
  margin-top: 10px;
  color: #55657a;
  font-size: 0.94rem;
  line-height: 1.55;
}

.ap-audience__card .text-link {
  display: inline-block;
  margin-top: 14px;
}

.ap-numbers {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 22px 18px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #0B3C6F 0%, #1260a8 100%);
  color: #fff;
}

.ap-numbers article {
  text-align: center;
  padding: 8px 6px;
}

.ap-numbers strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1;
}

.ap-numbers span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.84rem;
  font-weight: 600;
}

.ap-cta {
  position: relative;
  padding: 88px 0;
  overflow: hidden;
  color: #fff;
  background: var(--blue-dark);
}

.ap-cta__media,
.ap-cta__media img,
.ap-cta__wash {
  position: absolute;
  inset: 0;
}

.ap-cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ap-cta__wash {
  background: linear-gradient(100deg, rgba(7, 30, 53, 0.94) 0%, rgba(7, 30, 53, 0.78) 48%, rgba(7, 30, 53, 0.45) 100%);
}

.ap-cta__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.65fr);
  gap: 28px;
  align-items: end;
}

.ap-cta__content {
  position: relative;
  z-index: 2;
  max-width: none;
}

.ap-cta__content .section-kicker {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 18px;
  letter-spacing: 0;
}

.ap-cta__content h2 {
  margin-top: 8px;
  max-width: 18ch;
  white-space: normal;
  color: #fff;
  line-height: 1.1;
  font-size: clamp(1.85rem, 3vw, 2.7rem);
}

.ap-cta__lead {
  margin-top: 14px;
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.6;
  white-space: normal;
}

.ap-cta__points {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.ap-cta__points li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  font-weight: 600;
}

.ap-cta__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sky);
}

.ap-cta__content .hero-actions {
  margin-top: 24px;
}

.ap-cta__alt {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.ap-cta__alt a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ap-cta__aside {
  padding: 22px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(7, 30, 53, 0.45);
  backdrop-filter: blur(10px);
  display: grid;
  gap: 10px;
}

.ap-cta__aside-label {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.3;
}

.ap-cta__aside a {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.ap-cta__aside a:hover {
  background: rgba(255, 255, 255, 0.14);
}

@media (max-width: 980px) {
  .ap-story__grid,
  .ap-care__grid,
  .ap-care__gallery,
  .ap-cta__layout,
  .ap-services__focus {
    grid-template-columns: 1fr;
  }

  .ap-method__steps,
  .ap-values__grid,
  .ap-audience__grid,
  .ap-numbers {
    grid-template-columns: 1fr 1fr;
  }

  .ap-story__copy h2,
  .ap-care__head h2,
  .ap-values h2,
  .ap-cta__content h2,
  .about-premium .ap-hero .hp-hero__copy h1 {
    max-width: none;
    white-space: normal;
  }
}

@media (max-width: 560px) {
  .ap-method__steps,
  .ap-values__grid,
  .ap-audience__grid,
  .ap-numbers {
    grid-template-columns: 1fr;
  }
}

/* ========== CONTATTI PREMIUM ========== */
.contact-premium .hp-hero__copy h1 {
  max-width: 18ch;
  white-space: normal;
  font-size: clamp(2.15rem, 3.8vw, 3.1rem);
}

.contact-premium .hp-hero__lead {
  max-width: 34rem;
}

.cp-channels {
  padding: 64px 0 28px;
  background: #fff;
}

.cp-channels__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.cp-channel {
  display: grid;
  gap: 8px;
  padding: 20px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #F7FAFC;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.cp-channel:hover {
  border-color: rgba(11, 60, 111, 0.28);
  background: #fff;
  transform: translateY(-2px);
}

.cp-channel .section-kicker {
  margin: 0;
}

.cp-channel strong {
  color: var(--blue);
  font-size: 1.05rem;
  line-height: 1.25;
  word-break: break-word;
}

.cp-channel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.cp-quote {
  padding: 48px 0 72px;
  background: #fff;
}

.cp-quote__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 36px;
  align-items: start;
}

.cp-quote__copy h2 {
  max-width: 18ch;
  white-space: normal;
  line-height: 1.12;
}

.cp-quote__copy > p {
  margin-top: 12px;
  color: var(--muted);
  max-width: 34rem;
}

.cp-quote__points {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.cp-quote__points li {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 600;
}

.cp-quote__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sky);
}

.cp-quote__meta {
  margin-top: 28px;
  display: grid;
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.cp-quote__meta p {
  margin: 0;
  display: grid;
  gap: 2px;
}

.cp-quote__meta strong {
  color: var(--blue);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.cp-quote__meta span {
  color: var(--muted);
  font-size: 0.95rem;
}

.cp-quote .quote-form,
.cp-form {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 40px rgba(11, 60, 111, 0.06);
}

.cp-method {
  padding: 64px 0;
  background: #F4F7FA;
}

.cp-method__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.cp-method__steps article {
  padding: 20px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #F7FAFC;
}

.cp-method__steps strong {
  display: block;
  color: var(--sky);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.cp-method__steps h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: var(--blue);
}

.cp-method__steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.cp-zones {
  padding: 64px 0 80px;
  background: #F4F7FA;
}

.cp-zones__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 28px;
  align-items: start;
}

.cp-zones__grid h2 {
  max-width: 18ch;
  white-space: normal;
  line-height: 1.12;
}

.cp-zones__grid > div > p {
  margin-top: 12px;
  color: var(--muted);
  max-width: 38rem;
}

.cp-zones__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.cp-zones__links a {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}

.cp-zones__links a:hover {
  border-color: rgba(11, 60, 111, 0.28);
  background: #F7FAFC;
}

.cp-zones__aside {
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.cp-zones__aside ul {
  list-style: none;
  margin: 16px 0 22px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.cp-zones__aside li {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 600;
}

.cp-zones__aside li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sky);
}

@media (max-width: 980px) {
  .cp-channels__grid,
  .cp-quote__grid,
  .cp-method__steps,
  .cp-zones__grid {
    grid-template-columns: 1fr;
  }

  .cp-channels__grid {
    grid-template-columns: 1fr 1fr;
  }

  .cp-method__steps {
    grid-template-columns: 1fr 1fr;
  }

  .contact-premium .hp-hero__copy h1,
  .cp-quote__copy h2,
  .cp-zones__grid h2 {
    max-width: none;
    white-space: normal;
  }
}

@media (max-width: 560px) {
  .cp-channels__grid,
  .cp-method__steps {
    grid-template-columns: 1fr;
  }
}

/* ========== SERVIZI PREMIUM ========== */
.services-premium .hp-hero__copy h1 {
  max-width: 18ch;
  white-space: normal;
  font-size: clamp(2.15rem, 3.8vw, 3.1rem);
}

.services-premium .hp-hero__lead {
  max-width: 36rem;
}

.sp-intro {
  padding: 64px 0;
  background: #fff;
}

.sp-intro__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: start;
}

.sp-intro__grid h2 {
  max-width: 16ch;
  white-space: normal;
  line-height: 1.12;
}

.sp-intro__copy {
  display: grid;
  gap: 14px;
  padding-top: 28px;
}

.sp-intro__copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 38rem;
}

.sp-focus {
  padding: 56px 0 72px;
  background: #F4F7FA;
}

.sp-focus__grid,
.sp-more__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.sp-tile {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 12px 36px rgba(11, 60, 111, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.sp-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(11, 60, 111, 0.22);
  box-shadow: 0 18px 44px rgba(11, 60, 111, 0.1);
}

.sp-tile figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #d9e3ee;
  aspect-ratio: 4 / 3;
}

.sp-tile--sm figure {
  aspect-ratio: 5 / 4;
}

.sp-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.sp-tile:hover img {
  transform: scale(1.05);
}

.sp-tile figure span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(7, 30, 53, 0.72);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
}

.sp-tile__body {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 16px 16px 18px;
}

.sp-tile__body h3 {
  margin: 0;
  color: var(--blue);
  font-size: 1.08rem;
  line-height: 1.25;
}

.sp-tile--sm .sp-tile__body h3 {
  font-size: 1rem;
}

.sp-tile__body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.sp-tile__body .text-link {
  margin-top: 4px;
  font-size: 0.88rem;
}

.sp-gallery {
  padding: 64px 0;
  background: #fff;
}

.sp-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(4, minmax(160px, 200px));
  gap: 14px;
}

.sp-gallery__item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #d9e3ee;
  min-height: 0;
}

/* Rettangolo 4×4 pieno: grande + 4 piccole + 4 piccole + grande */
.sp-gallery__item:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 3; }
.sp-gallery__item:nth-child(2) { grid-column: 3; grid-row: 1; }
.sp-gallery__item:nth-child(3) { grid-column: 4; grid-row: 1; }
.sp-gallery__item:nth-child(4) { grid-column: 3; grid-row: 2; }
.sp-gallery__item:nth-child(5) { grid-column: 4; grid-row: 2; }
.sp-gallery__item:nth-child(6) { grid-column: 1; grid-row: 3; }
.sp-gallery__item:nth-child(7) { grid-column: 2; grid-row: 3; }
.sp-gallery__item:nth-child(8) { grid-column: 1; grid-row: 4; }
.sp-gallery__item:nth-child(9) { grid-column: 2; grid-row: 4; }
.sp-gallery__item:nth-child(10) { grid-column: 3 / 5; grid-row: 3 / 5; }

.sp-gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sp-gallery__item:hover img {
  transform: scale(1.04);
}

.sp-gallery__item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 16px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  background: linear-gradient(transparent, rgba(7, 30, 53, 0.72));
}

.sp-more {
  padding: 64px 0;
  background: #F4F7FA;
}

.sp-more__item {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 20px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 28px rgba(11, 60, 111, 0.04);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.sp-more__item:hover {
  border-color: rgba(11, 60, 111, 0.28);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(11, 60, 111, 0.08);
}

.sp-more__item strong {
  color: var(--sky);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.sp-more__item h3 {
  margin: 0;
  color: var(--blue);
  font-size: 1.05rem;
  line-height: 1.25;
}

.sp-more__item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.sp-more__item .text-link {
  margin-top: 4px;
  font-size: 0.88rem;
}

.sp-method {
  padding: 64px 0;
  background: #fff;
}

.sp-method__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 8px;
}

.sp-method__steps article {
  padding: 20px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #F7FAFC;
}

.sp-method__steps strong {
  display: block;
  color: var(--sky);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.sp-method__steps h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: var(--blue);
}

.sp-method__steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.sp-zones {
  padding: 64px 0;
  background: #F4F7FA;
}

.sp-zones__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 28px;
  align-items: start;
}

.sp-zones__grid h2 {
  max-width: 16ch;
  white-space: normal;
  line-height: 1.12;
}

.sp-zones__grid > div > p {
  margin-top: 12px;
  color: var(--muted);
  max-width: 38rem;
  line-height: 1.65;
}

.sp-zones__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.sp-zones__links a {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}

.sp-zones__links a:hover {
  border-color: rgba(11, 60, 111, 0.28);
  background: #F7FAFC;
}

.sp-zones__aside {
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.sp-zones__aside ul {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.sp-zones__aside li {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 600;
}

.sp-zones__aside li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sky);
}

@media (max-width: 1100px) {
  .sp-focus__grid,
  .sp-more__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sp-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(8, minmax(140px, 170px));
  }

  .sp-gallery__item:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 3; }
  .sp-gallery__item:nth-child(2) { grid-column: 1; grid-row: 3; }
  .sp-gallery__item:nth-child(3) { grid-column: 2; grid-row: 3; }
  .sp-gallery__item:nth-child(4) { grid-column: 1; grid-row: 4; }
  .sp-gallery__item:nth-child(5) { grid-column: 2; grid-row: 4; }
  .sp-gallery__item:nth-child(6) { grid-column: 1; grid-row: 5; }
  .sp-gallery__item:nth-child(7) { grid-column: 2; grid-row: 5; }
  .sp-gallery__item:nth-child(8) { grid-column: 1; grid-row: 6; }
  .sp-gallery__item:nth-child(9) { grid-column: 2; grid-row: 6; }
  .sp-gallery__item:nth-child(10) { grid-column: 1 / 3; grid-row: 7 / 9; }
}

@media (max-width: 980px) {
  .sp-intro__grid,
  .sp-zones__grid,
  .sp-method__steps {
    grid-template-columns: 1fr;
  }

  .sp-method__steps {
    grid-template-columns: 1fr 1fr;
  }

  .services-premium .hp-hero__copy h1,
  .sp-intro__grid h2,
  .sp-zones__grid h2 {
    max-width: none;
    white-space: normal;
  }
}

@media (max-width: 560px) {
  .sp-focus__grid,
  .sp-more__grid,
  .sp-method__steps {
    grid-template-columns: 1fr;
  }

  .sp-gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-rows: 200px;
  }

  .sp-gallery__item:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }
}

/* ========== SERVICE PREMIUM (pagine servizio) ========== */
.service-premium .hp-hero__copy h1 {
  max-width: 18ch;
  white-space: normal;
  font-size: clamp(2.15rem, 3.8vw, 3.1rem);
}

.service-premium .hp-hero__lead {
  max-width: 36rem;
}

.svc-intro {
  padding: 64px 0;
  background: #fff;
}

.svc-intro__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: start;
}

.svc-intro__grid h2 {
  max-width: 16ch;
  white-space: normal;
  line-height: 1.12;
}

.svc-intro__copy {
  display: grid;
  gap: 14px;
  padding-top: 28px;
}

.svc-intro__copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 38rem;
}

.svc-deep {
  padding: 64px 0;
  background: #F4F7FA;
}

.svc-deep__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: center;
}

.svc-deep__grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #d9e3ee;
}

.svc-deep__grid img {
  display: block;
  width: 100%;
  height: clamp(260px, 32vw, 380px);
  object-fit: cover;
}

.svc-deep__grid h2 {
  max-width: 16ch;
  white-space: normal;
  line-height: 1.12;
}

.svc-deep__grid p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 36rem;
}

.svc-include {
  padding: 64px 0;
  background: #fff;
}

.svc-include__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.svc-include__grid article {
  padding: 18px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #F7FAFC;
}

.svc-include__grid h3 {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 1.02rem;
}

.svc-include__grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.svc-method {
  padding: 64px 0;
  background: #F4F7FA;
}

.svc-method__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.svc-method__steps article {
  padding: 20px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.svc-method__steps strong {
  display: block;
  color: var(--sky);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.svc-method__steps h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: var(--blue);
}

.svc-method__steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.svc-related {
  padding: 64px 0;
  background: #fff;
}

.svc-related__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 28px;
  align-items: start;
}

.svc-related__grid h2 {
  max-width: 16ch;
  white-space: normal;
  line-height: 1.12;
}

.svc-related__grid > div > p {
  margin-top: 12px;
  color: var(--muted);
  max-width: 38rem;
  line-height: 1.65;
}

.svc-related__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.svc-related__links a {
  display: inline-flex;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #F7FAFC;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}

.svc-related__links a:hover {
  background: #fff;
  border-color: rgba(11, 60, 111, 0.28);
}

.svc-related__aside {
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #F7FAFC;
}

.svc-related__aside ul {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.svc-related__aside li {
  position: relative;
  padding-left: 18px;
  font-weight: 600;
  font-size: 0.95rem;
}

.svc-related__aside li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sky);
}

.svc-quote {
  padding: 64px 0 80px;
  background: #F4F7FA;
}

.svc-quote__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 36px;
  align-items: start;
}

.svc-quote__copy h2 {
  max-width: 16ch;
  white-space: normal;
  line-height: 1.12;
}

.svc-quote__copy > p {
  margin-top: 12px;
  color: var(--muted);
  max-width: 34rem;
}

.svc-quote .quote-form {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 40px rgba(11, 60, 111, 0.06);
}

.svc-deep__grid--flip {
  direction: rtl;
}

.svc-deep__grid--flip > * {
  direction: ltr;
}

.svc-faq {
  padding: 56px 0 64px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.svc-faq .hp-section-head {
  max-width: 40rem;
}

.svc-faq__list {
  display: grid;
  gap: 0;
  max-width: 820px;
  margin: 28px auto 0;
}

.svc-faq__list details {
  border-bottom: 1px solid var(--line);
  padding: 14px 0 16px;
}

.svc-faq__list summary {
  cursor: pointer;
  list-style: none;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 600;
  color: var(--ink, #122033);
  line-height: 1.35;
}

.svc-faq__list summary::-webkit-details-marker {
  display: none;
}

.svc-faq__list summary::after {
  content: "+";
  float: right;
  color: var(--sky, #0B3C6F);
  font-family: Inter, system-ui, sans-serif;
  font-weight: 600;
}

.svc-faq__list details[open] summary::after {
  content: "\2013";
}

.svc-faq__list p {
  margin: 10px 0 0;
  color: var(--muted, #5b6b7c);
  line-height: 1.65;
  max-width: 62ch;
}

@media (max-width: 980px) {
  .svc-intro__grid,
  .svc-deep__grid,
  .svc-related__grid,
  .svc-quote__grid {
    grid-template-columns: 1fr;
  }

  .svc-deep__grid--flip {
    direction: ltr;
  }

  .svc-include__grid,
  .svc-method__steps {
    grid-template-columns: 1fr 1fr;
  }

  .service-premium .hp-hero__copy h1,
  .svc-intro__grid h2,
  .svc-deep__grid h2,
  .svc-related__grid h2,
  .svc-quote__copy h2 {
    max-width: none;
    white-space: normal;
  }
}

@media (max-width: 560px) {
  .svc-include__grid,
  .svc-method__steps {
    grid-template-columns: 1fr;
  }
}

/* ========== HOME WOW / DESKTOP 9.5 PUSH ========== */
.home-wow .hp-hero--cinematic {
  min-height: min(88vh, 820px);
  padding: calc(var(--header-height) + 56px) 0 64px;
  align-items: center;
}

.home-wow .hp-hero--cinematic .hp-hero__media img {
  object-position: center 32%;
  animation: hpKenBurns 18s ease-out forwards;
  will-change: transform;
}

@keyframes hpKenBurns {
  from { transform: scale(1.08); }
  to { transform: scale(1.16); }
}

.home-wow .hp-hero--cinematic .hp-hero__wash {
  background:
    linear-gradient(105deg, rgba(5, 22, 40, 0.9) 0%, rgba(7, 30, 53, 0.72) 42%, rgba(7, 30, 53, 0.55) 70%, rgba(7, 30, 53, 0.68) 100%),
    linear-gradient(180deg, rgba(7, 30, 53, 0.2), rgba(7, 30, 53, 0.62));
}

.home-wow .hp-hero--cinematic .hp-hero__layout {
  align-items: center;
  gap: 48px;
}

.home-wow .hp-hero--cinematic .hp-hero__copy h1 {
  font-size: clamp(2.55rem, 4.6vw, 3.85rem);
  letter-spacing: -0.02em;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.28);
}

.home-wow .hp-hero--cinematic .hp-hero__lead {
  font-size: 1.08rem;
  max-width: 38rem;
}

.home-wow .hp-hero--cinematic .hero-actions {
  margin-top: 26px;
  gap: 12px;
}

.home-wow .hp-hero--cinematic .btn-primary {
  box-shadow: 0 18px 42px rgba(63, 169, 245, 0.34);
}

.home-wow .hp-hero__aside-kicker {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-wow .hp-hero__proof--editorial {
  gap: 0;
  padding: 8px 4px 4px;
  border-radius: 16px;
  background: rgba(5, 20, 36, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px);
}

.home-wow .hp-hero__proof--editorial li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: transparent;
}

.home-wow .hp-hero__proof--editorial li:last-child {
  border-bottom: 0;
}

.home-wow .hp-hero__proof--editorial strong {
  font-size: 1.28rem;
  letter-spacing: -0.01em;
}

.home-wow .hp-hero__proof--editorial span {
  text-align: right;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.84rem;
}

.home-wow .hp-about {
  padding: 88px 0;
}

.home-wow .hp-about__figure {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(11, 60, 111, 0.14);
}

.home-wow .hp-about__figure img {
  border-radius: 18px;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-wow .hp-about__figure:hover img {
  transform: scale(1.04);
}

.home-wow .hp-services {
  padding: 80px 0 72px;
}

.home-wow .hp-service-grid article,
.home-wow .hp-service-grid > a {
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

.home-wow .hp-service-grid article:hover,
.home-wow .hp-service-grid > a:hover {
  transform: translateY(-4px);
  border-color: rgba(11, 60, 111, 0.22);
  box-shadow: 0 16px 36px rgba(11, 60, 111, 0.1);
}

.home-wow .hp-method {
  padding: 80px 0;
}

.home-wow .hp-method__steps article {
  position: relative;
  overflow: hidden;
  transition: transform 280ms ease, box-shadow 280ms ease, background 280ms ease;
}

.home-wow .hp-method__steps article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--sky), var(--blue));
  opacity: 0;
  transition: opacity 280ms ease;
}

.home-wow .hp-method__steps article:hover {
  transform: translateY(-4px);
  background: #fff;
  box-shadow: 0 16px 40px rgba(11, 60, 111, 0.08);
}

.home-wow .hp-method__steps article:hover::before {
  opacity: 1;
}

.home-wow .hp-results,
.home-wow .hp-trust {
  padding: 80px 0;
}

.home-wow .text-link {
  position: relative;
}

.home-wow .text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 280ms ease;
  opacity: 0.55;
}

.home-wow .text-link:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.home-wow [data-reveal] {
  transform: translateY(34px);
  transition: opacity 900ms cubic-bezier(0.22, 1, 0.36, 1), transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-wow [data-reveal].is-visible {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .home-wow .hp-hero--cinematic .hp-hero__media img,
  .home-wow .hp-focus__media img,
  .home-wow .hp-results__frame img,
  .home-wow .hp-about__figure img {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }

  .home-wow [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 980px) {
  :root {
    --float-stack: 110px;
  }

  .home-wow .hp-hero--cinematic {
    min-height: auto;
    padding-bottom: calc(28px + var(--float-stack, 110px));
    align-items: start;
  }

  .home-wow .hp-hero--cinematic .hp-hero__media img {
    animation: none;
    transform: none;
  }

  .hp-focus__panel,
  .hp-focus__panel--flip {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hp-focus--signature {
    grid-template-columns: 1fr;
  }

  .hp-focus__panel--flip .hp-focus__media,
  .hp-focus__panel--flip .hp-focus__body {
    order: initial;
  }

  .hp-focus__media {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .hp-focus__body h3,
  .hp-focus__body p:not(.section-kicker) {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .hp-focus__panel {
    border-radius: 14px;
  }

  .hp-focus__body {
    padding: 22px 20px 24px;
  }

  .home-wow .hp-hero__proof--editorial li {
    flex-direction: column;
    gap: 2px;
  }

  .home-wow .hp-hero__proof--editorial span {
    text-align: left;
  }
}
