/* ═══════════════════════════════════════════════════════════════
   Elena Signorini — Dietista · Mantova
   Sistema visivo: avorio caldo, salvia, inchiostro, caramello.
   Serif Fraunces per titoli e note, Figtree per il testo.
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* palette */
  --bg: #f7f4eb;
  --bg-2: #f0ecdf;
  --paper: #fdfbf4;
  --ink: #2e2a21;
  --ink-soft: #6b6353;
  --green: #75825c;
  --green-deep: #4d5940;
  --green-soft: #e7ebd8;
  --green-mist: #f0f2e4;
  --pine: #333a2b;
  --sand: #eae0cb;
  --caramel: #a8713f;

  /* type */
  --serif: "Fraunces", Georgia, serif;
  --sans: "Figtree", system-ui, sans-serif;

  --radius: 20px;
  --shadow: 0 24px 60px -30px rgba(46, 42, 33, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
body {
  font-family: var(--sans);
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.1rem);
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
::selection { background: var(--green); color: var(--paper); }

/* grana leggera su tutta la pagina */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

.container {
  width: min(1180px, 92vw);
  margin-inline: auto;
}

/* ── tipografia ── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 440;
  line-height: 1.12;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
h2 { font-size: clamp(1.9rem, 1.35rem + 2.6vw, 3.1rem); }
h1 em, h2 em, h3 em {
  font-style: italic;
  font-variation-settings: "SOFT" 80;
  color: var(--green-deep);
}

/* etichetta di sezione: corsivo serif, minuscolo, niente maiuscoletto */
.eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "SOFT" 70;
  font-size: 1.15rem;
  color: var(--caramel);
  margin-bottom: 0.9rem;
}

/* ── animazioni di ingresso ── */
.reveal, .reveal-img {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
.reveal-img { transform: translateY(20px) scale(0.98); }
.reveal.in-view, .reveal-img.in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-img { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ── bottoni ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.95rem 1.75rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    background 0.35s, color 0.35s, border-color 0.35s;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.35s var(--ease); }
.btn:hover svg { transform: translateX(5px); }
.btn--primary {
  background: var(--green-deep);
  color: var(--paper);
  box-shadow: 0 14px 30px -16px rgba(77, 89, 64, 0.7);
}
.btn--primary:hover {
  background: var(--pine);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -16px rgba(77, 89, 64, 0.75);
}
.btn--light {
  background: var(--paper);
  color: var(--green-deep);
}
.btn--light:hover { background: #fff; transform: translateY(-2px); }

/* link testuale con freccia */
.textlink {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  color: var(--green-deep);
  border-bottom: 1.5px solid rgba(77, 89, 64, 0.35);
  padding-bottom: 0.2rem;
  transition: border-color 0.3s, gap 0.3s var(--ease);
}
.textlink:hover { border-color: var(--green-deep); gap: 0.85rem; }
.textlink svg { width: 17px; height: 17px; }

/* ═══════════ NAV ═══════════ */
.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: padding 0.4s var(--ease), background 0.4s, box-shadow 0.4s,
    backdrop-filter 0.4s;
}
.nav.scrolled {
  padding: 0.55rem 0;
  background: rgba(247, 244, 235, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(46, 42, 33, 0.08);
}
.nav__inner {
  width: min(1240px, 94vw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}
.nav__name {
  font-family: var(--serif);
  font-size: 1.12rem;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
}
.nav__name em {
  font-style: italic;
  font-variation-settings: "SOFT" 70;
  font-size: 0.85rem;
  color: var(--green-deep);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 1.7rem;
}
.nav__links > a {
  text-decoration: none;
  font-weight: 550;
  font-size: 0.95rem;
  color: var(--ink-soft);
  position: relative;
  transition: color 0.25s;
}
.nav__links > a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1.5px;
  border-radius: 2px;
  background: var(--green-deep);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.nav__links > a:hover { color: var(--ink); }
.nav__links > a:not(.nav__cta):hover::after,
.nav__links > a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav__links > a.active { color: var(--ink); }
.nav__cta {
  background: var(--green-deep);
  color: var(--paper) !important;
  padding: 0.62rem 1.25rem;
  border-radius: 999px;
  transition: background 0.3s, transform 0.3s var(--ease);
}
.nav__cta:hover { background: var(--pine); transform: translateY(-1px); }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 7px;
  background: none;
  border: 0;
  padding: 10px;
  cursor: pointer;
}
.nav__burger span {
  width: 26px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.3s;
}
.nav__burger[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  padding: clamp(8rem, 14vh, 10rem) 0 clamp(3.5rem, 7vw, 6rem);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__blob {
  position: absolute;
  top: -22%;
  right: -14%;
  width: 62vw;
  height: 62vw;
  max-width: 880px;
  max-height: 880px;
  background: radial-gradient(closest-side, var(--green-soft), transparent 70%);
  border-radius: 50%;
  animation: drift 16s ease-in-out infinite alternate;
}
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-4%, 5%) scale(1.05); }
}

.hero__inner {
  width: min(1240px, 94vw);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  position: relative;
}
.hero__kicker {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "SOFT" 70;
  font-size: 1.15rem;
  color: var(--caramel);
  margin-bottom: 1.1rem;
}
.hero__title {
  font-size: clamp(2.5rem, 1.5rem + 4.8vw, 4.9rem);
  font-weight: 420;
  margin-bottom: 1.5rem;
}
.hero__title .line { display: block; }
.hero__title em {
  position: relative;
  font-style: italic;
  font-variation-settings: "SOFT" 90;
  color: var(--green-deep);
  white-space: nowrap;
}
.scribble {
  position: absolute;
  left: 2%;
  bottom: -0.14em;
  width: 96%;
  height: 0.22em;
  color: var(--caramel);
  opacity: 0.8;
}
.scribble path {
  stroke-dasharray: 260;
  stroke-dashoffset: 260;
}
.in-view .scribble path {
  animation: draw 0.9s var(--ease) 0.85s forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }

/* sbarro "stare a dieta", disegnato a mano al caricamento */
.strike {
  position: relative;
  white-space: nowrap;
  color: var(--ink-soft);
}
.strike__line {
  position: absolute;
  left: -3%;
  top: 52%;
  width: 106%;
  height: 0.85em;
  transform: translateY(-50%);
  color: var(--caramel);
  opacity: 0.9;
  pointer-events: none;
  overflow: visible;
}
.strike__line path {
  stroke-dasharray: 180;
  stroke-dashoffset: 180;
}
.hero__lead.in-view .strike__line path {
  animation: draw 0.6s var(--ease) 1.15s forwards;
}
@media (prefers-reduced-motion: reduce) {
  .scribble path, .strike__line path { stroke-dashoffset: 0; animation: none; }
}

.hero__lead {
  max-width: 33rem;
  font-size: clamp(1.05rem, 1rem + 0.3vw, 1.18rem);
  color: var(--ink-soft);
  margin-bottom: 2.2rem;
}
.hero__lead s { text-decoration-color: var(--caramel); text-decoration-thickness: 2px; }
.hero__lead strong { color: var(--ink); font-weight: 650; }
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.6rem;
}

/* foto hero: ritaglio su cerchio salvia */
.hero__visual {
  position: relative;
  justify-self: center;
  width: clamp(300px, 36vw, 460px);
  display: grid;
  place-items: end center;
}
.hero__aura {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -44%);
  width: 112%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, #d3ddba 0%, #d3ddba 54%, rgba(211, 221, 186, 0) 72%);
  z-index: 0;
  animation: breathe 10s ease-in-out infinite;
}
.hero__aura::after {
  content: "";
  position: absolute;
  inset: 9%;
  border-radius: 50%;
  border: 1px dashed rgba(117, 130, 92, 0.4);
  animation: spin 70s linear infinite;
}
@keyframes breathe {
  0%, 100% { transform: translate(-50%, -46%) scale(1); }
  50% { transform: translate(-50%, -46%) scale(1.035); }
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero__cutout {
  position: relative;
  z-index: 1;
  width: 100%;
  filter: drop-shadow(0 26px 30px rgba(60, 66, 45, 0.22));
  -webkit-mask-image: linear-gradient(to bottom, #000 66%, transparent 96%);
  mask-image: linear-gradient(to bottom, #000 66%, transparent 96%);
}
@media (prefers-reduced-motion: reduce) {
  .hero__aura, .hero__aura::after { animation: none; }
}

/* ═══════════ CREDO — frase che cambia in dissolvenza ═══════════ */
.creed {
  background: var(--green-deep);
  color: var(--paper);
  padding: clamp(1.6rem, 3.5vw, 2.4rem) 0;
}
.creed__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
}
.creed__leaf {
  flex: none;
  width: 26px;
  height: 26px;
  color: var(--sand);
  opacity: 0.9;
  animation: sway 5s ease-in-out infinite;
  transform-origin: 50% 90%;
}
.creed__leaf svg { width: 100%; height: 100%; }
@keyframes sway {
  0%, 100% { transform: rotate(-7deg); }
  50% { transform: rotate(7deg); }
}
.creed__rotator {
  position: relative;
  display: inline-grid;
  min-height: 1.6em;
  min-width: min(90vw, 40ch);
}
.creed__line {
  grid-area: 1 / 1;
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "SOFT" 60;
  font-size: clamp(1.15rem, 0.95rem + 0.9vw, 1.7rem);
  line-height: 1.3;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
  will-change: opacity, transform;
  pointer-events: none;
}
.creed__line.is-active {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .creed__leaf { animation: none; }
  .creed__line { transition: opacity 0.4s; transform: none; }
}

/* ═══════════ APPROCCIO ═══════════ */
.approach {
  background: var(--green-mist);
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
}
.approach__title { max-width: 18ch; margin-bottom: 1.3rem; }
.approach__sub {
  max-width: 42rem;
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin-bottom: clamp(2.8rem, 6vw, 4.5rem);
}
.approach__sub strong { color: var(--ink); font-weight: 650; }
.approach__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.8rem, 4vw, 3.5rem);
}
.principle {
  border-top: 1px solid rgba(46, 42, 33, 0.2);
  padding-top: 1.4rem;
}
.principle__num {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "SOFT" 70;
  font-size: 1.15rem;
  color: var(--caramel);
  display: block;
  margin-bottom: 0.9rem;
}
.principle h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.principle p { font-size: 0.97rem; color: var(--ink-soft); }

/* ═══════════ CHI SONO ═══════════ */
.about { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.about__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.about__frame {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(46, 42, 33, 0.06);
  pointer-events: none;
}
.about__frame img { transition: transform 0.8s var(--ease); }
.about__frame:hover img { transform: scale(1.03); }
.about__copy h2 { margin-bottom: 1.3rem; }
.about__copy > p { color: var(--ink-soft); max-width: 36rem; margin-bottom: 1.1rem; }
.about__quote {
  position: relative;
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "SOFT" 70;
  font-size: clamp(1.35rem, 1.1rem + 1vw, 1.85rem);
  line-height: 1.35;
  color: var(--green-deep);
  margin: 2rem 0 0;
  max-width: 32rem;
}
.about__quote::before {
  content: "“";
  position: absolute;
  left: -0.1em;
  top: -0.55em;
  font-size: 3.2rem;
  line-height: 1;
  color: var(--caramel);
  opacity: 0.35;
}

/* ═══════════ SERVIZI ═══════════ */
.services {
  background: var(--bg-2);
  border-radius: clamp(28px, 5vw, 52px) clamp(28px, 5vw, 52px) 0 0;
  padding: clamp(4.5rem, 9vw, 8rem) 0 clamp(4rem, 8vw, 6.5rem);
}
.services__head { max-width: 44rem; margin-bottom: 3rem; }
.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  margin-bottom: clamp(4rem, 8vw, 6.5rem);
}
.service {
  position: relative;
  border-radius: calc(var(--radius) + 6px);
  padding: 2.6rem 2.4rem 2.3rem;
  background: var(--paper);
  border: 1px solid rgba(46, 42, 33, 0.07);
  box-shadow: 0 10px 40px -26px rgba(46, 42, 33, 0.3);
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.service::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  transition: transform 0.6s var(--ease);
}
.service--sage::before { background: var(--green-soft); }
.service--sand::before { background: var(--sand); }
.service:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.service:hover::before { transform: scale(1.45); }
.service > * { position: relative; }
.service__num {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "SOFT" 70;
  font-size: 1.9rem;
  color: var(--green-deep);
  display: block;
  margin-bottom: 1.1rem;
}
.service--sand .service__num { color: var(--caramel); }
.service h3 {
  font-size: clamp(1.65rem, 1.35rem + 1.2vw, 2.2rem);
  margin-bottom: 0.4rem;
}
.service__note {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "SOFT" 70;
  font-size: 1.02rem;
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
}
.service > p { color: var(--ink-soft); margin-bottom: 1.5rem; font-size: 0.98rem; }
.service__list {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  margin-bottom: 2rem;
}
.service__list li {
  display: flex;
  gap: 0.7rem;
  align-items: baseline;
  font-size: 0.95rem;
}
.service__list li::before {
  content: "";
  flex: none;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  transform: translateY(-2px);
}
.service--sand .service__list li::before { background: var(--caramel); }

/* percorso */
.path__title {
  font-size: clamp(1.55rem, 1.25rem + 1.4vw, 2.2rem);
  margin-bottom: 2.6rem;
}
.path__steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.path__steps::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 8%;
  right: 8%;
  border-top: 1px dashed rgba(46, 42, 33, 0.25);
}
.path__steps li { position: relative; padding-top: 0.4rem; }
.path__num {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--paper);
  border: 1.5px solid var(--green-deep);
  color: var(--green-deep);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  margin-bottom: 1.1rem;
  position: relative;
  box-shadow: 0 0 0 8px var(--bg-2);
  transition: background 0.3s, color 0.3s, transform 0.4s var(--ease);
}
.path__steps li:hover .path__num {
  background: var(--green-deep);
  color: var(--paper);
  transform: rotate(-6deg) scale(1.06);
}
.path__steps h4 { font-size: 1.22rem; margin-bottom: 0.5rem; }
.path__steps p { font-size: 0.95rem; color: var(--ink-soft); }

/* ═══════════ BANNER ═══════════ */
.banner {
  background:
    radial-gradient(70% 100% at 90% 0%, rgba(231, 235, 216, 0.14), transparent 55%),
    var(--green-deep);
  color: var(--paper);
  overflow: hidden;
}
.banner__inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}
.banner__photo {
  position: relative;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.55);
  max-width: 350px;
  margin-inline: auto;
}
.banner__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(253, 251, 244, 0.14);
  pointer-events: none;
}
.banner__copy h2 {
  font-size: clamp(2.1rem, 1.5rem + 3vw, 3.4rem);
  margin-bottom: 1.1rem;
}
.banner__copy h2 em { color: var(--sand); }
.banner__copy p {
  max-width: 34rem;
  color: rgba(253, 251, 244, 0.88);
  font-size: 1.08rem;
  margin-bottom: 2rem;
}

/* ═══════════ DOVE ═══════════ */
.where { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.where h2 { margin-bottom: 2.6rem; }
.where__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1.6rem;
  margin-bottom: clamp(4rem, 8vw, 6rem);
}
.where__map {
  position: relative;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 8px solid var(--paper);
  min-height: 430px;
}
.where__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: sepia(0.18) saturate(0.9) contrast(1.02);
}
.where__maplink {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.6rem 1.05rem;
  border-radius: 999px;
  transition: background 0.3s, transform 0.3s var(--ease);
}
.where__maplink:hover { background: var(--green-deep); transform: translateY(-2px); }
.where__info { display: grid; gap: 1.6rem; align-content: start; }
.info-card {
  background: var(--paper);
  border: 1px solid rgba(46, 42, 33, 0.08);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.9rem 1.8rem;
  box-shadow: 0 10px 40px -28px rgba(46, 42, 33, 0.4);
}
.info-card h3 {
  font-size: 1.28rem;
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.info-card h3::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(46, 42, 33, 0.22), transparent);
}
.info-card p { color: var(--ink-soft); font-size: 0.98rem; }
.info-card__note {
  margin-top: 0.9rem;
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "SOFT" 70;
  font-size: 0.95rem !important;
  color: var(--green-deep) !important;
  background: var(--green-mist);
  border-radius: 12px;
  padding: 0.7rem 0.95rem;
}
.info-card__contacts { list-style: none; display: grid; gap: 0.85rem; }
.info-card__contacts li { display: flex; align-items: center; gap: 0.8rem; }
.info-card__contacts a {
  text-decoration: none;
  font-weight: 550;
  font-size: 0.97rem;
  color: var(--ink);
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.25s, color 0.25s;
}
.info-card__contacts a:hover { color: var(--green-deep); border-color: var(--green); }
.ico {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--green-mist);
  color: var(--green-deep);
  flex: none;
}
.ico svg { width: 19px; height: 19px; }

/* ═══════════ FORM ═══════════ */
.contact {
  background:
    radial-gradient(55% 80% at 100% 100%, rgba(168, 113, 63, 0.14), transparent 60%),
    radial-gradient(40% 60% at 0% 0%, rgba(231, 235, 216, 0.1), transparent 60%),
    var(--pine);
  color: var(--paper);
  border-radius: clamp(24px, 4vw, 40px);
  padding: clamp(2.5rem, 6vw, 4.5rem);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
}
.contact__intro h3 {
  font-size: clamp(1.85rem, 1.45rem + 2vw, 2.9rem);
  margin-bottom: 1.1rem;
}
.contact__intro em { color: var(--sand); }
.contact__intro p { color: rgba(253, 251, 244, 0.75); max-width: 26rem; }
.contact__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.field { display: grid; gap: 0.45rem; grid-column: 1 / -1; }
.field--half { grid-column: auto; }
.field > label, .field legend {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "SOFT" 70;
  font-size: 1rem;
  color: rgba(253, 251, 244, 0.75);
}
.field legend { margin-bottom: 0.6rem; }
.req { color: var(--sand); font-style: normal; }
.opt {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.8em;
  color: rgba(253, 251, 244, 0.45);
}
fieldset.field { border: 0; }
.field input[type="text"],
.field input[type="email"],
.field textarea {
  font: inherit;
  color: var(--paper);
  background: rgba(253, 251, 244, 0.07);
  border: 1.5px solid rgba(253, 251, 244, 0.2);
  border-radius: 14px;
  padding: 0.85rem 1.05rem;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(253, 251, 244, 0.38); }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--sand);
  background: rgba(253, 251, 244, 0.11);
  box-shadow: 0 0 0 4px rgba(234, 224, 203, 0.15);
}
.is-invalid legend { color: var(--sand); }
.pills { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.pill { position: relative; cursor: pointer; }
.pill input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.pill span {
  display: inline-block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.92rem;
  font-weight: 550;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  border: 1.5px solid rgba(253, 251, 244, 0.28);
  color: rgba(253, 251, 244, 0.85);
  transition: all 0.3s var(--ease);
}
.pill:hover span { border-color: rgba(253, 251, 244, 0.55); }
.pill input:checked + span {
  background: var(--paper);
  color: var(--green-deep);
  border-color: var(--paper);
}
.pill input:focus-visible + span { box-shadow: 0 0 0 4px rgba(234, 224, 203, 0.25); }
.consent {
  grid-column: 1 / -1;
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: rgba(253, 251, 244, 0.65);
  cursor: pointer;
}
.consent input {
  margin-top: 0.3rem;
  width: 17px;
  height: 17px;
  accent-color: var(--green);
  cursor: pointer;
}
.btn--submit { justify-self: start; border: 0; background: var(--paper); color: var(--green-deep); }
.btn--submit:hover { background: #fff; }
.contact__feedback {
  grid-column: 1 / -1;
  font-size: 0.92rem;
  color: var(--green-soft);
  min-height: 1.4em;
}

/* ═══════════ FOOTER ═══════════ */
.footer {
  background: var(--bg-2);
  border-top: 1px solid rgba(46, 42, 33, 0.08);
  padding: 3rem 0;
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}
.footer__brand { display: flex; align-items: center; gap: 0.9rem; }
.footer__brand p { font-family: var(--serif); font-size: 1.05rem; line-height: 1.35; }
.footer__brand small { font-family: var(--sans); color: var(--ink-soft); font-size: 0.8rem; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.footer__nav a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 550;
  color: var(--ink-soft);
  transition: color 0.25s;
}
.footer__nav a:hover { color: var(--green-deep); }
.footer__legal { font-size: 0.85rem; color: var(--ink-soft); text-align: right; }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero { padding-top: 7.5rem; }
  .hero__visual { justify-self: start; margin-top: 1.5rem; }
  .about__grid { grid-template-columns: 1fr; }
  .about__visual { max-width: 420px; }
  .where__grid { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .banner__inner { grid-template-columns: 1fr; }
  .banner__photo { margin-inline: 0; }
}
@media (max-width: 820px) {
  .approach__grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .services__grid { grid-template-columns: 1fr; }
  .path__steps { grid-template-columns: 1fr; gap: 2.4rem; }
  .path__steps::before {
    top: 4%;
    bottom: 4%;
    left: 25px;
    right: auto;
    border-top: 0;
    border-left: 1px dashed rgba(46, 42, 33, 0.25);
  }
  .path__steps li { padding-left: 4.6rem; }
  .path__num { position: absolute; left: 0; top: 0; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__legal { text-align: left; }
}
@media (max-width: 760px) {
  .nav__links {
    position: fixed;
    inset: 0;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    gap: 2.2rem;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.5s var(--ease), opacity 0.4s;
    z-index: -1;
  }
  .nav__links.open { transform: none; opacity: 1; }
  .nav__links > a { font-size: 1.25rem; }
  .nav__burger { display: flex; z-index: 10; }
  .nav__name em { display: none; }
  .hero__frame { width: min(86vw, 360px); }
  .field--half { grid-column: 1 / -1; }
}
