
:root {
  --bg: #FAFAF7;
  --white: #FFFFFF;
  --ink: #1C1C1E;
  --ink2: #3A3A3C;
  --muted: #8E8E93;
  --sage: #B8C9B0;
  --sage-light: #E8F0E5;
  --peach: #F2C4A8;
  --peach-light: #FBF0E8;
  --sky: #A8C4D4;
  --sky-light: #E4F0F6;
  --rose: #D4A0A8;
  --rose-light: #F5E8EA;
  --lemon: #E8D88A;
  --lemon-light: #FAF6DC;
  --lavender: #C0AED4;
  --lavender-light: #EDE8F5;
  --accent: #D4622A;
  --accent2: #2A6B4A;
  --border: rgba(28,28,30,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}

/* NAV */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,250,247,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.2px;
}
.logo span { color: var(--accent); font-style: italic; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  cursor: pointer;
  transition: color .2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: opacity .15s;
}
.nav-cta:hover { opacity: .85; }

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 92vh;
  padding: 0 0 0 48px;
  position: relative;
  overflow: hidden;
  align-items: stretch;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 0;
  z-index: 2;
}
.hero-right {
  position: relative;
  background: linear-gradient(135deg,#F5EDE4 0%,#EAE4F0 50%,#DDF0EA 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* 3D SCENE */
.scene-3d {
  width: 100%;
  height: 100%;
  perspective: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.cards-wrap {
  position: relative;
  width: 300px;
  height: 420px;
  transform-style: preserve-3d;
  animation: float-scene 6s ease-in-out infinite;
}
@keyframes float-scene {
  0%,100% { transform: rotateX(6deg) rotateY(-10deg); }
  50% { transform: rotateX(2deg) rotateY(-6deg); }
}

.img-card {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(28,28,30,.18), 0 4px 12px rgba(28,28,30,.08);
  transform-style: preserve-3d;
  transition: transform .4s ease;
  cursor: pointer;
}
.img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.img-card .card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 16px 14px;
  background: linear-gradient(to top,rgba(28,28,30,.75) 0%,transparent 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.card-back {
  width: 260px;
  height: 340px;
  top: 30px;
  left: 10px;
  background: var(--peach-light);
  transform: translateZ(-40px) rotate(-4deg);
  animation: sway-back 5s ease-in-out infinite;
  border: 1px solid rgba(28,28,30,.05);
}
@keyframes sway-back {
  0%,100% { transform: translateZ(-40px) rotate(-4deg); }
  50% { transform: translateZ(-38px) rotate(-3deg); }
}

.card-mid {
  width: 260px;
  height: 340px;
  top: 16px;
  left: 22px;
  transform: translateZ(-18px) rotate(1.5deg);
  animation: sway-mid 5s ease-in-out infinite 0.3s;
}
@keyframes sway-mid {
  0%,100% { transform: translateZ(-18px) rotate(1.5deg); }
  50% { transform: translateZ(-14px) rotate(1deg); }
}

.card-front {
  width: 260px;
  height: 340px;
  top: 0;
  left: 36px;
  transform: translateZ(0px);
  animation: sway-front 5s ease-in-out infinite 0.6s;
}
@keyframes sway-front {
  0%,100% { transform: translateZ(0px) rotate(0deg); }
  50% { transform: translateZ(4px) rotate(-.5deg); }
}

/* Floating badge chips */
.float-chip {
  position: absolute;
  background: #fff;
  border-radius: 100px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(28,28,30,.12);
  font-size: 11px;
  font-weight: 500;
  color: var(--ink);
  animation: chip-float 4s ease-in-out infinite;
  white-space: nowrap;
}
.chip-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.chip1 { top: 18%; right: 4%; animation-delay: 0s; }
.chip2 { bottom: 28%; right: 2%; animation-delay: 1.2s; }
.chip3 { bottom: 14%; left: 6%; animation-delay: 2.1s; }
@keyframes chip-float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

/* bg blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .45;
  pointer-events: none;
}
.hb1 { width: 340px; height: 340px; background: var(--lavender); top: -80px; right: 60px; }
.hb2 { width: 220px; height: 220px; background: var(--sage); bottom: 20px; right: 200px; }
.hb3 { width: 160px; height: 160px; background: var(--peach); bottom: 80px; right: 30px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent2);
  background: var(--sage-light);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  width: fit-content;
}
.eyebrow-dot {
  width: 5px;
  height: 5px;
  background: var(--accent2);
  border-radius: 50%;
}

.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px,5.5vw,68px);
  font-weight: 600;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 22px;
  letter-spacing: -.5px;
}
.hero-h1 em { color: var(--accent); font-style: italic; }
.hero-h1 .ruled {
  position: relative;
  display: inline-block;
}
.hero-h1 .ruled::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 2px;
  background: var(--sage);
  border-radius: 2px;
}

.hero-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 40px;
  font-weight: 400;
}
.hero-sub strong { color: var(--ink2); font-weight: 500; }

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.btn-dark {
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 14px 30px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform .15s, opacity .15s;
}
.btn-dark:hover {
  transform: translateY(-1px);
  opacity: .9;
}
.btn-line {
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  padding: 13px 28px;
  border-radius: 100px;
  border: 1.5px solid rgba(28,28,30,.2);
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.btn-line:hover {
  border-color: var(--ink);
  background: rgba(28,28,30,.04);
}

.hero-stats { display: flex; gap: 32px; }
.stat { border-left: 2px solid var(--border); padding-left: 20px; }
.stat:first-child { border: none; padding-left: 0; }
.stat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}
.stat-l {
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px;
  font-weight: 400;
}

/* MARQUEE */
.marquee-strip {
  background: var(--ink);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-inner {
  display: inline-flex;
  gap: 0;
  animation: marquee 28s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0) }
  to { transform: translateX(-50%) }
}
.marquee-item {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.marquee-dot {
  width: 4px;
  height: 4px;
  background: var(--peach);
  border-radius: 50%;
  flex-shrink: 0;
}

/* NICHES */
.niches { padding: 100px 48px; }
.niches-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 32px;
}
.niches-intro { max-width: 480px; }
.niches-note {
  font-size: 14px;
  color: var(--muted);
  max-width: 260px;
  text-align: right;
  line-height: 1.6;
}
.niche-grid {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 10px;
}
.niche-tile {
  border-radius: 16px;
  padding: 20px 18px;
  cursor: pointer;
  transition: transform .2s;
}
.niche-tile:hover { transform: translateY(-3px); }
.niche-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(28,28,30,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.niche-icon svg { width: 16px; height: 16px; }
.niche-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}
.niche-sub {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.45;
}
.niche-more {
  border-radius: 16px;
  padding: 20px 18px;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: opacity .15s;
}
.niche-more:hover { opacity: .88; }
.niche-more-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--peach);
  line-height: 1;
}
.niche-more-label {
  font-size: 11px;
  color: rgba(255,255,255,.5);
  margin-top: 4px;
}

/* SERVICES */
.services {
  background: var(--white);
  padding: 100px 48px;
}
.services-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 56px;
}
.services-sticky {
  position: sticky;
  top: 90px;
}
.services-sticky p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-top: 14px;
}
.services-sticky .btn-dark {
  margin-top: 24px;
  display: inline-block;
}
.svc-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.svc-row {
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 28px 30px;
  background: var(--bg);
  transition: border-color .2s, transform .2s;
  cursor: pointer;
}
.svc-row:hover {
  border-color: rgba(28,28,30,.2);
  transform: translateX(4px);
}
.svc-row-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.svc-row-title {
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
}
.svc-pill {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 100px;
}
.svc-row-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.svc-types {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.svc-type {
  font-size: 11px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--ink2);
  padding: 4px 12px;
  border-radius: 100px;
}

/* CONTENT TYPES */
.content-types {
  padding: 100px 48px;
  background: var(--sage-light);
}
.ct-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 14px;
  margin-top: 52px;
}
.ct-card {
  background: var(--white);
  border-radius: 20px;
  padding: 26px 24px;
  border: 1px solid rgba(28,28,30,.05);
}
.ct-icon {
  font-size: 22px;
  margin-bottom: 14px;
}
.ct-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}
.ct-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}
.ct-formats {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 12px;
}
.ct-fmt {
  font-size: 10px;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 100px;
  background: var(--bg);
}

/* HOW */
.how {
  padding: 100px 48px;
  background: var(--white);
}
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 56px;
}
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.how-step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.how-step:last-child { border: none; }
.step-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--peach);
  line-height: 1;
  flex-shrink: 0;
  width: 32px;
}
.step-body .step-t {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 5px;
}
.step-body .step-d {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.how-right {
  background: var(--peach-light);
  border-radius: 24px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.how-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 8px;
}
.how-attr {
  font-size: 13px;
  color: var(--muted);
}
.how-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.how-tag {
  font-size: 11px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 100px;
}

/* WHY */
.why {
  padding: 100px 48px;
  background: var(--bg);
}
.why-bento {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
  margin-top: 52px;
}
.wb { border-radius: 22px; padding: 32px; }
.wb-big {
  grid-column: 1 / span 2;
  background: var(--ink);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
}
.wb-big .wb-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
}
.wb-big .wb-h em { color: var(--peach); font-style: italic; }
.wb-big .wb-p {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
  margin-top: 12px;
}
.wb-right {
  background: var(--lavender-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.wb-sage { background: var(--sage-light); }
.wb-peach { background: var(--peach-light); }
.wb-rose { background: var(--rose-light); }
.wb-lemon {
  grid-column: 2 / span 2;
  background: var(--lemon-light);
}
.wb-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 600;
  line-height: 1;
  color: var(--ink);
}
.wb-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  margin-top: 8px;
}
.wb-sub {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
  margin-top: 4px;
}
.wb-lemon .wb-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* CTA */
.cta {
  padding: 100px 48px;
  background: var(--peach-light);
  text-align: center;
}
.cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px,5vw,60px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 14px;
}
.cta h2 em { color: var(--accent); font-style: italic; }
.cta p {
  font-size: 16px;
  color: var(--muted);
  max-width: 460px;
  margin: 0 auto 36px;
  line-height: 1.65;
}
.cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
}

footer {
  background: var(--ink);
  padding: 56px 48px 32px;
}
.ft-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.ft-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}
.ft-logo span { color: var(--peach); font-style: italic; }
.ft-about {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  line-height: 1.65;
}
.ft-col-h {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: rgba(255,255,255,.3);
  margin-bottom: 14px;
}
.ft-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.ft-links a {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  cursor: pointer;
  transition: color .15s;
}
.ft-links a:hover { color: #fff; }
.ft-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ft-copy {
  font-size: 12px;
  color: rgba(255,255,255,.3);
}
.ft-pills { display: flex; gap: 8px; }
.ft-pill {
  font-size: 10px;
  font-weight: 500;
  padding: 4px 11px;
  border-radius: 100px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.4);
}

/* section util */
.sec-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.sec-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px,4vw,44px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
}
.sec-h2 em { color: var(--accent); font-style: italic; }

/* Responsive */
@media (max-width: 1100px) {
  .hero,
  .how-grid,
  .services-layout {
    grid-template-columns: 1fr;
  }

  .ct-grid { grid-template-columns: repeat(2,1fr); }
  .niche-grid { grid-template-columns: repeat(2,1fr); }
  .why-bento { grid-template-columns: 1fr; }
  .wb-big,
  .wb-lemon { grid-column: auto; }
  .ft-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  nav,
  .niches,
  .services,
  .content-types,
  .how,
  .why,
  .cta,
  footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero {
    padding-left: 20px;
    grid-template-columns: 1fr;
  }

  .hero-left {
    padding: 60px 0 30px;
  }

  .nav-links {
    display: none;
  }

  .hero-stats,
  .cta-row,
  .ft-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .ct-grid,
  .niche-grid,
  .ft-grid {
    grid-template-columns: 1fr;
  }
}
.instagram-btn {
  background: linear-gradient(135deg, #6a11cb, #ff6a88);
  color: white;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}