/* Gartenraum — forms + cookie modal (center variant) */

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

.gform__row { display: flex; flex-direction: column; gap: 6px; }
.gform__lbl {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 600;
}

.gform input[type="text"],
.gform input[type="email"],
.gform input[type="tel"],
.gform textarea {
  font-family: var(--sans);
  font-size: 1rem;
  padding: 14px 16px;
  background: var(--chalk);
  color: var(--deep);
  border: 1.5px solid var(--line);
  border-radius: var(--bend);
  width: 100%;
  transition: border-color 0.2s;
}
.gform input:focus, .gform textarea:focus { outline: none; border-color: var(--ivy); }
.gform textarea { min-height: 140px; resize: vertical; }

.gform__check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--shade);
  line-height: 1.5;
}
.gform__check input[type="checkbox"] {
  margin-top: 4px;
  width: 16px;
  height: 16px;
  accent-color: var(--ivy);
  flex-shrink: 0;
}
.gform__check a { color: var(--ivy); }

.gform__alert {
  font-size: 0.92rem;
  padding: 12px 14px;
  border-radius: var(--bend);
  display: none;
}
.gform__alert--ok {
  background: rgba(45,69,56,0.08);
  color: var(--ivy);
  border-left: 3px solid var(--ivy);
}
.gform__alert--err {
  background: rgba(90,103,112,0.1);
  color: var(--stone);
  border-left: 3px solid var(--stone);
}
.gform__alert.is-show { display: block; }

.gform__net {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

/* ============== Cookie bar — bottom-strip, no backdrop, content stays usable ============== */
.cookie-modal {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: var(--deep);
  color: var(--mist);
  padding: 16px 0;
  box-shadow: 0 -10px 30px rgba(31,45,46,0.18);
}

.cookie-modal__box {
  max-width: var(--reach);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.92rem;
  line-height: 1.5;
}
.cookie-modal__box p {
  margin: 0;
  flex: 1 1 320px;
  max-width: none;
  color: rgba(235,237,237,0.92);
}
.cookie-modal__box a { color: var(--mist); text-decoration: underline; }

.cookie-modal__row {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-modal__btn {
  padding: 10px 18px;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: var(--bend);
  cursor: pointer;
  border: 1.5px solid rgba(235,237,237,0.45);
  background: transparent;
  color: var(--mist);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.cookie-modal__btn:hover {
  background: var(--mist);
  color: var(--deep);
  border-color: var(--mist);
}
.cookie-modal__btn--solid {
  background: var(--mist);
  color: var(--deep);
  border-color: var(--mist);
}
.cookie-modal__btn--solid:hover {
  background: transparent;
  color: var(--mist);
  border-color: rgba(235,237,237,0.45);
}
