:root {
  --pink-1: #ffe7ef;
  --pink-2: #ffd9e7;
  --pink-3: #f8bfd1;
  --pink-4: #ef9fbc;
  --text: #171214;
  --muted: #6e5a61;
  --white-glass: rgba(255, 255, 255, 0.56);
  --white-strong: rgba(255, 255, 255, 0.76);
  --line: rgba(23, 18, 20, 0.08);
  --shadow: 0 18px 60px rgba(176, 96, 131, 0.16);
  --shadow-strong: 0 28px 80px rgba(176, 96, 131, 0.22);
  --radius-xl: 42px;
  --radius-lg: 30px;
  --radius-md: 20px;
  --sidebar-width: 250px;
  --content-max: 1320px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.55), transparent 18%),
    radial-gradient(circle at right center, rgba(239,159,188,0.26), transparent 20%),
    linear-gradient(180deg, var(--pink-1) 0%, var(--pink-2) 48%, #fff0f5 100%);
  overflow-x: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.055;
  background-image:
    linear-gradient(rgba(23,18,20,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23,18,20,0.12) 1px, transparent 1px);
  background-size: 42px 42px;
  z-index: 0;
}

.bg-blob {
  position: fixed;
  border-radius: 999px;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.blob-1 {
  width: 300px;
  height: 300px;
  top: 80px;
  right: -60px;
  background: rgba(248, 191, 209, 0.5);
}

.blob-2 {
  width: 340px;
  height: 340px;
  bottom: 60px;
  left: -80px;
  background: rgba(255, 255, 255, 0.45);
}

.cursor-light {
  position: fixed;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,0.24), transparent 65%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
  filter: blur(24px);
  opacity: 0.8;
}

#preloader {
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, #fff2f6 0%, #ffd9e7 100%);
  display: grid;
  place-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  width: min(88vw, 420px);
}

.pre-tag {
  display: inline-block;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  color: var(--muted);
}

.preloader-content h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4rem, 10vw, 6.8rem);
  line-height: 0.88;
  margin-bottom: 18px;
}

.preloader-bar {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: rgba(23,18,20,0.08);
  overflow: hidden;
}

.preloader-bar span {
  display: block;
  width: 35%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--text), var(--pink-4));
  animation: loadingBar 1.1s linear infinite;
}

@keyframes loadingBar {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(320%);
  }
}

.mobile-nav-toggle {
  display: none;
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 80;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.mobile-nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  margin: 6px auto;
}

.side-nav {
  position: fixed;
  top: 20px;
  left: 20px;
  bottom: 20px;
  width: var(--sidebar-width);
  z-index: 50;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 22px;
  border-radius: 36px;
  background: rgba(255, 245, 248, 0.65);
  border: 1px solid rgba(255,255,255,0.75);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

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

.brand-dot {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--text), var(--pink-4));
  box-shadow: 0 0 0 8px rgba(255,255,255,0.34);
}

.brand-text strong {
  display: block;
  font-size: 1rem;
}

.brand-text small {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nav-links a {
  color: var(--muted);
  padding: 10px 12px;
  border-radius: 14px;
  transition: 0.25s ease;
}

.nav-links a:hover {
  background: rgba(255,255,255,0.45);
  color: var(--text);
  transform: translateX(4px);
}

.side-footer {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.whats-btn {
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--text);
  color: white;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}

.whats-btn:hover {
  transform: translateY(-2px);
}

.side-footer p {
  color: var(--muted);
  font-size: 0.92rem;
}

.site-main {
  position: relative;
  z-index: 1;
  margin-left: calc(var(--sidebar-width) + 40px);
  width: calc(100% - var(--sidebar-width) - 60px);
  max-width: var(--content-max);
  padding: 24px 24px 40px 0;
}

.section {
  padding: 110px 0;
}

.hero-panel {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
  align-items: center;
  padding: 36px 0 48px;
}

.hero-copy {
  padding: 28px 20px 28px 0;
}

.mini-label {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--white-glass);
  border: 1px solid rgba(23,18,20,0.07);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin-bottom: 20px;
}

.hero-copy h1,
.section-intro h2,
.about-copy h2,
.contact-copy h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.6rem, 7vw, 7.6rem);
  line-height: 0.88;
  letter-spacing: -0.05em;
}

.hero-copy h1 span {
  color: rgba(23,18,20,0.7);
}

.hero-copy p {
  margin-top: 20px;
  max-width: 520px;
  color: var(--muted);
  line-height: 1.9;
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  min-height: 58px;
  padding: 0 24px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-dark {
  background: var(--text);
  color: white;
  box-shadow: var(--shadow);
}

.btn-light {
  background: rgba(255,255,255,0.55);
  border-color: rgba(23,18,20,0.08);
  color: var(--text);
}

.hero-stack {
  display: grid;
  grid-template-columns: 1fr 220px;
  grid-template-rows: 1fr 170px;
  gap: 18px;
  min-height: 680px;
}

.hero-card,
.hero-note,
.hero-mini-video {
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.76);
  box-shadow: var(--shadow-strong);
}

.hero-video-card {
  position: relative;
  grid-column: 1 / 3;
  overflow: hidden;
  transform-style: preserve-3d;
}

.hero-video-card::after,
.hero-mini-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23,18,20,0.4), transparent 44%);
}

.hero-video-card video,
.hero-mini-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-note {
  padding: 28px;
  display: flex;
  align-items: center;
  background: #fff7fa;
}

.hero-note p {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.3rem;
  line-height: 1;
  max-width: 15ch;
}

.hero-mini-video {
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.card-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.54);
  border: 1px solid rgba(255,255,255,0.76);
  font-weight: 600;
}

.ticker-section {
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid rgba(23,18,20,0.06);
  border-bottom: 1px solid rgba(23,18,20,0.06);
  background: rgba(255,255,255,0.22);
  margin-right: 6px;
}

.ticker-track {
  display: flex;
  gap: 34px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 22s linear infinite;
}

.ticker-track span {
  color: var(--muted);
  font-weight: 600;
}

.ticker-track span::after {
  content: "•";
  margin-left: 34px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-35%);
  }
}

.section-intro {
  max-width: 760px;
  margin-bottom: 36px;
}

.manifesto-layout,
.services-notes,
.testimonials-grid,
.contact-boxes {
  display: grid;
  gap: 18px;
}

.manifesto-layout {
  grid-template-columns: repeat(3, 1fr);
}

.manifesto-block,
.note-card,
.testimonial-card,
.contact-box {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.46);
  border: 1px solid rgba(255,255,255,0.76);
  box-shadow: var(--shadow);
}

.manifesto-block strong {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.manifesto-block p,
.note-card p,
.testimonial-card p {
  line-height: 1.9;
  color: var(--muted);
}

.portfolio-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 340px 230px;
  gap: 18px;
}

.portfolio-item,
.portfolio-quote {
  border-radius: var(--radius-xl);
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.76);
  box-shadow: var(--shadow-strong);
  transform-style: preserve-3d;
}

.portfolio-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23,18,20,0.44), transparent 44%);
}

.portfolio-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.large {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.tall {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.small {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.portfolio-quote {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.portfolio-info {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
}

.portfolio-info span {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff5f8;
}

.portfolio-info h3 {
  color: white;
  font-size: 1.28rem;
  line-height: 1.1;
}

.portfolio-quote {
  display: none;
}

.pricing-editorial {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.price-card {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.48);
  border: 1px solid rgba(255,255,255,0.78);
  box-shadow: var(--shadow-strong);
  transition: transform 0.3s ease;
}

.price-card:hover {
  transform: translateY(-6px) rotate(-1deg);
}

.price-card.featured {
  background: linear-gradient(180deg, rgba(255,255,255,0.7), rgba(248,191,209,0.36));
}

.price-top {
  margin-bottom: 18px;
}

.price-top span {
  display: inline-block;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--muted);
}

.price-top strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.price-card p {
  color: var(--muted);
  line-height: 1.8;
}

.services-notes {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
}

.note-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.about-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 40px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  min-height: 620px;
}

.about-shape {
  position: absolute;
  inset: 36px 36px 0 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255,255,255,0.7), rgba(248,191,209,0.6));
  border: 1px solid rgba(255,255,255,0.78);
}

.about-image {
  position: absolute;
  inset: 0 0 36px 36px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.82);
  box-shadow: var(--shadow-strong);
  background: rgba(255,255,255,0.46);
  transform-style: preserve-3d;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.82);
  color: var(--muted);
  font-size: 0.84rem;
}

.about-copy p {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.9;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.about-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(23,18,20,0.07);
}
.testimonials-section {
  position: relative;
  padding: 100px 20px;
  overflow: hidden;
}

.testimonials-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.testimonials-carousel-container {
  width: 100%;
  max-width: 1100px;
  overflow: hidden;
  padding: 20px 0;
}

.testimonials-carousel {
  display: flex;
  gap: 24px;
  transition: transform 0.6s ease;
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc((100% - 48px) / 3);
  aspect-ratio: 16 / 10;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  background: transparent;
  backdrop-filter: none;
  transition: transform 0.45s ease;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.testimonial-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: transparent;
}


.testimonial-card.active {
  transform: scale(1.02);
  opacity: 1;

}

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.02);

  opacity: 1;
}

.testimonial-btn {
  width: 54px;
  height: 54px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.18);
  color: #111;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, background 0.3s ease, opacity 0.3s ease;
  z-index: 5;
  flex-shrink: 0;
}

.testimonial-btn:hover {
  transform: scale(1.08);
  background: rgba(255, 255, 255, 0.3);
}

.testimonial-btn.prev {
  margin-right: 16px;
}

.testimonial-btn.next {
  margin-left: 16px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.testimonial-dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dots button.active {
  width: 28px;
  background: #111;
}
.testimonials-carousel-container{

  color: transparent;
}


@media (max-width: 1024px) {
  .testimonial-card {
    flex: 0 0 calc((100% - 24px) / 2);
    height: 380px;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 80px 16px;
  }

  .testimonial-card {
    flex: 0 0 100%;
    height: 360px;
  }

  .testimonial-btn {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .testimonial-btn.prev {
    margin-right: 10px;
  }

  .testimonial-btn.next {
    margin-left: 10px;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    height: 300px;
    border-radius: 22px;
  }
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: start;
}

.contact-copy h2 {
  font-size: clamp(2.8rem, 6vw, 5.4rem);
}

.contact-copy p {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.9;
}

.contact-box strong {
  display: block;
  margin-bottom: 6px;
  text-transform: lowercase;
}

.contact-box span {
  color: var(--muted);
}

.contact-form {
  padding: 30px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.82);
  box-shadow: var(--shadow-strong);
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.field label {
  text-transform: lowercase;
  font-weight: 600;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 17px 18px;
  border-radius: 18px;
  border: 1px solid rgba(23,18,20,0.08);
  background: rgba(255,255,255,0.84);
  color: var(--text);
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.field select option {
  background: #fff5f8;
  color: #171214;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8d767d;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(23,18,20,0.16);
  background: rgba(255,255,255,0.96);
}

.full-btn {
  width: 100%;
}

.footer {
  padding: 28px 0 40px;
}

.footer-inner {
  padding-top: 24px;
  border-top: 1px solid rgba(23,18,20,0.08);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.footer-inner p,
.footer-inner a {
  color: var(--muted);
}

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

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

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.22s;
}

.delay-3 {
  transition-delay: 0.32s;
}

@media (max-width: 1180px) {
  .site-main {
    margin-left: 0;
    width: 100%;
    max-width: none;
    padding: 90px 20px 40px;
  }

  .side-nav {
    left: 16px;
    right: 16px;
    top: 78px;
    bottom: auto;
    width: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: 0.28s ease;
  }

  .side-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav-toggle {
    display: block;
  }

  .hero-panel,
  .about-layout,
  .contact-layout,
  .pricing-editorial,
  .services-notes,
  .testimonials-grid,
  .manifesto-layout {
    grid-template-columns: 1fr;
  }

  .hero-stack {
    grid-template-columns: 1fr 1fr;
    min-height: auto;
  }

  .portfolio-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .large,
  .tall,
  .small {
    grid-column: auto;
    grid-row: auto;
    min-height: 320px;
  }

.about-image-wrap{
    min-height: 620px; 
  }

  .about-image{
    height: 620px;
  }

  .about-image img{
    width:100%;
    height:100%;
    object-fit: cover; 
    object-position: center top; 
  
  }



  .form-grid {
    grid-template-columns: 1fr;
  }

  .cursor-light {
    display: none;
  }
}

@media (max-width: 760px) {
  .hero-copy h1,
  .section-intro h2,
  .about-copy h2,
  .contact-copy h2 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .hero-stack {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .hero-video-card,
  .hero-note,
  .hero-mini-video {
    min-height: 260px;
  }

  .about-shape {
    inset: 24px 24px 0 0;
  }

  .about-image {
    inset: 0 0 24px 24px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}