:root {
  interpolate-size: allow-keywords;
  --bg: #1A1A1A;
  --surface: #2C2428;
  --surface-2: #3A2F34;
  --ink: #F5EDE8;
  --ink-soft: rgba(245,237,232,0.55);
  --accent: #C8A2C8;
  --accent-2: #E8D5B7;
  --line: rgba(232,213,183,0.18);
  --line-strong: rgba(232,213,183,0.35);
  --header-h: 80px;
  --container-px: clamp(16px,4vw,32px);
  --max-w: 1400px;
  --radius: 8px;
  --font-heading: 'Palatino Linotype','Book Antiqua','Palatino',serif;
  --font-body: 'Segoe UI','Roboto','Helvetica Neue',sans-serif;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion:reduce) { html { scroll-behavior: auto; } }

html,body { overflow-x: hidden; max-width: 100vw; margin: 0; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.9rem,1.1vw,1.05rem);
  line-height: 1.7;
  letter-spacing: -0.02em;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul,ol { list-style: none; }

h1,h2,h3,h4,h5 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: italic;
  line-height: 1.15;
  letter-spacing: -0.012em;
}

h2 { font-size: clamp(2rem,4.5vw,3.2rem); }
h3 { font-size: clamp(1.2rem,2vw,1.6rem); }
h4 { font-size: clamp(1rem,1.5vw,1.25rem); }

.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--accent); color: var(--bg);
  padding: 8px 18px; border-radius: 0 0 var(--radius) var(--radius);
  font-size: 0.85rem; z-index: 10000;
  transition: top 200ms;
}
.skip-link:focus { top: 0; }

html.no-js .reveal { opacity: 1; transform: none; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
}

main { padding-top: var(--header-h); }

.btn-primary,
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 50px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 240ms cubic-bezier(.2,.7,.2,1),
              color 240ms cubic-bezier(.2,.7,.2,1),
              transform 180ms cubic-bezier(.2,.7,.2,1),
              box-shadow 240ms cubic-bezier(.2,.7,.2,1);
}

.btn-primary {
  background: var(--accent); color: var(--bg); border-color: var(--accent);
}
.btn-primary:hover,.btn-primary:focus-visible {
  background: var(--accent-2); color: var(--bg); border-color: var(--accent-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,162,200,0.25);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary::after {
  content: '\2192'; font-size: 1.1em; transition: transform 240ms;
}
.btn-primary:hover::after { transform: translateX(4px); }

.btn-ghost {
  background: transparent; color: var(--ink); border-color: var(--line-strong);
}
.btn-ghost:hover,.btn-ghost:focus-visible {
  background: var(--surface); color: var(--ink); border-color: var(--accent);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: clamp(0.7rem,1.2vw,0.85rem);
  font-weight: 400; font-style: normal;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title { color: var(--ink); margin-bottom: 16px; }
.section-title::after {
  content: '';
  display: block;
  width: 60px; height: 1px;
  background: linear-gradient(90deg,var(--accent-2),transparent);
  margin-top: 18px;
}

.gold-sep {
  height: 1px; max-width: 140px; margin: 0 auto;
  background: linear-gradient(90deg,transparent,var(--accent-2),transparent);
}

.nail-sil {
  position: absolute;
  width: 32px; height: 48px;
  color: var(--accent-2);
  opacity: 0.08;
  animation: nailPulse 10s ease-in-out infinite;
  pointer-events: none;
}
.nail-sil--tl { top: 24px; left: 24px; }
.nail-sil--br { bottom: 24px; right: 24px; transform: rotate(180deg); }

@keyframes nailPulse {
  0%,100% { opacity: 0.06; transform: scale(1); }
  50% { opacity: 0.14; transform: scale(1.06); }
}

/* ======= HEADER ======= */

.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1080;
  height: var(--header-h);
  background: rgba(26,26,26,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 240ms ease, box-shadow 240ms ease, height 240ms ease;
}
.site-header.scrolled {
  background: rgba(26,26,26,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,0.18);
  height: 64px;
}

.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.logo {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem,2vw,1.6rem);
  font-style: italic;
  color: var(--ink);
  letter-spacing: 0.02em;
  z-index: 1100;
  transition: color 240ms;
}
.logo span { color: var(--accent); }
.logo:hover { color: var(--accent-2); }

/* ======= NAV DESKTOP ======= */

.nav-desktop {
  display: none;
  align-items: center;
  gap: clamp(20px,2.5vw,36px);
}
@media (min-width:1024px) {
  .nav-desktop { display: flex; }
}

.nav-desktop a {
  position: relative;
  font-size: 0.82rem; font-weight: 400;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 240ms;
  padding: 6px 0;
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a:hover::after { transform: scaleX(1); }
.nav-desktop a.is-active { color: var(--accent); }
.nav-desktop a.is-active::after { transform: scaleX(1); }

.nav-desktop .nav-cta {
  padding: 10px 26px;
  border: 1px solid var(--accent);
  border-radius: 50px;
  color: var(--accent);
  font-weight: 500;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover {
  background: var(--accent); color: var(--bg);
}
.nav-desktop .nav-cta.is-active { background: transparent; }

/* ======= NAV TOGGLE ======= */

.nav-toggle {
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
  z-index: 1100;
  padding: 0;
}
@media (min-width:1024px) { .nav-toggle { display: none; } }

.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), opacity 200ms;
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ======= DRAWER ======= */

.drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1040;
  opacity: 0; visibility: hidden;
  transition: opacity 240ms, visibility 240ms;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(360px,92vw);
  background: var(--surface);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 32px) 32px 40px;
  display: flex; flex-direction: column; gap: 4px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }

.drawer a {
  display: block;
  padding: 14px 16px;
  font-size: 1rem; font-weight: 400;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ink-soft);
  border-left: 2px solid transparent;
  transition: color 240ms, padding-left 240ms, border-color 240ms;
}
.drawer a:hover { color: var(--ink); padding-left: 24px; }
.drawer a.is-active {
  color: var(--accent);
  padding-left: 24px;
  border-left-color: var(--accent);
}
.drawer .nav-cta {
  margin-top: 20px;
  text-align: center;
  padding: 14px 26px;
  border: 1px solid var(--accent);
  border-radius: 50px;
  color: var(--accent);
  border-left: 1px solid var(--accent);
}
.drawer .nav-cta:hover {
  background: var(--accent); color: var(--bg);
}

/* ======= SCROLL PROGRESS ======= */

.scroll-progress {
  position: absolute; bottom: 0; left: 0;
  height: 2px; width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  z-index: 1;
  transition: none;
}

/* ======= DRAWER CLOSE ======= */


/* ======= HERO ======= */

.hero {
  position: relative;
  margin-top: calc(-1 * var(--header-h));
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute; inset: 0; z-index: 0;
}

.hero__bg-layer {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  will-change: opacity, transform;
  animation: heroFade 21s ease-in-out infinite;
}
.hero__bg-layer:nth-child(2) { animation-delay: 7s; }
.hero__bg-layer:nth-child(3) { animation-delay: 14s; }

@keyframes heroFade {
  0% { opacity: 0; transform: scale(1.02); }
  8% { opacity: 1; }
  30% { opacity: 1; transform: scale(1.08); }
  38% { opacity: 0; transform: scale(1.1); }
  100% { opacity: 0; transform: scale(1.02); }
}

.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26,26,26,0.55) 0%,
    rgba(26,26,26,0.35) 40%,
    rgba(26,26,26,0.65) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative; z-index: 2;
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: 80px;
  max-width: 780px;
  clip-path: inset(0 100% 0 0);
  animation: maskReveal 1.2s cubic-bezier(.2,.7,.2,1) 0.4s forwards;
}

@keyframes maskReveal {
  to { clip-path: inset(0 0 0 0); }
}

.hero h1 {
  font-size: clamp(2.4rem,6vw,4.5rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 24px;
}

.hero__sub {
  font-size: clamp(1rem,1.6vw,1.2rem);
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero__badges {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 28px;
}
.hero__badges span {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px;
  background: rgba(200,162,200,0.1);
  border: 1px solid rgba(200,162,200,0.2);
  border-radius: 50px;
  font-size: 0.78rem; font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--accent);
}
.hero__badges span::before {
  content: '\2726'; font-size: 0.7em; color: var(--accent-2);
}

/* ======= HERO DROP ANIMATION ======= */

.hero__drop {
  position: absolute;
  right: 10%;
  top: 18%;
  width: 60px; height: 220px;
  z-index: 2;
  opacity: 0.65;
  pointer-events: none;
}
.hero__drop .drop-cap { fill: var(--accent-2); opacity: 0.6; }
.hero__drop .drop-neck { fill: var(--ink); opacity: 0.3; }
.hero__drop .drop-body { fill: var(--accent); opacity: 0.5; }
.hero__drop .drop-ball {
  transform-origin: 30px 95px;
}
.hero__drop .drop-ball--1 {
  fill: var(--accent);
  animation: dropFall 4s cubic-bezier(.4,0,1,1) infinite,
             dropColor 12s ease infinite;
}
.hero__drop .drop-ball--2 {
  fill: var(--accent-2);
  opacity: 0;
  animation: dropFall 4s cubic-bezier(.4,0,1,1) 2s infinite,
             dropColor 12s ease 4s infinite,
             dropFadeIn 4s ease 2s infinite;
}

@keyframes dropFall {
  0% { transform: translateY(0) scale(1); }
  20% { transform: translateY(25px) scale(0.85); }
  85% { transform: translateY(100px) scale(1.15); opacity: 0.6; }
  100% { transform: translateY(115px) scale(0); opacity: 0; }
}
@keyframes dropColor {
  0%,30% { fill: #C8A2C8; }
  35%,65% { fill: #E8D5B7; }
  70%,100% { fill: #F5EDE8; }
}
@keyframes dropFadeIn {
  0% { opacity: 0; }
  5% { opacity: 0.8; }
  85% { opacity: 0.5; }
  100% { opacity: 0; }
}

/* ======= STATS STRIP ======= */

.stats-strip {
  position: relative;
  padding: clamp(40px,6vw,80px) 0;
  background: var(--surface);
  overflow: hidden;
}
.stats-strip__inner {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: clamp(16px,3vw,32px);
  text-align: center;
}
.stat__num {
  display: block;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(2.2rem,5vw,3.6rem);
  color: var(--accent);
  line-height: 1.1;
}
.stat__label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 8px;
}

/* ======= SECTIONS COMMON ======= */

.section {
  position: relative;
  padding: clamp(60px,10vw,120px) 0;
  overflow: hidden;
}
.section--alt { background: var(--surface); }
.section--dark { background: var(--bg); }

.section__head {
  text-align: center;
  margin-bottom: clamp(40px,6vw,72px);
}
.section__head .section-title::after { margin-left: auto; margin-right: auto; }

/* ======= PORTFOLIO MASONRY ======= */

.masonry {
  column-count: 3;
  column-gap: 16px;
}
.masonry__item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.masonry__item img {
  width: 100%; display: block;
  transition: transform 360ms cubic-bezier(.2,.7,.2,1);
}
.masonry__item:hover img {
  transform: scale(1.06);
}
.masonry__item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg,transparent 50%,rgba(26,26,26,0.6));
  opacity: 0;
  transition: opacity 400ms;
}
.masonry__item:hover::after { opacity: 1; }

/* ======= SERVICES ======= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: clamp(16px,3vw,28px);
}

.service-card {
  position: relative;
  padding: clamp(28px,4vw,44px);
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1),
              box-shadow 240ms cubic-bezier(.2,.7,.2,1),
              border-color 240ms;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(200,162,200,0.12);
  border-color: var(--accent);
}

.service-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    115deg,transparent 30%,
    rgba(200,162,200,0.06) 45%,
    rgba(232,213,183,0.1) 50%,
    rgba(200,162,200,0.06) 55%,
    transparent 70%
  );
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 300ms;
  pointer-events: none;
}
.service-card:hover::after {
  opacity: 1;
  animation: shimmerSweep 1.5s ease;
}

@keyframes shimmerSweep {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.service-card__icon {
  width: 48px; height: 48px;
  color: var(--accent);
  margin-bottom: 20px;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), color 300ms;
}
.service-card:hover .service-card__icon {
  color: var(--accent-2);
  transform: scale(1.08);
}
.service-card__icon svg { width: 100%; height: 100%; }

.service-card h3 {
  margin-bottom: 12px;
  color: var(--ink);
}
.service-card p {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ======= PRICING ======= */

.pricing-list {
  max-width: 820px;
  margin: 0 auto;
}
.price-item {
  display: flex; align-items: baseline;
  gap: 12px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.price-item:last-child { border-bottom: none; }

.price-item__name {
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.1rem,1.8vw,1.35rem);
  color: var(--ink);
}
.price-item__dots {
  flex: 1;
  border-bottom: 1px dashed var(--line-strong);
  min-width: 40px;
  margin-bottom: 5px;
}
.price-item__price {
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.2rem,2vw,1.5rem);
  color: var(--accent);
  white-space: nowrap;
}

.price-detail {
  padding: 0 0 20px;
  margin-bottom: 8px;
}
.price-dahil, .price-haric {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--ink-soft);
  padding-left: 16px;
  position: relative;
}
.price-dahil::before {
  content: '\2713'; position: absolute; left: 0;
  color: var(--accent); font-size: 0.75rem;
}
.price-haric::before {
  content: '\2717'; position: absolute; left: 0;
  color: rgba(245,237,232,0.3); font-size: 0.75rem;
}

.price-disclaimer {
  text-align: center;
  margin-top: 32px;
  font-size: 0.78rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* ======= PROCESS / TIMELINE ======= */

.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 56px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 20px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg,var(--accent),var(--accent-2),transparent);
}

.timeline__step {
  position: relative;
  padding: 0 0 clamp(36px,5vw,56px);
}
.timeline__step:last-child { padding-bottom: 0; }

.timeline__marker {
  position: absolute;
  left: -56px; top: 0;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface);
  border: 1px solid var(--accent);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--accent);
}

.timeline__content h3 {
  margin-bottom: 8px;
  color: var(--ink);
}
.timeline__content p {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 8px;
}
.timeline__time {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(200,162,200,0.1);
  border-radius: 50px;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--accent);
}

/* ======= TESTIMONIALS ======= */

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.testimonial-card {
  padding: clamp(24px,4vw,40px);
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  position: relative;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms;
}
.testimonial-card:nth-child(even) {
  margin-top: 40px;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(200,162,200,0.18);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute; top: 16px; left: 24px;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.3;
}

.testimonial-card blockquote {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 18px;
  padding-top: 8px;
}

.testimonial-card cite {
  display: block;
  font-style: normal;
  font-size: 0.78rem;
  color: var(--accent-2);
  letter-spacing: 0.02em;
}

/* ======= FAQ ACCORDION ======= */

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px clamp(18px,3vw,28px);
  font-family: var(--font-body);
  font-weight: 500;
  font-style: normal;
  font-size: 0.95rem;
  color: var(--ink);
  transition: color 240ms;
}
.faq-item summary:hover { color: var(--accent); }
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '';
  width: 12px; height: 12px;
  flex-shrink: 0;
  border-right: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(45deg);
  transition: transform 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] summary::after {
  transform: rotate(-135deg);
}

.faq-item .faq-body {
  height: 0;
  padding: 0 clamp(18px,3vw,28px);
  overflow: hidden;
  transition: height 360ms cubic-bezier(.4,0,.2,1),
              padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] .faq-body {
  height: auto;
  padding-block-end: 26px;
}
.faq-body p {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.7;
}

@media (prefers-reduced-motion:reduce) {
  .faq-item .faq-body,
  .faq-item summary::after { transition: none; }
}

/* ======= CTA SECTION ======= */

.cta-section {
  position: relative;
  padding: clamp(80px,14vw,160px) 0;
  background: var(--surface);
  text-align: center;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -40%; left: -20%;
  width: 140%; height: 180%;
  background: radial-gradient(ellipse at center, rgba(200,162,200,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 {
  font-size: clamp(2.5rem,6vw,4.5rem);
  margin-bottom: 20px;
  position: relative;
}
.cta-section .hero__sub {
  max-width: 500px;
  margin: 0 auto 36px;
}

/* ======= FOOTER ======= */

.site-footer {
  padding: clamp(48px,8vw,80px) 0 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: clamp(24px,4vw,48px);
  padding-bottom: clamp(40px,6vw,64px);
}

.footer__brand .logo { margin-bottom: 16px; display: inline-block; }
.footer__brand p {
  font-size: 0.85rem; line-height: 1.65;
  color: var(--ink-soft);
  max-width: 280px;
  margin-bottom: 20px;
}
.footer__social {
  display: flex; gap: 12px;
}
.footer__social a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink-soft);
  transition: color 240ms, border-color 240ms, background 240ms;
}
.footer__social a:hover {
  color: var(--accent); border-color: var(--accent);
  background: rgba(200,162,200,0.08);
}

.footer__col h4 {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 20px;
  font-style: normal;
}
.footer__col a {
  display: block;
  padding: 6px 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
  transition: color 240ms, padding-left 200ms;
}
.footer__col a:hover { color: var(--ink); padding-left: 6px; }

.footer__contact-line {
  display: flex; align-items: start; gap: 10px;
  padding: 5px 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
  word-break: break-word;
  overflow-wrap: anywhere;
}
.footer__contact-line svg {
  width: 16px; height: 16px; flex-shrink: 0;
  margin-top: 3px;
  color: var(--accent);
}

.footer__bottom {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  font-size: 0.78rem;
  color: var(--ink-soft);
}
.footer__legal {
  display: flex; flex-wrap: wrap; gap: 8px 20px;
}
.footer__legal a { color: var(--ink-soft); transition: color 240ms; }
.footer__legal a:hover { color: var(--accent); }

/* ======= COOKIE BANNER ======= */

.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  padding: 24px 28px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  z-index: 9999;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.cookie-banner a { color: var(--accent); text-decoration: underline; }

.cookie-actions {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.cookie-actions button {
  flex: 1; min-width: 100px; min-height: 44px;
  padding: 10px 18px;
  font-family: var(--font-body);
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: 8px;
  cursor: pointer;
  transition: background 200ms, color 200ms;
  border: 1px solid var(--line-strong);
  background: transparent; color: var(--ink);
}
.cookie-actions button[data-consent="accept"] {
  background: var(--accent); color: var(--bg); border-color: var(--accent);
}
.cookie-actions button[data-consent="accept"]:hover {
  background: var(--accent-2); color: var(--bg); border-color: var(--accent-2);
}
.cookie-actions button[data-consent="reject"]:hover,
.cookie-actions button[data-consent="settings"]:hover {
  background: var(--surface-2); color: var(--ink);
}

@media (min-width:640px) {
  .cookie-banner {
    left: 24px; right: auto; max-width: 420px;
  }
}

/* ======= FORMS ======= */

.form-section {
  max-width: 640px;
  margin: 0 auto;
}

.field {
  margin-bottom: 20px;
}
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 240ms, box-shadow 240ms;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200,162,200,0.15);
  outline: none;
}
.field textarea { min-height: 120px; resize: vertical; }
.field select { cursor: pointer; }
.field select option { background: var(--bg); color: var(--ink); }

.field-checkbox {
  display: flex; align-items: flex-start; gap: 12px;
}
.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0; border: 0;
  margin: 2px 0 0;
  accent-color: var(--accent);
  cursor: pointer;
}
.field-checkbox label {
  margin-bottom: 0;
  cursor: pointer;
}

.honeypot {
  position: absolute; left: -9999px; opacity: 0;
}

/* ======= CONTACT PAGE LAYOUT ======= */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px,6vw,64px);
  align-items: start;
}

/* ======= CONTACT PAGE CHANNELS ======= */

.contact-channels {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}

.contact-row {
  display: contents;
  cursor: default;
}
.contact-row > * {
  transition: transform 240ms cubic-bezier(.4,0,.2,1), color 240ms;
}
.contact-row:hover .contact-icon {
  color: var(--accent);
  transform: scale(1.08);
}
.contact-row:hover .contact-text {
  transform: translateX(4px);
}

.contact-icon {
  width: 20px; height: 20px;
  color: var(--ink-soft);
  margin-top: 2px;
}
.contact-icon svg { width: 100%; height: 100%; }

.contact-text {
  font-size: 0.92rem;
  color: var(--ink);
  word-break: break-word;
  overflow-wrap: anywhere;
}
.contact-text strong {
  font-weight: 500;
  display: block;
  margin-bottom: 2px;
  color: var(--accent-2);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.contact-text a { transition: color 240ms; }
.contact-text a:hover { color: var(--accent); }

/* ======= CONTENT PAGES ======= */

.page-hero {
  padding: clamp(40px,8vw,80px) 0 clamp(32px,5vw,56px);
  background: var(--surface);
  text-align: center;
}
.page-hero .eyebrow { margin-bottom: 12px; }
.page-hero h1 {
  font-size: clamp(2rem,5vw,3.5rem);
}

.content-body {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(40px,6vw,80px) var(--container-px);
}
.content-body h2 {
  font-size: clamp(1.4rem,2.5vw,1.8rem);
  margin: 48px 0 16px;
  color: var(--accent-2);
}
.content-body h2:first-child { margin-top: 0; }
.content-body h3 {
  font-size: clamp(1.1rem,1.8vw,1.35rem);
  margin: 32px 0 12px;
  color: var(--ink);
}
.content-body p {
  margin-bottom: 16px;
  color: var(--ink-soft);
  line-height: 1.75;
}
.content-body ul, .content-body ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.content-body li {
  margin-bottom: 8px;
  color: var(--ink-soft);
  line-height: 1.65;
  list-style: disc;
}
.content-body ol li { list-style: decimal; }
.content-body a { color: var(--accent); text-decoration: underline; }
.content-body strong { font-weight: 500; color: var(--ink); }

/* ======= ABOUT / TEAM ======= */

.team-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: clamp(20px,3vw,32px);
}
.team-card {
  padding: clamp(24px,3vw,36px);
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  text-align: center;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(200,162,200,0.18);
}
.team-card__photo {
  width: 120px; height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 2px solid var(--line);
}
.team-card h3 { margin-bottom: 4px; }
.team-card__role {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.team-card p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--ink-soft);
  text-align: left;
}

/* ======= THANK YOU / 404 ======= */

.message-page {
  min-height: 60vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: clamp(40px,8vw,80px) var(--container-px);
}
.message-page h1 {
  font-size: clamp(2rem,5vw,3.5rem);
  margin-bottom: 16px;
}
.message-page p {
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 480px;
}

/* ======= SITEMAP PAGE ======= */

.sitemap-links {
  column-count: 2;
  column-gap: 40px;
}
.sitemap-links li {
  break-inside: avoid;
  margin-bottom: 12px;
  list-style: none;
}
.sitemap-links a {
  color: var(--ink-soft);
  font-size: 0.92rem;
  transition: color 240ms;
}
.sitemap-links a:hover { color: var(--accent); }

/* ======= TABLE SCROLL ======= */

.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.table-scroll > table {
  margin: 0 !important;
  min-width: 480px; width: 100%;
  border-collapse: collapse;
}
.table-scroll th,
.table-scroll td {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--line);
}
.table-scroll th {
  font-weight: 500;
  color: var(--accent-2);
  background: rgba(200,162,200,0.05);
}
.table-scroll td { color: var(--ink-soft); }
:where(*:has(> .table-scroll),*:has(> * > .table-scroll),*:has(> * > * > .table-scroll)) { min-width: 0; }

/* ======= REVEAL ANIMATIONS ======= */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1),
              transform 600ms cubic-bezier(.2,.7,.2,1);
  transition-delay: calc(var(--i,0) * 80ms);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion:reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* ======= AMBIENT FLOAT ======= */

@keyframes gentleFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ======= PRINT ======= */

@media print {
  .site-header, .nav-toggle, .drawer, .drawer-backdrop,
  .cookie-banner, .hero__drop, .nail-sil, .skip-link { display: none !important; }
  body { background: #fff; color: #222; }
  main { padding-top: 0; }
  .hero { min-height: auto; margin-top: 0; }
  .reveal { opacity: 1 !important; transform: none !important; }
  a[href]::after { content: ' (' attr(href) ')'; font-size: 0.8em; }
}

/* ======= RESPONSIVE ======= */

@media (max-width:1280px) {
  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; }
}

@media (max-width:1024px) {
  :root { --header-h: 68px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card:nth-child(even) { margin-top: 0; }
  .hero__drop { right: 5%; top: 22%; width: 48px; height: 180px; }
}

@media (max-width:768px) {
  :root { --header-h: 60px; }
  .masonry { column-count: 2; }
  .stats-strip__inner { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(2.6rem,8vw,4rem); }
  .sitemap-links { column-count: 1; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width:640px) {
  .masonry { column-count: 1; }
  .hero__badges { flex-direction: column; align-items: flex-start; }
  .hero__drop { display: none; }
  .contact-channels { gap: 10px; }
  .cookie-actions { flex-direction: column; }
  .cookie-actions button { flex: none; width: 100%; }
  .price-item { flex-wrap: wrap; }
  .price-item__dots { display: none; }
  .price-item__price { width: 100%; text-align: right; margin-top: -4px; }
}

@media (max-width:430px) {
  .hero__content { padding-top: calc(var(--header-h) + 40px); }
  .section { padding: clamp(48px,8vw,80px) 0; }
  .service-card { padding: 20px; }
  .service-card__icon { width: 36px; height: 36px; }
  .testimonial-card { padding: 20px; }
  .team-card { padding: 20px; }
  .timeline { padding-left: 48px; }
  .timeline::before { left: 16px; }
  .timeline__marker { left: -48px; width: 32px; height: 32px; font-size: 0.75rem; }
  .stat__num { font-size: clamp(1.8rem,5vw,2.4rem); }
}

@media (max-width:390px) {
  body { font-size: 0.88rem; }
  .btn-primary, .btn-ghost { padding: 12px 28px; font-size: 0.8rem; }
  .hero h1 { font-size: clamp(2.2rem,9vw,3rem); }
  h2 { font-size: clamp(1.6rem,5vw,2.2rem); }
}

@media (prefers-reduced-motion:reduce) {
  .hero__bg-layer { animation: none !important; opacity: 1; transform: none; }
  .hero__bg-layer:nth-child(2),
  .hero__bg-layer:nth-child(3) { opacity: 0; }
  .hero__content { clip-path: none; animation: none; }
  .hero__drop { display: none; }
  .nail-sil { animation: none; }
  .service-card::after { animation: none; }
  .service-card:hover { transform: none; }
  .testimonial-card:hover { transform: none; }
  .team-card:hover { transform: none; }
  .masonry__item img { transition: none; }
  .btn-primary:hover, .btn-ghost:hover { transform: none; }
}
