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

html {
  scroll-behavior: smooth;
}

:root {
  --brand: #800400;
  --cream: #f6efe6;
  --cream-soft: #fdf8f1;
  --cream-alt: #f3e6d8;
  --cream-extra-soft: #f8f1e9;
  --brand-border: rgba(128, 4, 0, 0.18);
  --brand-border-soft: rgba(128, 4, 0, 0.08);
  --brand-shadow: rgba(128, 4, 0, 0.08);
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: var(--brand);
  background: var(--cream);
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

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

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

.nav-link {
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 12px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-link:hover {
  opacity: 0.8;
  transform: translateY(-1px);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 6px;
  border: 1px solid rgba(128, 4, 0, 0.25);
  border-radius: 12px;
  background: rgba(253, 248, 241, 0.9);
}

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

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0;
}

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

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

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

.hero-image-wrap {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 4 / 5;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 44px var(--brand-shadow);
  border: 1px solid var(--brand-border-soft);
  background: var(--cream-soft);
  display: grid;
  place-items: center;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.hero-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(248, 236, 227, 1) 0%, rgba(243, 228, 219, 1) 100%);
  color: var(--brand);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.95rem;
  padding: 1.5rem;
  text-align: center;
}

.hero-photo-label {
  max-width: 160px;
}

.hero-eyebrow {
  margin-bottom: 1rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(128, 4, 0, 0.18);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
}

.hero-title {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -5px;
  font-size: clamp(3.1rem, 7vw, 5.8rem);
  margin-bottom: 0;
  color: var(--brand);
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: 0.86rem;
  line-height: 1.9;
  letter-spacing: -0.01em;
  color: var(--brand);
  margin-top: 1.25rem;
  margin-bottom: 0;
  max-width: 42rem;
}

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

.hero-tags span {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand);
  background: rgba(240, 223, 207, 0.65);
  border: 1px solid var(--brand-border-soft);
}

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

.social-link {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--brand-border);
  border-radius: 16px;
  color: var(--brand);
  text-decoration: none;
  background: rgba(253, 248, 241, 0.92);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 30px rgba(128, 4, 0, 0.05);
}

.social-link:hover {
  transform: translateY(-2px);
  background: rgba(128, 4, 0, 0.1);
  border-color: rgba(128, 4, 0, 0.3);
  box-shadow: 0 14px 34px rgba(128, 4, 0, 0.08);
}

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

.contact-cta {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}

.contact-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand);
  margin: 0;
}

.contact-link {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--brand);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1.5px solid var(--brand-border);
  border-radius: 12px;
  background: rgba(253, 248, 241, 0.92);
  transition: all 0.2s ease;
}

.contact-link:hover {
  background: rgba(128, 4, 0, 0.1);
  border-color: rgba(128, 4, 0, 0.3);
  transform: translateY(-2px);
}

.email-button {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border: 1.5px solid var(--brand-border);
  border-radius: 20px;
  color: var(--brand);
  text-decoration: none;
  background: rgba(253, 248, 241, 0.92);
  font-weight: 600;
  font-size: 1.05rem;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 30px rgba(128, 4, 0, 0.05);
}

.email-button:hover {
  transform: translateY(-2px);
  background: rgba(128, 4, 0, 0.1);
  border-color: rgba(128, 4, 0, 0.3);
  box-shadow: 0 14px 34px rgba(128, 4, 0, 0.08);
}

.email-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.brand-carousel {
  margin-top: 1.75rem;
  max-width: 100%;
}

.carousel-label {
  margin-bottom: 0.9rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand);
  opacity: 0.85;
}

.carousel-track-wrapper {
  overflow: hidden;
  border-radius: 24px;
  padding: 1rem 0;
  background: rgba(253, 248, 241, 0.9);
  border: 1px solid var(--brand-border-soft);
}

.carousel-track {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-left: 1.5rem;
  animation: scrollBrands 28s linear infinite;
}

.brand-card {
  flex: 0 0 auto;
  min-width: 150px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 20px;
  border: 1px solid var(--brand-border-soft);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 38px var(--brand-shadow);
  color: var(--brand);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

@keyframes scrollBrands {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.content-section {
  position: relative;
  padding: 64px 0;
  background: var(--cream);
}

.content-section.alt {
  background: var(--cream-alt);
  padding-top: 48px;
}

#about.content-section {
  background: var(--cream-soft);
}

.section-header {
  display: grid;
  gap: 16px;
  margin-bottom: 40px;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand);
  opacity: 0.85;
}

section h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.about-lead {
  font-size: 1.06rem;
  margin-bottom: 1rem;
  color: var(--brand);
}

.about-text p {
  margin-bottom: 1rem;
  color: var(--brand);
}

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

.about-media-wrap {
  width: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 240px;
  box-shadow: none;
  border: none;
  padding: 0;
}

.about-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border: none;
}

.about-placeholder {
  padding: 2rem;
}

.phone-frame {
  width: 100%;
  max-width: 220px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 238, 232, 1) 100%);
  border-radius: 32px;
  padding: 8px;
  box-shadow: 0 18px 38px rgba(128, 4, 0, 0.14);
  position: relative;
}

.phone-frame::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 34%;
  height: 14px;
  background: rgba(128, 4, 0, 0.18);
  border-radius: 999px;
  z-index: 3;
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 12px;
  align-items: start;
  justify-items: center;
}

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

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

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

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

.video-card.is-playing .video-play-button svg path {
  d: path("M8 5.5v13l10-6.5-10-6.5Z");
}

.ugc-image,
.ugc-video,
.example-card {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 22px;
}

.example-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(248, 236, 227, 1) 0%, rgba(244, 223, 208, 1) 100%);
  color: var(--brand);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 1rem;
}

.example-card-soft {
  background: linear-gradient(135deg, rgba(255, 246, 240, 1) 0%, rgba(249, 240, 229, 1) 100%);
}

.video-play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

.video-play-button svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
}

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

.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.72);
}

.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.72);
}

.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);
}

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

.example-card-soft {
  background: linear-gradient(135deg, rgba(255, 246, 240, 1) 0%, rgba(249, 240, 229, 1) 100%);
}

.example-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand);
}

.reviews-grid {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.review-card {
  width: 100%;
  padding: 26px 28px;
  border-radius: 28px;
  background: var(--cream-soft);
  border: 1px solid var(--brand-border-soft);
  box-shadow: 0 18px 40px var(--brand-shadow);
}

.review-stars {
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: var(--brand);
  margin-bottom: 1rem;
}

.contact-simple {
  background: var(--cream-alt);
}

.contact-container {
  display: grid;
  gap: 24px;
}

.contact-title {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 16px;
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-row {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  border-radius: 24px;
  background: var(--cream-soft);
  border: 1px solid var(--brand-border-soft);
  box-shadow: 0 16px 32px var(--brand-shadow);
}

.contact-icon {
  width: 24px;
  height: 24px;
  color: var(--brand);
}

.contact-pill {
  font-weight: 700;
  color: var(--brand);
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 18px;
}

.footer-links a {
  color: var(--brand);
  font-size: 0.95rem;
}

.footer-copyright {
  color: var(--brand);
  font-size: 0.95rem;
}

.section-arrow {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(128, 4, 0, 0.14);
  background: rgba(248, 236, 227, 0.88);
  box-shadow: 0 10px 24px rgba(128, 4, 0, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 5;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.section-arrow:hover {
  transform: translateX(-50%) translateY(2px);
  background: rgba(248, 236, 227, 1);
  box-shadow: 0 12px 26px rgba(128, 4, 0, 0.08);
}

.section-arrow::before {
  content: "";
  width: 11px;
  height: 11px;
  border-right: 2.5px solid var(--brand);
  border-bottom: 2.5px solid var(--brand);
  transform: rotate(45deg);
  margin-top: -2px;
}

@media (max-width: 980px) {
  .hero-content,
  .about-grid,
  .examples-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-content {
    flex-direction: column;
  }

  .hero-right {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .navigation {
    justify-content: space-between;
    width: 100%;
    padding: 16px;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    right: 16px;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    background: rgba(246, 239, 230, 0.95);
    padding: 16px;
    border-radius: 20px;
    box-shadow: 0 24px 60px var(--brand-shadow);
    border: 1px solid var(--brand-border-soft);
    display: none;
  }

  .nav-links[data-open="true"] {
    display: flex;
  }

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

  .hero-title {
    font-size: clamp(2.4rem, 8vw, 4rem);
  }

  .hero-content {
    padding-top: 72px;
  }

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

@media (max-width: 520px) {
  .hero-tags {
    justify-content: flex-start;
  }

  .hero-subtitle,
  .about-text p {
    font-size: 0.95rem;
  }

  .contact-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
