:root {
  --gold: #b89a6a;
  --gold-soft: #d8c39a;
  --stone: #18140f;
  --cream: #f2e8da;
  --ink: #3e3932;
  --ink-soft: #5d564d;
  --top-brown: #a57d5e;
  --bg-1: #ebe3d7;
  --bg-2: #e7ddd0;
  --bg-3: #e9e0d4;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Raleway", sans-serif;
  color: var(--cream);
  overflow-x: hidden;
  background:
   #edd6ad;
min-height: 100vh;
  /*cursor: none;*/
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.12;
}



.page-shell {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  width: 100%;
}

.services-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding-top: clamp(155px, 16vh, 196px);
  padding-bottom: 70px;
  position: relative;
}

.services-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: #f1e4bc;
  opacity: 0.65;
}

.services-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(72px, 8vw, 112px);
  line-height: 0.95;
  font-weight: 500;
  color: #535047;
  letter-spacing: -0.03em;
  margin: 0 0 64px;
  opacity: 0;
  transform: translateY(28px);
  filter: blur(8px);
  transition:
    opacity 1.2s cubic-bezier(.16, 1, .3, 1),
    transform 1.2s cubic-bezier(.16, 1, .3, 1),
    filter 1.2s cubic-bezier(.16, 1, .3, 1);
}

.services-card {
  width: min(100%, 476px);
  aspect-ratio: 1.72 / 1;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(40, 28, 18, 0.12);
  opacity: 0;
  transform: translateY(22px) scale(.975);
  filter: blur(10px);
  transition:
    opacity 1.15s 0.12s cubic-bezier(.16, 1, .3, 1),
    transform 1.15s 0.12s cubic-bezier(.16, 1, .3, 1),
    filter 1.15s 0.12s cubic-bezier(.16, 1, .3, 1);
}

.services-copy {
  max-width: 860px;
  margin-top: 58px;
  opacity: 0;
  transform: translateY(24px);
  filter: blur(8px);
  transition:
    opacity 1.15s 0.28s cubic-bezier(.16, 1, .3, 1),
    transform 1.15s 0.28s cubic-bezier(.16, 1, .3, 1),
    filter 1.15s 0.28s cubic-bezier(.16, 1, .3, 1);
}

.services-headline {
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 3.25vw, 56px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: #3f3a33;
  margin: 0;
}

.services-sub {
  margin: 30px auto 0;
  font-size: clamp(16px, 1.1vw, 22px);
  line-height: 1.28;
  color: #2b2721;
  max-width: 720px;
  font-weight: 400;
}

.services-wrap.ready .services-title,
.services-wrap.ready .services-card,
.services-wrap.ready .services-copy {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

/* slider */
.slider {
  position: relative;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.03);
  animation: fadeSlider 16s infinite;
}

.slide:nth-child(1) {
  animation-delay: 0s;
}

.slide:nth-child(2) {
  animation-delay: 4s;
}

.slide:nth-child(3) {
  animation-delay: 8s;
}

.slide:nth-child(4) {
  animation-delay: 12s;
}

@keyframes fadeSlider {
  0% {
    opacity: 0;
    transform: scale(1.05);
  }

  6% {
    opacity: 1;
    transform: scale(1.02);
  }

  24% {
    opacity: 1;
    transform: scale(1);
  }

  30% {
    opacity: 0;
    transform: scale(1.02);
  }

  100% {
    opacity: 0;
  }
}

@media (min-width: 769px) and (max-width: 1200px) {
  .nPill {
    min-width: 170px;
    padding: 9px 18px;
  }

  .nHamPill {
    min-width: 100px;
  }

  .services-wrap {
    padding-top: 150px;
  }
}

@media (max-width: 768px) {

  *,
  *::before,
  *::after {
    cursor: auto !important;
  }

  body {
    cursor: auto;
    background:
      radial-gradient(540px 220px at 50% 11%, rgba(255, 255, 255, 0.16), transparent 72%),
      linear-gradient(180deg, #a57d5e 0%, #c9b29a 18%, #e7ddd0 35%, #ece3d7 100%);
  }

  #cur,
  #cuf {
    display: none !important;
  }

  #loadWrap {
    display: none !important;
  }

  nav {
    padding: 0 20px;
    height: 76px;
  }

  .nL {
    opacity: 1 !important;
    transform: none !important;
  }

  .nLogoImg {
    height: 54px;
  }

  .nR {
    display: none !important;
  }

  .mobileMenuBtn2 {
    display: flex !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .services-wrap {
    min-height: 70svh;
    padding-top: 118px;
    padding-bottom: 56px;
  }

  .services-title {
    font-size: clamp(52px, 13vw, 72px);
    margin-bottom: 28px;
  }

  .services-card {
    width: min(calc(100vw - 40px), 520px);
    border-radius: 12px;
  }

  .services-copy {
    margin-top: 34px;
    max-width: calc(100vw - 36px);
  }

  .services-headline {
    font-size: clamp(26px, 8.2vw, 42px);
    line-height: 1.08;
  }

  .services-sub {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.32;
    max-width: 320px;
  }
}

/* ================= SECTION BASE ================= */

.sec-block {
  padding: 140px 20px;
  text-align: center;
}

.sec-inner {
  max-width: 860px;
  margin: 0 auto;
}

/* ================= TITLE ================= */

.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 3.2vw, 56px);
  line-height: 1.1;
  color: #3f3a33;
  margin-bottom: 60px;
}

/* BIG FINAL TEXT */
.sec-title.large {
  font-size: clamp(48px, 5vw, 80px);
}

/* ================= IMAGE ================= */

.sec-img {
  width: min(100%, 520px);
  margin: 0 auto 50px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(40, 28, 18, 0.15);
}

.sec-img img {
  width: 100%;
  display: block;
}

/* ================= TEXT ================= */

.sec-desc {
  font-size: clamp(16px, 1.1vw, 20px);
  line-height: 1.5;
  color: #4a453d;
  max-width: 600px;
  margin: 0 auto;
}

/* ================= ALT SECTION ================= */

.sec-block.alt .sec-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sec-block.alt .sec-title {
  margin-top: 40px;
}

/* ================= MINIMAL ================= */

.sec-block.minimal {
  padding-top: 180px;
  padding-bottom: 180px;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .sec-block {
    padding: 80px 20px;
  }

  .sec-title {
    font-size: 28px;
  }

  .sec-title.large {
    font-size: 42px;
  }

  .sec-img {
    margin-bottom: 30px;
  }
}


/* ================= TURNKEY SECTION ================= */


.turnkey-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 1s ease, transform 1s ease;
}

.turnkey-section.show {
  opacity: 6.5;
  transform: translateY(0);
}

/* 🔥 FIXED SLIDER */
.turnkey-slider {
  display: flex;
  height: 100vh;
  transition: transform 0.6s ease-in-out;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 🔥 IMPORTANT FIX */
.turnkey-slide {
  min-width: 100%;
  height: 100vh;
  flex-shrink: 0;
}

.turnkey-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ARROWS */
.tk-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  color: #5a6058;
  font-size: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 5;
}

.tk-arrow-left { left: 40px; }
.tk-arrow-right { right: 40px; }

/* FADE */
.tk-bottom-fade {
  position: absolute;
  bottom: 0;
  height: 35%;
  width: 100%;
  background: linear-gradient(to top, #fff 79%
18%
, #00000000 100%);
  z-index: 2;
}

/* CONTENT */
.tk-content {
  position: absolute;
  bottom: 40px;
  width: 100%;
  text-align: center;
  z-index: 4;
  color: #252625;
  padding: 0 40px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.tk-content.fade-out { opacity: 0; transform: translateY(10px); }
.tk-content.fade-in { opacity: 1; transform: translateY(0); }

.tk-status {
  position: absolute;
  left: 40px;
  bottom: 0;
  font-size: 20px;
}

.tk-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(60px, 2vw, 140px);
  line-height: 2.9;
}

.tk-text-row {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin: 20px auto 0;
}

.tk-text { max-width: 400px; }
.turnkey-section.show {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 768px) {
    .turnkey-slider {
    display: flex;
    width: 100%;
    touch-action: pan-y;
  }

  .turnkey-slide {
    min-width: 100%;
    flex: 0 0 100%;
  }

  .tk-text-row {
    flex-direction: column;
    gap: 10px;
  }

  .tk-status {
    position: static;
    margin-bottom: 10px;
  }
}
/* ================= PROCESS ================= */
.process {
  position: relative;
  background: #f3efe7;
  padding: 100px 40px 140px;
  overflow: hidden;
}

/* background texture */
.process::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("texture.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.process > * {
  position: relative;
  z-index: 1;
}

/* header */
.process-header {
  text-align: center;
  margin-bottom: 90px;
}

.process-header .section-label {
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #767069;
  display: block;
  margin-bottom: 24px;
  font-weight: 500;
}

.process-header h2 {
  margin: 0 max-w-3xl;
  margin-left: auto;
  margin-right: auto;
  font-family: "Cormorant Garamond", serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 1.2;
  color: #111;
}

/* layout */
.process-grid {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 950px;
}

/* cards */
.card {
  position: absolute;
  width: 440px;
  min-height: 180px;
  padding: 48px 38px 38px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* text */
.card h3 {
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 500;
  color: #2f2d2b;
}

.card p {
  font-size: 16px;
  line-height: 1.6;
  color: #5f5b56;
  margin: 0;
}

/* Roman Numeral circle */
.step {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 500;
  color: #6e6861;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

/* Position adjustments for balanced asymmetry (4 stages) */
.card-1 {
  top: 20px;
  left: 10%;
  transform: scale(0.94) translateY(40px);
}

.card-2 {
  top: 177px;
  right: -3%;
  transform: scale(0.94) translateY(40px);
}

.card-3 {
  top: 480px;
  left: 5%;
  transform: scale(0.94) translateY(40px);
}

.card-4 {
  top: 636px;
  right: -3%;
  transform: scale(0.94) translateY(40px);
}

/* visible states (handling standard and centered transforms safely) */
.card.show {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* stagger delays */
.card-1 { transition-delay: 0.1s; }
.card-2 { transition-delay: 0.2s; }
.card-3 { transition-delay: 0.3s; }
.card-4 { transition-delay: 0.4s; }

/* hover effects */
.card:hover {
  transform: scale(1.03) translateY(-6px);
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

/* Image styling & placement dynamic positioning */
.image-block {
  position: absolute;
  top: 270px;
  left: 46%;
  transform: translateX(-25%) scale(0.95) translateY(60px);
  width: 460px;
  opacity: 0;
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.image-block.show {
  opacity: 1;
  transform: translateX(-25%) scale(1) translateY(0);
}

.image-block img {
  width: 100%;
  height: 480px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .process {
    padding: 60px 24px 80px;
  }

  .process-header h2 {
    font-size: 42px;
  }

  .process-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    min-height: auto;
  }

  .card,
  .image-block {
    position: static;
    width: 100%;
    transform: none !important;
    opacity: 1;
  }

  .image-block img {
    height: 350px;
  }
}

/* end */

.cta {
  background: #0b0b0c;
  color: #eae7e2;
  padding: 140px 20px;
  font-family: "Cormorant Garamond", serif;
}

.cta-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Icon */
.cta-icon {
  display: inline-block;
  width: 70px;
  margin-bottom: 30px;
}

/* Section Header Typography */
.pricing-header {
  margin-bottom: 60px;
}

.pricing-header .section-label {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8a857e;
  display: block;
  margin-bottom: 16px;
}

.cta h2 {
  font-size: 64px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 20px 0;
  letter-spacing: -0.5px;
}

.pricing-intro {
  font-size: 20px;
  color: #b0aaa2;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Pricing Tiers (Clean Structural Rows) */
.pricing-tiers {
  margin: 60px 0;
  border-top: 1px solid rgba(234, 231, 226, 0.15);
  text-align: left;
}

.tier-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 32px 0;
  border-bottom: 1px solid rgba(234, 231, 226, 0.15);
  transition: all 0.3s ease;
}

.tier-row:hover {
  border-bottom-color: rgba(234, 231, 226, 0.4);
}

.tier-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 280px;
}

.tier-row h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  color: #eae7e2;
}

/* Highlight style for custom signature tier */
.tier-row.highlight h3 {
  color: #dfba81; /* Subtle premium accent color */
}

.tier-row .price {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #eae7e2;
}

.tier-row .price .unit {
  font-size: 14px;
  color: #8a857e;
  font-weight: 400;
}

.tier-desc {
  margin: 0;
  font-size: 18px;
  color: #b0aaa2;
  max-width: 450px;
  line-height: 1.4;
}

/* Lower Text note */
.pricing-note {
  font-size: 19px;
  color: #8a857e;
  margin-bottom: 50px;
  font-style: italic;
}

/* Double CTA Button Actions Layout */
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 36px;
  border-radius: 40px;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  text-decoration: none;
}

.cta-btn .arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

/* CTA 1 Primary (Filled Style) */
.primary-btn {
  background: #e6e3de;
  color: #0b0b0c;
  border: 1px solid #e6e3de;
}

.primary-btn:hover {
  background: #ffffff;
  border-color: #ffffff;
  transform: translateY(-3px);
}

/* CTA 2 Secondary (Elegant Border Style) */
.secondary-btn {
  background: transparent;
  color: #e6e3de;
  border: 1px solid rgba(230, 227, 222, 0.3);
}

.secondary-btn:hover {
  background: rgba(230, 227, 222, 0.06);
  border-color: rgba(230, 227, 222, 0.8);
  transform: translateY(-3px);
}

/* Arrow micro-interaction on hover */
.cta-btn:hover .arrow {
  transform: translateX(4px);
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .cta {
    padding: 80px 24px;
  }

  .cta h2 {
    font-size: 44px;
  }

  .pricing-intro {
    font-size: 17px;
  }

  .tier-row {
    flex-direction: column;
    gap: 12px;
    padding: 24px 0;
  }

  .tier-meta {
    min-width: 100%;
  }

  .tier-desc {
    max-width: 100%;
    font-size: 16px;
  }

  .cta-actions {
    flex-direction: column;
    gap: 16px;
  }
  
  .cta-btn {
    width: 100%;
    justify-content: center;
  }
  .tk-title{
      display:none;
  }
}