:root {
  --red: #c5161d;
  --red-dark: #8f0f14;
  --dark: #111827;
  --muted: #5b6472;
  --line: #e5e7eb;
  --soft: #fff4f4;
  --white: #ffffff;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f7f7f7;
  color: var(--dark);
}

.swn-contact-page {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 16px 42px;
}

.hero {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 42px 28px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(139, 15, 20, 0.98), rgba(197, 22, 29, 0.92)),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.22), transparent 34%);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.18);
}

.hero::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -60px;
  width: 260px;
  height: 260px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
}

.hero__badge,
.eyebrow,
.section-head span {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero__badge {
  background: rgba(255,255,255,0.16);
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 999px;
}

.hero h1 {
  position: relative;
  margin: 16px 0 12px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  font-weight: 900;
  z-index: 1;
}

.hero p {
  position: relative;
  max-width: 850px;
  margin: 0 0 20px;
  font-size: 17px;
  line-height: 1.72;
  z-index: 1;
}

.hero__email,
.direct-email {
  position: relative;
  display: inline-block;
  color: var(--red-dark);
  background: var(--white);
  text-decoration: none;
  font-weight: 800;
  padding: 14px 18px;
  border-radius: 12px;
  z-index: 1;
}

.quick-topics,
.contact-panel,
.info-strip,
.disclaimer {
  margin-top: 24px;
}

.section-head {
  margin-bottom: 14px;
}

.section-head span,
.eyebrow {
  color: var(--red);
}

.section-head h2,
.contact-panel h2,
.disclaimer h2 {
  margin: 8px 0 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.topic-card {
  appearance: none;
  border: 1px solid #efd0d2;
  background: var(--white);
  color: var(--dark);
  border-radius: 16px;
  padding: 18px 14px;
  text-align: left;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.topic-card:hover,
.topic-card.active {
  transform: translateY(-2px);
  border-color: var(--red);
  background: var(--soft);
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
}

.contact-panel__left p,
.disclaimer p,
.info-strip p {
  font-size: 15.5px;
  line-height: 1.74;
  color: var(--muted);
}

.note {
  margin-top: 18px;
  padding: 16px;
  background: var(--soft);
  border-left: 5px solid var(--red);
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: #3f2224;
}

.contact-fields {
  display: grid;
  gap: 10px;
}

.contact-fields label {
  font-size: 14px;
  font-weight: 800;
}

.contact-fields input,
.contact-fields select,
.contact-fields textarea {
  width: 100%;
  border: 1px solid #d9dde4;
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 14px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
}

.contact-fields input:focus,
.contact-fields select:focus,
.contact-fields textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(197, 22, 29, 0.1);
}

.send-button {
  appearance: none;
  border: 0;
  margin-top: 8px;
  background: var(--red);
  color: var(--white);
  padding: 15px 20px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
}

.send-button:hover {
  background: var(--red-dark);
}

.direct-email {
  margin-top: 2px;
  color: var(--red);
  background: transparent;
  border: 1px solid #efd0d2;
  text-align: center;
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.info-strip > div,
.disclaimer {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
}

.info-strip h3 {
  margin: 0 0 8px;
  font-size: 19px;
}

.info-strip p,
.disclaimer p {
  margin: 0;
}

.disclaimer {
  border-left: 6px solid var(--red);
}

@media (max-width: 900px) {
  .topic-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-panel { grid-template-columns: 1fr; }
  .info-strip { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .swn-contact-page { padding: 14px 12px 30px; }
  .hero { padding: 32px 20px; border-radius: 18px; }
  .hero p { font-size: 15.5px; }
  .topic-grid { grid-template-columns: 1fr; }
  .topic-card { padding: 15px 14px; }
  .contact-panel { padding: 18px; border-radius: 18px; }
  .hero__email { word-break: break-word; }
}
