/* DC — Hero (compact, floating composition) */
.dc-hero {
  position: relative;
  background: var(--sf-cream);
  color: var(--sf-ink);
  padding-block: clamp(64px, 7vw, 112px);
  isolation: isolate;
  overflow: clip;
}

/* Decorative background */
.dc-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.dc-hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
}
/* Both blobs sit fully inside the hero (non-negative offsets) so that
   .dc-hero { overflow: clip } never cuts them off — always fully visible. */
.dc-hero__blob--green {
  width: 40vw; height: 40vw;
  left: 0; top: 1vw;
  background: radial-gradient(circle, rgba(13,74,61,0.20) 0%, transparent 70%);
}
.dc-hero__blob--red {
  width: 30vw; height: 30vw;
  right: 2vw; bottom: 3vw;
  background: radial-gradient(circle, rgba(200,35,59,0.16) 0%, transparent 70%);
}
.dc-hero__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(31,36,38,0.10) 1px, transparent 1.5px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 78%);
  opacity: 0.6;
}

.dc-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: clamp(28px, 4vw, 70px);
  align-items: center;
}

/* ---- LEFT ---- */
.dc-hero__copy { position: relative; }

@keyframes dc-hero-dot {
  0%   { box-shadow: 0 0 0 0 rgba(200,35,59,0.55); }
  100% { box-shadow: 0 0 0 10px rgba(200,35,59,0); }
}
.dc-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--sf-green);
}
/* Sumer Food brand mark — animated, recreated from icon.png */
.dc-hero__eyebrow::before { display: none; }
.dc-hero__eyebrow-ico {
  width: 12px;
  height: 20px;
  flex-shrink: 0;
  color: var(--sf-red);
  overflow: visible;
}
.dc-hero__eyebrow-seg,
.dc-hero__eyebrow-fly {
  transform-box: fill-box;
  transform-origin: center;
}

/* the three carved segments shimmer up the diagonal in sequence */
.dc-hero__eyebrow-seg { animation: dc-mark-shave 3s ease-in-out infinite; }
.dc-hero__eyebrow-seg:nth-of-type(2) { animation-delay: 0.18s; }
.dc-hero__eyebrow-seg:nth-of-type(3) { animation-delay: 0.36s; }
@keyframes dc-mark-shave {
  0%, 62%, 100% { transform: translate(0, 0); }
  31%           { transform: translate(7px, -7px); }
}

/* the loose sliver is carved off, drifts away, then resets */
.dc-hero__eyebrow-fly {
  animation: dc-mark-fly 3s ease-in-out infinite;
  animation-delay: 0.5s;
}
@keyframes dc-mark-fly {
  0%, 100% { transform: translate(0, 0);     opacity: 1; }
  40%      { transform: translate(30px, 11px); opacity: 0; }
  41%      { transform: translate(-12px, -9px); opacity: 0; }
  70%      { transform: translate(0, 0);     opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .dc-hero__eyebrow-seg,
  .dc-hero__eyebrow-fly { animation: none; }
}

.dc-hero__title {
  font-size: clamp(34px, 5vw, 76px);
  line-height: 1;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: var(--sf-ink);
  margin: 0;
}
.dc-hero__line { display: block; }
.dc-hero__line--em em {
  font-style: italic;
  font-weight: 500;
  color: var(--sf-red);
  position: relative;
  margin-right: 0.18em;
}

.dc-hero__lead {
  margin: 18px 0 22px;
  max-width: 46ch;
  font-size: 15px;
  line-height: 1.6;
  color: var(--sf-ink-mute);
}

.dc-hero__usps {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.dc-hero__usps li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--sf-surface);
  border: 1px solid var(--sf-line);
  font-family: var(--dc-font-sans);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--sf-ink);
  letter-spacing: 0.02em;
  box-shadow: var(--dc-shadow-soft);
  transition: border-color var(--dc-dur) var(--dc-ease), transform var(--dc-dur) var(--dc-ease), color var(--dc-dur) var(--dc-ease);
}
.dc-hero__usps li:hover { border-color: var(--sf-green); color: var(--sf-green); transform: translateY(-2px); }
.dc-hero__usps li svg { width: 13px; height: 13px; color: var(--sf-red); }

.dc-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
}
.dc-hero__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 8px;
  border-radius: 999px;
  background: transparent;
  color: var(--sf-ink);
  transition: background var(--dc-dur) var(--dc-ease);
}
.dc-hero__phone:hover { background: var(--sf-surface); }
.dc-hero__phone-ico {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--sf-green);
  color: var(--sf-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.dc-hero__phone-ico svg { width: 14px; height: 14px; }
.dc-hero__phone-meta { display: flex; flex-direction: column; line-height: 1.1; }
.dc-hero__phone-meta small {
  font-family: var(--dc-font-mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sf-ink-mute);
  font-weight: 700;
}
.dc-hero__phone-meta strong { font-size: 13px; font-weight: 700; }

.dc-hero__proof {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px 8px 10px;
  border-radius: 999px;
  background: var(--sf-surface);
  border: 1px solid var(--sf-line);
  box-shadow: var(--dc-shadow-soft);
}
.dc-hero__proof-stack {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--sf-surface);
  border: 1px solid var(--sf-line);
  box-shadow: var(--dc-shadow-soft);
}
.dc-hero__proof-google { width: 17px; height: 17px; display: block; }
.dc-hero__proof-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--dc-font-sans);
  font-size: 11.5px;
  letter-spacing: 0.02em;
  color: var(--sf-ink);
  font-weight: 600;
}
.dc-hero__proof-stars { display: inline-flex; gap: 1px; color: var(--sf-mustard); }
.dc-hero__proof-star svg { width: 12px; height: 12px; fill: currentColor; }

/* ---- Scroll cue — centred döner skewer with glowing carved slices ---- */
.dc-hero__scroll {
  position: absolute;
  left: 50%;
  bottom: clamp(16px, 2.4vw, 32px);
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform var(--dc-dur) var(--dc-ease);
}
.dc-hero__scroll:hover { transform: translateX(-50%) translateY(-3px); }

.dc-hero__scroll-text {
  font-family: var(--dc-font-mono);
  font-size: 9.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-weight: 700;
  padding-left: 0.34em;
  color: var(--sf-ink-mute);
  transition: color var(--dc-dur) var(--dc-ease);
}
.dc-hero__scroll:hover .dc-hero__scroll-text { color: var(--sf-green); }

/* the spit — a slim glowing skewer track */
.dc-hero__scroll-spit {
  position: relative;
  width: 2px;
  height: 60px;
  border-radius: 999px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(13, 74, 61, 0.40) 24%,
    rgba(13, 74, 61, 0.40) 76%,
    transparent 100%);
}
/* skewer cap knob with a pulsing halo */
.dc-hero__scroll-spit::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  border-radius: 50%;
  background: var(--sf-yellow);
  animation: dc-scroll-cap 2.4s ease-in-out infinite;
}
@keyframes dc-scroll-cap {
  0%, 100% { box-shadow: 0 0 0 2px rgba(255, 216, 74, 0.35); }
  50%      { box-shadow: 0 0 0 7px rgba(255, 216, 74, 0); }
}
/* glossy carved meat slices gliding down the skewer */
.dc-hero__scroll-slice {
  position: absolute;
  top: 4px;
  left: 50%;
  width: 12px;
  height: 12px;
  margin-left: -6px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, #e7596d 0%, var(--sf-red) 52%, var(--sf-red-deep) 100%);
  box-shadow: 0 0 12px 1px rgba(200, 35, 59, 0.55), 0 0 0 4px rgba(200, 35, 59, 0.12);
  animation: dc-hero-scroll 2.4s var(--dc-ease) infinite;
}
.dc-hero__scroll-slice:nth-child(2) { animation-delay: 0.8s; }
.dc-hero__scroll-slice:nth-child(3) { animation-delay: 1.6s; }
@keyframes dc-hero-scroll {
  0%   { transform: translateY(0)    scale(0.55); opacity: 0; }
  18%  { transform: translateY(7px)  scale(1);    opacity: 1; }
  72%  { opacity: 1; }
  100% { transform: translateY(45px) scale(0.65); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .dc-hero__scroll-slice { animation: none; opacity: 0; }
  .dc-hero__scroll-slice:first-child { opacity: 1; transform: translateY(24px); }
  .dc-hero__scroll-spit::before { animation: none; }
}

/* ---- RIGHT — stage ---- */
.dc-hero__stage {
  position: relative;
  aspect-ratio: 5 / 5.4;
  min-height: 460px;
}

.dc-hero__card {
  position: absolute;
  border-radius: 22px;
  overflow: hidden;
  background: var(--sf-surface);
  border: 5px solid var(--sf-surface);
  box-shadow: 0 30px 60px -22px rgba(13, 74, 61, 0.32), 0 12px 28px -14px rgba(31, 36, 38, 0.18);
}
.dc-hero__card img,
.dc-hero__card video { width: 100%; height: 100%; object-fit: cover; }
.dc-hero__card--main {
  inset: 5% 14% 18% 0;
  z-index: 2;
}
.dc-hero__card-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,74,61,0) 50%, rgba(13,74,61,0.55) 100%);
}
.dc-hero__card--top {
  width: 42%;
  aspect-ratio: 1 / 1;
  right: -50px; top: 70%;
  transform: rotate(5deg);
  z-index: 3;
}
.dc-hero__card--bottom {
  width: 46%;
  aspect-ratio: 4 / 3;
  left: 4%; bottom: 0;
  transform: rotate(-4deg);
  z-index: 3;
}

.dc-hero__chip {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px 7px 10px;
  border-radius: 999px;
  background: rgba(252,250,243,0.95);
  color: var(--sf-ink);
  font-family: var(--dc-font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  z-index: 4;
  border: 1px solid var(--sf-line);
}
.dc-hero__chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sf-red);
  box-shadow: 0 0 0 0 rgba(200,35,59,0.6);
  animation: dc-hero-dot 2s ease-out infinite;
}

.dc-hero__stat {
  position: absolute;
  right: -10px;
  bottom: -10px;
  padding: 14px 18px;
  border-radius: 18px;
  background: var(--sf-green);
  color: var(--sf-light);
  box-shadow: 0 18px 36px -14px rgba(13,74,61,0.5);
  border: 1px solid rgba(252,250,243,0.18);
  max-width: 60%;
  transform: rotate(-3deg);
  z-index: 4;
}
.dc-hero__stat-value {
  display: block;
  font-family: var(--dc-font-display);
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--sf-light);
}
.dc-hero__stat-label {
  font-family: var(--dc-font-mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(252,250,243,0.78);
  margin-top: 3px;
  display: block;
  font-weight: 600;
}

.dc-hero__tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-family: var(--dc-font-sans);
  font-size: 11px;
  font-weight: 700;
  color: var(--sf-light);
  z-index: 2;
}
.dc-hero__tag svg { width: 13px; height: 13px; }
.dc-hero__tag--green { background: var(--sf-green); }
.dc-hero__tag--red   { background: var(--sf-red); }

@media (max-width: 1100px) {
  .dc-hero__inner { grid-template-columns: 1fr; }
  .dc-hero__stage { min-height: 420px; max-width: 540px; margin-inline: auto; }
}
@media (max-width: 640px) {
  .dc-hero__title { font-size: clamp(34px, 10vw, 52px); }
  .dc-hero__stage { min-height: 360px; }
  .dc-hero__card--top { width: 46%; }
  .dc-hero__card--bottom { width: 50%; }
}
