/* ─────────────────────────────────────────────
   Austin Pet Post — styles.css
   ───────────────────────────────────────────── */

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
img { display: block; max-width: 100%; }
a { text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Variables ── */
:root {
  /* Backgrounds */
  --white:        #FFFFFF;
  --off-white:    #FAF9F7;
  --cream:        #F7F4F0;
  --beige-light:  #EDE8E0;
  --beige:        #DED6CA;

  /* Sage green accent */
  --sage-subtle:  #E8EDE4;
  --sage-light:   #8A9E7C;
  --sage:         #6B7F5E;
  --sage-dark:    #536648;

  /* Neutrals */
  --black:        #1A1A1A;
  --charcoal:     #3D3D3D;
  --gray-dark:    #5C5C5C;
  --gray:         #8A8A8A;
  --gray-light:   #B8B8B8;

  /* Amber accent */
  --amber:        #C4943A;
  --amber-subtle: #FDF0DC;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --section-py: 96px;
  --container:  1160px;
  --radius:     12px;
  --radius-sm:  8px;
}

/* ── Base ── */
html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-py) 0;
}

.section--white    { background: var(--white); }
.section--off-white { background: var(--off-white); }
.section--cream    { background: var(--cream); }
.section--sage-dark { background: var(--sage-dark); }

/* ── Typography ── */
h1, h2, h3 { font-family: var(--font-display); color: var(--black); line-height: 1.2; }
h4, h5, h6 { font-family: var(--font-body); }

.section-header { text-align: center; margin-bottom: 64px; }

.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--sage);
  margin-bottom: 12px;
}

.section-eyebrow--light { color: rgba(255,255,255,0.7); }

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
}

.section-title--light { color: var(--white); }

.section-sub {
  font-size: 17px;
  color: var(--gray-dark);
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  border-radius: var(--radius-sm);
  border: none;
  transition: background 0.18s ease, color 0.18s ease, transform 0.1s ease, box-shadow 0.18s ease;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--sage);
  color: var(--white);
  padding: 12px 22px;
  font-size: 14px;
}
.btn-primary:hover { background: var(--sage-dark); }

.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--beige);
  padding: 12px 22px;
  font-size: 14px;
}
.btn-ghost:hover { border-color: var(--sage); color: var(--sage); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
  padding: 11px 20px;
  font-size: 14px;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }

.btn-lg { padding: 15px 28px; font-size: 15px; }
.btn-full { width: 100%; }


/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--beige-light);
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
}

.nav-logo-text strong {
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 14px;
  color: var(--gray-dark);
  font-weight: 400;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--sage); }

.nav-cta { flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
  background: var(--white);
  border-top: 1px solid var(--beige-light);
}
.mobile-menu.open { display: flex; }
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 16px;
}
.mobile-menu a {
  display: block;
  padding: 10px 0;
  font-size: 16px;
  color: var(--charcoal);
  border-bottom: 1px solid var(--beige-light);
}
.mobile-menu ul li:last-child a { border-bottom: none; }
.mobile-menu .btn { align-self: flex-start; padding: 12px 28px; }
.mobile-menu .btn-primary { color: var(--white); }


/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  background: var(--off-white);
  padding: 80px 0 96px;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--sage);
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 700;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-headline em {
  font-style: italic;
  color: var(--sage);
}

.hero-sub {
  font-size: 18px;
  color: var(--gray-dark);
  font-weight: 300;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-trust span {
  font-size: 13px;
  color: var(--gray-dark);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── Postcard Stack ── */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.postcard-stack {
  position: relative;
  width: 420px;
  height: 340px;
  flex-shrink: 0;
}

.postcard {
  position: absolute;
  width: 320px;
  height: 210px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  display: flex;
  overflow: hidden;
}

.postcard-back {
  bottom: 40px;
  left: 10px;
  transform: rotate(-5deg);
  z-index: 1;
}

.postcard-front {
  top: 20px;
  right: 10px;
  transform: rotate(3deg);
  z-index: 2;
}

.postcard-photo {
  width: 55%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  position: relative;
}

.postcard-photo--cat  { background: var(--sage-subtle); }
.postcard-photo--dog  { background: var(--amber-subtle); }

.pet-emoji {
  font-size: 52px;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.08));
}

.pet-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gray);
}

.postcard-address-side {
  width: 45%;
  padding: 10px 12px;
  position: relative;
  background: var(--white);
  border-left: 1px dashed var(--beige);
}

.postcard-stamp {
  width: 32px;
  height: 38px;
  border: 1.5px solid var(--beige);
  border-radius: 3px;
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  background: var(--sage-subtle);
}

.postcard-lines {
  margin-top: 58px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.postcard-line {
  height: 1.5px;
  background: var(--beige-light);
  border-radius: 1px;
}
.postcard-line.short { width: 60%; }

/* Envelope peek at bottom */
.envelope-peek {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  z-index: 0;
}

.envelope-body {
  width: 100%;
  height: 60px;
  background: var(--beige);
  border-radius: 0 0 6px 6px;
}

.envelope-flap {
  width: 100%;
  height: 36px;
  background: var(--beige-light);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

/* Extras badge */
.extras-badge {
  position: absolute;
  top: 14px;
  left: -4px;
  background: var(--amber);
  color: var(--white);
  padding: 7px 14px;
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  transform: rotate(-6deg);
  box-shadow: 0 4px 12px rgba(196, 148, 58, 0.35);
  z-index: 10;
  white-space: nowrap;
}


/* ═══════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════ */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
}

.step {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 40px 32px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--beige-light);
  position: relative;
}

.step-number {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--sage-light);
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.step-icon {
  font-size: 36px;
  margin-bottom: 16px;
  line-height: 1;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 10px;
}

.step p {
  font-size: 15px;
  color: var(--gray-dark);
  font-weight: 300;
  line-height: 1.65;
}

.step-connector {
  color: var(--beige);
  font-size: 18px;
  letter-spacing: 4px;
  padding-top: 80px;
  flex-shrink: 0;
  margin: 0 8px;
  align-self: flex-start;
}


/* ═══════════════════════════════════════
   WHAT'S INSIDE
═══════════════════════════════════════ */
.inside-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.inside-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 32px 24px;
  border: 1px solid var(--beige-light);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.inside-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.07);
  transform: translateY(-2px);
}

.inside-card-icon {
  font-size: 32px;
  line-height: 1;
  margin-bottom: 4px;
}

.inside-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
}

.inside-card p {
  font-size: 14px;
  color: var(--gray-dark);
  font-weight: 300;
  line-height: 1.65;
  flex: 1;
}

.inside-card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--sage);
  background: var(--sage-subtle);
  padding: 5px 10px;
  border-radius: 20px;
  align-self: flex-start;
  margin-top: auto;
}

.inside-card-tag--amber {
  color: var(--amber);
  background: var(--amber-subtle);
}

.inside-card--postcard { border-top: 3px solid var(--sage-light); }
.inside-card--goodies  { border-top: 3px solid var(--amber); }
.inside-card--donation { border-top: 3px solid var(--sage-dark); }


/* ═══════════════════════════════════════
   THE MISSION
═══════════════════════════════════════ */
.mission-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 72px;
  align-items: center;
}

.mission-content { max-width: 580px; }

.mission-text {
  font-size: 16px;
  color: rgba(255,255,255,0.95);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 24px;
}

.mission-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.mission-stat-number {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.mission-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  font-weight: 400;
  line-height: 1.4;
  max-width: 100px;
}

/* Shelter card */
.shelter-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 32px;
  backdrop-filter: blur(4px);
}

.shelter-card-eyebrow {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

.shelter-placeholder {
  text-align: center;
  padding: 16px 0 8px;
}

.shelter-placeholder-icon {
  font-size: 40px;
  margin-bottom: 16px;
  line-height: 1;
}

.shelter-placeholder h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  margin-bottom: 10px;
}

.shelter-placeholder p {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 20px;
}


/* ═══════════════════════════════════════
   SHELTER PARTNERS
═══════════════════════════════════════ */
.shelters-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}

.shelter-partner-card {
  background: var(--off-white);
  border: 1px solid var(--beige-light);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
}

.shelter-partner-card--coming-soon {
  background: transparent;
  border: 2px dashed var(--beige);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.shelter-partner-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--sage);
  background: var(--sage-subtle);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.shelter-partner-icon {
  font-size: 32px;
  line-height: 1;
  margin-bottom: 14px;
}

.shelter-partner-icon--plus {
  font-size: 36px;
  font-weight: 200;
  color: var(--gray-light);
  font-family: var(--font-body);
}

.shelter-partner-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 10px;
}

.shelter-partner-card--coming-soon .shelter-partner-name {
  color: var(--gray);
}

.shelter-partner-desc {
  font-size: 14px;
  color: var(--gray-dark);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 20px;
}

.shelter-partner-card--coming-soon .shelter-partner-desc {
  color: var(--gray);
  margin-bottom: 0;
}

.shelter-partner-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--sage);
  transition: color 0.15s;
}
.shelter-partner-link:hover { color: var(--sage-dark); }


/* ═══════════════════════════════════════
   PRICING
═══════════════════════════════════════ */
.pricing-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 820px;
  margin: 0 auto 48px;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--beige-light);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.pricing-card--featured {
  border: 2px solid var(--sage);
  box-shadow: 0 8px 32px rgba(107, 127, 94, 0.15);
}

.pricing-badge {
  display: inline-block;
  background: var(--amber);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.pricing-plan-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--sage-light);
  margin-bottom: 8px;
}

.pricing-savings {
  display: inline-block;
  background: rgba(196, 148, 58, 0.2);
  color: #E8B063;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.pricing-card-header {
  background: var(--sage-dark);
  padding: 28px 32px 24px;
  text-align: center;
}

.pricing-amount {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  margin-bottom: 8px;
  line-height: 1;
}

.pricing-dollar {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--sage-light);
  margin-top: 8px;
}

.pricing-number {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.pricing-period {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--sage-light);
  font-weight: 400;
  margin-top: 38px;
}

.pricing-tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
}

.pricing-features {
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.5;
}

.pricing-check {
  color: var(--sage);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-cta {
  padding: 0 32px 28px;
}

.pricing-disclaimer {
  font-size: 12px;
  color: var(--gray);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

/* Pricing trust row */
.pricing-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
}

.pricing-trust-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.pricing-trust-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.pricing-trust-item strong {
  display: block;
  font-size: 13px;
  color: var(--black);
  font-weight: 600;
  margin-bottom: 3px;
}

.pricing-trust-item p {
  font-size: 12px;
  color: var(--gray-dark);
  font-weight: 300;
  line-height: 1.55;
}


/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--beige-light);
}

.faq-item:first-child {
  border-top: 1px solid var(--beige-light);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  list-style: none;
  user-select: none;
  transition: color 0.15s;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; }

.faq-question:hover { color: var(--sage); }

.faq-question::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--sage);
  flex-shrink: 0;
  transition: transform 0.2s ease;
  line-height: 1;
}

details[open] > .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--gray-dark);
  font-weight: 300;
  line-height: 1.75;
}


/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: var(--black);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  padding-top: 56px;
  padding-bottom: 56px;
  align-items: start;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.footer-logo img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-logo span {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
}

.footer-logo strong {
  font-weight: 700;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  line-height: 1.65;
  max-width: 280px;
}

.footer-links {
  display: flex;
  gap: 64px;
}

.footer-links-col h4 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  font-weight: 300;
  transition: color 0.15s;
}
.footer-links-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

.footer-bottom-inner p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
}

.footer-bottom-inner a {
  color: rgba(255,255,255,0.6);
  transition: color 0.15s;
}
.footer-bottom-inner a:hover { color: rgba(255,255,255,0.7); }


/* ═══════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════ */

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 720px;
  margin: 48px auto 0;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--beige-light);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.contact-card-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
}

.contact-card a {
  font-size: 15px;
  font-weight: 500;
  color: var(--sage);
  text-decoration: underline;
  word-break: break-all;
}

.contact-card a:hover { color: var(--sage-dark); }

.contact-intro-text {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.7;
}

@media (max-width: 600px) {
  .contact-cards { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   LEGAL PAGES
═══════════════════════════════════════ */

.legal-hero {
  background: var(--cream);
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--beige-light);
}

.legal-hero h1 {
  font-size: clamp(28px, 5vw, 42px);
  color: var(--charcoal);
  margin-bottom: 8px;
}

.legal-hero p {
  font-size: 14px;
  color: var(--text-secondary);
}

.legal-content {
  max-width: 740px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--charcoal);
  margin: 40px 0 12px;
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-content ul {
  margin: 0 0 14px 20px;
  padding: 0;
}

.legal-content ul li {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 6px;
}

.legal-content a {
  color: var(--sage);
  text-decoration: underline;
}

.legal-content a:hover { color: var(--sage-dark); }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }

  .hero-inner { gap: 40px; }
  .postcard-stack { width: 360px; height: 300px; }
  .postcard { width: 280px; height: 185px; }
  .pet-emoji { font-size: 40px; }

  .inside-grid { grid-template-columns: repeat(2, 1fr); }

  .mission-inner { grid-template-columns: 1fr; gap: 48px; }
  .mission-content { max-width: 100%; }

  .shelters-grid { grid-template-columns: 1fr; max-width: 480px; }
  .pricing-options { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .pricing-trust { grid-template-columns: 1fr 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* Mobile */
@media (max-width: 640px) {
  :root { --section-py: 56px; }

  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { padding: 56px 0 72px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-headline { font-size: 42px; }
  .hero-sub { font-size: 16px; }
  .hero-visual { overflow: hidden; }

  .postcard-stack {
    width: 300px;
    height: 240px;
    transform: scale(0.85);
    transform-origin: center center;
  }
  .postcard { width: 240px; height: 158px; }
  .pet-emoji { font-size: 32px; }
  .pet-label { font-size: 8px; }
  .postcard-stamp { width: 26px; height: 30px; font-size: 11px; }
  .postcard-lines { margin-top: 44px; }
  .envelope-peek { width: 220px; }
  .envelope-body { height: 48px; }
  .envelope-flap { height: 28px; }

  /* Steps */
  .steps { flex-direction: column; align-items: center; }
  .step-connector { display: none; }
  .step { max-width: 100%; width: 100%; padding: 32px 24px; }

  /* What's Inside */
  .inside-grid { grid-template-columns: 1fr; }

  /* Mission */
  .mission-stats { flex-direction: column; gap: 24px; }

  /* Pricing */
  .pricing-card-header { padding: 24px 20px 20px; }
  .pricing-features { padding: 20px; }
  .pricing-cta { padding: 0 20px 24px; }
  .pricing-trust { grid-template-columns: 1fr; }

  /* Footer */
  .footer-links { flex-direction: column; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 400px) {
  .hero-headline { font-size: 36px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}
