* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background: #eec0c5;
  color: #111;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 16px 28px;
  background: rgba(238, 192, 197, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(184, 83, 95, 0.22);
}

.logo {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #b8535f;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 13px;
  font-weight: 700;
  color: #b8535f;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nav-links a:hover {
  opacity: 0.7;
}

.portfolio-page {
  width: 100%;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 0;
  scroll-margin-top: 68px;
}

.portfolio-page img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 1920px;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.portfolio-page img:hover {
  transform: scale(1.006);
  filter: contrast(1.02);
}

.hero {
  min-height: calc(100vh - 68px);
}

.contact-section {
  min-height: 70vh;
  padding: 96px 24px;
  display: grid;
  place-items: center;
  text-align: center;
  background: #111;
  color: #fff;
}

.contact-section h1 {
  margin: 0;
  font-size: clamp(42px, 8vw, 112px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.contact-section p {
  max-width: 680px;
  margin: 18px auto 0;
  font-size: clamp(16px, 2vw, 22px);
  color: rgba(255, 255, 255, 0.82);
}

.eyebrow {
  margin-bottom: 18px !important;
  color: #eec0c5 !important;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.18em;
  font-size: 13px !important;
}

.button-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border-radius: 999px;
  background: #eec0c5;
  color: #111;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-button.secondary {
  background: transparent;
  color: #eec0c5;
  border: 1px solid rgba(238, 192, 197, 0.75);
}

.contact-button:hover {
  transform: translateY(-2px);
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #b8535f;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.fade-in {
  animation: fadeUp 0.9s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 18px;
  }

  .nav-links {
    gap: 12px;
  }

  .nav-links a {
    font-size: 11px;
  }

  .portfolio-page {
    min-height: auto;
    scroll-margin-top: 108px;
  }

  .portfolio-page img {
    width: 100%;
  }

  .contact-section {
    min-height: 60vh;
    padding: 72px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fade-in,
  .portfolio-page img,
  .contact-button {
    animation: none;
    transition: none;
  }
}


/* Captured Visual Moments reel section */
.captured-section {
  padding: 96px 24px;
  background: #111;
  color: #fff;
  scroll-margin-top: 68px;
}

.captured-heading {
  max-width: 980px;
  margin: 0 auto 44px;
  text-align: center;
}

.captured-heading h2 {
  margin: 0;
  font-size: clamp(42px, 8vw, 108px);
  line-height: 0.92;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.reel-grid {
  width: min(1040px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.reel-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(238, 192, 197, 0.30);
  background: rgba(255,255,255,0.04);
  box-shadow: 0 22px 60px rgba(0,0,0,0.28);
  text-decoration: none;
}

.reel-card img {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.reel-card:hover img {
  transform: scale(1.04);
  filter: contrast(1.06);
}

.reel-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.08), rgba(0,0,0,0.58));
}

.play-badge {
  align-self: flex-end;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.90);
  color: #111;
  font-size: 16px;
  padding-left: 3px;
}

.reel-overlay p {
  margin: 0;
  color: #fff;
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 860px) {
  .reel-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
  }

  .captured-section {
    padding: 72px 18px;
  }
}
