:root {
  --black: #0b0505;
  --maroon-deep: #2a0709;
  --maroon: #4a0d10;
  --red: #d81e2c;
  --red-bright: #ef2b3a;
  --white: #f7f1ef;
  --muted: #d8c3c3;
  --font-display: "Playfair Display", "Georgia", serif;
  --font-body: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --font-script: "Alex Brush", cursive;
}

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

html, body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
}

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

/* ---------- HERO / COVER ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 4rem 6vw 2.5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 15% 20%, rgba(216, 30, 44, 0.35), transparent 60%),
    radial-gradient(ellipse 55% 45% at 85% 15%, rgba(74, 13, 16, 0.55), transparent 65%),
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(42, 7, 9, 0.9), transparent 70%),
    linear-gradient(160deg, var(--black) 0%, var(--maroon-deep) 55%, var(--black) 100%);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 35%, rgba(216, 30, 44, 0.18) 0, transparent 3%),
    radial-gradient(circle at 75% 60%, rgba(216, 30, 44, 0.14) 0, transparent 4%),
    radial-gradient(circle at 45% 80%, rgba(216, 30, 44, 0.12) 0, transparent 3%);
  filter: blur(40px);
  opacity: 0.7;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 3rem;
  flex: 1;
  padding-top: 2rem;
  flex-wrap: wrap;
}

.hero-text {
  position: relative;
  z-index: 2;
  max-width: 720px;
  flex: 1 1 480px;
}

@media (min-width: 900px) {
  .hero-inner {
    min-height: 560px;
  }
  .hero-text {
    width: 58%;
    flex: none;
  }
}

.hero-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.hero-name span {
  color: var(--white);
}

.hero-tagline {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 1.6rem;
}

.tagline-divider {
  color: var(--muted);
  font-weight: 400;
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 1.6rem;
}

.icon-pin {
  width: 20px;
  height: 20px;
  color: var(--red-bright);
  flex-shrink: 0;
}

.hero-socials {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 1.8rem;
}

.social-btn {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--white);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.social-btn svg {
  width: 22px;
  height: 22px;
}

.social-btn:hover {
  background: var(--red-bright);
  color: var(--white);
  transform: translateY(-2px);
}

.hero-bio {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 560px;
}

.hero-visual {
  position: relative;
  z-index: 1;
  flex: 1 1 380px;
  min-height: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-photo-frame {
  position: relative;
  width: min(560px, 100%);
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(216, 30, 44, 0.18), rgba(11, 5, 5, 0.7));
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.55) 16%, black 40%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.55) 16%, black 40%);
}

@media (min-width: 900px) {
  .hero-visual {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: min(640px, 48vw);
    flex: none;
    justify-content: flex-end;
  }

  .hero-photo-frame {
    width: 100%;
  }
}

.hero-photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  text-align: center;
  padding: 2rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  border: 2px dashed rgba(247, 241, 239, 0.25);
  border-radius: 28px;
  margin: 2px;
}

.hero-photo-placeholder code {
  display: inline-block;
  margin-top: 0.3rem;
  font-family: monospace;
  font-size: 0.8rem;
  color: var(--red-bright);
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
}

.hero-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.hero-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--white), transparent 90%);
  max-width: 45%;
}

.hero-script {
  font-family: var(--font-script);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-left: auto;
}

@media (max-width: 899px) {
  .hero-photo-frame {
    -webkit-mask-image: none;
    mask-image: none;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 3rem 6vw 2rem;
  }
  .hero-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .hero-line {
    width: 100%;
    max-width: 100%;
  }
  .hero-script {
    margin-left: 0;
  }
}

/* ---------- PREVIOUS CLIENTS ---------- */

.clients {
  position: relative;
  background: var(--black);
  padding: 3rem 6vw 5rem;
}

.clients-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-bottom: 4rem;
}

.client-logo {
  width: clamp(130px, 15vw, 190px);
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(247, 241, 239, 0.1);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.45);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
}

.client-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.clients-messages-heading {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--red-bright);
  text-align: center;
  margin-bottom: 1.75rem;
}

.messages-row {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding: 0.5rem 0.25rem 1rem;
  scroll-snap-type: x proximity;
}

.message-card {
  flex: 0 0 auto;
  scroll-snap-align: start;
  height: 260px;
  width: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(247, 241, 239, 0.12);
}

@media (max-width: 640px) {
  .message-card {
    height: 220px;
  }
}

/* ---------- SHARED SECTION FOOTER (script lead-in) ---------- */

.section-footer {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.section-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--white), transparent 90%);
  max-width: 45%;
}

.section-script {
  font-family: var(--font-script);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-left: auto;
}

@media (max-width: 640px) {
  .section-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .section-line {
    width: 100%;
    max-width: 100%;
  }
  .section-script {
    margin-left: 0;
  }
}

/* ---------- UGC EXAMPLES ---------- */

.ugc-examples {
  position: relative;
  background: var(--black);
  padding: 1rem 6vw 4rem;
}

.ugc-platform {
  margin-bottom: 4rem;
}

.ugc-platform-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.platform-icon {
  width: 40px;
  height: 40px;
  padding: 9px;
  border-radius: 12px;
  background: var(--white);
  color: var(--black);
  flex-shrink: 0;
}

.ugc-platform-title {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.1;
}

.ugc-platform-sub {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

.ugc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.75rem;
}

.ugc-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.ugc-card-title {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.3;
}

.ugc-card-title span {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-top: 0.15rem;
}

.ugc-card-video {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.4);
}

.ugc-card-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ugc-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  background: var(--red-bright);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.ugc-card-views {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(247, 241, 239, 0.1);
}

/* ---------- WORK WITH ME (CTA) ---------- */

.cta {
  position: relative;
  background: var(--black);
  padding: 3rem 6vw 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.cta-link {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--red-bright);
  text-underline-offset: 8px;
  text-decoration-thickness: 2px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.cta-link:hover {
  color: var(--red-bright);
  text-decoration-color: var(--white);
}

.cta .section-footer {
  width: 100%;
  margin-top: 0;
}

/* ---------- WHY BRANDS TRUST ME ---------- */

.trust {
  position: relative;
  background: var(--black);
  padding: 1rem 6vw 4rem;
}

.trust-list {
  list-style: none;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.trust-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: var(--red-bright);
}

.trust-list span {
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--muted);
}

.trust-list strong {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--white);
  margin-right: 0.5rem;
}

/* ---------- ABOUT ME ---------- */

.about {
  position: relative;
  background: var(--black);
  padding: 1rem 6vw 4rem;
}

.about-collage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: minmax(130px, 1fr) minmax(260px, 1.9fr) minmax(130px, 1fr);
  grid-template-areas:
    "p1 p2 p3"
    "p4 facts p5"
    "p6 p7 p7";
  gap: 1rem;
  max-width: 1100px;
  height: min(880px, 92vh);
  margin: 0 auto;
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
}

.about-facts {
  grid-area: facts;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-align: center;
  padding: 0.75rem;
  overflow: visible;
}

.about-facts li {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  line-height: 1.2;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  padding: 0.4rem 1rem;
  border-radius: 8px;
  animation: factHighlight 2.6s ease-in-out infinite;
}

.about-facts li:nth-child(1) { animation-delay: 0s; }
.about-facts li:nth-child(2) { animation-delay: 0.2s; }
.about-facts li:nth-child(3) { animation-delay: 0.4s; }
.about-facts li:nth-child(4) { animation-delay: 0.6s; }
.about-facts li:nth-child(5) { animation-delay: 0.8s; }
.about-facts li:nth-child(6) { animation-delay: 1s; }
.about-facts li:nth-child(7) { animation-delay: 1.2s; }

@keyframes factHighlight {
  0%, 100% {
    background: rgba(239, 43, 58, 0.16);
    box-shadow: 0 0 10px 1px rgba(239, 43, 58, 0.2);
  }
  50% {
    background: rgba(239, 43, 58, 0.32);
    box-shadow: 0 0 20px 4px rgba(239, 43, 58, 0.4);
  }
}

@media (max-width: 780px) {
  .about-collage {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, minmax(140px, auto));
    grid-template-areas:
      "p1 p2"
      "facts facts"
      "p3 p4"
      "p5 p6"
      "p7 p7";
    height: auto;
  }
}

/* ---------- CONNECT WITH ME ---------- */

.connect {
  position: relative;
  background: var(--black);
  padding: 4rem 6vw 5rem;
}

.connect-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  flex-wrap: wrap;
  justify-content: center;
}

.connect-photo {
  width: clamp(220px, 30vw, 320px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
  flex-shrink: 0;
}

.connect-text {
  flex: 1 1 320px;
  min-width: 260px;
}

.connect-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.connect-email {
  font-size: 1.1rem;
  color: var(--red-bright);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.connect-socials {
  display: flex;
  gap: 0.85rem;
}

@media (max-width: 640px) {
  .connect-inner {
    flex-direction: column;
    text-align: center;
  }
  .connect-socials {
    justify-content: center;
  }
}
