:root {
  --brand: #311836;
  --bl: #4a2353;
  --acc: #e8c9b8;
  --w: #fff;
  --off: #faf9f8;
  --mu: #888;
  --brd: rgba(49, 24, 54, 0.1);
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Outfit", sans-serif;
  background: var(--w);
  color: #1a1a2e;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}

/* ── LOADER ── */
#loader {
  position: fixed;
  inset: 0;
  background: var(--brand);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: clip-path 0.9s cubic-bezier(0.76, 0, 0.24, 1);
  clip-path: inset(0 0 0 0);
}
#loader.out {
  clip-path: inset(0 0 100% 0);
}
#loader img {
  height: 64px;
  opacity: 0;
  transform: translateY(16px);
  animation: lIn 0.6s 0.3s ease forwards;
}
.l-bar {
  width: 160px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.15);
  overflow: hidden;
  opacity: 0;
  animation: lIn 0.4s 0.7s ease forwards;
}
.l-fill {
  height: 100%;
  width: 0;
  background: var(--acc);
  animation: lFill 1.5s 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.l-txt {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  opacity: 0;
  animation: lIn 0.4s 0.9s ease forwards;
}
@keyframes lIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes lFill {
  to {
    width: 100%;
  }
}

/* ── CURSOR (desktop only) ── */
.cur,
.cur-r {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 8000;
  transform: translate(-50%, -50%);
}
.cur {
  width: 8px;
  height: 8px;
  background: var(--brand);
  transition:
    width 0.2s,
    height 0.2s;
}
.cur-r {
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(49, 24, 54, 0.3);
}
@media (max-width: 768px) {
  .cur,
  .cur-r {
    display: none;
  }
}

/* ── SCROLL BAR ── */
#sprog {
  position: fixed;
  top: 0;
  left: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--brand), var(--acc));
  z-index: 300;
  width: 0;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 60px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--brd);
  transform: translateY(-100%);
  animation: navIn 0.6s 2.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  transition:
    padding 0.3s,
    box-shadow 0.3s;
}
@keyframes navIn {
  to {
    transform: translateY(0);
  }
}
.nav-logo img {
  height: 56px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: #1a1a2e;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--brand);
  transition: width 0.3s;
}
.nav-links a:hover {
  color: var(--brand);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-cta {
  background: var(--brand) !important;
  color: var(--w) !important;
  padding: 10px 24px !important;
  border-radius: 2px;
}
.nav-cta::after {
  display: none !important;
}
.nav-cta:hover {
  background: var(--bl) !important;
}
.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.ham span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a1a2e;
  border-radius: 2px;
  transition: all 0.3s;
}
.ham.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.ham.open span:nth-child(2) {
  opacity: 0;
}
.ham.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mob-nav {
  display: none;
  position: fixed;
  top: 65px;
  left: 0;
  right: 0;
  background: var(--w);
  border-bottom: 1px solid var(--brd);
  z-index: 199;
  padding: 20px;
  flex-direction: column;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
.mob-nav.open {
  display: flex;
}
.mob-nav a {
  text-decoration: none;
  color: #1a1a2e;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 0;
  border-bottom: 1px solid var(--brd);
  display: block;
  transition:
    color 0.2s,
    padding-left 0.2s;
}
.mob-nav a:last-child {
  border: none;
}
.mob-nav a:hover {
  color: var(--brand);
  padding-left: 8px;
}
.mob-nav .mc {
  background: var(--brand);
  color: var(--w) !important;
  text-align: center;
  padding: 16px !important;
  border-radius: 2px;
  margin-top: 8px;
  border: none !important;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 60px 80px;
  justify-content: center;
  text-align: center;
}

/* animated blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.blob-1 {
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(49, 24, 54, 0.07), transparent 70%);
  top: -160px;
  right: -120px;
  animation: blob1 12s ease-in-out infinite;
}
.blob-2 {
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(232, 201, 184, 0.3),
    transparent 70%
  );
  bottom: -100px;
  left: -80px;
  animation: blob2 9s ease-in-out infinite;
}
.blob-3 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(74, 35, 83, 0.06), transparent 70%);
  top: 45%;
  left: 42%;
  animation: blob3 14s ease-in-out infinite;
}
@keyframes blob1 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(-28px, 22px) scale(1.06);
  }
  66% {
    transform: translate(18px, -18px) scale(0.94);
  }
}
@keyframes blob2 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(22px, -18px) scale(1.08);
  }
}
@keyframes blob3 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  40% {
    transform: translate(-20px, 20px);
  }
  80% {
    transform: translate(16px, -12px);
  }
}

/* floating particles */
.pt {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: ptFloat linear infinite;
}
@keyframes ptFloat {
  0% {
    transform: translateY(110vh) rotate(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 0.7;
  }
  100% {
    transform: translateY(-60px) rotate(360deg);
    opacity: 0;
  }
}

/* hero line */
.h-line {
  position: absolute;
  top: 0;
  right: 200px;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(49, 24, 54, 0.12),
    transparent
  );
  transform: scaleY(0);
  transform-origin: top;
  animation: lineGrow 1.2s 2.8s ease forwards;
}
@keyframes lineGrow {
  to {
    transform: scaleY(1);
  }
}

.hero-content {
  max-width: 860px;
  position: relative;
  z-index: 2;
  text-align: center;
  margin: 0 auto;
}

.h-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(49, 24, 54, 0.06);
  border: 1px solid rgba(49, 24, 54, 0.15);
  color: var(--brand);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 2px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(16px);
  animation: fu 0.6s 2.7s ease forwards;
}
.h-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--brand);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

/* split word reveal */
.h1w {
  font-family: "DM Serif Display", serif;
  font-size: clamp(44px, 6.5vw, 96px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.h1w .w {
  display: inline-block;
  opacity: 0;
  transform: translateY(56px);
  animation: wordUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.h1w .w.it {
  font-style: italic;
  color: var(--brand);
}
@keyframes wordUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.h-sub {
  font-size: 17px;
  color: #555;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 44px;
  opacity: 0;
  transform: translateY(16px);
  animation: fu 0.6s 3.4s ease forwards;
   margin-left: auto;
  margin-right: auto;
}
.h-act {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  animation: fu 0.6s 3.6s ease forwards;
    justify-content: center;
  align-items: center;
}
@keyframes fu {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.h-stats {
  position: absolute;
  right: 60px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  z-index: 2;
  opacity: 0;
  transform: translateX(24px);
  animation: fr 0.7s 3.8s ease forwards;
}
@keyframes fr {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.stat-n {
  font-family: "DM Serif Display", serif;
  font-size: 40px;
  color: var(--brand);
  line-height: 1;
}
.stat-l {
  font-size: 10px;
  font-weight: 700;
  color: var(--mu);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}
.stat {
  text-align: right;
}

/* ── BUTTONS ── */
.btn {
  background: var(--brand);
  color: var(--w);
  text-decoration: none;
  padding: 15px 36px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 2px solid var(--brand);
  display: inline-block;
  cursor: pointer;
  font-family: "Outfit", sans-serif;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.btn span {
  position: relative;
  z-index: 1;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--w);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
  z-index: 0;
}
.btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.btn:hover {
  color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(49, 24, 54, 0.18);
}
.btn-o {
  color: var(--brand);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(49, 24, 54, 0.3);
  transition:
    gap 0.3s,
    border-color 0.3s;
  white-space: nowrap;
}
.btn-o:hover {
  gap: 18px;
  border-color: var(--brand);
}

/* ── MARQUEE ── */
.mq {
  background: var(--brand);
  padding: 15px 0;
  overflow: hidden;
}
.mq-track {
  display: flex;
  animation: mq 28s linear infinite;
  width: max-content;
}
.mq-track:hover {
  animation-play-state: paused;
}
.mq-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 36px;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.mq-item:hover {
  color: var(--acc);
}
.mq-item::before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--acc);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes mq {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ── SECTION SHARED ── */
.sl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.sl::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--brand);
  flex-shrink: 0;
}
.st {
  font-family: "DM Serif Display", serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  color: #1a1a2e;
  letter-spacing: -0.01em;
}
.st em {
  font-style: italic;
  color: var(--brand);
}
.sh {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 24px;
}

/* ── SERVICES ── */
.services {
  padding: 100px 60px;
  background: var(--off);
}
.sg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.sc {
  background: var(--w);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.4s;
}
.sc::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.sc:hover::before {
  transform: scaleX(1);
}
.sc:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(49, 24, 54, 0.12);
  z-index: 1;
}
/* spotlight effect */
.sc::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--mx, 50%) var(--my, 50%),
    rgba(49, 24, 54, 0.05) 0%,
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.sc:hover::after {
  opacity: 1;
}
.sc-num {
  font-family: "DM Serif Display", serif;
  font-size: 64px;
  color: rgba(49, 24, 54, 0.06);
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
  transition:
    color 0.4s,
    transform 0.4s;
}
.sc:hover .sc-num {
  color: rgba(49, 24, 54, 0.1);
  transform: scale(1.08);
}
.sc-icon {
  width: 48px;
  height: 48px;
  background: rgba(49, 24, 54, 0.06);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition:
    background 0.3s,
    transform 0.3s;
}
.sc:hover .sc-icon {
  background: var(--brand);
  transform: rotate(-6deg) scale(1.05);
}
.sc-icon svg {
  stroke: var(--brand);
  transition: stroke 0.3s;
}
.sc:hover .sc-icon svg {
  stroke: #fff;
}
.sc h3 {
  font-family: "DM Serif Display", serif;
  font-size: 24px;
  color: #1a1a2e;
  margin-bottom: 14px;
  line-height: 1.2;
}
.sc p {
  font-size: 14px;
  color: #666;
  line-height: 1.75;
  margin-bottom: 24px;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}
.tg {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(49, 24, 54, 0.06);
  padding: 5px 11px;
  border-radius: 2px;
  white-space: nowrap;
  transition: background 0.3s;
}
.sc:hover .tg {
  background: rgba(49, 24, 54, 0.1);
}
.vw {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  border: none;
  border-bottom: 1px solid rgba(49, 24, 54, 0.25);
  padding-bottom: 2px;
  transition:
    gap 0.3s,
    border-color 0.3s;
  background: none;
  cursor: pointer;
  font-family: "Outfit", sans-serif;
}
.vw:hover {
  gap: 14px;
  border-color: var(--brand);
}

/* ── PROCESS ── */
.process {
  padding: 100px 60px;
  background: var(--w);
}
.ps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}
.ps::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--brand), transparent);
  opacity: 0.2;
}
.step {
  padding: 0 24px;
  text-align: center;
}
.step-dot {
  width: 60px;
  height: 60px;
  background: var(--w);
  border: 2px solid var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: "DM Serif Display", serif;
  font-size: 20px;
  color: var(--brand);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 1;
}
.step:hover .step-dot {
  background: var(--brand);
  color: #fff;
  transform: scale(1.15);
  box-shadow: 0 8px 24px rgba(49, 24, 54, 0.25);
}
.step h4 {
  font-family: "DM Serif Display", serif;
  font-size: 18px;
  color: #1a1a2e;
  margin-bottom: 10px;
}
.step p {
  font-size: 13px;
  color: #777;
  line-height: 1.7;
}

/* ── WHY ── */
.why {
  padding: 100px 60px;
  background: var(--brand);
  position: relative;
  overflow: hidden;
}
/* why bg orbs - CSS only */
.why-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.wo1 {
  width: 500px;
  height: 500px;
  top: -180px;
  right: -100px;
  background: rgba(255, 255, 255, 0.03);
  animation: spin1 22s linear infinite;
}
.wo2 {
  width: 300px;
  height: 300px;
  bottom: -80px;
  left: -60px;
  background: rgba(232, 201, 184, 0.04);
  animation: spin1 15s linear infinite reverse;
}
@keyframes spin1 {
  to {
    transform: rotate(360deg);
  }
}
.why .sl {
  color: var(--acc);
}
.why .sl::before {
  background: var(--acc);
}
.why .st {
  color: #fff;
}
.why .st em {
  color: var(--acc);
}
.wg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
  align-items: start;
}
.wf {
  display: flex;
  flex-direction: column;
}
.wfi {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: padding-left 0.3s;
}
.wfi:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.wfi:hover {
  padding-left: 10px;
}
.wfi-ic {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.3s,
    transform 0.3s;
}
.wfi:hover .wfi-ic {
  background: rgba(232, 201, 184, 0.2);
  transform: rotate(-5deg);
}
.wfi-ic svg {
  stroke: var(--acc);
}
.wfi h4 {
  font-family: "DM Serif Display", serif;
  font-size: 19px;
  color: #fff;
  margin-bottom: 8px;
}
.wfi p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}
.wcard {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 36px;
  backdrop-filter: blur(10px);
  transition:
    transform 0.4s,
    box-shadow 0.4s;
}
.wcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}
.wc-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.wc-av {
  width: 48px;
  height: 48px;
  background: var(--acc);
  border-radius: 50%;
  flex-shrink: 0;
}
.wc-name {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
.wc-sub {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  margin-top: 2px;
}
.wc-q {
  font-family: "DM Serif Display", serif;
  font-size: 20px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin-bottom: 24px;
}
.stars {
  color: var(--acc);
  font-size: 17px;
  letter-spacing: 2px;
}
.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.mb {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  padding: 16px;
  text-align: center;
  transition:
    background 0.3s,
    transform 0.3s;
}
.mb:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}
.mv {
  font-family: "DM Serif Display", serif;
  font-size: 28px;
  color: var(--acc);
  line-height: 1;
}
.ml {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* ── MODAL ── */
.mo {
  position: fixed;
  inset: 0;
  background: rgba(13, 9, 16, 0.88);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
  backdrop-filter: blur(8px);
  padding: 16px;
}
.mo.open {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: var(--w);
  width: 100%;
  max-width: 1100px;
  max-height: 92vh;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(40px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.34, 1.3, 0.64, 1);
}
.mo.open .modal {
  transform: translateY(0) scale(1);
}
.mh {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 44px;
  border-bottom: 1px solid var(--brd);
  flex-shrink: 0;
  gap: 16px;
}
.mhl {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}
.mic {
  width: 44px;
  height: 44px;
  background: rgba(49, 24, 54, 0.06);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mt {
  font-family: "DM Serif Display", serif;
  font-size: clamp(18px, 3vw, 26px);
  color: #1a1a2e;
}
.ms {
  font-size: 12px;
  color: var(--mu);
  margin-top: 2px;
}
.mc-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--brd);
  border-radius: 2px;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  flex-shrink: 0;
}
.mc-btn:hover {
  background: var(--brand);
  border-color: var(--brand);
  transform: rotate(90deg);
}
.mc-btn svg {
  stroke: #1a1a2e;
  transition: stroke 0.25s;
}
.mc-btn:hover svg {
  stroke: #fff;
}
.mb-wrap {
  overflow-y: auto;
  padding: 40px 44px;
  flex: 1;
  -webkit-overflow-scrolling: touch;
}
.pg {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.pc {
  border: 1px solid var(--brd);
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.35s,
    border-color 0.35s;
}
.pc:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(49, 24, 54, 0.14);
  border-color: rgba(49, 24, 54, 0.2);
}
.piw {
  overflow: hidden;
}
.pi {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  background: #f0eaf5;
  transition: transform 0.5s ease;
}
.pc:hover .pi {
  transform: scale(1.05);
}
.pinfo {
  padding: 24px;
}
.pcat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 8px;
}
.pinfo h4 {
  font-family: "DM Serif Display", serif;
  font-size: 20px;
  color: #1a1a2e;
  margin-bottom: 8px;
  line-height: 1.2;
}
.pinfo p {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 16px;
}
.pstats {
  display: flex;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--brd);
  flex-wrap: wrap;
}
.psv {
  font-family: "DM Serif Display", serif;
  font-size: 20px;
  color: var(--brand);
}
.psl {
  font-size: 10px;
  font-weight: 600;
  color: var(--mu);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}
.cs {
  display: none;
}
.cs.on {
  display: block;
}
.pl {
  display: block;
}
.pl.off {
  display: none;
}
.c-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  background: none;
  border: none;
  cursor: pointer;
  margin-bottom: 32px;
  font-family: "Outfit", sans-serif;
  transition: gap 0.3s;
}
.c-back:hover {
  gap: 14px;
}
.c-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 3px;
  margin-bottom: 40px;
  background: #f0eaf5;
}
.cl {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
}
.cl-main h2 {
  font-family: "DM Serif Display", serif;
  font-size: 32px;
  color: #1a1a2e;
  margin-bottom: 6px;
}
.cl-main .cc {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 24px;
}
.cl-main h5 {
  font-family: "DM Serif Display", serif;
  font-size: 17px;
  color: #1a1a2e;
  margin-bottom: 10px;
  margin-top: 28px;
}
.cl-main p {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
}
.cl-side {
  border-left: 1px solid var(--brd);
  padding-left: 36px;
}
.cl-side h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mu);
  margin-bottom: 12px;
}
.cl-side .sv {
  margin-bottom: 24px;
}
.rg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}
.rb {
  background: var(--off);
  border: 1px solid var(--brd);
  padding: 16px;
  border-radius: 2px;
  text-align: center;
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.rb:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
}
.rv {
  font-family: "DM Serif Display", serif;
  font-size: 24px;
  color: var(--brand);
}
.rl {
  font-size: 10px;
  font-weight: 600;
  color: var(--mu);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ── CONTACT ── */
.contact {
  padding: 100px 60px;
  background: var(--off);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -200px;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(49, 24, 54, 0.04), transparent 70%);
  pointer-events: none;
  animation: blob2 14s ease-in-out infinite;
}
.cl2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.ci h2 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(32px, 4vw, 52px);
  color: #1a1a2e;
  line-height: 1.1;
  margin-bottom: 20px;
}
.ci h2 em {
  font-style: italic;
  color: var(--brand);
}
.ci > p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 40px;
}
.cd {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cdi {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.3s;
}
.cdi:hover {
  transform: translateX(6px);
}
.cdi-ic {
  width: 44px;
  height: 44px;
  background: rgba(49, 24, 54, 0.06);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
}
.cdi:hover .cdi-ic {
  background: var(--brand);
}
.cdi:hover .cdi-ic svg {
  stroke: #fff;
}
.cdi-ic svg {
  stroke: var(--brand);
  transition: stroke 0.3s;
}
.cdi .dl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mu);
}
.cdi .dv {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
  margin-top: 2px;
}
.cf {
  background: var(--w);
  border: 1px solid var(--brd);
  border-radius: 4px;
  padding: 44px 40px;
  box-shadow: 0 8px 40px rgba(49, 24, 54, 0.06);
  transition: box-shadow 0.4s;
  position: relative;
  overflow: hidden;
}
.cf:hover {
  box-shadow: 0 16px 60px rgba(49, 24, 54, 0.1);
}
.cf h3 {
  font-family: "DM Serif Display", serif;
  font-size: 24px;
  color: #1a1a2e;
  margin-bottom: 32px;
}
.fr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.fg {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}
.fg:last-of-type {
  margin-bottom: 0;
}
.fg label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a1a2e;
}
.fg input,
.fg select,
.fg textarea {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  color: #1a1a2e;
  background: var(--w);
  border: 1.5px solid rgba(49, 24, 54, 0.15);
  border-radius: 2px;
  padding: 13px 16px;
  outline: none;
  transition:
    border-color 0.3s,
    box-shadow 0.3s,
    transform 0.2s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(49, 24, 54, 0.07);
  transform: translateY(-1px);
}
.fg select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23311836' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.fg textarea {
  resize: vertical;
  min-height: 120px;
}
.fg input::placeholder,
.fg textarea::placeholder {
  color: #bbb;
}
.fsub {
  width: 100%;
  background: var(--brand);
  color: #fff;
  border: 2px solid var(--brand);
  padding: 16px;
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.fsub span,
.fsub svg {
  position: relative;
  z-index: 1;
  transition:
    color 0.35s,
    stroke 0.35s;
}
.fsub::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s;
}
.fsub:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.fsub:hover {
  color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(49, 24, 54, 0.15);
}
.fsub:hover span {
  color: var(--brand);
}
.fsub:active {
  transform: scale(0.98);
}

/* ── SUCCESS ── */
.success-ov {
  display: none;
  position: absolute;
  inset: 0;
  background: var(--w);
  z-index: 10;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px;
  text-align: center;
  animation: fadeIn 0.4s ease;
}
.success-ov.show {
  display: flex;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.ck-wrap {
  width: 86px;
  height: 86px;
  margin: 0 auto 24px;
  animation: ckIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes ckIn {
  from {
    transform: scale(0) rotate(-90deg);
    opacity: 0;
  }
  to {
    transform: scale(1) rotate(0);
    opacity: 1;
  }
}
.ck-ring {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: rgba(49, 24, 54, 0.05);
  border: 1.5px solid rgba(49, 24, 54, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ck-path {
  stroke: var(--brand);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  stroke-dasharray: 56;
  stroke-dashoffset: 56;
  animation: ckDraw 0.6s 0.4s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
@keyframes ckDraw {
  to {
    stroke-dashoffset: 0;
  }
}

.suc-title {
  font-family: "DM Serif Display", serif;
  font-size: 26px;
  color: #1a1a2e;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(14px);
  animation: fu 0.5s 0.8s ease forwards;
}
.suc-msg {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto 24px;
  opacity: 0;
  transform: translateY(14px);
  animation: fu 0.5s 1s ease forwards;
}

.suc-pills {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(14px);
  animation: fu 0.5s 1.1s ease forwards;
}
.sp {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(49, 24, 54, 0.05);
  border: 1px solid rgba(49, 24, 54, 0.1);
  color: var(--brand);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 30px;
}
.sp svg {
  stroke: var(--brand);
  flex-shrink: 0;
}

.suc-div {
  width: 50px;
  height: 1px;
  background: var(--brd);
  margin: 0 auto 22px;
  opacity: 0;
  animation: fu 0.5s 1.2s ease forwards;
}

.suc-next {
  opacity: 0;
  transform: translateY(14px);
  animation: fu 0.5s 1.3s ease forwards;
  width: 100%;
  max-width: 320px;
}
.suc-next p {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mu);
  margin-bottom: 12px;
}
.suc-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}
.suc-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  background: var(--off);
  border-radius: 2px;
  border: 1px solid var(--brd);
  font-size: 13px;
  color: #444;
  font-weight: 500;
}
.suc-sn {
  width: 22px;
  height: 22px;
  background: var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.suc-reset {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mu);
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Outfit", sans-serif;
  transition: color 0.3s;
  opacity: 0;
  animation: fu 0.5s 1.5s ease forwards;
}
.suc-reset:hover {
  color: var(--brand);
}

/* ── CONFETTI ── */
#cvc {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  display: none;
}
#cvc.on {
  display: block;
}

/* ── CTA ── */
.cta {
  padding: 130px 60px;
  background: var(--w);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(49, 24, 54, 0.04), transparent 70%);
  pointer-events: none;
  animation: blob1 16s ease-in-out infinite;
}
.cta .sl {
  justify-content: center;
}
.cta h2 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.1;
  color: #1a1a2e;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.cta h2 em {
  font-style: italic;
  color: var(--brand);
}
.cta p {
  font-size: 16px;
  color: #666;
  max-width: 480px;
  margin: 0 auto 44px;
  line-height: 1.7;
}
.cta-act {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
footer {
  background: #0e0b12;
  padding: 80px 60px 40px;
}
.ft {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}
.fb img {
  height: 52px;
  margin-bottom: 18px;
}
.fb p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
  max-width: 260px;
}
.fc h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 18px;
}
.fc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fc ul li a {
  text-decoration: none;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  transition:
    color 0.3s,
    padding-left 0.2s;
  display: block;
}
.fc ul li a:hover {
  color: rgba(255, 255, 255, 0.8);
  padding-left: 4px;
}
.fbot {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.fbot p {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.04em;
}
.fsoc {
  display: flex;
  gap: 12px;
}
.soc {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  text-decoration: none;
}
.soc:hover {
  border-color: var(--acc);
  background: rgba(232, 201, 184, 0.08);
  transform: translateY(-2px);
}
.soc svg {
  stroke: rgba(255, 255, 255, 0.4);
  transition: stroke 0.3s;
}
.soc:hover svg {
  stroke: var(--acc);
}

/* ── SCROLL REVEAL ── */
.ru {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.rl2 {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.rr {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.rs {
  opacity: 0;
  transform: scale(0.92);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.34, 1.3, 0.64, 1);
}
.ru.v,
.rl2.v,
.rr.v,
.rs.v {
  opacity: 1;
  transform: none;
}
.ru:nth-child(2) {
  transition-delay: 0.1s;
}
.ru:nth-child(3) {
  transition-delay: 0.2s;
}
.ru:nth-child(4) {
  transition-delay: 0.3s;
}
.ru:nth-child(5) {
  transition-delay: 0.4s;
}
.ru:nth-child(6) {
  transition-delay: 0.5s;
}

/* ── SHAKE ── */
@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-6px);
  }
  40% {
    transform: translateX(6px);
  }
  60% {
    transform: translateX(-4px);
  }
  80% {
    transform: translateX(4px);
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav {
    padding: 16px 32px;
  }
  .hero {
    padding: 110px 32px 70px;
  }
  .h-stats {
    right: 32px;
    bottom: 60px;
  }
  .h-line {
    display: none;
  }
  .services,
  .process,
  .why,
  .contact,
  .cta {
    padding-left: 32px;
    padding-right: 32px;
  }
  .sg {
    grid-template-columns: repeat(2, 1fr);
  }
  .ft {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  footer {
    padding: 64px 32px 36px;
  }
}
@media (max-width: 768px) {
  nav {
    padding: 14px 20px;
  }
  .nav-links {
    display: none;
  }
  .ham {
    display: flex;
  }
  .hero {
    padding: 100px 20px 60px;
    min-height: auto;
  }
  .blob-1 {
    width: 220px;
    height: 220px;
  }
  .blob-2 {
    width: 160px;
    height: 160px;
  }
  .blob-3 {
    display: none;
  }
  .h-stats {
    display: none;
  }
  .h-line {
    display: none;
  }
  .h1w {
    font-size: clamp(36px, 10vw, 52px);
  }
  .h-sub {
    font-size: 15px;
  }
  .h-act {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .mq-item {
    padding: 0 20px;
    font-size: 10px;
  }
  .sh {
    flex-direction: column;
    align-items: flex-start;
  }
  .services {
    padding: 64px 20px;
  }
  .sg {
    grid-template-columns: 1fr;
  }
  .sc {
    padding: 36px 28px;
  }
  .process {
    padding: 64px 20px;
  }
  .ps {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .ps::before {
    display: none;
  }
  .step {
    padding: 0;
  }
  .why {
    padding: 64px 20px;
  }
  .wg {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .contact {
    padding: 64px 20px;
  }
  .cl2 {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .cf {
    padding: 28px 22px;
  }
  .fr {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
  }
  .cta {
    padding: 80px 20px;
  }
  .cta-act {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .cta-act .btn,
  .cta-act .btn-o {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  footer {
    padding: 52px 20px 28px;
  }
  .ft {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .fbot {
    flex-direction: column;
    align-items: flex-start;
  }
  .mo {
    padding: 0;
    align-items: flex-end;
  }
  .modal {
    max-height: 95vh;
    border-radius: 12px 12px 0 0;
  }
  .mh {
    padding: 20px;
  }
  .mb-wrap {
    padding: 20px;
  }
  .pg {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .cl {
    grid-template-columns: 1fr;
  }
  .cl-side {
    border-left: none;
    border-top: 1px solid var(--brd);
    padding-left: 0;
    padding-top: 28px;
    margin-top: 28px;
  }
  .c-img {
    height: 200px;
    margin-bottom: 28px;
  }
  .suc-pills {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 480px) {
  .h1w {
    font-size: clamp(32px, 11vw, 44px);
  }
  .st {
    font-size: clamp(26px, 8vw, 36px);
  }
  .sc {
    padding: 28px 22px;
  }
  .ps {
    grid-template-columns: 1fr;
  }
  .ft {
    grid-template-columns: 1fr 1fr;
  }
}
/* ===== FIX UNDERLINE (SAFE) ===== */
.pc,
.pc * {
  text-decoration: none !important;
  color: inherit;
}

/* ===== PREMIUM HOVER ===== */
.pc {
  position: relative;
  transition: 
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.pc:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 40px 100px rgba(49, 24, 54, 0.18);
}

.pc:hover .pi {
  transform: scale(1.08);
}

.pc .pinfo h4 {
  transition: transform 0.4s ease;
}

.pc:hover .pinfo h4 {
  transform: translateY(-2px);
}

.pc::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(232, 201, 184, 0.15), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.pc:hover::after {
  opacity: 1;
}