/* ═══════════════════════════════════════
   FISHY FISHY — Hand-drawn, a little salty
   Deep Teal + Vermillion + Sea Cream + Tide Ink
   Brand ratio: Teal 55% · Cream 30% · Ink 10% · Vermillion 5%
   ═══════════════════════════════════════ */

:root {
  --deep-teal: #018176;
  --deep-teal-dark: #016b62;
  --vermillion: #E5402F;
  --vermillion-dark: #c9341f;
  --ink: #1A2B28;
  --cream: #F9F6E7;
  --cream-dark: #EDE9D8;
  --gray-warm: #b5b0a6;
  --gray-mid: #6a6560;
  --gray-text: #4a4640;
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Fraunces', Georgia, serif;
  --font-accent: 'Caveat', cursive;
  --font-mono: 'Space Mono', 'Courier New', monospace;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 400;
}

/* Paper grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Typography ── */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: none;
}

h1 { font-size: clamp(48px, 8vw, 100px); }
h2 { font-size: clamp(36px, 5vw, 68px); }
h3 { font-size: clamp(26px, 3vw, 42px); }

h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--vermillion);
}

.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--vermillion);
  margin-bottom: 20px;
  display: inline-block;
}

.section-sub {
  font-family: var(--font-body);
  color: var(--gray-mid);
  font-size: 17px;
  font-weight: 400;
  max-width: 520px;
  margin-top: 16px;
  line-height: 1.6;
  text-transform: none;
  letter-spacing: 0;
}

/* Lead paragraph bridge between display headers and body */
.lead {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink);
  max-width: 560px;
}

/* ── Buttons ── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  border-radius: 0;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--deep-teal);
  color: var(--cream);
  border-color: var(--deep-teal);
}

.btn-primary:hover {
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(1, 129, 118, 0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(249, 246, 231, 0.4);
}

.btn-ghost-light:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--gray-warm);
}

.btn-outline:hover {
  border-color: var(--deep-teal);
  color: var(--deep-teal);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

.btn-white:hover {
  background: var(--cream-dark);
  transform: translateY(-2px);
}

.btn-vermillion {
  background: var(--vermillion);
  color: var(--cream);
  border-color: var(--vermillion);
}

.btn-vermillion:hover {
  background: var(--vermillion-dark);
  border-color: var(--vermillion-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(229, 64, 47, 0.25);
}

.btn-lg { padding: 18px 44px; font-size: 12px; }
.btn-xl { padding: 22px 56px; font-size: 13px; }
.btn-full { width: 100%; }

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(249, 246, 231, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: box-shadow 0.3s;
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--ink);
  text-decoration: none;
  text-transform: none;
}

.logo em {
  font-style: italic;
  color: var(--deep-teal);
}

.logo-fish {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  color: var(--gray-mid);
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--deep-teal);
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--deep-teal); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  color: var(--cream);
  background: var(--deep-teal);
  padding: 10px 24px;
  border-radius: 0;
  text-decoration: none;
  transition: all 0.3s;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-cta:hover {
  background: var(--ink);
  transform: scale(1.03);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 7px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  width: 28px;
  height: 2px;
  background: var(--ink);
  transition: all 0.3s;
}

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

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0;
}

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

/* ═══════════════════════════════════════
   HERO — Deep Teal Field
   ═══════════════════════════════════════ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: var(--deep-teal);
  color: var(--cream);
  overflow: hidden;
}

/* Hero background video */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.12;
  z-index: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(249, 246, 231, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 70%, rgba(26, 43, 40, 0.4) 0%, transparent 50%);
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(249, 246, 231, 0.6);
  margin-bottom: 40px;
}

.hero h1 {
  max-width: 900px;
  margin: 0 auto 0;
  color: var(--cream);
  font-size: clamp(56px, 10vw, 120px);
  letter-spacing: -0.02em;
  line-height: 1;
}

.hero h1 em {
  color: var(--vermillion);
  font-style: italic;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: rgba(249, 246, 231, 0.65);
  max-width: 520px;
  margin: 32px auto 48px;
  line-height: 1.6;
  text-transform: none;
  letter-spacing: 0;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero .btn-primary {
  background: var(--vermillion);
  border-color: var(--vermillion);
  color: var(--cream);
}

.hero .btn-primary:hover {
  background: var(--vermillion-dark);
  border-color: var(--vermillion-dark);
  box-shadow: 0 8px 30px rgba(229, 64, 47, 0.3);
}

.hero .btn-ghost {
  color: var(--cream);
  border-color: rgba(249, 246, 231, 0.3);
}

.hero .btn-ghost:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

.hero-fish {
  position: absolute;
  bottom: 4%;
  right: 3%;
  width: 200px;
  opacity: 0.15;
  z-index: 1;
}

.hero-fish-img {
  width: 100%;
  height: auto;
}

/* Play icon in CTA */
.play-icon {
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 9px;
  border-color: transparent transparent transparent currentColor;
  margin-right: 10px;
}

/* ═══════════════════════════════════════
   TEXT MARQUEE
   ═══════════════════════════════════════ */

.text-marquee {
  padding: 20px 0;
  background: var(--deep-teal);
  overflow: hidden;
}

.text-marquee-track {
  overflow: hidden;
}

.text-marquee-content {
  display: flex;
  align-items: center;
  gap: 28px;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.text-marquee-content span {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cream);
  white-space: nowrap;
}

.marquee-wave {
  font-family: var(--font-accent);
  font-size: 20px;
  opacity: 0.4;
  color: var(--cream);
}

.marquee-handwritten {
  font-family: var(--font-accent) !important;
  font-size: 24px !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  color: var(--vermillion) !important;
  font-weight: 600;
  padding: 0 8px;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════
   WORK — CAROUSEL
   ═══════════════════════════════════════ */

.work {
  padding: 80px 0;
  background: var(--cream);
}

.work-header {
  margin-bottom: 40px;
}

/* Carousel */
.carousel {
  position: relative;
}

.carousel-track {
  position: relative;
  width: 100%;
  aspect-ratio: 2.2 / 1;
  overflow: hidden;
  border-radius: 6px;
  background: var(--ink);
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: scale(1.03);
  pointer-events: none;
}

.carousel-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
  pointer-events: auto;
}

.carousel-slide .work-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 40px 36px;
  background: linear-gradient(to top, rgba(26, 43, 40, 0.75) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 3;
  text-decoration: none;
  color: inherit;
}

a.carousel-caption:hover {
  text-decoration: none;
}

.work-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--vermillion);
}

.work-client {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--cream);
  text-transform: none;
  letter-spacing: -0.01em;
}

/* Controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 16px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
  font-family: var(--font-body);
}

.carousel-btn:hover {
  background: var(--ink);
  color: var(--cream);
  transform: scale(1.08);
}

.carousel-counter {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gray-mid);
  letter-spacing: 0.08em;
  min-width: 48px;
  text-align: center;
}

.carousel-current {
  color: var(--ink);
  font-weight: 700;
}

/* ═══════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════ */

.services {
  padding: 80px 0 100px;
  background: var(--cream);
}

.services-intro {
  margin-bottom: 48px;
}

.service-blocks {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-block {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding: 56px 0;
  border-top: 1.5px solid var(--ink);
  transition: background 0.3s;
}

.service-block:hover {
  background: var(--cream-dark);
  margin: 0 -32px;
  padding-left: 32px;
  padding-right: 32px;
}

.service-block-number {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 400;
  color: var(--deep-teal);
  padding-top: 8px;
  letter-spacing: 0.05em;
}

.service-block-content h3 {
  margin-bottom: 16px;
}

.service-block-content p {
  font-family: var(--font-body);
  color: var(--gray-mid);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  max-width: 400px;
  text-transform: none;
  letter-spacing: 0;
}

.service-block-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 8px;
  align-content: start;
}

.service-block-list span {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  padding: 8px 18px;
  border: 1.5px solid var(--gray-warm);
  color: var(--gray-mid);
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-block:hover .service-block-list span {
  border-color: var(--deep-teal);
  color: var(--deep-teal);
}

/* ═══════════════════════════════════════
   FILM SLATE INTERSTITIAL
   ═══════════════════════════════════════ */

.slate-section {
  padding: 80px 0;
  background: var(--ink);
  color: var(--cream);
}

.slate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.slate-left h2 {
  color: var(--cream);
  margin-top: 24px;
}

/* REC indicator */
.rec-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--vermillion);
}

.rec-dot {
  width: 8px;
  height: 8px;
  background: var(--vermillion);
  border-radius: 50%;
  animation: rec-blink 1.2s ease-in-out infinite;
}

@keyframes rec-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

/* Film slate card */
.slate-card {
  border: 1.5px solid rgba(249, 246, 231, 0.2);
  max-width: 400px;
}

.slate-header {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.02em;
  padding: 16px 20px;
  border-bottom: 1.5px solid rgba(249, 246, 231, 0.2);
  color: var(--cream);
}

.slate-body {
  padding: 12px 20px 20px;
}

.slate-row {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(249, 246, 231, 0.08);
  padding: 10px 0;
}

.slate-row:last-child {
  border-bottom: none;
}

.slate-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.slate-field.full {
  flex: none;
  width: 100%;
}

.slate-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(249, 246, 231, 0.35);
}

.slate-value {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--cream);
  font-style: normal;
}

.slate-value.italic {
  font-style: italic;
  color: var(--vermillion);
}

/* ═══════════════════════════════════════
   VALUE PROP INTERSTITIAL
   ═══════════════════════════════════════ */

.value-prop {
  padding: 80px 0;
  background: var(--ink);
  color: var(--cream);
  text-align: center;
}

.value-prop h2 {
  color: var(--cream);
  font-size: clamp(36px, 5.5vw, 72px);
  max-width: 800px;
  margin: 0 auto;
}

.value-prop-sub {
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 400;
  color: rgba(249, 246, 231, 0.55);
  max-width: 520px;
  margin: 28px auto 0;
  line-height: 1.65;
}

/* ═══════════════════════════════════════
   WAVE DIVIDER
   ═══════════════════════════════════════ */

.wave-divider {
  padding: 32px 0;
  text-align: center;
  background: var(--cream);
  color: var(--vermillion);
}

.wave-divider svg {
  width: 80px;
  height: auto;
  opacity: 0.5;
}

/* ═══════════════════════════════════════
   PACKAGES / PRICING
   ═══════════════════════════════════════ */

.packages {
  padding: 80px 0 100px;
  background: var(--cream);
}

.packages > .container > h2 {
  margin-bottom: 8px;
}

/* ── Month-at-a-Glance Calendar Tiers ── */

.month-glance {
  margin: 64px 0 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.month-glance-header {
  text-align: center;
  margin-bottom: 8px;
}

/* Each tier row */
.cal-tier {
  border: 1.5px solid var(--gray-warm);
  border-radius: 6px;
  padding: 36px 40px;
  background: var(--cream);
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cal-tier:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(26, 43, 40, 0.07);
}

.cal-tier.featured {
  background: var(--deep-teal);
  border-color: var(--deep-teal);
  color: var(--cream);
}

.cal-tier.featured:hover {
  box-shadow: 0 16px 48px rgba(1, 129, 118, 0.2);
}

.cal-tier.dark {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}

.cal-tier.dark:hover {
  box-shadow: 0 16px 48px rgba(26, 43, 40, 0.2);
}

.cal-tier-badge {
  position: absolute;
  top: -12px;
  left: 40px;
  background: var(--vermillion);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 4px 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 3px;
}

/* Tier info header */
.cal-tier-info {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
}

.cal-tier-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--deep-teal);
  background: var(--cream-dark);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  flex-shrink: 0;
}

.cal-tier.featured .cal-tier-num {
  background: rgba(249, 246, 231, 0.15);
  color: var(--cream);
}

.cal-tier.dark .cal-tier-num {
  background: rgba(249, 246, 231, 0.08);
  color: var(--vermillion);
}

.cal-tier-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.1;
}

.cal-tier-price {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--deep-teal);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

.cal-tier.featured .cal-tier-price { color: rgba(249, 246, 231, 0.5); }
.cal-tier.dark .cal-tier-price { color: var(--vermillion); }

.cal-tier-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray-mid);
  margin-top: 4px;
  line-height: 1.4;
}

.cal-tier.featured .cal-tier-desc { color: rgba(249, 246, 231, 0.55); }
.cal-tier.dark .cal-tier-desc { color: rgba(249, 246, 231, 0.45); }

/* Calendar grid */
.cal-grid {
  margin-bottom: 24px;
}

.cal-day-labels {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-bottom: 6px;
}

.cal-day-labels span {
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-warm);
  text-align: center;
  padding: 4px 0;
}

.cal-tier.featured .cal-day-labels span { color: rgba(249, 246, 231, 0.3); }
.cal-tier.dark .cal-day-labels span { color: rgba(249, 246, 231, 0.25); }

.cal-week {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-bottom: 6px;
}

.cal-day {
  min-height: 44px;
  background: var(--cream-dark);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.cal-tier.featured .cal-day { background: rgba(249, 246, 231, 0.08); }
.cal-tier.dark .cal-day { background: rgba(249, 246, 231, 0.04); }

/* Calendar tags — color-coded by type */
.cal-tag {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 3px;
  text-align: center;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.cal-tag.you {
  background: var(--cream-dark);
  color: var(--gray-mid);
  border: 1.5px dashed var(--gray-warm);
}

.cal-tier.featured .cal-tag.you,
.cal-tier.dark .cal-tag.you {
  background: transparent;
  border-color: rgba(249, 246, 231, 0.25);
  color: rgba(249, 246, 231, 0.5);
}

.cal-tag.shoot {
  background: var(--vermillion);
  color: var(--cream);
}

.cal-tag.vid {
  background: var(--deep-teal);
  color: var(--cream);
}

.cal-tier.featured .cal-tag.vid {
  background: var(--cream);
  color: var(--deep-teal);
}

.cal-tag.photo {
  background: #5BA89D;
  color: var(--cream);
}

.cal-tier.featured .cal-tag.photo {
  background: rgba(249, 246, 231, 0.2);
  color: var(--cream);
}

.cal-tag.edit {
  background: var(--ink);
  color: var(--cream);
}

.cal-tier.dark .cal-tag.edit {
  background: rgba(249, 246, 231, 0.15);
  color: var(--cream);
}

.cal-tag.strat {
  background: #D4A857;
  color: var(--ink);
}

.cal-tag.post {
  background: var(--deep-teal);
  color: var(--cream);
}

.cal-tier.dark .cal-tag.post {
  background: rgba(1, 129, 118, 0.6);
  color: var(--cream);
}

.cal-tag.comm {
  background: #7B6BA5;
  color: var(--cream);
}

.cal-tag.report {
  background: var(--vermillion);
  color: var(--cream);
}

.cal-tier .btn {
  margin-top: 8px;
}

.cal-tier-footnote {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(249, 246, 231, 0.35);
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

/* Legend */
.cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
  padding: 20px;
  background: var(--cream-dark);
  border-radius: 6px;
}

.cal-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gray-mid);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cal-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  flex-shrink: 0;
}

.cal-legend-dot.you { background: var(--cream-dark); border: 1.5px dashed var(--gray-warm); }
.cal-legend-dot.shoot { background: var(--vermillion); }
.cal-legend-dot.vid { background: var(--deep-teal); }
.cal-legend-dot.photo { background: #5BA89D; }
.cal-legend-dot.edit { background: var(--ink); }
.cal-legend-dot.post { background: var(--deep-teal); }
.cal-legend-dot.strat { background: #D4A857; }
.cal-legend-dot.comm { background: #7B6BA5; }
.cal-legend-dot.report { background: var(--vermillion); }

/* A La Carte */

.alacarte {
  margin-top: 64px;
  padding-top: 64px;
  border-top: 1.5px solid var(--ink);
}

.alacarte-header {
  margin-bottom: 56px;
}

.alacarte-header h3 { margin-bottom: 8px; }

.alacarte-header p {
  font-family: var(--font-body);
  color: var(--gray-mid);
  font-size: 16px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.alacarte-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.alacarte-item {
  padding: 36px 28px;
  border: 1.5px solid var(--gray-warm);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.alacarte-item:hover {
  border-color: var(--deep-teal);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26, 43, 40, 0.07);
}

.alacarte-item.highlight {
  background: var(--deep-teal);
  color: var(--cream);
  border-color: var(--deep-teal);
}

.alacarte-item.highlight:hover {
  box-shadow: 0 16px 48px rgba(1, 129, 118, 0.2);
}

.alacarte-item.highlight p { color: rgba(249, 246, 231, 0.6); }
.alacarte-item.highlight .alacarte-price { color: var(--cream); }

.alacarte-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 8px;
  text-transform: none;
  letter-spacing: 0;
}

.alacarte-price {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--deep-teal);
}

.alacarte-item p {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-mid);
  line-height: 1.5;
}

.alacarte-note {
  margin-top: 40px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gray-warm);
}

/* ═══════════════════════════════════════
   SOCIAL PROOF
   ═══════════════════════════════════════ */

.proof {
  padding: 100px 0;
  background: var(--deep-teal);
  color: var(--cream);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  text-align: center;
}

.proof-number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 12px;
  color: var(--cream);
}

.proof-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  color: rgba(249, 246, 231, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ═══════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════ */

.about {
  padding: 80px 0 100px;
  background: var(--cream);
}

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

.about-image {
  position: relative;
}

.about-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--deep-teal);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  overflow: hidden;
}

.about-placeholder::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1.5px solid rgba(249, 246, 231, 0.08);
  border-radius: 4px;
  z-index: 2;
  pointer-events: none;
}

.about-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  opacity: 0.4;
  z-index: 1;
}

.about-float-tag {
  position: absolute;
  bottom: -20px;
  right: -20px;
  z-index: 5;
  background: var(--deep-teal);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 24px;
}

.about-text h2 {
  margin-bottom: 28px;
  font-size: clamp(36px, 4vw, 56px);
}

.about-lead {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 20px;
  text-transform: none;
  letter-spacing: 0;
}

.about-text p {
  font-family: var(--font-body);
  color: var(--gray-mid);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 16px;
  text-transform: none;
  letter-spacing: 0;
}

.about-text .btn {
  margin-top: 16px;
}

/* ═══════════════════════════════════════
   BIG CTA
   ═══════════════════════════════════════ */

.big-cta {
  padding: 100px 0;
  text-align: center;
  background: var(--deep-teal);
  color: var(--cream);
  position: relative;
}

.big-cta h2 {
  font-size: clamp(42px, 7vw, 100px);
  margin-bottom: 16px;
  color: var(--cream);
}

/* Badge float */
.badge-float {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%) rotate(-30deg) scale(0.6);
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 3;
  pointer-events: none;
}

.badge-float.visible {
  opacity: 1;
  transform: translateY(-50%) rotate(0deg) scale(1);
}

.badge-float {
  color: rgba(249, 246, 231, 0.08);
}

.badge-svg {
  width: 180px;
  height: 180px;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.1));
  animation: badge-spin 30s linear infinite;
}

@keyframes badge-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.big-cta {
  position: relative;
  overflow: hidden;
}

.big-cta .container {
  position: relative;
}

.big-cta-btn {
  position: absolute;
  bottom: -20px;
  right: 0;
  transform: rotate(2deg);
  background: var(--vermillion);
  border-color: var(--vermillion);
  color: var(--cream);
  box-shadow: 0 6px 24px rgba(229, 64, 47, 0.25);
}

.big-cta-btn:hover {
  background: var(--vermillion-dark);
  border-color: var(--vermillion-dark);
  transform: rotate(0deg) translateY(-3px);
  box-shadow: 0 12px 36px rgba(229, 64, 47, 0.35);
}

/* ═══════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════ */

.contact {
  padding: 80px 0 100px;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
}

.contact-info h2 {
  margin-bottom: 20px;
}

.contact-sub {
  font-family: var(--font-body);
  color: var(--gray-mid);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  margin-bottom: 40px;
  text-transform: none;
  letter-spacing: 0;
}

.contact-details {
  margin-bottom: 32px;
}

.contact-details a {
  display: block;
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--deep-teal);
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.contact-details a:hover { color: var(--vermillion); }

.contact-details p {
  font-family: var(--font-body);
  color: var(--gray-mid);
  font-weight: 400;
}

.social-links {
  display: flex;
  gap: 24px;
}

.social-links a {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  color: var(--gray-warm);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}

.social-links a:hover { color: var(--deep-teal); }

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

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

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

.form-group label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-warm);
}

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  padding: 16px 20px;
  border: 1.5px solid var(--cream-dark);
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.2s;
  outline: none;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-warm);
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.check-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--gray-mid);
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
  padding: 8px 16px;
  border: 1.5px solid var(--cream-dark);
  transition: all 0.2s;
}

.check-label:hover {
  border-color: var(--deep-teal);
}

.check-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--deep-teal);
}

/* ═══════════════════════════════════════
   CREATORS
   ═══════════════════════════════════════ */

.creators {
  background: var(--ink);
  overflow: hidden;
}

.creators-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 64px 32px;
  text-align: center;
  color: var(--cream);
}

.creators h2 {
  margin-bottom: 16px;
  color: var(--cream);
}

.creators p {
  font-family: var(--font-body);
  color: rgba(249, 246, 231, 0.55);
  font-size: 17px;
  font-weight: 400;
  max-width: 520px;
  margin: 0 auto 40px;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   UGC FEED STRIP
   ═══════════════════════════════════════ */

.ugc-feed {
  background: var(--cream);
  padding: 0 0 0;
  overflow: hidden;
}

.ugc-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px 0 20px;
}

.ugc-follow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  color: var(--deep-teal);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.ugc-follow:hover {
  color: var(--vermillion);
}

.ugc-strip {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 4px;
  width: 100%;
}

.ugc-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.ugc-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s;
}

.ugc-item:hover video {
  transform: scale(1.08);
}

.ugc-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(1, 129, 118, 0);
  transition: background 0.3s;
  pointer-events: none;
}

.ugc-item:hover::after {
  background: rgba(1, 129, 118, 0.15);
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */

.footer {
  background: var(--ink);
}

.footer-bar-single {
  max-width: 1240px;
  margin: 0 auto;
  padding: 32px 32px 28px;
}

.footer-bar-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.footer-bar-sep {
  width: 1px;
  height: 14px;
  background: rgba(249, 246, 231, 0.15);
  flex-shrink: 0;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-nav a {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(249, 246, 231, 0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--cream);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-social a {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(249, 246, 231, 0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: var(--vermillion);
}

.footer-details {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-details span {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(249, 246, 231, 0.25);
}

.footer-dot {
  width: 3px;
  height: 3px;
  background: rgba(249, 246, 231, 0.2);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Visually hidden but still crawlable by search engines and still
   passing internal link equity to the location/industry pages. */
.footer-locations {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.footer-locations a {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(249, 246, 231, 0.25);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-locations a:hover {
  color: rgba(249, 246, 231, 0.6);
}

.footer-tagline-row {
  padding-top: 16px;
  border-top: 1px solid rgba(249, 246, 231, 0.08);
  text-align: center;
}

.footer-tagline {
  font-family: var(--font-accent);
  font-size: 20px;
  color: var(--vermillion);
  letter-spacing: 0;
}

/* ═══════════════════════════════════════
   TACTILE / HAND-DRAWN ACCENTS
   ═══════════════════════════════════════ */

/* Selective border-radius for warmth */
.alacarte-item { border-radius: 6px; }
.slate-card { border-radius: 6px; }
.nav-cta { border-radius: 4px; }
.btn { border-radius: 4px; }
.about-float-tag { border-radius: 4px; }
.form-group input,
.form-group textarea { border-radius: 4px; }
.check-label { border-radius: 4px; }

/* Handwritten accent labels */
.caveat-accent {
  font-family: var(--font-accent);
  font-size: 24px;
  font-weight: 500;
  color: var(--vermillion);
  text-transform: none;
  letter-spacing: 0;
  display: inline-block;
  transform: rotate(-2deg);
}

/* De-uppercase certain elements for breathing room */
.service-block-list span {
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 11px;
}

.alacarte-note {
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-body);
  font-style: italic;
}

/* Work grid — show info by default on touch (mobile-first fix) */
@media (hover: none) {
  .work-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(26, 43, 40, 0.85) 0%, transparent 60%);
  }
}

/* Hero subtle parallax depth */
.hero {
  perspective: 1000px;
}

.hero h1 {
  will-change: transform;
}

/* Lure animation */
@keyframes lure-sway {
  0%, 100% { transform: rotate(2deg); }
  50% { transform: rotate(-2deg); }
}

.proof {
  position: relative;
  overflow: visible;
}

.proof-lure {
  position: absolute;
  left: -6%;
  top: -100px;
  z-index: 5;
  pointer-events: none;
  transform-origin: top center;
  animation: lure-sway 4s ease-in-out infinite;
}

.slate-lure-img {
  width: 320px;
  height: auto;
  filter: brightness(1.2) drop-shadow(0 8px 28px rgba(0, 0, 0, 0.2));
  opacity: 0.9;
}

/* Wave decoration accents */
.wave-accent {
  display: block;
  margin: 24px 0;
  color: var(--vermillion);
  opacity: 0.4;
}

.wave-accent svg {
  width: 60px;
  height: auto;
}

/* Proof section — softer presentation */
.proof {
  padding: 80px 0;
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .mobile-toggle { display: flex; }

  .hero-fish { display: none; }

  .slate-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .slate-card {
    max-width: 100%;
  }

  .footer-bar-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-bar-sep {
    display: none;
  }

  .ugc-strip {
    grid-template-columns: repeat(4, 1fr);
  }

  .carousel-track {
    aspect-ratio: 4 / 3;
  }

  .carousel-caption {
    padding: 32px 24px 28px;
  }

  .work-client {
    font-size: 22px;
  }

  .service-block {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-block-number {
    display: none;
  }

  .service-block:hover {
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }

  /* Calendar tiers responsive */
  .cal-tier {
    padding: 28px 20px;
  }

  .cal-tag {
    font-size: 7px;
    padding: 3px 4px;
    letter-spacing: 0;
  }

  .cal-day {
    min-height: 36px;
  }

  .cal-tier-info {
    flex-direction: column;
    gap: 12px;
  }

  .cal-legend {
    gap: 10px;
  }

  .alacarte-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .proof-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-placeholder { aspect-ratio: 4/3; }

  .about-float-tag {
    bottom: -16px;
    right: 16px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

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

}

@media (max-width: 600px) {
  .container { padding: 0 20px; }

  .carousel-track {
    aspect-ratio: 4 / 3;
  }

  .proof-number { font-size: 36px; }
  .proof-grid { grid-template-columns: 1fr 1fr; gap: 24px; }

  .big-cta { padding: 72px 0; }

  /* Lure scales down on mobile */
  .proof-lure { display: none; }

  /* Badge hidden on mobile */
  .badge-float { display: none; }

  /* Value prop tighter */
  .value-prop { padding: 56px 0; }
  .value-prop h2 { font-size: 28px; }
  .value-prop-sub { font-size: 16px; }

  /* Slate */
  .slate-section { padding: 56px 0; }

  /* Big CTA */
  .big-cta-btn { position: static; transform: none; margin-top: 28px; }
  .big-cta-btn:hover { transform: translateY(-3px); }

  /* Footer */
  .footer-bar-single { padding: 24px 20px 20px; }
  .footer-nav { gap: 16px; }
  .footer-nav a { font-size: 9px; }

  /* UGC strip */
  .ugc-strip { grid-template-columns: repeat(4, 1fr); }
  .ugc-item:nth-child(n+5) { display: none; }

  /* Hero sub */
  .hero-sub { font-size: 15px; margin: 24px auto 36px; }
  .hero-label { font-size: 10px; margin-bottom: 28px; }

  /* Creators */
  .creators-inner { padding: 48px 20px; }

  /* Contact */
  .contact-sub { margin-bottom: 28px; }
}

/* ═══════════════════════════════════════
   CUSTOM CRISP CHAT BUTTON
   ═══════════════════════════════════════ */
/* Hide Crisp default button */
.crisp-client .crisp-1srat5o,
.crisp-client .cc-kxbhc,
.crisp-client .cc-1brb6,
.crisp-client .cc-7doi5,
.crisp-client [data-cfs],
.crisp-client div[class^="cc-"] > a,
.crisp-client div[class*="ButtonMain"],
.crisp-client div[class*="ChatButton"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 0 !important;
  height: 0 !important;
}
.crisp-custom-btn {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 2147483647;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--vermillion);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(229, 64, 47, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.crisp-custom-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(229, 64, 47, 0.45);
}
.crisp-custom-btn .chat-icon {
  width: 28px;
  height: 28px;
}
.crisp-custom-btn .chat-close {
  display: none;
  font-size: 24px;
  color: #fff;
  font-weight: 700;
  line-height: 1;
}
.crisp-custom-btn.open .chat-icon { display: none; }
.crisp-custom-btn.open .chat-close { display: block; }
