/* ===================================================
   IMPORT & VARIABLES
=================================================== */
@import url('https://fonts.googleapis.com/css2?family=Bagel+Fat+One&family=Nunito:wght@300;400;600;700;800&display=swap');

:root {
  --lav:   #e4bae8;
  --yel:   #ffeda8;
  --burg:  #4f3232;
  --black: #000000;
  --white: #ffffff;

  --font-d: 'Bagel Fat One', cursive;
  --font-b: 'Nunito', sans-serif;

  --r:     20px;
  --rs:    12px;
  --tr:    0.34s cubic-bezier(0.4, 0, 0.2, 1);
  --sh:    0 8px 40px rgba(79,50,50,.13);
  --sh-lg: 0 24px 64px rgba(79,50,50,.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-b);
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
  cursor: none;
}

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

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

ul {
  list-style: none;
}

/* ===================================================
   CURSOR
=================================================== */
.cursor {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--lav);
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .14s ease, height .14s ease, background .14s ease;
  mix-blend-mode: multiply;
  will-change: left, top, width, height;
}

.cursor.hover-cta {
  background: var(--yel);
  width: 40px;
  height: 40px;
}

.cursor.hover-dark {
  background: var(--burg);
  width: 30px;
  height: 30px;
}

@media (hover: none) {
  .cursor {
    display: none;
  }

  body,
  a,
  .btn,
  .acc-header {
    cursor: auto;
  }
}

/* ===================================================
   SCROLL PROGRESS
=================================================== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--lav), var(--yel));
  z-index: 2000;
  border-radius: 0 2px 2px 0;
}

/* ===================================================
   REVEAL
=================================================== */
.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity .72s ease, transform .72s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================
   SHARED TYPOGRAPHY
=================================================== */
.tag-pill {
  display: inline-block;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--yel);
  color: var(--burg);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.tag-pill--dark {
  background: var(--burg);
  color: var(--white);
}

.tag-pill--yel {
  background: var(--yel);
  color: var(--burg);
}

.sec-title {
  font-family: var(--font-d);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.08;
  color: var(--burg);
}

.sec-title--lav {
  color: var(--burg);
}

.sec-intro {
  margin-top: 14px;
  font-size: 1rem;
  color: rgba(0,0,0,.52);
  max-width: 560px;
  line-height: 1.8;
}

.sec-intro--lav {
  color: rgba(79,50,50,.65);
}

.sec-head {
  margin-bottom: 56px;
}

/* ===================================================
   BUTTONS
=================================================== */
.btn {
  display: inline-block;
  font-family: var(--font-b);
  font-weight: 700;
  font-size: .95rem;
  padding: 14px 30px;
  border-radius: 999px;
  border: 2.5px solid transparent;
  cursor: none;
  transition: var(--tr);
  letter-spacing: .03em;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.18);
  transform: translateX(-110%) skewX(-18deg);
  transition: transform .45s ease;
}

.btn:hover::after {
  transform: translateX(110%) skewX(-18deg);
}

.btn-primary {
  background: var(--burg);
  color: var(--white);
  border-color: var(--burg);
}

.btn-primary:hover {
  background: var(--lav);
  color: var(--burg);
  border-color: var(--lav);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(79,50,50,.22);
}

.btn-ghost {
  background: transparent;
  color: var(--burg);
  border-color: var(--burg);
}

.btn-ghost:hover {
  background: var(--burg);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-contact {
  background: var(--lav);
  color: var(--burg);
  border-color: var(--lav);
  font-size: 1.1rem;
  padding: 18px 42px;
}

.btn-contact:hover {
  background: var(--yel);
  border-color: var(--yel);
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(228,186,232,.4);
}

.btn-pulse {
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(228,186,232,0);
  }

  50% {
    box-shadow: 0 0 0 16px rgba(228,186,232,.28);
  }
}

/* ===================================================
   NAV
=================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 5%;
  transition: background .4s, box-shadow .4s, padding .4s;
}

.nav.scrolled {
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(79,50,50,.08);
  padding: 14px 5%;
}

.nav__logo {
  font-family: var(--font-d);
  font-size: 1.5rem;
  color: var(--burg);
  white-space: nowrap;
}

.nav__logo span {
  color: var(--lav);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 38px;
}

.nav__links a {
  font-size: .88rem;
  font-weight: 700;
  color: var(--burg);
  transition: color var(--tr);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--lav);
  border-radius: 2px;
  transition: width var(--tr);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__cta {
  background: var(--burg) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 999px;
  transition: background var(--tr), color var(--tr) !important;
}

.nav__cta::after {
  display: none !important;
}

.nav__cta:hover {
  background: var(--lav) !important;
  color: var(--burg) !important;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__burger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--burg);
  border-radius: 4px;
  transition: var(--tr);
}

/* ===================================================
   HERO
=================================================== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 130px 6% 90px;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.b1 {
  width: 580px;
  height: 580px;
  background: var(--lav);
  opacity: .38;
  top: -180px;
  right: -180px;
  animation: bf 10s ease-in-out infinite alternate;
}

.b2 {
  width: 420px;
  height: 420px;
  background: var(--yel);
  opacity: .38;
  bottom: -120px;
  left: -80px;
  animation: bf 13s ease-in-out 2s infinite alternate;
}

.b3 {
  width: 240px;
  height: 240px;
  background: var(--lav);
  opacity: .2;
  top: 55%;
  left: 38%;
  animation: bf 7s ease-in-out 5s infinite alternate;
}

@keyframes bf {
  from {
    transform: scale(1) translate(0,0) rotate(0deg);
  }

  to {
    transform: scale(1.14) translate(28px,36px) rotate(10deg);
  }
}

.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.pt {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: ptRise linear infinite;
}

@keyframes ptRise {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }

  10% {
    opacity: .55;
  }

  90% {
    opacity: .2;
  }

  100% {
    opacity: 0;
    transform: translateY(-100vh) scale(1.4);
  }
}

.hero__left {
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--burg);
  margin-bottom: 18px;
}

.hero__title {
  font-family: var(--font-d);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  line-height: 1.06;
  color: var(--black);
  margin-bottom: 26px;
}

.hl-lav,
.hl-yel {
  font-style: normal;
  padding: 2px 10px;
  border-radius: 10px;
  display: inline-block;
}

.hl-lav {
  background: var(--lav);
}

.hl-yel {
  background: var(--yel);
}

.hero__sub {
  font-size: 1.08rem;
  color: rgba(0,0,0,.55);
  max-width: 460px;
  line-height: 1.82;
  margin-bottom: 38px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero__right {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero__photo-wrap {
  position: relative;
  width: min(360px, 100%);
}

.photo-block {
  position: absolute;
  inset: 0;
  border-radius: 28px;
}

.photo-block--back1 {
  background: var(--lav);
  transform: rotate(-4deg) translate(-10px,10px);
  z-index: 0;
}

.photo-block--back2 {
  background: var(--yel);
  transform: rotate(3deg) translate(10px,-8px);
  z-index: 0;
}

.hero__photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: 28px;
  display: block;
}

.hero__cards {
  display: flex;
  gap: 14px;
  width: min(360px, 100%);
  padding-left: 10px;
}

.hcard {
  flex: 1;
  border-radius: var(--r);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: var(--sh);
  transition: transform var(--tr);
}

.hcard:hover {
  transform: translateY(-5px) rotate(-1deg);
}

.hcard--lav {
  background: var(--lav);
}

.hcard--yel {
  background: var(--yel);
}

.hcard__icon {
  font-size: 1.5rem;
}

.hcard p {
  font-size: .82rem;
  color: var(--burg);
  line-height: 1.4;
}

.hcard strong {
  font-weight: 800;
  display: block;
}

/* ===================================================
   MARQUEE
=================================================== */
.marquee-wrap {
  background: var(--burg);
  padding: 20px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-wrap:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.marquee-track span {
  font-family: var(--font-b);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
  padding: 0 32px;
  white-space: nowrap;
}

.marquee-track .mx {
  color: var(--yel);
  padding: 0;
  font-size: .7rem;
}

/* ===================================================
   SERVICES
=================================================== */
.sec-services {
  background: var(--burg);
  padding: 100px 6%;
}

.sec-services .sec-title {
  color: var(--white);
}

.sec-services .tag-pill {
  background: var(--yel);
  color: var(--burg);
}

.srv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.srv-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r);
  padding: 38px 30px 34px;
  transition: border-color var(--tr), background var(--tr), transform var(--tr);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
}

.srv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lav), var(--yel));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .44s ease;
}

.srv-card:hover {
  border-color: rgba(228,186,232,.4);
  background: rgba(255,255,255,.08);
  transform: translateY(-6px);
}

.srv-card:hover::before {
  transform: scaleX(1);
}

.srv-num {
  font-family: var(--font-d);
  font-size: 3rem;
  color: rgba(255,255,255,.08);
  line-height: 1;
  margin-bottom: 14px;
  transition: color var(--tr);
}

.srv-card:hover .srv-num {
  color: rgba(228,186,232,.3);
}

.srv-card h3 {
  color: var(--white);
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.srv-card p {
  color: rgba(255,255,255,.58);
  font-size: .9rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.srv-card ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.srv-card li {
  color: rgba(255,255,255,.4);
  font-size: .83rem;
  padding-left: 18px;
  position: relative;
}

.srv-card li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--lav);
  font-size: .6rem;
  top: 4px;
}

.srv-custom-card {
  margin-top: 42px;
  max-width: 820px;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.14);
  border-radius: var(--r);
  padding: 26px 30px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--white);
  box-shadow: 0 18px 42px rgba(0,0,0,.12);
  position: relative;
  overflow: hidden;
}

.srv-custom-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(228,186,232,.16), rgba(255,237,168,.1));
  pointer-events: none;
}

.srv-custom-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--yel);
  color: var(--burg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.srv-custom-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,.72);
  position: relative;
  z-index: 1;
}

/* ===================================================
   METHOD
=================================================== */
.sec-method {
  background: var(--lav);
  padding: 100px 6%;
}

.sec-method .tag-pill {
  background: var(--burg);
  color: var(--white);
}

.sec-method .sec-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.method-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
}

.method-accordion {
  display: flex;
  flex-direction: column;
  padding-left: 8px;
}

.acc-item {
  border-bottom: 1.5px solid rgba(79,50,50,.18);
  overflow: visible;
}

.acc-item:first-child {
  border-top: 1.5px solid rgba(79,50,50,.18);
}

.acc-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  background: none;
  border: none;
  padding: 22px 0;
  cursor: none;
  text-align: left;
  transition: opacity var(--tr);
  overflow: visible;
}

.acc-header:hover {
  opacity: .75;
}

.acc-num {
  font-family: var(--font-d);
  font-size: 1.4rem;
  color: var(--burg);
  opacity: .28;
  flex-shrink: 0;
  min-width: 44px;
  padding-left: 4px;
  transition: opacity var(--tr), transform var(--tr);
  transform-origin: center;
}

.acc-item.open .acc-num {
  opacity: 1;
  transform: scale(1.08);
}

.acc-title {
  flex: 1;
  font-family: var(--font-b);
  font-weight: 700;
  font-size: 1rem;
  color: var(--burg);
  line-height: 1.4;
}

.acc-icon {
  font-size: 1.1rem;
  color: var(--burg);
  transition: transform .38s ease;
  flex-shrink: 0;
}

.acc-item.open .acc-icon {
  transform: rotate(180deg);
}

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s cubic-bezier(0.4,0,0.2,1);
}

.acc-item.open .acc-body {
  max-height: 270px;
}

.acc-body p {
  padding: 0 0 20px 62px;
  font-size: .93rem;
  color: rgba(79,50,50,.72);
  line-height: 1.78;
}

.acc-tag {
  display: inline-block;
  margin: 0 0 22px 62px;
  background: rgba(79,50,50,.12);
  color: var(--burg);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
}

.method-output {
  background: rgba(255,255,255,.55);
  border-radius: var(--r);
  padding: 36px 32px;
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,.7);
}

.method-output__label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(79,50,50,.5);
  margin-bottom: 24px;
}

.output-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.output-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .92rem;
  font-weight: 600;
  color: var(--burg);
  padding: 10px 14px;
  background: rgba(255,255,255,.5);
  border-radius: var(--rs);
  transition: background var(--tr), transform var(--tr);
}

.output-row:hover {
  background: rgba(255,255,255,.85);
  transform: translateX(6px);
}

.output-dot {
  width: 9px;
  height: 9px;
  background: var(--burg);
  border-radius: 50%;
  flex-shrink: 0;
}

.method-doc {
  background: rgba(255,255,255,.7);
  border-radius: var(--rs);
  padding: 16px 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.method-doc__icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.method-doc p {
  font-size: .86rem;
  color: var(--burg);
  line-height: 1.6;
}

.method-doc strong {
  font-weight: 700;
}

.method-callout {
  background: var(--burg);
  color: var(--white);
  border-radius: var(--rs);
  padding: 22px 26px;
  font-size: .98rem;
  line-height: 1.6;
  position: relative;
  overflow: hidden;
}

.method-callout::after {
  content: '✦';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 4rem;
  opacity: .06;
  font-family: var(--font-d);
}

.method-callout strong {
  font-family: var(--font-d);
  font-size: 1.05rem;
  display: block;
  margin-top: 5px;
  line-height: 1.4;
}

/* ===================================================
   EXPERTISE / SETTORI
=================================================== */
.sec-expertise {
  background: var(--yel);
  padding: 100px 6%;
}

.sec-expertise .sec-title {
  color: var(--burg);
}

.sec-expertise .tag-pill {
  background: var(--burg);
  color: var(--white);
}

.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 52px;
}

.etag {
  display: inline-block;
  padding: 11px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .88rem;
  background: var(--burg);
  color: var(--white);
  transition: transform var(--tr), box-shadow var(--tr);
  will-change: transform;
}

.etag:hover {
  box-shadow: 0 6px 22px rgba(79,50,50,.24);
}

.etag--outline {
  background: var(--white);
  color: var(--burg);
  border: 2.5px solid var(--burg);
}

.platforms__label {
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  color: rgba(79,50,50,.55);
  margin-bottom: 16px;
}

.platforms__row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.platforms__row span {
  font-size: .86rem;
  font-weight: 600;
  color: rgba(79,50,50,.7);
  background: rgba(79,50,50,.09);
  padding: 7px 18px;
  border-radius: 999px;
  transition: background var(--tr), transform var(--tr);
}

.platforms__row span:hover {
  background: rgba(79,50,50,.16);
  transform: translateY(-2px);
}

/* ===================================================
   ABOUT / CHI SONO
=================================================== */
.sec-about {
  background: var(--white);
  padding: 100px 6%;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-visual {
  position: relative;
}

.about-frame {
  position: relative;
  width: 100%;
}

.about-frame__back1 {
  position: absolute;
  inset: 0;
  background: var(--lav);
  border-radius: var(--r);
  transform: rotate(-3.5deg) translate(-10px,10px);
  z-index: 0;
}

.about-frame__back2 {
  position: absolute;
  inset: 0;
  background: var(--yel);
  border-radius: var(--r);
  transform: rotate(3deg) translate(10px,-8px);
  z-index: 0;
}

.about-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--r);
  display: block;
  transition: transform .55s ease;
}

.about-frame:hover .about-photo {
  transform: scale(1.02);
}

.about-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  z-index: 2;
  background: var(--burg);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--r);
  text-align: center;
  font-size: .78rem;
  font-weight: 600;
  line-height: 1.5;
  box-shadow: var(--sh-lg);
}

.float {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.about-text .sec-title {
  margin-bottom: 22px;
}

.about-text p {
  font-size: .96rem;
  color: rgba(0,0,0,.55);
  line-height: 1.82;
  margin-bottom: 18px;
}

/* ===================================================
   CONTACT
=================================================== */
.sec-contact {
  background: var(--burg);
  padding: 110px 6%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.cb1 {
  width: 420px;
  height: 420px;
  background: var(--lav);
  opacity: .13;
  top: -120px;
  left: -100px;
  animation: bf 11s ease-in-out infinite alternate;
}

.cb2 {
  width: 300px;
  height: 300px;
  background: var(--yel);
  opacity: .1;
  bottom: -80px;
  right: -60px;
  animation: bf 8s ease-in-out 4s infinite alternate;
}

.contact-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-title {
  font-family: var(--font-d);
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 22px;
}

.contact-sub {
  color: rgba(255,255,255,.62);
  font-size: 1.05rem;
  max-width: 440px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.contact-socials {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 44px;
  padding-top: 38px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.soc-link {
  font-weight: 700;
  font-size: .87rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .06em;
  transition: color var(--tr), letter-spacing var(--tr);
  border-bottom: 1.5px solid transparent;
  padding-bottom: 2px;
}

.soc-link:hover {
  color: var(--lav);
  border-bottom-color: var(--lav);
  letter-spacing: .1em;
}

/* ===================================================
   FOOTER
=================================================== */
.footer {
  background: var(--black);
  padding: 32px 6%;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  color: rgba(255,255,255,.7) !important;
}

.footer-logo span {
  color: var(--lav) !important;
}

.footer-center {
  text-align: center;
}

.footer-center p {
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}

.footer-piva {
  font-size: .74rem;
  color: rgba(255,255,255,.22);
  margin-top: 4px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 8px;
}

.footer-links a {
  font-size: .76rem;
  font-weight: 700;
  color: rgba(255,255,255,.34);
  transition: color var(--tr);
}

.footer-links a:hover {
  color: var(--lav);
}

.footer-email {
  font-size: .86rem;
  font-weight: 700;
  color: var(--lav);
  transition: color var(--tr);
}

.footer-email:hover {
  color: var(--yel);
}

/* ===================================================
   PRIVACY PAGE
=================================================== */
.privacy-page {
  background: var(--white);
  min-height: 100vh;
  padding-top: 120px;
}

.privacy-hero {
  padding: 80px 6% 40px;
  text-align: center;
  background:
    radial-gradient(circle at top right, rgba(228,186,232,.34), transparent 34%),
    radial-gradient(circle at bottom left, rgba(255,237,168,.5), transparent 32%),
    var(--white);
}

.privacy-title {
  font-family: var(--font-d);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1.05;
  color: var(--burg);
  margin-bottom: 22px;
}

.privacy-intro {
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(0,0,0,.56);
}

.privacy-content {
  width: min(920px, 88vw);
  margin: 0 auto;
  padding: 40px 0 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.privacy-card {
  background: rgba(79,50,50,.04);
  border: 1.5px solid rgba(79,50,50,.09);
  border-radius: var(--r);
  padding: 30px 32px;
  box-shadow: 0 12px 38px rgba(79,50,50,.06);
}

.privacy-card--highlight {
  background: var(--lav);
  border-color: rgba(79,50,50,.08);
  text-align: center;
}

.privacy-card--highlight p {
  color: var(--burg);
  font-weight: 800;
  font-size: 1.05rem;
  margin: 0;
}

.privacy-card h2 {
  font-family: var(--font-d);
  font-size: 1.55rem;
  line-height: 1.2;
  color: var(--burg);
  margin-bottom: 14px;
}

.privacy-card p {
  font-size: .96rem;
  color: rgba(0,0,0,.58);
  line-height: 1.82;
  margin-bottom: 12px;
}

.privacy-card p:last-child {
  margin-bottom: 0;
}

.privacy-card a {
  color: var(--burg);
  font-weight: 800;
  border-bottom: 2px solid var(--lav);
  transition: color var(--tr), border-color var(--tr);
}

.privacy-card a:hover {
  color: var(--black);
  border-bottom-color: var(--yel);
}

.privacy-date {
  font-weight: 700;
  color: var(--burg) !important;
}

.privacy-back {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

/* ===================================================
   RESPONSIVE
=================================================== */
@media (max-width: 1000px) {
  .method-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

@media (max-width: 860px) {
  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding-top: 110px;
    gap: 30px;
    text-align: center;
  }

  .hero__left {
    display: contents;
  }

  .hero__eyebrow {
    order: 1;
    margin-bottom: 0;
  }

  .hero__title {
    order: 2;
    margin-bottom: 0;
  }

  .hero__sub {
    order: 3;
    margin: 0 auto;
  }

  .hero__right {
    order: 4;
    width: 100%;
    align-items: center;
    margin-top: 0;
    margin-bottom: 0;
  }

  .hero__actions {
    order: 5;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin: 0 auto;
  }

  .hero__photo-wrap {
    width: min(300px, 80vw);
  }

  .hero__cards {
    width: min(300px, 80vw);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .about-visual {
    order: -1;
  }

  .about-frame {
    max-width: 300px;
    margin: 0 auto;
  }

  .about-badge {
    right: calc(50% - 150px - 10px);
  }

  .about-text {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .nav__links {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    padding: 28px 0;
    gap: 26px;
    box-shadow: 0 20px 40px rgba(79,50,50,.1);
  }

  .nav__links.open {
    display: flex;
  }

  .nav__burger {
    display: flex;
  }

  .sec-services,
  .sec-method,
  .sec-expertise,
  .sec-about,
  .sec-contact {
    padding: 72px 5%;
  }

  .hero__actions {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .hero__actions .btn {
    width: fit-content;
    max-width: 100%;
    text-align: center;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .about-badge {
    position: static;
    display: inline-block;
    margin: 20px auto 0;
  }

  .contact-inner {
    max-width: 100%;
  }

  .contact-title {
    font-size: clamp(1.9rem, 6.2vw, 2.8rem);
  }

  .acc-body p {
    padding-left: 0;
  }

  .acc-tag {
    margin-left: 0;
  }

  .method-accordion {
    padding-left: 0;
  }

  .acc-num {
    min-width: 40px;
  }

  .srv-custom-card {
    align-items: flex-start;
    padding: 22px 22px;
  }

  .srv-custom-card p {
    font-size: .94rem;
  }

  .privacy-page {
    padding-top: 90px;
  }

  .privacy-hero {
    padding: 64px 5% 30px;
  }

  .privacy-content {
    width: 90vw;
    padding: 32px 0 72px;
  }

  .privacy-card {
    padding: 24px 22px;
  }

  .privacy-card h2 {
    font-size: 1.35rem;
  }

  .privacy-card p {
    font-size: .93rem;
  }
}