/* ============================================================
   Contact Us page (page-id-1511) — birdiechaser.com/contact-us/
   Scoped entirely to body.page-id-1511.

   The CF7 form internals (labels, inputs, submit) are already
   styled globally by css/forms.css — this file ONLY handles the
   page shell: rust canvas, content card, hero title, the
   "Chase Us Down" kicker, and section heading.
   ============================================================ */

body.page-id-1511 {
  --bc-brown:       #412818;
  --bc-brown-soft:  #5a3a25;
  --bc-card:        #fffdf9;
  --bc-gold:        #b8860b;
  --bc-gold-bright: #d4a017;
  --bc-line:        rgba(65, 40, 24, 0.14);
}

/* ── Canvas — brand rust + vignette ───────────────────────── */
body.page-id-1511 {
  background: #c4824c !important;
  background-image: radial-gradient(
    ellipse at center,
    transparent 40%,
    rgba(0, 0, 0, 0.25) 80%,
    rgba(0, 0, 0, 0.45) 100%
  ) !important;
  background-attachment: fixed !important;
  background-size: 100% 100% !important;
  background-repeat: no-repeat !important;
}
body.page-id-1511 .site-content {
  background-color: transparent;
}

/* ── Content card ─────────────────────────────────────────── */
body.page-id-1511 .inside-article {
  max-width: 720px;
  margin: 40px auto;
  background: var(--bc-card);
  border: 1px solid var(--bc-line);
  border-radius: 18px;
  box-shadow: 0 14px 44px rgba(40, 22, 12, 0.24);
  padding: clamp(28px, 5vw, 60px) clamp(24px, 5vw, 56px);
}

/* ── Hero title (entry-title "Contact Us") ────────────────── */
body.page-id-1511 .entry-header {
  text-align: center;
  border: 0;
  margin: 0 0 0.4em;
  padding: 0;
}
body.page-id-1511 .entry-title {
  font-family: var(--font-heading), 'Libre Baskerville', serif;
  font-size: clamp(2.3rem, 5.5vw, 3.3rem);
  line-height: 1.06;
  color: var(--bc-brown);
  margin: 0;
  letter-spacing: -0.01em;
}

/* ── Intro / tagline: <p><strong>Chase Us Down</strong> …</p> ── */
body.page-id-1511 .entry-content {
  font-family: var(--font-body), 'Outfit', sans-serif;
  color: var(--bc-brown-soft);
}
body.page-id-1511 .entry-content > p:first-of-type {
  text-align: center;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--bc-brown);
  max-width: 540px;
  margin: 0 auto 1.8em;
}
/* "Chase Us Down" → gold uppercase kicker on its own line */
body.page-id-1511 .entry-content > p:first-of-type strong:first-child {
  display: block;
  font-family: var(--font-body), 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(0.95rem, 2.4vw, 1.15rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bc-gold);
  margin-bottom: 0.5em;
}

/* ── "Get in Touch" section heading ───────────────────────── */
body.page-id-1511 .entry-content h2 {
  font-family: var(--font-heading), 'Libre Baskerville', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  line-height: 1.18;
  color: var(--bc-brown);
  margin: 0 0 0.6em;
  padding-bottom: 0.4em;
  position: relative;
}
body.page-id-1511 .entry-content h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 54px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--bc-gold), var(--bc-gold-bright));
}

body.page-id-1511 .entry-content > p:not(:first-of-type) {
  font-size: 1.0625rem;
  line-height: 1.74;
  margin: 0 0 1.2em;
}

/* ── Form spacing within the card (internals stay in forms.css) ── */
body.page-id-1511 .wpcf7 {
  margin-top: 1.5em;
}
/* center + give the submit button a touch more presence on this page */
body.page-id-1511 .wpcf7-form .wpcf7-submit {
  display: block;
  margin: 0.6em auto 0;
  min-width: 220px;
}

/* ── Mobile ───────────────────────────────────────────────── */
@media (max-width: 768px) {
  body.page-id-1511 .inside-article {
    margin: 20px 14px;
    border-radius: 14px;
  }
}
