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

:root {
  --bg: #f4f1ea;
  --bg-soft: #ebe5dc;
  --surface: #f8f5ef;
  --surface-strong: #e6ddd2;
  --text: #15161a;
  --muted: #6f675f;
  --line: rgba(21, 22, 26, 0.1);

  --accent: #d84a2b;
  --accent-dark: #b83c21;
  --accent-second: #0f7c78;

  --radius-xl: 40px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;

  --shadow-soft: 0 18px 50px rgba(21, 22, 26, 0.06);
  --shadow-medium: 0 24px 70px rgba(21, 22, 26, 0.1);

  --max: 1320px;
  --narrow: 920px;
  --header-h: 92px;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

main {
  flex: 1;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.page-shell,
.nav-container,
.footer-inner {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
}

.narrow-shell {
  width: min(var(--narrow), 100%);
  margin: 0 auto;
}

section {
  position: relative;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.page-title,
.hero-brand,
.service-line h2,
.formula-line h2,
.formula-block h2,
.final-cta h2,
.contact-intro h2 {
  letter-spacing: -0.05em;
}

.page-title {
  font-size: clamp(2.25rem, 4.9vw, 5rem);
  line-height: 0.98;
  font-weight: 800;
}

.section-statement {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.05em;
}

p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.02rem;
}

.section-label,
.hero-kicker {
  display: inline-block;
  font-size: 0.8rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-label {
  color: var(--accent);
}

.hero-kicker {
  color: var(--muted);
}

/* HEADER */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(244, 241, 234, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(21, 22, 26, 0.06);
}

.nav-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  white-space: nowrap;
}

.nav-logo-main,
.nav-logo-sub {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.nav-logo-main {
  color: var(--text);
}

.nav-logo-sub {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.7rem;
}

.nav-links a {
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--accent);
}

.burger {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(21, 22, 26, 0.12);
  border-radius: 999px;
  background: rgba(248, 245, 239, 0.8);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 0;
}

.burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.burger.active span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.burger.active span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(21, 22, 26, 0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  z-index: 998;
}

.mobile-menu-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu {
  position: fixed;
  top: calc(var(--header-h) + 12px);
  right: 20px;
  left: 20px;
  z-index: 999;
  background: rgba(248, 245, 239, 0.98);
  border: 1px solid rgba(21, 22, 26, 0.08);
  border-radius: 26px;
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-medium);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-menu-nav a {
  display: block;
  padding: 0.95rem 0.1rem;
  border-bottom: 1px solid rgba(21, 22, 26, 0.07);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mobile-menu-nav a:last-child {
  border-bottom: none;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-secondary {
  border: 1px solid rgba(21, 22, 26, 0.14);
  color: var(--text);
  background: transparent;
}

.btn-secondary:hover {
  border-color: rgba(21, 22, 26, 0.28);
}

.text-link {
  font-size: 0.95rem;
  font-weight: 700;
  padding-bottom: 0.12rem;
  border-bottom: 1px solid currentColor;
}

.strong-link {
  color: var(--accent);
}

/* HOME */

.home-hero {
  padding: calc(var(--header-h) + 3.5rem) 0 3rem;
}

.hero-shell {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-scene {
  width: min(980px, 100%);
  text-align: center;
}

.hero-brand-wrap {
  overflow: hidden;
  margin-top: 1rem;
}

.hero-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1em;
  line-height: 0.9;
}

.hero-brand-main,
.hero-brand-sub {
  display: block;
}

.hero-brand-main {
  font-size: clamp(3.6rem, 10vw, 8.6rem);
  font-weight: 800;
  color: var(--text);
  transform: translateY(90px);
  opacity: 0;
  animation: brandRiseMain 2.15s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
  will-change: transform, opacity;
}

.hero-brand-sub {
  font-size: clamp(3rem, 8vw, 6.9rem);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.04em;
  transform: translateY(105px);
  opacity: 0;
  animation: brandRiseSub 2.3s cubic-bezier(0.16, 1, 0.3, 1) 0.75s forwards;
  will-change: transform, opacity;
}

.hero-lead {
  width: min(720px, 100%);
  margin: 1.4rem auto 0;
  font-size: 1.08rem;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-kicker-stage {
  opacity: 0;
  transform: translateY(24px);
  animation: heroKickerIn 1.25s cubic-bezier(0.22, 1, 0.36, 1) 0.05s forwards;
}

.hero-lead-stage {
  opacity: 0;
  transform: translateY(28px);
  animation: heroLeadIn 1.45s cubic-bezier(0.22, 1, 0.36, 1) 1.6s forwards;
}

.hero-actions-stage {
  opacity: 0;
  transform: translateY(22px);
  animation: heroLeadIn 1.25s cubic-bezier(0.22, 1, 0.36, 1) 2s forwards;
}

.home-intro {
  padding: 2rem 0 4.5rem;
}

.intro-copy {
  width: min(760px, 100%);
  margin: 1.4rem auto 0;
  display: grid;
  gap: 1rem;
  text-align: center;
}

.home-services {
  padding: 1rem 0 5.5rem;
}

.service-sequence {
  display: grid;
  gap: 2rem;
}

.service-line {
  text-align: center;
  padding: 2.2rem 0;
  border-top: 1px solid var(--line);
}

.service-line:last-child {
  border-bottom: 1px solid var(--line);
}

.service-line h2 {
  font-size: clamp(1.9rem, 4vw, 3.5rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.045em;
}

.service-line p {
  width: min(620px, 100%);
  margin: 0.8rem auto 0;
}

.home-services-link {
  padding: 0 0 5.5rem;
}

.services-link-block {
  text-align: center;
}

.services-page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  border-bottom: 1px solid rgba(21, 22, 26, 0.2);
  padding-bottom: 0.18rem;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.services-page-link:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.home-cta,
.services-cta,
.about-cta {
  padding: 2rem 0 6rem;
}

.final-cta {
  text-align: center;
  padding: 3.2rem 1.5rem;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid rgba(21, 22, 26, 0.08);
  box-shadow: var(--shadow-soft);
}

.final-cta h2 {
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  line-height: 1;
  font-weight: 750;
  letter-spacing: -0.05em;
}

.final-cta p {
  width: min(680px, 100%);
  margin: 1rem auto 0;
}

.final-cta .btn {
  margin-top: 1.5rem;
}

/* GENERIC PAGE HERO */

.page-hero {
  padding: calc(var(--header-h) + 3.5rem) 0 3rem;
}

.page-title {
  max-width: 16ch;
}

.services-hero .page-title,
.contact-hero .page-title {
  max-width: 18ch;
}

/* SERVICES */

.services-formulas {
  padding: 0 0 4.2rem;
}

.formula-block {
  padding: 3.2rem 0 3rem;
  border-top: 1px solid var(--line);
  text-align: center;
}

.formula-block:last-child {
  border-bottom: 1px solid var(--line);
}

.formula-block h2 {
  font-size: clamp(2.4rem, 5.6vw, 5.2rem);
  line-height: 0.95;
  font-weight: 780;
  text-align: center;
  letter-spacing: -0.055em;
}

.formula-kicker {
  margin-top: 0.75rem;
  text-align: center;
  font-size: 1rem;
  color: var(--muted);
}

.formula-list {
  list-style: none;
  padding: 0;
  margin: 1.8rem auto 0;
  width: min(900px, 100%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 0.85rem;
}

.formula-list li {
  padding: 0;
  border: none;
  background: transparent;
  color: var(--text);
  text-align: center;
  font-size: 0.96rem;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.02em;
  opacity: 0.92;
}

.formula-list li::after {
  content: "•";
  margin-left: 0.85rem;
  color: var(--accent);
}

.formula-list li:last-child::after {
  content: "";
  margin: 0;
}

.services-extra {
  padding: 0 0 2.4rem;
}

.extra-strip {
  display: grid;
  gap: 0.7rem;
  padding: 1.4rem 1.6rem;
  border-radius: var(--radius-lg);
  background: var(--accent-second);
  color: #fff;
}

.extra-strip span {
  font-size: 0.8rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.extra-strip p {
  color: rgba(255, 255, 255, 0.9);
}

.services-note {
  padding: 0 0 2.6rem;
}

.services-note-copy {
  text-align: center;
  width: min(760px, 100%);
  margin: 0 auto;
  font-size: 1.02rem;
}

/* ABOUT */

.about-hero {
  padding-bottom: 2.5rem;
}

.about-intro-copy {
  width: min(760px, 100%);
  margin-top: 1.4rem;
  display: grid;
  gap: 1rem;
}

.about-founder {
  padding: 0 0 4rem;
}

.founder-note {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 1.2rem;
  align-items: start;
  padding: 1.3rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(21, 22, 26, 0.06);
}

.founder-media img {
  width: 110px;
  aspect-ratio: 1 / 1.18;
  object-fit: cover;
  border-radius: 18px;
}

.founder-copy p {
  color: var(--text);
}

.founder-signoff {
  margin-top: 1rem;
  display: grid;
  gap: 0.2rem;
}

.founder-signoff span {
  font-weight: 700;
  color: var(--text);
}

.founder-signoff small {
  color: var(--muted);
  font-size: 0.88rem;
}

/* CONTACT */

.contact-section {
  padding: 0 0 6rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: start;
}

.contact-intro h2 {
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  line-height: 1;
  font-weight: 800;
}

.contact-intro p {
  margin-top: 0.9rem;
  max-width: 28rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid rgba(21, 22, 26, 0.08);
  box-shadow: var(--shadow-soft);
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 1rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(21, 22, 26, 0.12);
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  outline: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(216, 74, 43, 0.5);
  background: #fff;
}

.form-submit {
  width: fit-content;
  border: none;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  padding: 0.95rem 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.form-submit:hover {
  transform: translateY(-1px);
  background: var(--accent-dark);
}

.form-note {
  font-size: 0.92rem;
  color: var(--muted);
}

/* FOOTER */

.site-footer {
  padding: 2.6rem 0 2.4rem;
  border-top: 1px solid rgba(21, 22, 26, 0.06);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
}

.footer-brand span {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.footer-brand p {
  margin-top: 0.35rem;
  font-size: 0.95rem;
}

.footer-meta {
  text-align: right;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links {
  margin-top: 0.55rem;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ANIMATION */

.reveal-up {
  opacity: 0;
  transform: translateY(34px);
  animation: revealUp 1.25s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.delay-1 {
  animation-delay: 0.28s;
}

.delay-2 {
  animation-delay: 0.52s;
}

.delay-3 {
  animation-delay: 0.78s;
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes brandRiseMain {
  0% {
    opacity: 0;
    transform: translateY(90px);
  }
  55% {
    opacity: 0.88;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes brandRiseSub {
  0% {
    opacity: 0;
    transform: translateY(105px);
  }
  58% {
    opacity: 0.82;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroKickerIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroLeadIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .contact-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    display: grid;
    gap: 1rem;
  }

  .footer-meta,
  .footer-links {
    text-align: left;
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  :root {
    --header-h: 84px;
  }

  .page-shell,
  .nav-container,
  .footer-inner {
    width: min(var(--max), calc(100% - 32px));
  }

  .nav-links {
    display: none;
  }

  .burger {
    display: inline-flex;
  }

  .home-hero {
    padding-top: calc(var(--header-h) + 2.8rem);
  }

  .hero-shell {
    min-height: auto;
  }

  .hero-brand-main {
    font-size: clamp(3rem, 13vw, 5.4rem);
  }

  .hero-brand-sub {
    font-size: clamp(2.5rem, 11vw, 4.8rem);
  }

  .contact-layout {
    gap: 1.8rem;
  }
}

@media (max-width: 700px) {
  .formula-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .formula-list li::after {
    content: "";
    margin: 0;
  }
}

@media (max-width: 560px) {
  .nav-logo-main,
  .nav-logo-sub {
    font-size: 1.35rem;
  }

  .mobile-menu {
    left: 16px;
    right: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .final-cta .btn {
    width: 100%;
  }

  .page-title {
    max-width: none;
  }

  .service-line,
  .formula-block {
    padding: 1.7rem 0;
  }

  .founder-note {
    grid-template-columns: 1fr;
  }

  .founder-media img {
    width: 96px;
  }

  .contact-form {
    padding: 1.2rem;
  }
}
.footer-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(21, 22, 26, 0.1);
  border-radius: 999px;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.footer-icon-link:hover {
  color: var(--accent);
  border-color: rgba(216, 74, 43, 0.35);
  transform: translateY(-1px);
}
.services-title {
  max-width: 12ch;
}

.services-hero-copy {
  width: min(620px, 100%);
  margin: 1rem auto 0;
  text-align: center;
  font-size: 1.06rem;
}
/* ===== SERVICES REFINEMENT ===== */

.services-hero .page-title {
  max-width: 11ch;
  font-size: clamp(2.1rem, 4.4vw, 4.3rem);
  line-height: 0.96;
  font-weight: 760;
}

.services-hero-copy {
  width: min(680px, 100%);
  margin: 1.2rem auto 0;
  text-align: center;
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--muted);
}

.services-formulas {
  padding: 0 0 3.6rem;
}

.services-formulas-intro {
  height: 0.5rem;
}

/* formule meno urlate e meno ripetitive */
.formula-block {
  padding: 2.7rem 0 2.5rem;
  border-top: 1px solid var(--line);
  text-align: center;
}

.formula-block:last-child {
  border-bottom: 1px solid var(--line);
}

.formula-block h2 {
  font-size: clamp(2.1rem, 4.9vw, 4.3rem);
  line-height: 0.97;
  font-weight: 740;
  letter-spacing: -0.05em;
}

.formula-kicker {
  margin-top: 0.7rem;
  text-align: center;
  font-size: 1rem;
  color: var(--muted);
}

.formula-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem auto 0;
  width: min(860px, 100%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 0.85rem;
}

.formula-list li {
  padding: 0;
  border: none;
  background: transparent;
  color: var(--text);
  text-align: center;
  font-size: 0.94rem;
  line-height: 1.25;
  font-weight: 580;
  letter-spacing: -0.015em;
  opacity: 0.92;
}

.formula-list li::after {
  content: "•";
  margin-left: 0.85rem;
  color: var(--accent);
}

.formula-list li:last-child::after {
  content: "";
  margin: 0;
}

/* variazione leggera tra i blocchi per evitare effetto copia-incolla */
.formula-block:nth-of-type(even) h2 {
  letter-spacing: -0.045em;
}

.formula-block:nth-of-type(even) .formula-kicker {
  opacity: 0.9;
}

.formula-block:nth-of-type(3) .formula-list,
.formula-block:nth-of-type(5) .formula-list {
  width: min(780px, 100%);
}

/* extra più centrato e meno "spostato a sinistra" */
.services-extra {
  padding: 0 0 2.1rem;
}

.extra-strip {
  width: min(760px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 0.65rem;
  padding: 1.2rem 1.35rem;
  border-radius: 24px;
  background: var(--accent-second);
  color: #fff;
  text-align: center;
}

.extra-strip span {
  font-size: 0.8rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.extra-strip p {
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.55;
}

/* nota finale più elegante */
.services-note {
  padding: 0 0 2.2rem;
}

.services-note-copy {
  text-align: center;
  width: min(760px, 100%);
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
}

/* CTA finale meno gigante e meno pesante */
.services-cta .final-cta {
  width: min(820px, 100%);
  margin: 0 auto;
  padding: 2.5rem 1.4rem;
}

.services-cta .final-cta h2 {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1;
  font-weight: 740;
  letter-spacing: -0.045em;
}

.services-cta .final-cta .btn {
  margin-top: 1.25rem;
}

/* mobile */
@media (max-width: 700px) {
  .formula-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .formula-list li::after {
    content: "";
    margin: 0;
  }

  .extra-strip {
    width: 100%;
    padding: 1.1rem 1rem;
    text-align: left;
  }

  .services-hero-copy {
    font-size: 1rem;
  }
}
/* ===== SERVICES FINAL REFINEMENT ===== */

.formula-block {
  padding: 2.35rem 0 2.2rem;
}

.formula-block h2 {
  font-size: clamp(2rem, 4.6vw, 4rem);
}

.formula-kicker {
  margin-top: 0.6rem;
  font-size: 0.98rem;
}

.formula-list {
  margin: 1.3rem auto 0;
  gap: 0.6rem 0.75rem;
}

.formula-list li {
  font-size: 0.9rem;
  line-height: 1.3;
  font-weight: 560;
  opacity: 0.88;
}

.formula-list li::after {
  margin-left: 0.7rem;
  opacity: 0.7;
}

.services-extra {
  padding: 0 0 1.5rem;
}

.extra-strip {
  padding: 1.05rem 1.2rem;
  border-radius: 22px;
}

.extra-strip p {
  font-size: 0.98rem;
  line-height: 1.5;
}

.services-note {
  padding: 0 0 1.5rem;
}

.services-note-copy {
  width: min(700px, 100%);
  font-size: 0.98rem;
  line-height: 1.65;
}

.services-cta .final-cta {
  width: min(760px, 100%);
  padding: 2.1rem 1.25rem;
}

.services-cta .final-cta h2 {
  font-size: clamp(1.75rem, 3.6vw, 2.8rem);
  line-height: 1.02;
}

.services-cta .final-cta .btn {
  margin-top: 1rem;
}

@media (max-width: 700px) {
  .formula-block {
    padding: 1.9rem 0 1.8rem;
  }

  .extra-strip {
    padding: 1rem;
  }

  .services-cta .final-cta {
    padding: 1.8rem 1rem;
  }
}
/* ===== SERVICES HERO ALIGN FIX ===== */

.services-hero .narrow-shell {
  text-align: center;
}

.services-hero .section-label {
  margin-bottom: 0.9rem;
}

.services-hero .page-title,
.services-title {
  max-width: 9.5ch;
  margin: 0 auto;
  font-size: clamp(2rem, 4.1vw, 4rem);
  line-height: 0.96;
  font-weight: 750;
}

.services-hero-copy {
  width: min(640px, 100%);
  margin: 1.15rem auto 0;
  text-align: center;
  font-size: 1.04rem;
  line-height: 1.65;
}

@media (max-width: 700px) {
  .services-hero .page-title,
  .services-title {
    max-width: 10ch;
    font-size: clamp(2rem, 10vw, 3.4rem);
  }

  .services-hero-copy {
    font-size: 1rem;
  }
}
.section-statement {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.05em;
  text-align: center;
  max-width: 12ch;
  margin: 0 auto;
}
/* ABOUT refinement */
.about-hero .page-title {
  max-width: 11ch;
  font-size: clamp(2rem, 4.1vw, 4rem);
  line-height: 0.98;
  font-weight: 740;
}

.about-intro-copy {
  width: min(720px, 100%);
}

.about-intro-copy p {
  font-size: 1rem;
  line-height: 1.7;
}
/* CONTACT refinement */
.contact-hero .page-title {
  max-width: 14ch;
  font-size: clamp(2.1rem, 4.2vw, 4.2rem);
  line-height: 0.96;
  font-weight: 740;
}

.contact-section {
  padding-top: 1rem;
}

.contact-intro h2 {
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  font-weight: 740;
}
.formula-block h2 {
  transition: color 220ms ease;
}

.formula-block:hover h2 {
  color: var(--accent-second);
}