/* Farah Eats · Media Kit
   Warm Florida food-creator aesthetic: sun-washed neutrals, coral + turquoise */

:root {
  --bg: #FBF6F1;
  --bg-soft: #F7EDE4;
  --surface: #FFFFFF;
  --ink: #2C2420;
  --ink-muted: #6B5E56;
  --coral: #E07A5F;
  --coral-deep: #C45D42;
  --coral-soft: #F4C4B4;
  --turquoise: #2A9D8F;
  --turquoise-soft: #B8E0D8;
  --sand: #F4A261;
  --sun: #E9C46A;
  --dark: #2D3436;
  --dark-banner: #3D2C2E;
  --radius: 16px;
  --radius-pill: 999px;
  --shadow: 0 8px 28px rgba(44, 36, 32, 0.07);
  --shadow-sm: 0 2px 10px rgba(44, 36, 32, 0.05);
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --max: 1080px;
  --space: clamp(1.25rem, 4vw, 2rem);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

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

a {
  color: var(--coral-deep);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}
a:hover { color: var(--coral); }

:focus-visible {
  outline: 3px solid var(--turquoise);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--dark);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 100;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.container {
  width: min(100% - 2 * var(--space), var(--max));
  margin-inline: auto;
}

/* Ambient blobs */
.bg-blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
  z-index: -1;
}
.bg-blob--coral {
  width: min(480px, 70vw);
  height: min(480px, 70vw);
  background: var(--coral-soft);
  top: -8%;
  right: -10%;
}
.bg-blob--teal {
  width: min(420px, 60vw);
  height: min(420px, 60vw);
  background: var(--turquoise-soft);
  bottom: 20%;
  left: -12%;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(251, 246, 241, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(44, 36, 32, 0.06);
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.28s ease;
}

.site-header.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
}
.logo:hover { color: var(--ink); }

.logo-mark {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--turquoise));
  color: #fff;
  font-size: 0.9rem;
  font-family: var(--display);
}

.nav {
  display: none;
  align-items: center;
  gap: 1.35rem;
}
.nav a {
  text-decoration: none;
  color: var(--ink-muted);
  font-size: 0.92rem;
  font-weight: 500;
}
.nav a:hover { color: var(--ink); }
.nav-cta {
  background: var(--ink);
  color: #fff !important;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
}
.nav-cta:hover { background: var(--coral); color: #fff !important; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
  border: 1px solid rgba(44, 36, 32, 0.12);
  border-radius: 10px;
  background: var(--surface);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav-toggle span { transition: transform 0.2s, opacity 0.2s; }

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem var(--space) 1rem;
  border-bottom: 1px solid rgba(44, 36, 32, 0.06);
  background: var(--bg);
}
.mobile-nav[hidden] { display: none; }
.mobile-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  padding: 0.7rem 0.5rem;
  border-radius: 8px;
}
.mobile-nav a:hover { background: var(--bg-soft); }

@media (min-width: 820px) {
  .nav { display: flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(2.5rem, 8vw, 4.5rem) 0 0;
  text-align: center;
}

.hero-inner { max-width: 640px; }

.avatar-wrap {
  position: relative;
  width: clamp(180px, 34vw, 260px);
  height: clamp(180px, 34vw, 260px);
  margin: 0 auto 1.35rem;
}

.avatar-sun {
  position: absolute;
  inset: -18%;
  display: grid;
  place-items: center;
  pointer-events: none;
  z-index: 0;
  animation: sun-spin 22s linear infinite;
}

.avatar-rays {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 4px rgba(233, 196, 106, 0.45));
}

.avatar {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 5px var(--coral-soft), var(--shadow);
  overflow: hidden;
  background: var(--coral-soft);
  animation: avatar-float 5.5s ease-in-out infinite;
}

@keyframes sun-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

.eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
}

.hero h1.brand-name,
.brand-name {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin: 0.2rem 0 1rem;
  font-family: var(--display);
  font-size: clamp(2.4rem, 7vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--coral);
  letter-spacing: -0.02em;
}

.brand-name-text {
  color: var(--coral);
}

.food-emoji {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72em;
  line-height: 1;
}

.food-pop {
  display: inline-block;
  transform-origin: center bottom;
  animation: food-pop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: calc(0.35s + var(--i) * 0.12s);
}

.food-emoji--left .food-pop { animation-name: food-pop-left; }
.food-emoji--right .food-pop { animation-name: food-pop-right; }

@keyframes food-pop-left {
  0% { opacity: 0; transform: translateX(-18px) scale(0.2) rotate(-20deg); }
  70% { opacity: 1; transform: translateX(2px) scale(1.18) rotate(8deg); }
  100% { opacity: 1; transform: translateX(0) scale(1) rotate(0deg); }
}

@keyframes food-pop-right {
  0% { opacity: 0; transform: translateX(18px) scale(0.2) rotate(20deg); }
  70% { opacity: 1; transform: translateX(-2px) scale(1.18) rotate(-8deg); }
  100% { opacity: 1; transform: translateX(0) scale(1) rotate(0deg); }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 0 auto 1.35rem;
  max-width: 520px;
  padding: 0.85rem 0.75rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(224, 122, 95, 0.22);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
}

.hero-stat {
  text-align: center;
  min-width: 0;
}

.hero-stat-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.hero-stat-num {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.35rem, 4.5vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.15;
}

.hero-stat-link {
  display: inline-grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  background: rgba(224, 122, 95, 0.12);
  color: var(--coral-deep);
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.hero-stat-link:hover {
  background: var(--coral);
  color: #fff;
  transform: scale(1.08);
}

.hero-stat-link svg {
  width: 0.9rem;
  height: 0.9rem;
}

.hero-stat-label {
  display: block;
  margin-top: 0.2rem;
  font-size: clamp(0.68rem, 2.2vw, 0.78rem);
  font-weight: 600;
  color: var(--ink-muted);
  letter-spacing: 0.01em;
  line-height: 1.25;
}


.location-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 1.25rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(44, 36, 32, 0.12);
  border-radius: var(--radius-pill);
  background: var(--surface);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-muted);
  box-shadow: var(--shadow-sm);
}

.hero-lead {
  margin: 0 auto 1.75rem;
  max-width: 34em;
  color: var(--ink-muted);
  font-size: 1.05rem;
}
.hero-lead strong { color: var(--ink); font-weight: 600; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: clamp(2.5rem, 6vw, 3.5rem);
}



/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s, border-color 0.15s, box-shadow 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--coral) 0%, #F08A6E 50%, var(--sand) 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(224, 122, 95, 0.35);
}
.btn-primary:hover { color: #fff; box-shadow: 0 8px 24px rgba(224, 122, 95, 0.45); }

.btn-outline {
  background: var(--surface);
  border-color: rgba(44, 36, 32, 0.12);
  color: var(--ink);
}
.btn-outline:hover {
  border-color: var(--coral);
  color: var(--coral-deep);
}

.btn-soft {
  width: 100%;
  background: var(--bg-soft);
  color: var(--ink);
  border-color: transparent;
}
.btn-soft:hover {
  background: linear-gradient(135deg, rgba(224, 122, 95, 0.12), rgba(42, 157, 143, 0.12));
  color: var(--ink);
}

.btn-lg {
  padding: 0.95rem 1.85rem;
  font-size: 1.05rem;
}

/* Sections */
.section {
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.section-label {
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral);
}

.section h2 {
  margin: 0 0 0.65rem;
  font-family: var(--display);
  font-size: clamp(1.85rem, 4.5vw, 2.45rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.2;
}

.section-desc {
  margin: 0 0 1.75rem;
  max-width: 36em;
  color: var(--ink-muted);
}

/* At a glance */
.stat-banner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--dark-banner) 0%, #1F1A1B 100%);
  color: #fff;
  box-shadow: var(--shadow);
}

.stat-banner-item {
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--display);
  font-size: clamp(2rem, 6vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.stat-label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
}

.stat-divider {
  display: none;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
  align-self: stretch;
}

.stat-note {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

@media (min-width: 640px) {
  .stat-banner {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    padding: 2rem 1.5rem;
  }
  .stat-divider { display: block; }
}

/* Platforms */
.platform-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}

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

.platform-card {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  padding: 1.4rem;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(44, 36, 32, 0.05);
}

.platform-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.platform-head h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.handle {
  margin: 0.1rem 0 0;
  font-size: 0.88rem;
  color: var(--ink-muted);
}

.platform-icon {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 12px;
  flex-shrink: 0;
}
.platform-icon.tiktok { background: #111; color: #fff; }
.platform-icon.ig {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
  color: #fff;
}
.platform-icon.yt { background: #FF0000; color: #fff; }

.platform-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin: 0;
}
.platform-stats dt {
  font-size: 0.78rem;
  color: var(--ink-muted);
  margin: 0 0 0.15rem;
}
.platform-stats dd {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--coral);
  font-family: var(--display);
  letter-spacing: -0.01em;
}

.platform-card .btn { margin-top: auto; }

/* Partner chips */
.chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.chips li {
  padding: 0.65rem 1.15rem;
  background: var(--surface);
  border: 1px solid rgba(44, 36, 32, 0.08);
  border-radius: var(--radius-pill);
  font-weight: 560;
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
  color: var(--ink);
}

.chips li:nth-child(odd) {
  border-color: rgba(224, 122, 95, 0.25);
}
.chips li:nth-child(even) {
  border-color: rgba(42, 157, 143, 0.28);
}

/* Featured series */
.series-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}

@media (min-width: 600px) {
  .series-grid { grid-template-columns: repeat(2, 1fr); }
}

.series-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.6rem 1.4rem 1.4rem;
  border-radius: var(--radius);
  text-decoration: none;
  color: #fff;
  min-height: 200px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.series-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(44, 36, 32, 0.14);
  color: #fff;
}

.series-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background:
    radial-gradient(circle at 90% 10%, #fff 0%, transparent 45%),
    radial-gradient(circle at 10% 90%, #fff 0%, transparent 40%);
  pointer-events: none;
}

.series-card--food {
  background: linear-gradient(145deg, #E07A5F 0%, #C45D42 100%);
}
.series-card--tampa {
  background: linear-gradient(145deg, #2A9D8F 0%, #1D7A70 100%);
}
.series-card--beach {
  background: linear-gradient(145deg, #F4A261 0%, #E07A5F 100%);
}
.series-card--todo {
  background: linear-gradient(145deg, #5B6EAE 0%, #3D4A7A 100%);
}

.series-emoji {
  font-size: 1.75rem;
  line-height: 1;
  position: relative;
}

.series-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
  position: relative;
}

.series-card p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.92;
  flex: 1;
  position: relative;
}

.series-link {
  font-size: 0.88rem;
  font-weight: 600;
  opacity: 0.95;
  position: relative;
  margin-top: 0.5rem;
}



/* Brands worked with / logo cloud */
.brands-worked {
  margin-top: 2.25rem;
}

.brands-worked-label {
  margin: 0 0 1rem;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.logo-cloud {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.85rem 1rem;
}

.logo-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: min(42vw, 168px);
  height: 5.75rem;
  padding: 0.75rem 1.25rem;
  background: var(--surface);
  border: 1px solid rgba(44, 36, 32, 0.08);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  animation: logo-float 5.5s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.35s);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.logo-chip:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: var(--shadow);
}

.logo-chip img {
  max-width: 100%;
  max-height: 3.4rem;
  width: auto;
  height: auto;
  object-fit: contain;
}

.logo-chip--amazon img {
  max-height: 4.35rem;
  max-width: 92%;
  width: 92%;
  height: auto;
}


@keyframes logo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@media (prefers-reduced-motion: reduce) {
  .logo-chip { animation: none; }
}

/* Featured videos */
.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}

@media (min-width: 640px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.video-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(44, 36, 32, 0.06);
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.video-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.video-thumb--placeholder {
  background: linear-gradient(145deg, #2C2420, #E07A5F 55%, #E9C46A);
}
.video-thumb {
  position: relative;
  aspect-ratio: 9 / 16;
  background: #1a1412;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
}

.video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--coral);
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
}

.video-badge {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(26, 20, 18, 0.72);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.video-card h3,
.video-card:visited h3,
.video-card:hover h3 {
  margin: 0.9rem 1rem 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}

.video-card p {
  margin: 0 1rem 1.1rem;
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.45;
}

/* Collaborate */
.collaborate { padding-top: clamp(2rem, 5vw, 3rem); }

.collab-card {
  padding: clamp(1.75rem, 4vw, 2.5rem);
  background: var(--surface);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
  border: 1px solid rgba(44, 36, 32, 0.05);
}

.collab-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}

@media (min-width: 700px) {
  .collab-list { grid-template-columns: 1fr 1fr; }
}

.collab-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.35rem 0.85rem;
  align-content: start;
}
.collab-list li::before {
  content: "";
  grid-row: 1 / span 2;
  width: 10px;
  height: 10px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--coral);
}

.collab-list strong {
  grid-column: 2;
  font-size: 1.02rem;
  color: var(--ink);
}
.collab-list span {
  grid-column: 2;
  font-size: 0.95rem;
  color: var(--ink-muted);
}

.rates-note {
  margin: 1.75rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(44, 36, 32, 0.08);
  font-size: 0.95rem;
  color: var(--ink-muted);
}

/* Contact */
.contact-eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sun);
}

.contact-lead {
  margin: 0 auto 1.75rem !important;
  max-width: 34em;
}

.contact-form {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}

.contact-honey {
  position: absolute;
  left: -9999px;
  height: 0;
  width: 0;
  opacity: 0;
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.95rem;
}

@media (min-width: 640px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  font-weight: 500;
}

.contact-field--full { grid-column: 1 / -1; }

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  margin: 0;
  padding: 0.8rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font: inherit;
  font-size: 1rem;
  font-weight: 400;
  outline: none;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
}

.contact-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffffff' d='M1.4 0.6L6 5.2 10.6.6 12 2 6 8 0 2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.95rem center;
  padding-right: 2.4rem;
}

.contact-field select option {
  color: var(--ink);
  background: #fff;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: rgba(233, 196, 106, 0.7);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(233, 196, 106, 0.18);
}

.contact-field textarea {
  resize: vertical;
  min-height: 7.5rem;
  line-height: 1.5;
}

.contact-submit {
  display: block;
  width: 100%;
  margin: 1.25rem 0 0;
  border: none;
  cursor: pointer;
}

.contact-form-note {
  margin: 0.85rem 0 0 !important;
  text-align: center;
  font-size: 0.9rem;
  color: var(--sun) !important;
}

.contact-banner {
  text-align: center;
  padding: clamp(2.25rem, 6vw, 3.5rem) var(--space);
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(145deg, var(--dark-banner) 0%, #1F2928 55%, #1A3A36 100%);
  color: #fff;
  box-shadow: var(--shadow);
}

.contact-banner h2 {
  margin: 0 0 0.65rem;
  font-family: var(--display);
  font-size: clamp(1.65rem, 4vw, 2.2rem);
  color: #fff;
}

.contact-banner > p {
  margin: 0 auto 1.5rem;
  max-width: 28em;
  color: rgba(255, 255, 255, 0.78);
}

.contact-email {
  margin: 1.25rem 0 0 !important;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7) !important;
}
.contact-email a {
  color: #fff;
  text-decoration: underline;
}
.contact-email a:hover { color: var(--sun); }

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  margin-top: 1.5rem;
}
.contact-socials a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}
.contact-socials a:hover { color: var(--sun); }

/* Footer */
.site-footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid rgba(44, 36, 32, 0.06);
}

.footer-inner {
  text-align: center;
}
.footer-inner p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-muted);
}
.footer-note {
  margin-top: 0.4rem !important;
  font-size: 0.8rem !important;
  opacity: 0.85;
}


/* Subtle motion */
@keyframes avatar-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes blob-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(12px, -10px) scale(1.04); }
}

.bg-blob--coral { animation: blob-drift 18s ease-in-out infinite; }
.bg-blob--teal { animation: blob-drift 22s ease-in-out infinite reverse; }

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal-in {
  opacity: 1;
  transform: none;
}

.hero.reveal-in .avatar-wrap {
  animation: fade-up 0.7s ease both;
}
.hero.reveal-in .avatar {
  animation: avatar-float 5.5s ease-in-out infinite;
}
.hero.reveal-in .eyebrow { animation: fade-up 0.55s ease 0.05s both; }
.hero.reveal-in h1.brand-name { animation: fade-up 0.55s ease 0.1s both; }
.hero.reveal-in .location-pill { animation: fade-up 0.55s ease 0.18s both; }
.hero.reveal-in .hero-stats { animation: fade-up 0.6s ease 0.22s both; }
.hero.reveal-in .hero-lead { animation: fade-up 0.55s ease 0.32s both; }
.hero.reveal-in .hero-ctas { animation: fade-up 0.55s ease 0.38s both; }

/* Only pop emojis after hero is revealed */
.hero:not(.reveal-in) .food-pop { animation: none; opacity: 0; }

.btn {
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }

.platform-card,
.series-card,
.video-card,
.chips li {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.platform-card:hover,
.chips li:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .series-card, .nav-toggle span, .platform-card, .video-card, .chips li, .reveal, .site-header {
    transition: none !important;
  }
  .avatar, .avatar-sun, .bg-blob--coral, .bg-blob--teal, .food-pop, .logo-chip,
  .hero.reveal-in .avatar,
  .hero.reveal-in .eyebrow,
  .hero.reveal-in h1.brand-name,
  .hero.reveal-in .location-pill,
  .hero.reveal-in .hero-stats,
  .hero.reveal-in .hero-lead,
  .hero.reveal-in .hero-ctas {
    animation: none !important;
  }
  .food-pop { opacity: 1 !important; transform: none !important; }
  .reveal { opacity: 1; transform: none; }
}

