:root {
  --ngo-ct-ink: #0a0a0a;
  --ngo-ct-paper: #f4f0e8;
  --ngo-ct-accent: var(--primary-color);
  --ngo-ct-muted: var(--primary-color);
  --ngo-ct-rule: #5d5d5d;
  --ngo-ct-soft: var(--secondary-color);
}

body {
  font-family: var(--DmSans);
  color: var(--ngo-ct-ink);
}

/* ── HERO ── */
.ngo-ct-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* border-bottom: 2px solid var(--ngo-ct-ink); */
  min-height: 260px;
}

.ngo-ct-hero__left {
  padding: 60px 60px 56px;
  /* border-right: 2px solid var(--ngo-ct-ink); */
  display: flex;
  align-items: flex-end;
}

.ngo-ct-hero__title {
  font-family: var(--DmSans);
  font-size: clamp(60px, 9vw, 116px);
  font-weight: 600;
  line-height: 0.88;
  letter-spacing: -0.03em;
  opacity: 0;
  transform: translateY(32px);
  animation: ngo-ct-up 0.9s ease 0.1s forwards;
}

.ngo-ct-hero__title em {
  font-style: italic;
  color: var(--ngo-ct-accent);
}

.ngo-ct-hero__right {
  padding: 60px 60px 56px;
  display: flex;
  align-items: flex-end;
}

.ngo-ct-hero__intro {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ngo-ct-muted);
  max-width: 400px;
  opacity: 0;
  transform: translateY(20px);
  animation: ngo-ct-up 0.8s ease 0.35s forwards;
}

.ngo-ct-hero__intro strong {
  color: var(--ngo-ct-ink);
  font-weight: 500;
}

/* ── MAIN: FORM + SIDEBAR ── */
.ngo-ct-main {
  display: grid;
  grid-template-columns: 1fr 360px;
  border-bottom: 2px solid var(--ngo-ct-ink);
}

/* FORM */
.ngo-ct-form-panel {
  padding: 68px 60px;
  border-right: 2px solid var(--ngo-ct-ink);
  opacity: 0;
  animation: ngo-ct-up 0.8s ease 0.5s forwards;
}

.ngo-ct-form-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ngo-ct-accent);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.ngo-ct-form-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--ngo-ct-rule);
}

.ngo-ct-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.ngo-ct-field {
  padding: 26px 26px 20px;
  border-bottom: 1px solid var(--ngo-ct-rule);
  border-right: 1px solid var(--ngo-ct-rule);
  transition: background 0.2s;
}

.ngo-ct-field:nth-child(even) {
  border-right: none;
}
.ngo-ct-field--full {
  grid-column: 1 / -1;
  border-right: none;
}
.ngo-ct-field--full:last-of-type {
  border-bottom: none;
}

.ngo-ct-field:focus-within {
  background: var(--ngo-ct-soft);
}
.ngo-ct-field:focus-within .ngo-ct-field__label {
  color: var(--ngo-ct-accent);
}

.ngo-ct-field__label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ngo-ct-muted);
  margin-bottom: 10px;
  transition: color 0.2s;
}

.ngo-ct-field__label span {
  color: var(--ngo-ct-accent);
}

.ngo-ct-input,
.ngo-ct-textarea,
.ngo-ct-select {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--ngo-ct-ink);
  padding: 0;
  line-height: 1.5;
  appearance: none;
  -webkit-appearance: none;
}

.ngo-ct-input::placeholder,
.ngo-ct-textarea::placeholder {
  color: var(--ngo-ct-rule);
}

.ngo-ct-textarea {
  resize: none;
  height: 120px;
}

.ngo-ct-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a7060' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}

.ngo-ct-select option {
  background: var(--ngo-ct-paper);
  color: var(--ngo-ct-ink);
}

.ngo-ct-submit-row {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.ngo-ct-btn-submit {
  font-family: var(--DmSans);

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--primary-color);
  /* border: 2px solid yellow; */
  width: 180px;
  height: 50px;
  color: #fff;
  border-radius: 24px;
  transition:
    background 0.2s,
    border-color 0.2s;
  cursor: pointer;
}

.ngo-ct-btn-submit:hover {
  background: #fff;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.ngo-ct-submit-note {
  font-size: 12px;
  color: var(--ngo-ct-muted);
  line-height: 1.6;
}

/* SIDEBAR */
.ngo-ct-sidebar {
  background: var(--ngo-ct-ink);
  display: flex;
  flex-direction: column;
  opacity: 0;
  animation: ngo-ct-up 0.8s ease 0.65s forwards;
}

.ngo-ct-sidebar__block {
  padding: 44px 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  flex: 1;
}

.ngo-ct-sidebar__block:last-child {
  border-bottom: none;
}

.ngo-ct-sidebar__block-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: 16px;
}

.ngo-ct-sidebar__accent-line {
  width: 32px;
  height: 2px;
  background: var(--ngo-ct-accent);
  margin-bottom: 20px;
}

.ngo-ct-sidebar__city {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 14px;
}

.ngo-ct-sidebar__address {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.85;
}

.ngo-ct-sidebar__contact-row {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ngo-ct-sidebar__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.ngo-ct-sidebar__contact-key {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ngo-ct-accent);
  padding-top: 2px;
  min-width: 48px;
}

.ngo-ct-sidebar__contact-val {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.ngo-ct-sidebar__contact-val a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.ngo-ct-sidebar__contact-val a:hover {
  color: var(--ngo-ct-accent);
}

/* Map placeholder */
.ngo-ct-map {
  flex: 1;
  min-height: 180px;
  background: #111;
  position: relative;
  overflow: hidden;
}

.ngo-ct-map__grid {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 28px,
      rgba(255, 255, 255, 0.03) 28px,
      rgba(255, 255, 255, 0.03) 29px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 28px,
      rgba(255, 255, 255, 0.03) 28px,
      rgba(255, 255, 255, 0.03) 29px
    );
}

.ngo-ct-map__pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.ngo-ct-map__dot {
  width: 12px;
  height: 12px;
  background: var(--ngo-ct-accent);
  animation: ngo-ct-pulse 2s ease-in-out infinite;
}

.ngo-ct-map__ring {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid var(--ngo-ct-accent);
  animation: ngo-ct-ring 2s ease-out infinite;
}

.ngo-ct-map__label {
  margin-top: 16px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  white-space: nowrap;
}

/* ── TICKER ── */
.ngo-ct-ticker {
  background: var(--ngo-ct-ink);
  border-top: 2px solid var(--ngo-ct-ink);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ngo-ct-ticker__track {
  display: inline-flex;
  animation: ngo-ct-ticker 22s linear infinite;
}

.ngo-ct-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 36px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(244, 240, 232, 0.35);
}

.ngo-ct-ticker__dot {
  width: 4px;
  height: 4px;
  background: var(--ngo-ct-accent);
  flex-shrink: 0;
}

/* ── ANIMATIONS ── */
@keyframes ngo-ct-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ngo-ct-ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes ngo-ct-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

@keyframes ngo-ct-ring {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(3.5);
    opacity: 0;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .ngo-ct-eyebrow-band,
  .ngo-ct-hero,
  .ngo-ct-main {
    grid-template-columns: 1fr;
  }

  .ngo-ct-eyebrow-left {
    border-right: none;
    border-bottom: 2px solid var(--ngo-ct-ink);
    padding: 20px 32px;
  }
  .ngo-ct-eyebrow-right {
    padding: 20px 32px;
  }

  .ngo-ct-hero__left {
    border-right: none;
    border-bottom: 2px solid var(--ngo-ct-ink);
    padding: 48px 32px 40px;
  }
  .ngo-ct-hero__right {
    padding: 40px 32px;
  }

  .ngo-ct-form-panel {
    border-right: none;
    border-bottom: 2px solid var(--ngo-ct-ink);
    padding: 52px 32px;
  }
}

@media (max-width: 600px) {
  .ngo-ct-form {
    grid-template-columns: 1fr;
  }
  .ngo-ct-field {
    border-right: none !important;
  }
  .ngo-ct-field--full:last-of-type {
    border-bottom: none;
  }
  .ngo-ct-submit-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
