/* Minnut CMS + Contact page (Naturaltein-inspired, light) */

.cms-main {
  background: #fff;
  color: #2d2d2d;
  font-family: Rajdhani, system-ui, sans-serif;
}

.cms-shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px 20px 64px;
}

.cms-shell--narrow {
  max-width: 860px;
}

.cms-title {
  margin: 0 0 20px;
  font-family: Rajdhani, sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #2d2d2d;
}

.cms-body {
  font-family: Rajdhani, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: #4a4a4a;
}

.cms-body h2,
.cms-body h3 {
  font-family: Rajdhani, sans-serif;
  font-weight: 700;
  color: #2d2d2d;
  margin: 1.6em 0 0.6em;
}

.cms-body p { margin: 0 0 1em; }
.cms-body ul,
.cms-body ol { margin: 0 0 1.2em; padding-left: 1.25em; }
.cms-body li { margin: 0 0 0.4em; }
.cms-body a {
  color: #846044;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cms-body a:hover { color: #c4a071; }

.cms-map-wrap {
  margin: 28px 0 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(132, 96, 68, 0.14);
}

/* —— Contact (Naturaltein two-column) —— */
.contact-sec {
  background: #fff;
  padding: 36px 0 56px;
}

.contact-shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 48px;
  align-items: start;
}

.contact-left .contact-title {
  margin: 0 0 10px;
  font-family: Rajdhani, sans-serif;
  font-size: clamp(32px, 4.5vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #2d2d2d;
}

.contact-subtitle {
  margin: 0 0 16px;
  font-family: Rajdhani, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #2d2d2d;
  text-transform: none;
  letter-spacing: 0;
}

.contact-copy {
  font-family: Rajdhani, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
  color: #4a4a4a;
}

.contact-copy p { margin: 0 0 12px; }
.contact-copy strong { color: #2d2d2d; font-weight: 700; }

.contact-meta {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}

.contact-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: baseline;
  font-family: Rajdhani, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #2d2d2d;
}

.contact-meta-label {
  font-weight: 700;
  min-width: 4.5rem;
}

.contact-meta-row a {
  color: #846044;
  text-decoration: none;
}
.contact-meta-row a:hover { text-decoration: underline; }

.contact-address,
.contact-hours {
  margin-top: 18px;
  font-family: Rajdhani, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
  color: #4a4a4a;
}

.contact-address strong,
.contact-hours strong {
  color: #2d2d2d;
  font-weight: 700;
}

.contact-right {
  background: #f7f1e8;
  border: 1px solid rgba(132, 96, 68, 0.12);
  border-radius: 4px;
  padding: 24px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form .field {
  position: relative;
}

.contact-form .field__input,
.contact-form .text-area {
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 14px 14px 10px;
  border: 1px solid rgba(132, 96, 68, 0.28);
  border-radius: 0;
  background: #fff;
  color: #2d2d2d;
  font-family: Rajdhani, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  outline: none;
  transition: border-color 0.15s ease;
}

.contact-form .text-area {
  min-height: 140px;
  resize: vertical;
}

.contact-form .field__input:focus,
.contact-form .text-area:focus {
  border-color: #c4a071;
}

.contact-form .field__label {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 4px;
  background: #fff;
  color: #846044;
  font-family: Rajdhani, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  pointer-events: none;
  transition: top 0.15s ease, font-size 0.15s ease, color 0.15s ease;
}

.contact-form .field--area .field__label {
  top: 18px;
  transform: none;
}

.contact-form .field__input:focus + .field__label,
.contact-form .field__input:not(:placeholder-shown) + .field__label,
.contact-form .text-area:focus + .field__label,
.contact-form .text-area:not(:placeholder-shown) + .field__label {
  top: 0;
  font-size: 11px;
  color: #c4a071;
}

.contact-form .field-error,
.contact-form .has-error .field-error {
  display: block;
  margin-top: 6px;
  color: #a76d5e;
  font-size: 13px;
  font-weight: 600;
}

.contact-form .has-error .field__input,
.contact-form .has-error .text-area {
  border-color: #a76d5e;
}

.contact-form .contact-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-status {
  margin: 0 0 8px;
  padding: 10px 12px;
  background: rgba(152, 160, 134, 0.22);
  color: #2d2d2d;
  font-family: Rajdhani, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 28px;
  border: 0;
  border-radius: 50px;
  background: #c4a071;
  color: #fff;
  font-family: Rajdhani, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.contact-submit:hover {
  background: #846044;
}

.contact-submit:active {
  transform: translateY(1px);
}

@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .cms-shell,
  .contact-shell {
    padding-left: 16px;
    padding-right: 16px;
  }
}
