:root {
  --cream: #ffffff;
  --yellow: #ffbf00;
  --dark: #31110f;
  --text: #1a1a18;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --max-width: 720px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--dark);
  color: #fff;
  padding: 12px 20px;
  z-index: 100;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

a {
  color: inherit;
}

/* Buttons */
.btn {
  display: inline-block;
  border: none;
  border-radius: 500px;
  padding: 14px 32px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  opacity: 0.9;
}

.btn-dark {
  background: var(--dark);
  color: #fff;
}

.btn-yellow {
  background: var(--yellow);
  color: var(--dark);
}

/* Hero */
.hero {
  position: relative;
  background: var(--cream);
  padding: 96px 24px;
  text-align: center;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 */
  min-height: 100%;
  min-width: 177.78vh; /* 16:9 */
  transform: translate(-50%, -50%);
  border: 0;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 145, 60, 0.25) 0%,
    rgba(255, 106, 90, 0.4) 45%,
    rgba(216, 55, 96, 0.6) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

.hero-logo {
  width: 100%;
  aspect-ratio: 1200 / 686;
  margin-bottom: 32px;
  background-color: var(--text);
  -webkit-mask-image: url("assets/logo.png");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("assets/logo.png");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  filter: drop-shadow(0 4px 20px rgba(255, 255, 255, 0.5));
}

@media (prefers-reduced-motion: reduce) {
  .hero-video-wrap {
    display: none;
  }
}

/* Section rhythm */
section {
  position: relative;
  padding: 56px 0;
}

.find-me {
  background: var(--yellow);
}

.find-me h2,
.about h2,
.contact h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  font-optical-sizing: auto;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}

.find-me p,
.about p,
.contact p {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 16px;
}

.signature {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
}

/* Wave dividers between sections */
.divider {
  position: absolute;
  left: 0;
  width: 100%;
  height: clamp(24px, 5vw, 48px);
  overflow: hidden;
  line-height: 0;
  z-index: 1;
}

.divider-top {
  top: 0;
  transform: translateY(-1px);
}

.divider-bottom {
  bottom: 0;
  transform: translateY(1px);
}

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

.divider path {
  fill: var(--cream);
}

.divider-yellow path {
  fill: var(--yellow);
}

/* Social grid — big, colorful, unmistakable */
.social-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 0;
  margin: 28px 0 0;
}

.social-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px 16px;
  border-radius: 20px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 12px 28px rgba(49, 17, 15, 0.18);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.social-tile:hover,
.social-tile:focus-visible {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 32px rgba(49, 17, 15, 0.24);
}

.social-tile svg {
  width: 40px;
  height: 40px;
  fill: #fff;
}

.social-fb {
  background: #1877f2;
}

.social-ig {
  background: linear-gradient(135deg, #f9ce34, #ee2a7b 55%, #6228d7);
}

.social-yt {
  background: #ff0000;
}

.social-venmo {
  background: #3d95ce;
}

.social-tiktok {
  background: #010101;
}

@media (min-width: 480px) {
  .social-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .social-tile {
    padding: 24px 12px;
  }
}

@media (min-width: 700px) {
  .social-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.btn-lg {
  padding: 18px 40px;
  font-size: 18px;
}

/* About / bio */
.about {
  background: var(--cream);
}

.about-grid {
  max-width: 880px;
  display: grid;
  gap: 32px;
  align-items: center;
}

.about-photo img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(49, 17, 15, 0.2);
  transform: rotate(-2deg);
}

.about-copy {
  text-align: left;
}

@media (min-width: 760px) {
  .about-grid {
    grid-template-columns: 0.85fr 1.15fr;
  }
}

.contact {
  background: var(--yellow);
  text-align: center;
}

footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 24px 0;
  text-align: center;
  font-size: 14px;
}

@media (min-width: 640px) {
  .hero {
    padding: 96px 24px 72px;
  }

  section {
    padding: 72px 0;
  }
}
