/* ==========================================================================
   Veld Studio — Marketing Website Styles
   ========================================================================== */

@import url('variables.css');

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--bark);
  overflow-x: hidden;
}

/* ---------- Custom Cursor ---------- */
.cursor {
  width: 8px; height: 8px;
  background: var(--terra);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease;
  transform: translate(-50%, -50%);
}

.cursor-ring {
  width: 32px; height: 32px;
  border: 1px solid rgba(184,98,62,0.4);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.08s ease, width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
  transform: translate(-50%, -50%);
}

body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring {
  width: 48px; height: 48px;
  border-color: var(--terra);
}

/* ---------- NAV ---------- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

nav.scrolled {
  background: rgba(253,248,240,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--sand-dark);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--bark);
  text-decoration: none;
}

.nav-logo em {
  font-style: italic;
  color: var(--terra);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  font-weight: 400;
  transition: color 0.2s ease;
}

.nav-links a:hover { color: var(--bark); }

.nav-cta {
  background: var(--bark);
  color: var(--cream) !important;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 500 !important;
  transition: background 0.2s ease !important;
}

.nav-cta:hover { background: var(--terra) !important; color: white !important; }

/* ---------- Mobile Hamburger ---------- */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--bark);
  margin: 5px 0;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.open {
  display: flex;
  opacity: 1;
}

.mobile-nav-overlay a {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--bark);
  text-decoration: none;
  padding: 12px 24px;
  transition: color 0.2s ease;
}

.mobile-nav-overlay a:hover {
  color: var(--terra);
}

.mobile-nav-overlay .mobile-nav-cta {
  margin-top: 16px;
  background: var(--bark);
  color: var(--cream);
  padding: 14px 36px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
}

.mobile-nav-overlay .mobile-nav-cta:hover {
  background: var(--terra);
  color: white;
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 64px 80px 80px;
  position: relative;
  z-index: 2;
  background: var(--cream);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  animation: fadeUp 0.8s ease both;
}

.eyebrow-line {
  width: 40px; height: 1px;
  background: var(--terra);
}

.eyebrow-text {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 500;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 5.5vw, 76px);
  font-weight: 300;
  line-height: 1.08;
  color: #1A0F06;
  margin-bottom: 28px;
  animation: fadeUp 0.8s 0.1s ease both;
}

.hero-title em {
  font-style: italic;
  color: var(--terra);
}

.hero-title strong {
  font-weight: 600;
  display: block;
  color: #1A0F06;
}

.hero-body {
  font-size: 16px;
  line-height: 1.75;
  color: #5C4A38;
  font-weight: 400;
  max-width: 420px;
  margin-bottom: 48px;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  animation: fadeUp 0.8s 0.3s ease both;
}

.btn-primary {
  background: var(--terra);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 16px 36px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--bark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(44,31,18,0.2);
}

.btn-ghost {
  color: #1A0F06;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s ease;
}

.btn-ghost:hover { gap: 14px; }

.hero-stats {
  margin-top: 64px;
  display: flex;
  gap: 40px;
  animation: fadeUp 0.8s 0.4s ease both;
  padding-top: 40px;
  border-top: 1px solid var(--sand-dark);
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--bark);
  line-height: 1;
}

.stat-num em { color: var(--terra); font-style: italic; }

.stat-label {
  font-size: 12px;
  color: #7A6455;
  font-weight: 400;
  margin-top: 4px;
  letter-spacing: 0.03em;
}

/* ---------- Hero Right — Visual Panel ---------- */
.hero-right {
  position: relative;
  background: var(--sand);
  overflow: hidden;
}

.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(184,98,62,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(110,143,104,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(184,98,62,0.04) 0%, transparent 40%);
}

.hero-visual {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 48px;
  gap: 16px;
}

/* ---------- Floating Cards ---------- */
.float-card {
  background: white;
  border-radius: 14px;
  padding: 20px 24px;
  width: 100%;
  max-width: 340px;
  box-shadow: 0 4px 24px rgba(44,31,18,0.08);
  animation: float 6s ease-in-out infinite;
}

.float-card:nth-child(2) { animation-delay: -2s; transform: translateX(20px); }
.float-card:nth-child(3) { animation-delay: -4s; transform: translateX(-10px); }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.card-tag {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 500;
  margin-bottom: 8px;
}

.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--bark);
  margin-bottom: 8px;
}

.card-body {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.card-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sage);
}

.card-status {
  font-size: 11px;
  color: var(--sage-dark);
  font-weight: 500;
}

/* ---------- Hero Ornament ---------- */
.hero-ornament {
  position: absolute;
  bottom: -40px;
  right: -40px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 240px;
  font-weight: 700;
  font-style: italic;
  color: rgba(184,98,62,0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ---------- SECTIONS (shared) ---------- */
section { position: relative; }

.section-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 500;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--terra);
  flex-shrink: 0;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 3.5vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--bark);
  margin-bottom: 24px;
}

.section-title em {
  font-style: italic;
  color: var(--terra);
}

.section-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 36px;
}

/* ---------- WHAT WE DO ---------- */
.what {
  padding: 120px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.what-right {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 48px;
}

.service-item {
  border-top: 1px solid var(--sand-dark);
  padding: 24px 0;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 20px;
  align-items: start;
  cursor: pointer;
  transition: all 0.2s ease;
}

.service-item:last-child { border-bottom: 1px solid var(--sand-dark); }

.service-item:hover { padding-left: 8px; }

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
  padding-top: 4px;
}

.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--bark);
  margin-bottom: 6px;
}

.service-desc {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
}

.service-arrow {
  color: var(--terra);
  font-size: 18px;
  opacity: 0;
  transition: opacity 0.2s ease;
  padding-top: 4px;
}

.service-item:hover .service-arrow { opacity: 1; }

/* ---------- PRICING ---------- */
.pricing {
  background: var(--sand);
  padding: 120px 80px;
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,98,62,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 72px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.price-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 40px 32px;
  border: 1px solid var(--sand-dark);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(44,31,18,0.1);
}

.price-card.featured {
  background: var(--bark);
  border-color: var(--bark);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--terra);
  color: white;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.price-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--bark);
  margin-bottom: 8px;
}

.price-card.featured .price-name { color: var(--sand); }

.price-tagline {
  font-size: 12px;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 28px;
  line-height: 1.5;
}

.price-card.featured .price-tagline { color: var(--sand-dark); }

.price-amount {
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--sand-dark);
}

.price-card.featured .price-amount { border-color: rgba(255,255,255,0.1); }

.price-currency {
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
  vertical-align: super;
  font-family: 'Cormorant Garamond', serif;
}

.price-card.featured .price-currency { color: var(--sand-dark); }

.price-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: var(--bark);
  line-height: 1;
}

.price-card.featured .price-num { color: white; }

.price-period {
  font-size: 12px;
  color: var(--muted);
  display: block;
  margin-top: 4px;
  font-weight: 300;
}

.price-card.featured .price-period { color: var(--sand-dark); }

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--bark-light);
  font-weight: 300;
  line-height: 1.5;
}

.price-card.featured .price-features li { color: var(--sand); }

.feature-check {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(110,143,104,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.price-card.featured .feature-check { background: rgba(255,255,255,0.1); }
.feature-check svg path { stroke: var(--sage-dark); }
.price-card.featured .feature-check svg path { stroke: var(--sage-light); }

.btn-card {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.btn-card-outline {
  border: 1.5px solid var(--sand-dark);
  color: var(--bark);
  background: transparent;
}

.btn-card-outline:hover {
  border-color: var(--terra);
  color: var(--terra);
}

.btn-card-fill {
  background: var(--terra);
  color: white;
  border: 1.5px solid var(--terra);
}

.btn-card-fill:hover {
  background: white;
  color: var(--terra);
}

/* ---------- Retainer Strip ---------- */
.retainer-strip {
  max-width: 1100px;
  margin: 20px auto 0;
  background: white;
  border-radius: 14px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--sand-dark);
  gap: 24px;
}

.retainer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--bark);
  margin-bottom: 4px;
}

.retainer-desc {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
}

.retainer-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--bark);
  white-space: nowrap;
}

.retainer-price span {
  font-size: 14px;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
}

/* ---------- HOW IT WORKS ---------- */
.process {
  padding: 120px 80px;
}

.process-header {
  max-width: 560px;
  margin-bottom: 80px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(10% + 20px);
  right: calc(10% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--sand-dark), var(--terra), var(--sand-dark));
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
}

.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.step:nth-child(1) .step-num { background: var(--sand); border: 1px solid var(--sand-dark); color: var(--bark-light); }
.step:nth-child(2) .step-num { background: var(--sage-light); border: 1px solid var(--sage); color: white; }
.step:nth-child(3) .step-num { background: var(--terra-light); border: 1px solid var(--terra); color: white; }
.step:nth-child(4) .step-num { background: var(--terra); border: 1px solid var(--terra-dark); color: white; }
.step:nth-child(5) .step-num { background: var(--bark); border: 1px solid var(--bark); color: var(--sand); }

.step-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--bark);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 12px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
}

/* ---------- WHY VELD ---------- */
.why {
  background: var(--bark);
  padding: 120px 80px;
  position: relative;
  overflow: hidden;
}

.why::before {
  content: 'V';
  position: absolute;
  right: -60px;
  top: -40px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 400px;
  font-weight: 700;
  font-style: italic;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-left .section-label { color: var(--terra-light); }
.why-left .section-label::before { background: var(--terra-light); }
.why-left .section-title { color: var(--sand); }
.why-left .section-body { color: rgba(242,232,208,0.6); }

.why-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 28px 24px;
  transition: all 0.3s ease;
}

.why-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(184,98,62,0.3);
  transform: translateY(-3px);
}

.why-icon {
  font-size: 24px;
  margin-bottom: 14px;
}

.why-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 400;
  color: var(--sand);
  margin-bottom: 8px;
}

.why-desc {
  font-size: 12px;
  color: rgba(242,232,208,0.5);
  font-weight: 300;
  line-height: 1.7;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  padding: 120px 80px;
  background: var(--sand-light);
}

.testimonials-header {
  text-align: center;
  max-width: 480px;
  margin: 0 auto 64px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 36px 32px;
  border: 1px solid var(--sand-dark);
  transition: transform 0.3s ease;
}

.testimonial-card:hover { transform: translateY(-4px); }

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  color: var(--terra);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.4;
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: var(--bark);
  line-height: 1.6;
  margin-bottom: 24px;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--bark-light);
  font-weight: 600;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--bark);
}

.testimonial-biz {
  font-size: 12px;
  color: var(--muted);
  font-weight: 300;
}

/* ---------- GALLERY ---------- */
.gallery {
  padding: 120px 80px;
  background: var(--cream);
}

.gallery-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 64px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--sand-dark);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(44,31,18,0.10);
}

.gallery-preview {
  padding: 12px;
  height: 180px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-radius: 16px 16px 0 0;
}

.gp-bar {
  height: 8px;
  border-radius: 4px;
  opacity: 0.9;
}

.gp-hero {
  flex: 1;
  border-radius: 6px;
  opacity: 0.85;
}

.gp-hero-split {
  flex: 1;
  display: flex;
  gap: 6px;
  border-radius: 6px;
  overflow: hidden;
}

.gp-hero-left, .gp-hero-right {
  flex: 1;
  border-radius: 6px;
  opacity: 0.85;
}

.gp-accent {
  height: 4px;
  border-radius: 2px;
  width: 40%;
}

.gp-text {
  height: 6px;
  border-radius: 3px;
  opacity: 0.5;
}

.gp-cols {
  display: flex;
  gap: 6px;
  flex: 1;
}

.gp-col {
  flex: 1;
  border-radius: 6px;
  opacity: 0.6;
}

.gallery-info {
  padding: 16px 20px 8px;
}

.gallery-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--bark);
}

.gallery-industry {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.gallery-palette {
  display: flex;
  gap: 6px;
  padding: 8px 20px 16px;
}

.gp-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.08);
}

/* ---------- CTA ---------- */
.cta-section {
  padding: 120px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(184,98,62,0.07) 0%, transparent 70%);
  pointer-events: none;
}

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

.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 4vw, 60px);
  font-weight: 300;
  color: var(--bark);
  line-height: 1.15;
  margin-bottom: 20px;
}

.cta-title em { font-style: italic; color: var(--terra); }

.cta-body {
  font-size: 15px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.cta-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 20px;
  font-weight: 300;
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--bark);
  padding: 60px 80px 40px;
  color: var(--sand);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-logo em { font-style: italic; color: var(--terra-light); }

.footer-tagline {
  font-size: 13px;
  color: rgba(242,232,208,0.5);
  font-weight: 300;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-parent {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242,232,208,0.3);
}

.footer-col-title {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terra-light);
  font-weight: 500;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(242,232,208,0.5);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(242,232,208,0.3);
  font-weight: 300;
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ---------- MOBILE ---------- */
@media (max-width: 900px) {
  .cursor, .cursor-ring { display: none; }

  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: block; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 100px 24px 48px; }
  .hero-right { height: auto; min-height: 520px; overflow: visible; }
  .hero-visual { position: relative; inset: auto; padding: 40px 24px 48px; }
  .hero-stats { gap: 24px; }
  .float-card { animation: none; transform: none !important; max-width: 100%; }
  .hero-ornament { display: none; }

  .what, .process, .cta-section { padding: 80px 24px; }
  .what { grid-template-columns: 1fr; gap: 48px; }

  .pricing { padding: 80px 24px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .retainer-strip { flex-direction: column; text-align: center; }

  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .process-steps::before { display: none; }
  .step { flex-direction: row; text-align: left; gap: 20px; align-items: flex-start; }
  .step-num { flex-shrink: 0; }

  .why { padding: 80px 24px; }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-right { grid-template-columns: 1fr; }

  .testimonials { padding: 80px 24px; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }

  .gallery { padding: 80px 24px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; max-width: 600px; margin: 0 auto; }

  footer { padding: 48px 24px 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-left { padding: 80px 16px 32px; }
  .hero-left h1 { font-size: 32px; }
  .hero-cta { flex-direction: column; gap: 10px; }
  .hero-cta .btn { width: 100%; text-align: center; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .what, .process, .cta-section, .why, .testimonials, .gallery { padding: 48px 16px; }
  .section-label { font-size: 11px; }
  .section-heading { font-size: 26px; }
  .pricing { padding: 48px 16px; }
  .pricing-card { padding: 24px 16px; }
  .price-amount { font-size: 28px; }
  nav { padding: 0 16px; height: 56px; }
  .nav-logo { font-size: 18px; }
  .step-num { width: 36px; height: 36px; font-size: 14px; }
  .testimonial-card { padding: 20px; }
  .gallery-grid { grid-template-columns: 1fr; max-width: 360px; }
}
