/* Visenza FEEL - page-specific layout.
   Built strictly on assets/visenza-tokens.css custom properties (colors,
   fonts, radius, spacing). No new colors invented here. */

* { box-sizing: border-box; }

.wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- header ---- */
.feel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--stein);
}

.feel-brand {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 1.3rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nacht);
  text-decoration: none;
}

.langswitch {
  display: flex;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

.langswitch a {
  color: var(--erde);
  text-decoration: none;
  opacity: 0.7;
  padding: 4px 2px;
  display: inline-block;
}

.langswitch a[data-active] {
  opacity: 1;
  color: var(--nacht);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---- hero ---- */
.feel-hero {
  padding: 32px 0 24px;
  text-align: center;
}

.feel-hero .label {
  display: block;
  margin-bottom: 18px;
}

.feel-hero h1 {
  font-size: 2.1rem;
  margin-bottom: 22px;
}

.feel-hero p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.02rem;
  line-height: 1.75;
  opacity: 0.85;
  max-width: 520px;
  margin: 0 auto;
}

/* ---- video placeholder ---- */
.feel-video {
  margin: 20px auto 0;
  max-width: 420px;
}

.feel-video-box {
  aspect-ratio: 9 / 16;
  width: 100%;
  background: linear-gradient(160deg, var(--erde) 0%, var(--stein) 55%, var(--fels) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.feel-video-play {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1px solid var(--kalk);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kalk);
}

.feel-video-play::after {
  content: '';
  border-style: solid;
  border-width: 9px 0 9px 14px;
  border-color: transparent transparent transparent var(--kalk);
  margin-left: 4px;
}

.feel-video-caption {
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  opacity: 0.6;
  margin-top: 8px;
}

/* ---- form ---- */
.feel-form-section {
  padding: 10px 0 80px;
}

.feel-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 440px;
  margin: 0 auto;
}

.feel-field label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--erde);
  margin-bottom: 8px;
}

.feel-field input[type="text"],
.feel-field input[type="email"],
.feel-field input[type="tel"] {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 14px;
  min-height: 48px;
  background: var(--kalk);
  border: 1px solid var(--stein);
  border-radius: var(--radius);
  color: var(--nacht);
}

.feel-field input:focus {
  outline: none;
  border-color: var(--erde);
}

.feel-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  line-height: 1.6;
  opacity: 0.85;
}

.feel-checkbox input[type="checkbox"] {
  margin-top: 4px;
  flex-shrink: 0;
}

.feel-checkbox a {
  color: var(--nacht);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.feel-form .btn {
  width: 100%;
  text-align: center;
  border: none;
}

.feel-form .btn:disabled {
  /* Was: opacity: 0.45 applied on top of the inherited --kalk (near-white)
     button text over a --stein (light stone) background - text contrast
     came out at ~1.4:1, effectively invisible (verified via screenshot +
     computed luminance). Fixed by setting the label color explicitly
     instead of fading the whole element, so the button still reads as
     present/disabled rather than blank. */
  cursor: not-allowed;
  background: var(--stein);
  border-color: var(--stein);
  color: var(--nacht);
}

.feel-form-error {
  display: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #b00;
  margin: 0;
}

.feel-form-error[data-visible] {
  display: block;
}

/* honeypot: hidden from humans, present for bots */
.feel-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

/* ---- thank-you page ---- */
.feel-thanks {
  padding: 100px 0;
  text-align: center;
}

.feel-thanks .label {
  display: block;
  margin-bottom: 18px;
}

.feel-thanks h1 {
  font-size: 2rem;
  margin-bottom: 22px;
}

.feel-thanks p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.02rem;
  line-height: 1.75;
  opacity: 0.85;
  max-width: 460px;
  margin: 0 auto 36px;
}

.feel-thanks .btn {
  display: inline-block;
}

.feel-thanks .tl {
  display: block;
  margin-top: 28px;
  color: var(--nacht);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

/* ---- footer ---- */
.feel-footer {
  border-top: 1px solid var(--stein);
  padding: 28px 24px;
}

.feel-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.feel-footer nav {
  display: flex;
  gap: 18px;
}

.feel-footer a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--nacht);
  opacity: 0.7;
  text-decoration: none;
  padding: 6px 0;
  display: inline-block;
}

.feel-footer a:hover {
  opacity: 1;
  text-decoration: underline;
}

.feel-footer .copyright {
  font-size: 0.72rem;
  opacity: 0.5;
}

@media (max-width: 480px) {
  .feel-hero h1 { font-size: 1.6rem; }
  .feel-hero { padding: 16px 0 16px; }

  /* On a phone, the 9/16 (portrait-video) box at full container width ran
     to roughly 80% of the viewport height, burying the form (the actual
     goal of the page) below the fold under an empty gradient placeholder.
     A shorter ratio + a viewport-height cap keeps it recognizably a video
     slot without dominating the screen (measured via a real 390x844
     screenshot before/after). Kept tight deliberately: the brief is to
     minimize scroll distance to the form, not just avoid the video
     dominating the screen. */
  .feel-video-box {
    aspect-ratio: 4 / 5;
    max-height: 34vh;
  }

  .feel-form-section { padding: 6px 0 40px; }
  .wrap { padding: 0 20px; }
}
