:root {
  --bg: #ffffff;
  --card: rgba(255, 255, 255, 0.9);
  --card-strong: #ffffff;
  --text: #5d3d48;
  --text-soft: #8b6a76;
  --heading: #6b4352;
  --pink: #f7b8d4;
  --peach: #ffd8b5;
  --yellow: #fff1a8;
  --mint: #cfeecf;
  --sky: #cfe6ff;
  --line: rgba(107, 67, 82, 0.12);
  --shadow: 0 18px 40px rgba(177, 127, 149, 0.14);
  --shadow-soft: 0 12px 28px rgba(177, 127, 149, 0.1);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: #ffffff;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-decor {
  position: fixed;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
  filter: blur(4px);
  opacity: 0.14;
}

.decor-1 {
  width: 180px;
  height: 180px;
  top: 110px;
  left: -50px;
  background: rgba(247, 184, 212, 0.18);
}

.decor-2 {
  width: 220px;
  height: 220px;
  right: -70px;
  top: 520px;
  background: rgba(207, 238, 207, 0.18);
}

.decor-3 {
  width: 160px;
  height: 160px;
  bottom: 120px;
  left: 5%;
  background: rgba(207, 230, 255, 0.18);
}

/* Navigation */
.navigation {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1000;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-links {
  display: flex;
  gap: 14px;
  align-items: center;
}

.nav-link {
  color: var(--heading);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(107, 67, 82, 0.08);
  box-shadow: 0 8px 20px rgba(177, 127, 149, 0.08);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.nav-link:hover {
  transform: translateY(-2px);
  background: #ffffff;
  box-shadow: 0 12px 22px rgba(177, 127, 149, 0.12);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  border: 1px solid rgba(107, 67, 82, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
}

.mobile-menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--heading);
  margin: 3px 0;
  border-radius: 2px;
  transition: 0.3s;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0;
  background: #ffffff;
  z-index: 1;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 64px;
  padding-top: 84px;
  padding-bottom: 56px;
}

.hero-left {
  flex: 1;
  max-width: 760px;
  text-align: left;
}

.hero-right {
  flex: 0 0 360px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrap {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 4 / 5;
  border-radius: 32px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(107, 67, 82, 0.08);
  box-shadow: 0 18px 40px rgba(177, 127, 149, 0.12);
}

.hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-eyebrow {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8a6f78;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-size: clamp(4rem, 7vw, 6rem);
  color: var(--heading);
  margin-bottom: 0;
}

.hero-subtitle {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-soft);
  margin-top: 1.4rem;
  margin-bottom: 0;
  max-width: 36rem;
}

.social-links {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 2rem;
}

.social-link {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(107, 67, 82, 0.12);
  border-radius: 18px;
  color: var(--heading);
  text-decoration: none;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(177, 127, 149, 0.14);
  border-color: rgba(107, 67, 82, 0.22);
}

.social-icon-svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  display: block;
}

/* Section arrow */
.section-arrow {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(107, 67, 82, 0.1);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 5;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.section-arrow:hover {
  transform: translateX(-50%) translateY(2px);
}

.section-arrow::before {
  content: "";
  width: 11px;
  height: 11px;
  border-right: 2.5px solid rgba(107, 67, 82, 0.78);
  border-bottom: 2.5px solid rgba(107, 67, 82, 0.78);
  transform: rotate(45deg);
  margin-top: -2px;
}

/* Sections */
.content-section {
  position: relative;
  padding: 72px 0;
  z-index: 1;
}

.content-section.alt {
  padding-top: 56px;
}

.section-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 251, 253, 0.96));
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
  padding: 34px;
  position: relative;
}

.section-card::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 2px dashed rgba(247, 184, 212, 0.34);
  border-radius: 26px;
  pointer-events: none;
}

.section-card-portfolio::after {
  border-color: rgba(207, 230, 255, 0.42);
}

.section-header {
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.section-label {
  display: inline-block;
  margin: 0 0 0.7rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8f6a79;
  background: var(--peach);
  padding: 8px 14px;
  border-radius: 999px;
}

h2 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1;
  font-size: clamp(2.2rem, 3vw, 3rem);
  letter-spacing: -0.03em;
  color: var(--heading);
}

h3,
h4 {
  margin: 0;
}

p {
  font-size: 1.04rem;
  color: var(--text-soft);
  margin-bottom: 18px;
  max-width: 68ch;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-text {
  max-width: 640px;
}

.about-lead {
  margin-top: 0;
  font-size: 1.15rem;
  line-height: 1.8;
  font-weight: 700;
  color: var(--text);
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.about-tags span {
  padding: 0.72rem 1rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--heading);
  border: 1px solid rgba(107, 67, 82, 0.08);
  box-shadow: var(--shadow-soft);
}

.about-tags span:nth-child(4n + 1) {
  background: var(--pink);
}

.about-tags span:nth-child(4n + 2) {
  background: var(--mint);
}

.about-tags span:nth-child(4n + 3) {
  background: var(--yellow);
}

.about-tags span:nth-child(4n + 4) {
  background: var(--sky);
}

.about-photo {
  display: flex;
  justify-content: center;
}

.about-photo-wrap {
  width: 100%;
  max-width: 360px;
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
  padding: 10px;
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}

.about-photo img {
  width: 100%;
  border-radius: 22px;
  display: block;
  object-fit: cover;
}

/* Portfolio subtitles */
.portfolio-subtitle {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-top: 12px;
  margin-bottom: 24px;
  font-family: "Nunito", sans-serif;
  font-size: 1.06rem;
  font-weight: 800;
  color: var(--heading);
  letter-spacing: -0.01em;
  background: #ffffff;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(107, 67, 82, 0.08);
  box-shadow: var(--shadow-soft);
}

.portfolio-subtitle:not(:first-of-type) {
  margin-top: 54px;
}

/* Examples */
.examples-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 10px;
  align-items: start;
  justify-items: center;
  position: relative;
  z-index: 1;
}

.example-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.phone-frame {
  width: 100%;
  max-width: 188px;
  background: linear-gradient(180deg, #ffffff 0%, #f4ecf0 100%);
  border-radius: 30px;
  padding: 8px;
  box-shadow: 0 16px 30px rgba(177, 127, 149, 0.16);
  position: relative;
  border: 1px solid rgba(107, 67, 82, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.phone-frame:hover {
  transform: translateY(-4px) rotate(-1deg);
  box-shadow: 0 20px 34px rgba(177, 127, 149, 0.2);
}

.phone-frame::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: 34%;
  height: 15px;
  background: #ece5ea;
  border-radius: 999px;
  z-index: 3;
}

.phone-screen {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #000;
  aspect-ratio: 9 / 19.5;
}

.video-card {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
}

.ugc-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #000;
  cursor: pointer;
}

.video-play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(6px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.video-play-button:hover {
  background: rgba(255, 255, 255, 0.34);
  transform: translate(-50%, -50%) scale(1.04);
}

.video-play-button svg {
  width: 26px;
  height: 26px;
  fill: #ffffff;
  margin-left: 3px;
}

.video-card.is-playing .video-play-button {
  opacity: 0;
  pointer-events: none;
}

.video-controls {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  z-index: 2;
  padding: 8px 6px 4px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0));
}

.video-progress {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  cursor: pointer;
}

.video-progress:focus {
  outline: none;
}

.video-progress::-webkit-slider-runnable-track {
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
}

.video-progress::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  margin-top: -4px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #ffffff;
  border: none;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.28);
}

.video-progress::-moz-range-track {
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
}

.video-progress::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border: none;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.28);
}

/* Contact */
.contact-simple {
  text-align: center;
  padding-bottom: 80px;
}

.contact-card {
  text-align: center;
}

.contact-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 40px;
  color: var(--heading);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.contact-icon {
  width: 34px;
  height: 34px;
  fill: var(--heading);
  flex-shrink: 0;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  min-height: 60px;
  padding: 10px 22px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(107, 67, 82, 0.08);
  color: var(--heading);
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  font-weight: 800;
  line-height: 1;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-row:hover .contact-pill {
  transform: translateY(-2px) rotate(-1deg);
}

/* Footer */
.footer {
  padding: 34px 0 44px;
  position: relative;
  z-index: 1;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.footer-links a {
  color: #8d6876;
  text-decoration: none;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.72);
  padding: 8px 14px;
  border-radius: 999px;
}

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

.footer-copyright {
  text-align: center;
  color: #957684;
  font-size: 0.95rem;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 34px;
  }

  .hero-left {
    text-align: center;
    max-width: 100%;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .social-links {
    justify-content: center;
  }

  .hero-image-wrap {
    max-width: 320px;
  }

  .section-card {
    padding: 24px;
    border-radius: 28px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .about-photo img {
    max-width: 300px;
  }

  .examples-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .phone-frame {
    max-width: 172px;
    border-radius: 26px;
  }

  .phone-screen {
    border-radius: 20px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-links[data-open="true"] {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    right: 20px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(107, 67, 82, 0.14);
    border-radius: 18px;
    padding: 14px;
    min-width: 200px;
    box-shadow: var(--shadow);
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero-title {
    white-space: normal;
  }

  .content-section {
    padding: 56px 0;
  }

  .content-section.alt {
    padding-top: 40px;
  }

  .contact-title {
    margin-bottom: 30px;
  }

  .contact-pill {
    min-height: 54px;
    padding: 10px 18px;
    font-size: 1.04rem;
  }

  .examples-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .phone-frame {
    max-width: 170px;
    border-radius: 26px;
  }

  .phone-screen {
    border-radius: 20px;
  }

  .video-play-button {
    width: 56px;
    height: 56px;
  }

  .video-play-button svg {
    width: 22px;
    height: 22px;
  }

  .section-arrow {
    width: 40px;
    height: 40px;
    bottom: 14px;
  }

  .section-arrow::before {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .navigation {
    padding: 16px;
  }

  .hero-content {
    padding-top: 88px;
    padding-bottom: 48px;
  }

  .hero-image-wrap {
    max-width: 270px;
    border-radius: 24px;
  }

  .hero-eyebrow {
    font-size: 0.74rem;
    line-height: 1.4;
  }

  .section-card {
    padding: 18px;
    border-radius: 24px;
  }

  .social-link {
    width: 48px;
    height: 48px;
  }

  .social-icon-svg {
    width: 20px;
    height: 20px;
  }

  .contact-list {
    gap: 18px;
  }

  .contact-row {
    gap: 12px;
    width: 100%;
    justify-content: center;
  }

  .contact-icon {
    width: 30px;
    height: 30px;
  }

  .contact-pill {
    min-height: 48px;
    padding: 10px 16px;
    font-size: 0.95rem;
    border-radius: 16px;
  }

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

  .phone-frame {
    max-width: 204px;
  }

  .section-arrow {
    width: 36px;
    height: 36px;
  }

  .page-decor {
    opacity: 0.28;
  }
}