:root {
  --cream: #ebdab3;
  --cream2: #f5eed9;
  --cream3: #ddd0a8;
  --rose: #c75170;
  --indigo: #5c61f3;
  --forest: #2b3a04;
  --mid: #7a6555;
  --grad-hero: linear-gradient(135deg, #0a0a0a 0%, #141414 55%, #1e1e1e 100%);
  --grad-indigo: linear-gradient(135deg, #0d0e2e 0%, #2a2d6b 55%, #5c61f3 100%);
  --grad-forest: linear-gradient(135deg, #1a2402 0%, #2b3a04 55%, #3d5206 100%);
  --grad-cream: linear-gradient(135deg, #3d2e0a 0%, #7a5c1e 55%, #ddd0a8 100%);
  --font-head: "Archivo Black", sans-serif;
  --font-disp: "Playfair Display", Georgia, serif;
  --font-body: "Nunito Sans", system-ui, sans-serif;
  --font-rotator: "Cormorant Garamond", "Playfair Display", Georgia, serif;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--cream2);
  color: #1a1208;
  overflow-x: hidden;
}
a {
  text-decoration: none;
}
ul {
  list-style: none;
}
img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1.1;
}

/* ── CURSOR GLOW ── */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(199, 81, 112, 0.14) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
  will-change: transform;
}

/* ── MOB OVERLAY ── */
.mob-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 299;
  background: var(--grad-indigo);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.mob-overlay.open {
  display: flex;
  animation: mobIn 0.3s ease forwards;
}
@keyframes mobIn {
  from {
    opacity: 0;
    transform: scale(0.97);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.mob-overlay a {
  font-family: var(--font-head);
  font-size: 28px;
  color: var(--cream);
  transition:
    color 0.2s,
    transform 0.2s;
}
.mob-overlay a:hover {
  color: var(--rose);
  transform: translateX(6px);
}
.mob-overlay .mob-book {
  background: var(--rose);
  color: #fff;
  padding: 12px 32px;
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: 13px;
  margin-top: 8px;
}
.mob-x {
  position: absolute;
  top: 26px;
  right: 30px;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 24px;
  cursor: pointer;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  justify-content: center;
  padding: 0 60px;
  transition:
    background 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}
nav.scrolled {
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(235, 218, 179, 0.1);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.28);
}
.nav-inner {
  width: 100%;
  max-width: 2000px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  transition: padding 0.4s ease;
  margin: 0 auto;
}
nav.scrolled .nav-inner {
  padding: 10px 24px;
}
.softlife {
  height: 60px;
  width: 120px;
  flex-shrink: 0;
  object-fit: contain;
}
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--rose);
  transition: width 0.25s ease;
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-links a:hover {
  color: #fff;
}
nav.scrolled .nav-links a {
  color: rgba(255, 255, 255, 0.7);
}
nav.scrolled .nav-links a:hover {
  color: #fff;
}
nav.scrolled .ham span {
  background: #fff;
}
nav.scrolled .nav-btn {
  background: var(--rose);
  color: #fff;
}
.nav-btn {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #1a1208;
  background: var(--cream);
  padding: 10px 22px;
  border-radius: 100px;
  transition: all 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}
.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  flex-shrink: 0;
}
.ham span {
  width: 22px;
  height: 1.5px;
  background: #fff;
  display: block;
  border-radius: 2px;
  transition: 0.3s;
}

/* ── HERO ── */
.hero {
  background: var(--grad-hero);
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(199, 81, 112, 0.09) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 1;
  animation: heroOrb 8s ease-in-out infinite alternate;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: 5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(235, 218, 179, 0.05) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 1;
  animation: heroOrb 10s ease-in-out infinite alternate-reverse;
}
@keyframes heroOrb {
  from {
    transform: scale(1) translate(0, 0);
  }
  to {
    transform: scale(1.15) translate(20px, -20px);
  }
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 60px 100px 60px;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgb(252, 250, 247);
  margin-bottom: 40px;
  animation: heroSlideIn 0.9s ease 0.1s both;
}
.hero-eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--rose);
  flex-shrink: 0;
}
.hero-pre {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: rgb(246, 246, 246);
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  animation: heroSlideIn 0.9s ease 0.25s both;
}
.rotator {
  animation: heroSlideIn 0.9s ease 0.4s both;
}
.hero-body {
  animation: heroSlideIn 0.9s ease 0.55s both;
}
.hero-ctas {
  animation: heroSlideIn 0.9s ease 0.7s both;
}
.hero-stats {
  animation: heroSlideIn 0.9s ease 0.85s both;
}
@keyframes heroSlideIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── ROTATOR ── */
.rotator {
  position: relative;
  height: clamp(52px, 7.5vw, 104px);
  margin-bottom: 36px;
}
.rotator-item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  font-family: var(--font-rotator);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(30px, 5vw, 86px);
  color: var(--cream);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(10px);
  transition: none;
  letter-spacing: 0.01em;
  line-height: 1.05;
}
.rotator-item.active {
  animation: fadeIn 0.6s ease forwards;
}
.rotator-item.leaving {
  animation: fadeOut 0.5s ease forwards;
}
.rotator-item b {
  font-family: var(--font-rotator);
  font-style: italic;
  font-weight: 600;
  color: var(--rose);
  margin-right: 0.12em;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-12px);
  }
}

.hero-body {
  font-size: 15px;
  line-height: 1.85;
  font-weight: 300;
  color: rgb(226, 225, 222);
  max-width: 400px;
  margin-bottom: 48px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.btn-rose {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--rose);
  color: #fff;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  box-shadow: 0 8px 28px rgba(199, 81, 112, 0.3);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-rose::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn-rose:hover::after {
  transform: translateX(0);
}
.btn-rose:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(199, 81, 112, 0.45);
}
.btn-rose svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.btn-ghost {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgb(247, 245, 240);
  border-bottom: 1px solid rgba(235, 218, 179, 0.18);
  padding-bottom: 2px;
  transition: all 0.25s;
  white-space: nowrap;
}
.btn-ghost:hover {
  color: var(--cream);
  border-color: var(--cream);
}
.hero-stats {
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid rgba(235, 218, 179, 0.08);
  display: flex;
  gap: 44px;
}
.stn {
  font-family: var(--font-head);
  font-size: 36px;
  color: var(--cream);
  line-height: 1;
}
.stl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(235, 218, 179, 0.28);
  margin-top: 4px;
}

/* ── HERO RIGHT ── */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  z-index: 2;
  animation: heroSlideIn 1s ease 0.5s both;
}
.hero-right::before {
  display: none;
}
.hero-right > img {
  position: relative;
  inset: unset;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  opacity: 1;
  border: 2px solid rgba(235, 218, 179, 0.15);
  box-shadow:
    0 0 0 12px rgba(199, 81, 112, 0.06),
    0 32px 80px rgba(0, 0, 0, 0.55);
  flex-shrink: 0;
  transition:
    transform 0.6s ease,
    box-shadow 0.6s ease;
}
.hero-right > img:hover {
  transform: scale(1.03);
  box-shadow:
    0 0 0 18px rgba(199, 81, 112, 0.09),
    0 40px 90px rgba(0, 0, 0, 0.65);
}

/* Hero chips floating */
.hchip {
  position: absolute;
  z-index: 3;
  background: rgba(235, 218, 179, 0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(235, 218, 179, 0.12);
  padding: 14px 18px;
  border-radius: 10px;
}
.hchip.c1 {
  bottom: calc(50% - 220px);
  left: calc(50% - 240px);
  animation: chipFloat1 5s ease-in-out infinite;
}
.hchip.c2 {
  top: calc(50% - 220px);
  right: calc(50% - 260px);
  animation: chipFloat2 6s ease-in-out infinite;
}
@keyframes chipFloat1 {
  0%,
  100% {
    transform: translateY(0px) rotate(-1deg);
  }
  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}
@keyframes chipFloat2 {
  0%,
  100% {
    transform: translateY(0px) rotate(1deg);
  }
  50% {
    transform: translateY(-12px) rotate(-1deg);
  }
}
.hc-lbl {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(235, 218, 179, 0.35);
  margin-bottom: 3px;
}
.hc-val {
  font-family: var(--font-head);
  font-size: 16px;
  color: var(--cream);
}
.hc-stars {
  color: var(--rose);
  font-size: 12px;
  margin-top: 3px;
  letter-spacing: 2px;
}

/* ── TICKER ── */
.ticker {
  background: var(--rose);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
}
.ticker-inner {
  display: inline-flex;
  animation: tk 30s linear infinite;
}
.ticker:hover .ticker-inner {
  animation-play-state: paused;
}
.tick {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 36px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  flex-shrink: 0;
  transition: color 0.2s;
}
.tick:hover {
  color: #fff;
}
.tick::before {
  content: "◆";
  font-size: 6px;
  color: rgba(255, 255, 255, 0.4);
}
@keyframes tk {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ── SECTIONS ── */
section {
  padding: 100px 60px;
}
.tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tag::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--rose);
  flex-shrink: 0;
}
.tag.lt {
  color: rgba(235, 218, 179, 0.4);
}
.tag.lt::after {
  background: rgba(235, 218, 179, 0.3);
}
h2.stitle {
  font-size: clamp(28px, 4vw, 50px);
  color: #1a1208;
  margin-bottom: 16px;
}
h2.stitle em {
  font-family: var(--font-disp);
  font-style: italic;
  font-weight: 400;
  color: var(--rose);
}
h2.stitle.lt {
  color: var(--cream);
}
h2.stitle.lt em {
  color: rgba(235, 218, 179, 0.55);
}
.bodytxt {
  font-size: 15px;
  line-height: 1.8;
  color: var(--mid);
  font-weight: 300;
  max-width: 500px;
}
.bodytxt.lt {
  color: rgba(235, 218, 179, 0.45);
}

/* ── SERVICES ── */
.services {
  background: var(--cream2);
}
.svc-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 48px;
  margin-bottom: 56px;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Card tilt needs perspective on the grid */
.svc-grid {
  perspective: 1200px;
}

.scard {
  display: block;
  color: inherit;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(44, 24, 16, 0.06);
  border: 1px solid rgba(44, 24, 16, 0.05);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
.scard:hover {
  box-shadow: 0 20px 56px rgba(44, 24, 16, 0.12);
}

.scard-img {
  width: 100%;
  height: 260px;
  overflow: hidden;
  position: relative;
}
.scard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.scard:hover .scard-img img {
  transform: scale(1.06);
}
.scard-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 18, 8, 0.45) 0%,
    transparent 55%
  );
}
.scard-no-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--rose);
  color: #fff;
  font-family: var(--font-head);
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.06em;
}
.scard-body {
  padding: 24px 26px 28px;
}
.scard-em {
  font-size: 22px;
  margin-bottom: 10px;
  display: block;
  transition: transform 0.3s ease;
}
.scard:hover .scard-em {
  transform: scale(1.15) rotate(-5deg);
}
.scard-name {
  font-family: var(--font-head);
  font-size: 17px;
  color: #1a1208;
  margin-bottom: 8px;
}
.scard-desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--mid);
  font-weight: 300;
  margin-bottom: 18px;
}
.scard-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  color: var(--rose);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s;
}
.scard:hover .scard-link {
  gap: 10px;
}

/* ── HOW ── */
.how {
  background: var(--grad-forest);
  position: relative;
  overflow: hidden;
}
.how::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(235, 218, 179, 0.05) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(235, 218, 179, 0.05);
  border: 1px solid rgba(235, 218, 179, 0.06);
  margin-top: 64px;
}
.hstep {
  padding: 48px 32px;
  background: transparent;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.hstep::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--rose);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
  opacity: 0.06;
}
.hstep:hover::before {
  transform: scaleY(1);
}
.hstep:hover {
  background: rgba(235, 218, 179, 0.04);
}
.hstep-no {
  font-family: var(--font-head);
  font-size: 52px;
  color: rgba(235, 218, 179, 0.07);
  line-height: 1;
  margin-bottom: 18px;
  display: block;
  transition: color 0.3s;
}
.hstep:hover .hstep-no {
  color: rgba(199, 81, 112, 0.2);
}
.hstep-title {
  font-family: var(--font-head);
  font-size: 18px;
  color: var(--cream);
  margin-bottom: 10px;
}
.hstep-body {
  font-size: 13.5px;
  line-height: 1.8;
  color: rgba(235, 218, 179, 0.38);
  font-weight: 300;
}

/* ── WHY ── */
.why {
  background: var(--cream);
  padding: 100px 60px;
}
.why-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.why-imgs {
  position: relative;
  height: 520px;
}
.wi-a {
  position: absolute;
  top: 0;
  left: 0;
  width: 78%;
  height: 420px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease;
}
.wi-a:hover {
  transform: translateY(-6px);
  box-shadow: 0 44px 90px rgba(0, 0, 0, 0.16);
}
.wi-b {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 220px;
  border-radius: 10px;
  overflow: hidden;
  border: 5px solid var(--cream);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease;
}
.wi-b:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.14);
}
.wi-a img,
.wi-b img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.wi-a:hover img,
.wi-b:hover img {
  transform: scale(1.05);
}
.why-badge {
  position: absolute;
  top: 42%;
  right: -14px;
  background: var(--rose);
  color: #fff;
  padding: 20px 24px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 16px 48px rgba(199, 81, 112, 0.35);
  animation: wob 5s ease-in-out infinite;
}
@keyframes wob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.wb-n {
  font-family: var(--font-head);
  font-size: 38px;
  display: block;
  line-height: 1;
}
.wb-l {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-top: 3px;
}
.why-list {
  margin-top: 36px;
}
.wi-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition:
    padding-left 0.25s,
    background 0.2s;
}
.wi-row:first-of-type {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.wi-row:hover {
  padding-left: 8px;
}
.wi-ico {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  flex-shrink: 0;
  background: rgba(199, 81, 112, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  margin-top: 2px;
  transition:
    background 0.3s,
    transform 0.3s;
}
.wi-row:hover .wi-ico {
  background: rgba(199, 81, 112, 0.15);
  transform: scale(1.1);
}
.wi-ttl {
  font-family: var(--font-head);
  font-size: 14px;
  color: #1a1208;
  margin-bottom: 3px;
}
.wi-dsc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--mid);
  font-weight: 300;
}

/* ── ARTISAN ── */
.artisan {
  background: var(--grad-hero);
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
}
.artisan::before {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(199, 81, 112, 0.1) 0%,
    transparent 65%
  );
  pointer-events: none;
  animation: heroOrb 9s ease-in-out infinite alternate;
}
.artisan::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(235, 218, 179, 0.06) 0%,
    transparent 65%
  );
  pointer-events: none;
  animation: heroOrb 12s ease-in-out infinite alternate-reverse;
}
.artisan .tag {
  color: rgba(235, 218, 179, 0.45);
}
.artisan .tag::after {
  background: rgba(235, 218, 179, 0.3);
}
.artisan h2.stitle {
  color: var(--cream);
}
.artisan h2.stitle em {
  color: var(--rose);
}
.artisan .bodytxt {
  color: rgba(235, 218, 179, 0.5);
}
.artisan-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.artisan-perks {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.artisan-perk {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(235, 218, 179, 0.08);
  transition: padding-left 0.25s;
}
.artisan-perk:first-child {
  border-top: 1px solid rgba(235, 218, 179, 0.08);
}
.artisan-perk:hover {
  padding-left: 8px;
}
.ap-ico {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(199, 81, 112, 0.15);
  border: 1px solid rgba(199, 81, 112, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  transition:
    background 0.3s,
    transform 0.3s;
}
.artisan-perk:hover .ap-ico {
  background: rgba(199, 81, 112, 0.25);
  transform: scale(1.1) rotate(-5deg);
}
.ap-ttl {
  font-family: var(--font-head);
  font-size: 14px;
  color: var(--cream);
  margin-bottom: 3px;
}
.ap-dsc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(235, 218, 179, 0.4);
  font-weight: 300;
}
.artisan-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
  background: var(--rose);
  color: #fff;
  padding: 15px 32px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  box-shadow: 0 8px 28px rgba(199, 81, 112, 0.35);
  width: fit-content;
  position: relative;
  overflow: hidden;
}
.artisan-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.artisan-cta:hover::after {
  transform: translateX(0);
}
.artisan-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(199, 81, 112, 0.5);
}

/* ── Artisan photo cards ── */
.artisan-imgs {
  position: relative;
  height: 560px;
}
.ai-card {
  position: absolute;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(235, 218, 179, 0.1);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}
.ai-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.6);
}
.ai-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.ai-card:hover img {
  transform: scale(1.05);
}
.ai-top {
  top: 0;
  left: 0;
  width: 62%;
  height: 330px;
}
.ai-mid {
  top: 90px;
  right: 0;
  width: 48%;
  height: 250px;
  z-index: 2;
}
.ai-bot {
  bottom: 0;
  left: 10%;
  width: 70%;
  height: 220px;
  z-index: 1;
}
.ai-badge {
  position: absolute;
  bottom: 12px;
  left: 14px;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(235, 218, 179, 0.15);
  color: var(--cream);
  font-family: var(--font-head);
  font-size: 10px;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 100px;
}

/* ── REVIEWS ── */
.reviews {
  background: var(--grad-indigo);
  position: relative;
  overflow: hidden;
}
.reviews::after {
  content: "";
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(235, 218, 179, 0.06) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.rv-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.rv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.rv-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px;
  border-radius: 10px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.rv-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: 20px;
  font-family: var(--font-disp);
  font-size: 120px;
  color: rgba(235, 218, 179, 0.04);
  line-height: 1;
  pointer-events: none;
}
.rv-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  border-color: rgba(199, 81, 112, 0.3);
}
.rv-stars {
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.rv-quote {
  font-family: var(--font-disp);
  font-size: 16px;
  font-style: italic;
  line-height: 1.7;
  color: rgba(235, 218, 179, 0.75);
  margin-bottom: 24px;
}
.rv-who {
  display: flex;
  align-items: center;
  gap: 10px;
}
.rv-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(199, 81, 112, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 14px;
  color: var(--cream);
  transition:
    background 0.3s,
    transform 0.3s;
}
.rv-card:hover .rv-av {
  background: rgba(199, 81, 112, 0.45);
  transform: scale(1.1);
}
.rv-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--cream);
}
.rv-role {
  font-size: 11.5px;
  color: rgba(235, 218, 179, 0.3);
  margin-top: 1px;
}
.stats-bar {
  display: flex;
  margin-top: 72px;
  border: 1px solid rgba(235, 218, 179, 0.08);
  border-radius: 8px;
  overflow: hidden;
}
.sb-i {
  flex: 1;
  padding: 36px 20px;
  text-align: center;
  border-right: 1px solid rgba(235, 218, 179, 0.08);
  transition: background 0.3s;
}
.sb-i:hover {
  background: rgba(235, 218, 179, 0.04);
}
.sb-i:last-child {
  border-right: none;
}
.sb-n {
  font-family: var(--font-head);
  font-size: 44px;
  color: var(--cream);
  display: block;
  line-height: 1;
}
.sb-l {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(235, 218, 179, 0.3);
  margin-top: 6px;
}

/* ── CTA ── */
.cta-wrap {
  background: var(--cream2);
  padding: 60px 60px 100px;
}
.cta-box {
  background: var(--grad-forest);
  padding: 80px 72px;
  border-radius: 12px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  position: relative;
  overflow: hidden;
}
.cta-box::after {
  content: "";
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(235, 218, 179, 0.04);
  pointer-events: none;
  animation: heroOrb 11s ease-in-out infinite alternate;
}
.cta-pre {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(235, 218, 179, 0.35);
  margin-bottom: 14px;
}
.cta-ttl {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.8vw, 48px);
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 14px;
}
.cta-ttl em {
  font-family: var(--font-disp);
  font-style: italic;
  font-weight: 400;
  color: rgba(235, 218, 179, 0.55);
}
.cta-sub {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(235, 218, 179, 0.5);
  font-weight: 300;
  max-width: 440px;
}
.cta-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.btn-wa {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 15px 30px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.3s;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.3);
  position: relative;
  overflow: hidden;
}
.btn-wa::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn-wa:hover::after {
  transform: translateX(0);
}
.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.45);
}
.btn-wa svg {
  width: 18px;
  height: 18px;
}
.btn-sm {
  font-size: 12px;
  font-weight: 600;
  color: rgba(235, 218, 179, 0.45);
  border-bottom: 1px solid rgba(235, 218, 179, 0.15);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.btn-sm:hover {
  color: var(--cream);
}

/* ── FOOTER ── */
footer {
  background: var(--grad-indigo);
  padding: 70px 60px 32px;
}
.foot-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(235, 218, 179, 0.08);
  margin-bottom: 28px;
}
.foot-logo {
  font-family: var(--font-head);
  font-size: 18px;
  color: var(--cream);
  display: block;
  margin-bottom: 14px;
}
.foot-logo em {
  font-style: normal;
  color: rgba(235, 218, 179, 0.4);
}
.foot-about {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(235, 218, 179, 0.3);
  font-weight: 300;
  max-width: 260px;
}
.fc h5 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(235, 218, 179, 0.25);
  margin-bottom: 20px;
}
.fc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.fc a {
  font-size: 14px;
  color: rgba(235, 218, 179, 0.3);
  font-weight: 300;
  transition:
    color 0.2s,
    padding-left 0.2s;
}
.fc a:hover {
  color: var(--cream);
  padding-left: 4px;
}
.fcontact div {
  display: flex;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(235, 218, 179, 0.3);
  font-weight: 300;
  margin-bottom: 9px;
}
.foot-bar {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(235, 218, 179, 0.2);
}
.foot-bar em {
  color: var(--rose);
  font-style: normal;
}

/* ── FLOAT WA ── */
.fwa {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 300;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s;
}
.fwa:hover {
  transform: scale(1.1);
}
.fwa svg {
  width: 23px;
  height: 23px;
}
.fwa::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid rgba(37, 211, 102, 0.3);
  animation: rp 2.5s ease-out infinite;
}
@keyframes rp {
  from {
    transform: scale(1);
    opacity: 0.5;
  }
  to {
    transform: scale(1.55);
    opacity: 0;
  }
}

/* ── AOS overrides — remove old .rv system ── */
[data-aos] {
  pointer-events: auto !important;
}

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */

@media (max-width: 1280px) {
  .hero-left {
    padding: 140px 40px 100px 40px;
  }
  .hero-right > img {
    width: 320px;
    height: 320px;
  }
  .why-wrap {
    gap: 60px;
  }
  .foot-top {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 32px;
  }
  .artisan-inner {
    gap: 56px;
  }
  .artisan-imgs {
    height: 500px;
  }
}

@media (max-width: 1060px) {
  nav {
    padding: 0 24px;
  }
  .nav-links,
  .nav-btn {
    display: none;
  }
  .ham {
    display: flex;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: 100vh;
  }
  .hero-left {
    padding: 90px 48px 70px;
    grid-column: 1;
    grid-row: 1;
  }
  .hero-right {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
  }
  .hero-right > img {
    position: relative;
    inset: unset;
    width: 60%;
    max-width: 480px;
    height: auto;
    aspect-ratio: 1;
    border-radius: 50%;
    object-fit: cover;
    opacity: 0.18;
    border: none;
    box-shadow: none;
    filter: blur(1px);
  }
  .hchip {
    display: none;
  }
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .svc-head {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 36px;
  }
  .scard-img {
    height: 240px;
  }
  .how-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-wrap {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .why-imgs {
    height: 380px;
  }
  .wi-a {
    width: 80%;
    height: 340px;
  }
  .wi-b {
    width: 50%;
    height: 220px;
  }
  .artisan-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .artisan-imgs {
    height: 420px;
    order: -1;
  }
  .ai-top {
    width: 58%;
    height: 290px;
  }
  .ai-mid {
    width: 46%;
    height: 220px;
    top: 70px;
  }
  .ai-bot {
    width: 65%;
    height: 200px;
    left: 8%;
  }
  .rv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-box {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 60px 48px;
  }
  .cta-btns {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .foot-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .cursor-glow {
    display: none;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 0 20px;
  }
  .hero-left {
    padding: 85px 28px 60px;
  }
  .rotator {
    height: auto;
    min-height: 52px;
    position: relative;
    margin-bottom: 28px;
  }
  .rotator-item {
    white-space: normal;
    font-size: clamp(32px, 8vw, 50px);
    line-height: 1.15;
    position: absolute;
    inset: 0;
  }
  .hero-right > img {
    width: 70%;
    opacity: 0.15;
  }
  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }
  section {
    padding: 72px 28px;
  }
  .why {
    padding: 72px 28px;
  }
  .artisan {
    padding: 72px 28px;
  }
  .cta-wrap {
    padding: 40px 28px 72px;
  }
  footer {
    padding: 52px 28px 28px;
  }
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .scard-img {
    height: 230px;
  }
  .how-grid {
    grid-template-columns: 1fr;
  }
  .hstep {
    padding: 32px 24px;
  }
  .why-imgs {
    height: 360px;
  }
  .wi-a {
    width: 85%;
    height: 300px;
  }
  .wi-b {
    width: 55%;
    height: 190px;
  }
  .why-badge {
    right: 0;
  }
  .artisan-imgs {
    height: 360px;
  }
  .ai-top {
    width: 60%;
    height: 260px;
  }
  .ai-mid {
    width: 48%;
    height: 200px;
    top: 60px;
  }
  .ai-bot {
    width: 68%;
    height: 180px;
  }
  .artisan-cta {
    width: 100%;
    justify-content: center;
  }
  .rv-grid {
    grid-template-columns: 1fr;
  }
  .rv-head {
    flex-direction: column;
  }
  .stats-bar {
    flex-wrap: wrap;
  }
  .sb-i {
    min-width: 50%;
  }
  .cta-box {
    padding: 44px 28px;
  }
  .cta-btns {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-wa,
  .btn-sm {
    text-align: center;
    justify-content: center;
  }
  .foot-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .foot-bar {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .nav-inner {
    padding: 12px 16px;
  }
  .hero-left {
    padding: 80px 20px 50px;
  }
  .hero-eyebrow {
    font-size: 11px;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
  }
  .hero-pre {
    font-size: 15px;
  }
  .rotator {
    height: auto;
    min-height: 60px;
    margin-bottom: 18px;
  }
  .rotator-item {
    font-size: clamp(35px, 10vw, 44px);
    white-space: normal;
    line-height: 1.2;
  }
  .hero-body {
    font-size: 15px;
    margin-bottom: 28px;
  }
  .btn-rose {
    padding: 12px 20px;
    font-size: 12px;
  }
  .btn-ghost {
    font-size: 12px;
  }
  .stn {
    font-size: 26px;
  }
  .stl {
    font-size: 10px;
  }
  .hero-stats {
    gap: 20px;
    margin-top: 40px;
    padding-top: 24px;
  }
  .hero-right > img {
    width: 85%;
    opacity: 0.12;
  }
  section {
    padding: 60px 20px;
  }
  .why {
    padding: 60px 20px;
  }
  .artisan {
    padding: 60px 20px;
  }
  .cta-wrap {
    padding: 32px 20px 60px;
  }
  footer {
    padding: 44px 20px 24px;
  }
  h2.stitle {
    font-size: clamp(22px, 6.5vw, 34px);
  }
  .svc-grid {
    grid-template-columns: 1fr;
  }
  .scard-img {
    height: 240px;
  }
  .scard-name {
    font-size: 15px;
  }
  .scard-desc {
    font-size: 13px;
  }
  .hstep-no {
    font-size: 40px;
  }
  .hstep-title {
    font-size: 16px;
  }
  .hstep-body {
    font-size: 13px;
  }
  .why-imgs {
    height: 320px;
  }
  .wi-a {
    width: 88%;
    height: 270px;
  }
  .wi-b {
    width: 58%;
    height: 170px;
  }
  .wb-n {
    font-size: 28px;
  }
  .why-badge {
    padding: 14px 16px;
  }
  .wi-ttl {
    font-size: 13px;
  }
  .wi-dsc {
    font-size: 12px;
  }
  .artisan-imgs {
    height: 320px;
  }
  .ai-top {
    width: 62%;
    height: 220px;
  }
  .ai-mid {
    width: 50%;
    height: 180px;
    top: 50px;
  }
  .ai-bot {
    width: 70%;
    height: 155px;
  }
  .ap-ttl {
    font-size: 13px;
  }
  .ap-dsc {
    font-size: 12px;
  }
  .artisan-cta {
    font-size: 12px;
    padding: 13px 24px;
  }
  .rv-card {
    padding: 24px 18px;
  }
  .rv-quote {
    font-size: 14px;
  }
  .rv-name {
    font-size: 12px;
  }
  .rv-role {
    font-size: 10px;
  }
  .sb-n {
    font-size: 34px;
  }
  .sb-i {
    padding: 24px 14px;
    min-width: 50%;
  }
  .cta-box {
    padding: 36px 20px;
  }
  .cta-ttl {
    font-size: clamp(22px, 6vw, 34px);
  }
  .cta-sub {
    font-size: 13px;
  }
  .foot-top {
    gap: 28px;
  }
  .foot-logo {
    font-size: 16px;
  }
  .foot-about {
    font-size: 13px;
  }
  .fc a {
    font-size: 13px;
  }
  .fcontact div {
    font-size: 12px;
  }
}
