@charset "UTF-8";

:root {
  --bg: #ebe7dd;
  --surface: rgba(252, 250, 244, 0.9);
  --surface-strong: #fffdf7;
  --line: #d8cfbe;
  --ink: #1d241a;
  --muted: #5e6556;
  --accent: #1d6a52;
  --accent-deep: #114837;
  --shadow: 0 14px 34px rgba(34, 30, 22, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  background:
    radial-gradient(circle at top left, rgba(29, 106, 82, 0.14), transparent 28rem),
    radial-gradient(circle at 85% 10%, rgba(232, 220, 197, 0.92), transparent 20rem),
    linear-gradient(180deg, #f3efe6 0%, var(--bg) 100%);
}

a {
  color: inherit;
}

.page-shell {
  width: min(1280px, calc(100% - 32px));
  margin: 12px auto 14px;
}

.hero,
.map-card,
.ad-strip,
.request-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 16px 20px;
  margin-bottom: 10px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 20px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  flex: 0 0 78px;
}

.brand-mark img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.hero-copy h1 {
  margin: 0 0 4px;
  font-size: clamp(1.6rem, 3.6vw, 3.1rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.byline {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: baseline;
}

.byline a {
  color: var(--accent-deep);
  text-decoration: none;
}

.map-card {
  padding: 12px;
}

#svmap iframe {
  width: 100%;
  height: calc(100vh - 232px);
  min-height: 560px;
  border: 0;
  border-radius: 22px;
  background: white;
  box-shadow: inset 0 0 0 1px rgba(216, 207, 190, 0.85);
}

.ad-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 74px;
  margin-top: 10px;
  padding: 10px 14px;
}

.ad-strip-label {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ad-strip-slot {
  flex: 1;
  min-height: 50px;
  overflow: hidden;
}

.request-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 10px;
  padding: 12px 16px;
}

.request-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.social-links {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-strong);
  color: var(--ink);
  text-decoration: none;
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

@media (max-width: 700px) {
  .page-shell {
    width: min(100% - 20px, 1280px);
    margin: 8px auto 12px;
  }

  .hero,
  .map-card,
  .ad-strip,
  .request-card {
    border-radius: 22px;
    padding: 18px;
  }

  .hero {
    align-items: flex-start;
  }

  .request-card,
  .ad-strip,
  .social-links {
    flex-direction: column;
    align-items: stretch;
  }

  .ad-strip {
    min-height: 0;
    gap: 8px;
    padding: 12px 14px;
  }

  .social-links {
    justify-content: flex-start;
  }

  #svmap iframe {
    height: calc(100vh - 286px);
    min-height: 500px;
  }
}
