:root {
  --bg: #faf5f1;
  --cream: #f3ebe3;
  --ink: #2b1f1a;
  --muted: #7a6a62;
  --peach: #f5c6b4;
  --rose: #e89a8f;
  --rose-deep: #c66f6a;
  --gold: #b89163;
  --radius: 22px;
  --shadow: 0 20px 50px -25px rgba(80, 40, 30, 0.25);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.5px;
  line-height: 1.05;
}
h1 {
  font-size: clamp(3rem, 7vw, 6rem);
}
h1 em {
  font-style: italic;
  color: var(--rose-deep);
}
h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
}
h3 {
  font-size: 1.4rem;
  font-weight: 600;
}
.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 500;
  margin-bottom: 1rem;
}
.lede {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 50ch;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}

/* nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 4vw;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(250, 245, 241, 0.75);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.nav__brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 600;
}
.nav__brand span {
  font-style: italic;
  color: var(--rose-deep);
}
.nav__links {
  display: flex;
  gap: 2rem;
  font-size: 0.92rem;
}
.nav__links a {
  position: relative;
  padding: 0.3rem 0;
}
.nav__links a:hover {
  color: var(--rose-deep);
}

/* HERO LAYOUT */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 6rem 6vw 7rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* TEXT */
.hero__cta {
  display: flex;
  gap: 1rem;
  margin-top: 2.2rem;
  flex-wrap: wrap;
}

.hero p.lede {
  margin-top: 1.4rem;
  color: #666;
}

/* BUTTONS */
.btn {
  padding: 1rem 1.8rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  display: inline-block;
}

.btn--primary {
  background: var(--ink);
  color: var(--bg);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn--ghost {
  border: 1px solid var(--ink);
  color: var(--ink);
}

.btn--ghost:hover {
  background: var(--ink);
  color: var(--bg);
}

/* VISUAL AREA */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 600px;
}

/* MAIN SHAPE WRAPPER (bigger +50px) */
.hero__visual-inner {
  position: relative;
  width: 470px;
  height: 470px;
}

/* MOVING BACKGROUND BLOB */
.blob {
  position: absolute;
  inset: 0;
  z-index: 1;

  border-radius: 52% 48% 60% 40% / 45% 55% 45% 55%;

  background: radial-gradient(
    circle at 30% 30%,
    var(--peach),
    var(--rose) 65%,
    var(--rose-deep)
  );

  animation: morph 14s ease-in-out infinite;
}

/* STATIC IMAGE */
.hero__card {
  position: absolute;
  inset: 0;
  z-index: 2;

  border-radius: 52% 48% 60% 40% / 45% 55% 45% 55%;
  overflow: hidden;

  transform: scale(0.92);
}

.hero__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ANIMATION ONLY FOR BLOB */
@keyframes morph {
  0%,
  100% {
    border-radius: 52% 48% 60% 40% / 45% 55% 45% 55%;
    transform: rotate(0deg) scale(1);
  }
  50% {
    border-radius: 45% 55% 45% 55% / 55% 45% 60% 40%;
    transform: rotate(6deg) scale(1.03);
  }
}
/* sections shared */
section {
  padding: 6rem 6vw;
  max-width: 1400px;
  margin: 0 auto;
}
.section-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}
.section-head .lede {
  margin: 1rem auto 0;
}

/* video grid */
/* GRID */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

/* PHONE CARD */
.video-card {
  background: #fff;
  border-radius: 42px;
  padding: 12px;
  box-shadow: 0 20px 50px -30px rgba(0, 0, 0, 0.35);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}

.video-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow);
}

/* PHONE SCREEN AREA */
.video-thumb {
  aspect-ratio: 9 / 19.5;
  position: relative;
  cursor: pointer;

  border-radius: 32px;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
}

.video-thumb video {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-thumb .overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background: linear-gradient(
    135deg,
    rgba(255, 192, 203, 0.25),
    rgba(255, 105, 180, 0.2)
  );
}

/* PLAY BUTTON */
.play {
  position: relative;
  z-index: 2;

  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;

  background: rgba(255, 255, 255, 0.9);
  color: var(--rose-deep);

  display: grid;
  place-items: center;

  cursor: pointer;
  transition: transform 0.25s ease;
}

.play:hover {
  transform: scale(1.1);
}

/* META */
.video-meta {
  padding: 1.2rem 0.5rem 0.5rem;
}

.tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;

  color: var(--rose-deep);
  background: var(--cream);

  padding: 0.35rem 0.8rem;
  border-radius: 999px;

  margin-bottom: 0.8rem;
}

.video-meta h3 {
  margin-bottom: 0.5rem;
}

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

/* about */
.about {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}
/* WRAPPER */
.about__img {
  position: relative;
  height: 500px;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* INNER SHAPE WRAPPER */
.about__img-inner {
  position: relative;
  width: 420px;
  height: 420px;
}

/* BACKGROUND BLOB */
.blob {
  position: absolute;
  inset: 0;
  z-index: 1;

  border-radius: 52% 48% 60% 40% / 45% 55% 45% 55%;

  background: radial-gradient(
    circle at 30% 30%,
    var(--peach),
    var(--rose) 65%,
    var(--rose-deep)
  );

  animation: morph 14s ease-in-out infinite;
}

/* IMAGE IN SAME SHAPE */
.about__img img {
  position: absolute;
  inset: 0;
  z-index: 2;

  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  border-radius: 52% 48% 60% 40% / 45% 55% 45% 55%;

  /* робить “втиснення” як єдина форма */
  transform: scale(0.92);
}

/* ANIMATION */
@keyframes morph {
  0%,
  100% {
    border-radius: 52% 48% 60% 40% / 45% 55% 45% 55%;
    transform: rotate(0deg);
  }
  50% {
    border-radius: 45% 55% 45% 55% / 55% 45% 60% 40%;
    transform: rotate(6deg);
  }
}
.stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.stats li {
  display: flex;
  flex-direction: column;
}
.stats strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  color: var(--rose-deep);
  font-weight: 600;
}
.stats span {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.about__text p + p {
  margin-top: 1rem;
  color: var(--muted);
}

/* services */
.services {
  background: var(--cream);
  max-width: none;
  border-radius: 0;
}
.services__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  max-width: 1300px;
  margin: 0 auto;
}
.services__list li {
  background: var(--bg);
  padding: 2rem 1.8rem;
  border-radius: var(--radius);
  transition: transform 0.3s ease;
}
.services__list li:hover {
  transform: translateY(-4px);
}
.services__list h3 {
  margin-bottom: 0.6rem;
  color: var(--rose-deep);
}
.services__list p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* contact */
.contact {
  text-align: center;
  padding: 8rem 6vw;
}
.contact h2 {
  max-width: 600px;
  margin: 0 auto 1rem;
}
.contact p {
  color: var(--muted);
  margin-bottom: 2rem;
}
.contact .btn {
  font-size: 1.1rem;
  padding: 1.2rem 2.4rem;
}
.socials {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.socials a {
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.socials a:hover {
  color: var(--rose-deep);
}

/* footer */
.footer {
  padding: 2rem 6vw;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* modal */
/* BACKDROP */
.modal {
  position: fixed;
  inset: 0;
  z-index: 999;

  display: none;
  align-items: center;
  justify-content: center;

  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(10px);

  animation: fadeIn 0.25s ease;
}

/* ACTIVE STATE */
.modal.active {
  display: flex;
}

/* VIDEO WRAPPER (NO BOX FEELING) */
.modal-content {
  position: relative;

  width: min(420px, 90vw);
  aspect-ratio: 9 / 16;

  border-radius: 28px;
  overflow: hidden;

  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);

  animation: popIn 0.3s ease;
}

/* VIDEO */
.modal-content video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CLOSE BUTTON (minimal) */
.close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;

  width: 36px;
  height: 36px;

  border-radius: 50%;
  border: none;

  background: rgba(255, 255, 255, 0.15);
  color: white;

  font-size: 18px;
  cursor: pointer;

  backdrop-filter: blur(6px);

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.close:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.25);
}

/* ANIMATIONS */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes popIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* responsive */
@media (max-width: 880px) {


  .nav {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    gap: 50px;
  }

  .hero {
    margin-right: auto;
    margin-left: auto;
    grid-template-columns: 1fr;
    padding: 3rem 6vw 4rem;
    gap: 3rem;
  }
  .hero__visual {
    padding-top: 50px;
    height: 360px;
  }
  .about {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about__img {
    height: 340px;
  }
  .nav__links {
    gap: 1.2rem;
    font-size: 0.85rem;
  }
  section {
    margin-right: auto;
    margin-left: auto;
    padding-right: 50px;
  }

  .services__list {
    text-align: center;
    justify-content: center;
     flex-wrap: wrap;
  }
}
