@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&display=swap');

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

:root {
  --beige: #EAE6E1;
  --light-gray: #F5F5F5;
  --rose: #A74D4A;
  --dark: #121212;
  --white: #F5F5F5;
  --font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Archivo', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background-color: var(--light-gray);
  -webkit-font-smoothing: antialiased;
}

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

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

/* ── Header ── */
.header {
  background: var(--light-gray);
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-logo a {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--rose);
  font-weight: 600;
}

.header-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.header-nav a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.13px;
  color: var(--dark);
  transition: opacity 0.2s;
}

.header-nav a:hover {
  opacity: 0.6;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 24px;
  height: 24px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--dark);
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-menu-btn.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.mobile-menu-btn.open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--light-gray);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--dark);
}

/* ── Section Dividers ── */
.section-divider {
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.section-divider svg {
  width: 100%;
  height: auto;
  display: block;
}

.section-divider-top {
  margin-bottom: -1px;
}

.section-divider-bottom {
  margin-top: -1px;
}

/* ── Hero Section ── */
.hero {
  background: var(--beige);
  padding: 80px 40px;
  position: relative;
}

.hero-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 72px;
  font-weight: 600;
  color: var(--dark);
}

.hero-image {
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 4/5;
}

.hero h4 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  color: var(--dark);
}

/* ── Blue Ribbon Section ── */
.blue-ribbon {
  background: var(--light-gray);
  padding: 80px 40px;
}

.blue-ribbon-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.blue-ribbon-text {
  text-align: center;
}

.blue-ribbon h3 {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 40px;
  color: var(--dark);
  line-height: 1.3;
}

.blue-ribbon h3 span {
  display: block;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 0;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.blue-ribbon h4 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 16px;
}

.streaming-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.streaming-logos img {
  height: 32px;
  opacity: 0.8;
}

/* ── Latest Video Section ── */
.latest-video {
  background: var(--beige);
  padding: 80px 40px;
  text-align: center;
}

.latest-video-content {
  max-width: 900px;
  margin: 0 auto;
}

.latest-video h3 {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 40px;
  color: var(--dark);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  transition: opacity 0.2s;
}

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

.social-links svg {
  width: 28px;
  height: 28px;
  fill: var(--dark);
}

/* ── Testimonials Section ── */
.testimonials {
  background: var(--light-gray);
  padding: 80px 40px;
}

.testimonials-content {
  max-width: 1100px;
  margin: 0 auto;
}

.testimonials-header {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  text-align: center;
  margin-bottom: 48px;
  color: var(--dark);
}

.carousel-container {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  transition: opacity 0.4s ease;
}

.carousel-card {
  background: var(--beige);
  padding: 40px 32px;
  border-radius: 8px;
  display: none;
}

.carousel-card.active {
  display: block;
}

.carousel-card h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--dark);
  margin-bottom: 20px;
}

.carousel-card .reviewer {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.7;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.carousel-btn {
  background: none;
  border: 1.5px solid var(--dark);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.carousel-btn:hover {
  background: var(--dark);
  color: var(--white);
}

.carousel-btn:hover svg {
  fill: var(--white);
}

.carousel-btn svg {
  width: 14px;
  height: 14px;
  fill: var(--dark);
  transition: fill 0.2s;
}

.order-btn-container {
  text-align: center;
  margin-top: 40px;
}

.btn-outline {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.14px;
  padding: 12px 60px;
  border: 1px solid var(--dark);
  border-radius: 300px;
  color: var(--dark);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
}

.btn-outline-light {
  border-color: var(--white);
  color: var(--white);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--rose);
}

/* ── Contact / Let's Be Friends Section ── */
.contact-section {
  background: var(--rose);
  padding: 80px 40px;
  color: var(--white);
}

.contact-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-image-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-section h3 {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 400;
  color: var(--white);
}

.contact-image {
  width: 100%;
  object-fit: cover;
  object-position: 40% center;
  aspect-ratio: 3/4;
  border-radius: 16px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.8;
}

.form-group label .required {
  font-size: 10px;
  opacity: 0.6;
  text-transform: none;
  letter-spacing: 0;
}

.form-group input,
.form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(245, 245, 245, 0.4);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 8px 0;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(245, 245, 245, 0.3);
}

.checkbox-group {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.checkbox-group input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--white);
}

.checkbox-group label {
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
  opacity: 1;
}

.form-submit {
  margin-top: 10px;
}

.form-success {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  color: var(--white);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

/* ── Media Kit Section ── */
.media-kit {
  background: var(--beige);
  padding: 80px 40px;
  text-align: center;
}

.media-kit-content {
  max-width: 900px;
  margin: 0 auto;
}

.media-kit h3 {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 400;
  color: var(--dark);
}

.media-kit h3 a {
  color: var(--rose);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity 0.2s;
}

.media-kit h3 a:hover {
  opacity: 0.7;
}

/* ── Footer ── */
.footer {
  background: var(--beige);
  padding: 60px 40px;
  text-align: center;
}

.footer h3 {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 20px;
}

.footer .social-links svg {
  fill: var(--dark);
}

/* ── About Page ── */
.about-hero {
  background: var(--rose);
  padding: 80px 40px;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.about-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  width: 100%;
  object-fit: cover;
  object-position: 40% center;
  aspect-ratio: 3/4;
  border-radius: 16px;
}

.about-text {
  color: var(--white);
}

.about-text p {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--white);
}

/* ── Media Page ── */
.media-hero {
  background: var(--beige);
  padding: 80px 40px;
  text-align: center;
}

.media-hero h2 {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 16px;
}

.media-section {
  padding: 60px 40px;
}

.media-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.media-section h3 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 32px;
  text-align: center;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.media-grid-item {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--beige);
  cursor: pointer;
}

.media-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.media-grid-item:hover img {
  transform: scale(1.05);
}

.instagram-section {
  background: var(--light-gray);
}

.youtube-section {
  background: var(--beige);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ── Contact Page (standalone) ── */
.contact-page-hero {
  background: var(--rose);
  padding: 80px 40px;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.contact-page-content {
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
}

.contact-page-content h3 {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 40px;
  text-align: center;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-content,
  .blue-ribbon-content,
  .contact-content,
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-text {
    align-items: center;
  }

  .hero-image {
    margin: 0 auto;
  }

  .blue-ribbon-text {
    text-align: center;
  }

  .streaming-logos {
    justify-content: center;
  }

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

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

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

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

  .hero h1 {
    font-size: 40px;
  }

  .hero h4 {
    font-size: 20px;
  }

  .blue-ribbon h3,
  .latest-video h3,
  .contact-section h3,
  .footer h3 {
    font-size: 30px;
  }

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

  .media-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .header {
    padding: 16px 24px;
  }

  .hero,
  .blue-ribbon,
  .latest-video,
  .testimonials,
  .contact-section,
  .footer,
  .about-hero,
  .media-hero,
  .media-section,
  .contact-page-hero {
    padding-left: 24px;
    padding-right: 24px;
  }
}
