/* Laconic variant — overrides only. Base template stays in styles.css */

.theme-laconic .draft-banner a:hover {
  color: #ffc9cc;
}

/* —— Hero: lift up, kill gap under header (don't shrink content) —— */
.theme-laconic .hero {
  padding: 12px 0 0;
  overflow: visible;
}

.theme-laconic .hero::before {
  width: 48%;
  opacity: 0.9;
  top: 0;
}

.theme-laconic .hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.9fr);
  gap: 16px 20px;
  /* vertically center copy against the photo */
  align-items: center;
  min-height: 0 !important;
}

.theme-laconic .hero-copy {
  padding-top: 0;
  text-align: left;
}

.theme-laconic .hero-title {
  margin-bottom: 14px;
}

.theme-laconic .hero-lead {
  margin-bottom: 20px;
}

.theme-laconic .hero-cta {
  margin-bottom: 0;
  justify-content: flex-start;
}

.theme-laconic .hero-visual {
  min-height: 0 !important;
  overflow: visible;
}

.theme-laconic .hero-stage {
  max-width: none;
  width: 100%;
  height: min(640px, 78vh);
  overflow: visible;
}

.theme-laconic .feature-strip {
  padding: 20px 0 40px;
  margin-top: -12px;
}

.theme-laconic .hero-glow {
  inset: 12% 8% 5%;
  filter: blur(36px);
  opacity: 0.85;
}

.theme-laconic .hero-mist {
  display: none;
}

.theme-laconic .hero-person {
  height: 100%;
  max-width: none;
  width: auto;
  object-fit: contain;
  object-position: center bottom;
  /* soft-edge PNG: hoodie kept, only outer frame fades */
  filter: none;
  background: none;
  /* kill any residual hard rect from browser premultiplication */
  mix-blend-mode: normal;
}

/* —— Lifestyle: no card / border / grey panel —— */
.theme-laconic .lifestyle {
  border: none;
  border-radius: 0;
  background: transparent;
  min-height: 0;
  grid-template-columns: minmax(260px, 1fr) minmax(280px, 0.9fr);
  gap: 12px 32px;
  align-items: center;
  padding: 8px 0 16px;
  overflow: visible;
}

.theme-laconic .lifestyle-media {
  order: 2;
  min-height: 0;
  height: min(460px, 58vh);
  overflow: visible;
  justify-content: flex-end;
}

.theme-laconic .lifestyle-glow {
  width: 80%;
  height: 80%;
  top: 10%;
  opacity: 0.9;
  filter: blur(32px);
}

.theme-laconic .lifestyle-person {
  height: 100%;
  max-height: none;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  object-position: right bottom;
  mask-image: none;
  -webkit-mask-image: none;
  filter: none;
}

.theme-laconic .lifestyle-content {
  order: 1;
  padding: 24px 8px 24px 0;
  max-width: 480px;
}

/* Slightly quieter section cards so photos stay the soft focus */
.theme-laconic .section {
  padding: 64px 0;
}

@media (max-width: 980px) {
  .theme-laconic .hero {
    overflow-x: clip;
    padding: 8px 0 0;
  }

  .theme-laconic .hero-grid {
    grid-template-columns: 1fr;
    gap: 8px 0;
  }

  .theme-laconic .hero-copy {
    text-align: center;
    padding-inline: 0;
    max-width: none;
  }

  .theme-laconic .hero-cta {
    justify-content: stretch;
    max-width: none;
  }

  .theme-laconic .hero-visual {
    overflow: hidden;
    max-width: min(360px, 100%);
    margin-inline: auto;
    width: 100%;
  }

  .theme-laconic .hero-stage {
    height: min(480px, 58vh);
    max-width: 100%;
    overflow: hidden;
  }

  .theme-laconic .hero-person {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .theme-laconic .lifestyle {
    grid-template-columns: 1fr;
    text-align: center;
    overflow: hidden;
  }

  .theme-laconic .lifestyle-content {
    padding: 8px 0 12px;
    margin-inline: auto;
    align-items: center;
  }

  .theme-laconic .lifestyle-content p {
    margin-inline: auto;
  }

  .theme-laconic .lifestyle-media {
    order: 0;
    height: min(400px, 50vh);
    justify-content: center;
    overflow: hidden;
    max-width: 100%;
  }

  .theme-laconic .lifestyle-person {
    object-position: center bottom;
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .theme-laconic .hero-stage {
    height: min(400px, 52vh);
  }

  .theme-laconic .lifestyle-media {
    height: min(340px, 46vh);
  }
}

/* —— Devices scene: laptop+phones foreground, TV far back-right —— */
.theme-laconic .devices-stage--scene {
  position: relative;
  min-height: 560px;
  padding: 24px 20px 18px;
  overflow: hidden;
  border: none;
  background:
    radial-gradient(ellipse 42% 48% at 28% 86%, rgba(241, 38, 50, 0.2), transparent 70%),
    radial-gradient(ellipse 48% 55% at 78% 28%, rgba(241, 38, 50, 0.07), transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.theme-laconic .devices-scene {
  position: relative;
  width: 100%;
  min-height: 520px;
  background:
    linear-gradient(180deg, transparent 58%, rgba(255, 255, 255, 0.018) 100%);
}

/* Foreground: laptop + upright phones left/right, 30% overlap */
.theme-laconic .devices-front {
  --laptop-w: 68%;
  --laptop-l: 16%;
  --phone-w: 108px;
  position: absolute;
  left: 1%;
  bottom: 8px;
  z-index: 5;
  width: 56%;
  height: 320px;
  filter: drop-shadow(0 22px 36px rgba(0, 0, 0, 0.55));
}

.theme-laconic .devices-front .device-laptop-wrap {
  position: absolute;
  left: var(--laptop-l);
  bottom: 28px;
  width: var(--laptop-w);
  z-index: 2;
  filter: drop-shadow(0 20px 32px rgba(0, 0, 0, 0.5));
}

.theme-laconic .devices-front .device-phone-sm {
  position: absolute;
  width: var(--phone-w);
  height: 212px;
  z-index: 5;
  bottom: 4px;
  right: auto;
  transform: none;
  filter: drop-shadow(0 16px 22px rgba(0, 0, 0, 0.5));
}

/* 30% of phone width overlaps the laptop */
.theme-laconic .devices-front .device-phone-sm.left {
  left: calc(var(--laptop-l) - 0.7 * var(--phone-w));
  transform: none;
}

.theme-laconic .devices-front .device-phone-sm.right {
  left: calc(var(--laptop-l) + var(--laptop-w) - 0.3 * var(--phone-w));
  right: auto;
  transform: none;
  z-index: 6;
}

/* Background: TV ~70% width, fully inside the frame */
.theme-laconic .device-tv {
  position: absolute;
  right: 1%;
  top: 3%;
  width: 70%;
  max-height: 94%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.72;
  transform: none;
  transform-origin: center top;
  filter: saturate(0.7) brightness(0.82) contrast(0.92) blur(0.55px);
  pointer-events: none;
}

.theme-laconic .device-tv-panel {
  width: 100%;
  max-height: calc(100% - 54px);
  background: linear-gradient(180deg, #1a1e26, #101319);
  border: 3px solid #1c212c;
  border-radius: 14px;
  padding: 10px;
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.theme-laconic .device-tv-screen {
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 40%, rgba(241, 38, 50, 0.35), transparent 58%),
    #080A0E;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.04);
  min-height: 0;
}

.theme-laconic .device-tv-screen .mini-ui {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
}

.theme-laconic .device-tv-screen .mini-ui small {
  display: block;
  margin-top: 4px;
  font-size: 0.68rem;
  color: var(--muted-2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.theme-laconic .device-tv-screen .mini-power,
.theme-laconic .device-tv-screen .mini-power.lg {
  width: 58px;
  height: 58px;
  margin: 0;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid var(--red);
  box-shadow: 0 0 18px rgba(241, 38, 50, 0.5);
  background: radial-gradient(circle at 50% 40%, rgba(241, 38, 50, 0.5), transparent 70%);
}

.theme-laconic .device-tv-screen .mini-ui span {
  color: #7CFFB2;
  font-size: 0.78rem;
  font-weight: 650;
}

.theme-laconic .device-tv-stand {
  position: relative;
  width: 58%;
  height: 52px;
  margin-top: 2px;
  flex-shrink: 0;
}

.theme-laconic .device-tv-stand .leg {
  position: absolute;
  top: 0;
  width: 4px;
  height: 42px;
  background: linear-gradient(180deg, #555d6e, #1c2028);
  border-radius: 3px;
  display: block;
}

.theme-laconic .device-tv-stand .leg.left {
  left: 18%;
  transform: rotate(-24deg);
  transform-origin: top center;
}

.theme-laconic .device-tv-stand .leg.right {
  right: 18%;
  transform: rotate(24deg);
  transform-origin: top center;
}

.theme-laconic .device-tv-stand .foot {
  position: absolute;
  left: 50%;
  bottom: 2px;
  transform: translateX(-50%);
  width: 52%;
  height: 7px;
  border-radius: 999px;
  background: #1a1d24;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.45);
  display: block;
}

@media (max-width: 980px) {
  .theme-laconic .devices-stage--scene {
    min-height: 480px;
  }

  .theme-laconic .devices-scene {
    min-height: 440px;
  }

  .theme-laconic .devices-front {
    width: 58%;
    height: 280px;
    --phone-w: 92px;
  }

  .theme-laconic .devices-front .device-phone-sm {
    height: 180px;
  }

  .theme-laconic .device-tv {
    width: 70%;
    right: 1%;
    opacity: 0.68;
  }

  .theme-laconic .device-tv-stand {
    height: 44px;
  }
}

@media (max-width: 900px) {
  .theme-laconic .devices-stage--scene {
    min-height: 0;
    padding: 20px 12px 18px;
  }

  .theme-laconic .devices-scene {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    min-height: 0;
  }

  .theme-laconic .devices-front {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(420px, 100%);
    height: auto;
    transform: none;
    order: 2;
    filter: none;
  }

  .theme-laconic .devices-front .device-phone-sm {
    display: none;
  }

  .theme-laconic .devices-front .device-laptop-wrap {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(420px, 92%);
    margin: 0 auto;
    transform: none;
    filter: none;
  }

  .theme-laconic .device-laptop {
    aspect-ratio: 16 / 10;
  }

  .theme-laconic .laptop-body {
    justify-content: center;
    align-items: center;
  }

  .theme-laconic .device-tv {
    position: relative;
    right: auto;
    top: auto;
    width: min(340px, 86%);
    max-height: none;
    opacity: 0.85;
    transform: none;
    filter: saturate(0.8) brightness(0.9);
    order: 1;
  }

  .theme-laconic .device-tv-panel {
    max-height: none;
  }

  .theme-laconic .device-tv-screen {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .theme-laconic .device-tv-stand {
    height: 44px;
  }
}

@media (max-width: 600px) {
  .theme-laconic .hero-stage {
    height: min(400px, 52vh);
  }

  .theme-laconic .lifestyle-media {
    height: min(340px, 46vh);
  }

  .theme-laconic .devices-stage--scene {
    padding: 16px 10px;
  }

  .theme-laconic .device-tv {
    width: min(300px, 90%);
  }
}
