/* ============================================================
   PetHalo — Shared Stylesheet
   Premium calm emergency continuity brand
   ============================================================ */

/* ----- Variables ----- */
:root {
  --navy: #061b3a;
  --navy-2: #09254d;
  --gold: #f7ad18;
  --gold-2: #ffbd2e;
  --cream: #fbf7f0;
  --soft: #f4f6f9;
  --text: #061b3a;
  --muted: #4d5b70;
  --line: #dfe5ee;
  --white: #ffffff;
  --shadow-sm: 0 4px 12px rgba(6, 27, 58, 0.06);
  --shadow-md: 0 10px 25px rgba(6, 27, 58, 0.08);
  --shadow-lg: 0 18px 45px rgba(6, 27, 58, 0.12);
  --radius-sm: 7px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --font-serif: Georgia, 'Times New Roman', serif;
  --font-sans: Inter, Arial, Helvetica, sans-serif;
  --font-icon: 'Material Symbols Outlined';
  --max-width: 1200px;
  --header-h: 92px;
}

/* ----- Reset ----- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

ul {
  list-style: none;
}

/* ----- Material Icons Base ----- */
.m-icon {
  font-family: 'Material Symbols Outlined';
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

.m-icon-fill {
  font-variation-settings: 'FILL' 1, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

/* ----- Typography ----- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--navy);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

h1 { font-size: 58px; }
h2 { font-size: 38px; }
h3 { font-size: 26px; }

p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

/* ----- Container ----- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 62px;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  border-radius: var(--radius-sm);
  padding: 0 26px;
  font-weight: 800;
  font-size: 15px;
  border: 1.5px solid var(--navy);
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: var(--font-sans);
  white-space: nowrap;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-primary:hover {
  background: var(--navy-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--navy);
}

.btn-secondary:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  box-shadow: 0 8px 18px rgba(247, 173, 24, 0.25);
}

.btn-gold:hover {
  background: var(--gold-2);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(247, 173, 24, 0.35);
}

/* ----- Section Spacing ----- */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--cream);
}

.section-soft {
  background: var(--soft);
}

/* ----- Section Headers ----- */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header h2::after {
  content: "";
  width: 42px;
  height: 3px;
  background: var(--gold);
  display: block;
  margin: 14px auto 0;
  border-radius: 99px;
}

.section-header p {
  font-size: 18px;
  color: var(--muted);
}

/* ----- Eyebrow ----- */
.eyebrow {
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

/* ----- Gold Accent Line ----- */
.gold-line {
  width: 42px;
  height: 3px;
  background: var(--gold);
  border-radius: 99px;
  margin: 14px 0;
}

.gold-line-center {
  margin: 14px auto;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  height: var(--header-h);
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 62px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.brand-mark {
  width: 54px;
  height: 54px;
  position: relative;
  flex: 0 0 auto;
}

.halo {
  position: absolute;
  top: 0;
  left: 13px;
  width: 28px;
  height: 9px;
  border: 5px solid var(--gold);
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
}

.paw {
  position: absolute;
  bottom: 4px;
  left: 7px;
  width: 40px;
  height: 36px;
}

.toe {
  position: absolute;
  width: 10px;
  height: 13px;
  background: var(--gold);
  border-radius: 50%;
}

.toe.t1 { left: 2px; top: 6px; transform: rotate(-18deg); }
.toe.t2 { left: 14px; top: 1px; }
.toe.t3 { left: 27px; top: 6px; transform: rotate(18deg); }

.pad {
  position: absolute;
  left: 10px;
  top: 17px;
  width: 22px;
  height: 18px;
  background: var(--gold);
  border-radius: 45% 45% 55% 55%;
}

.heart {
  position: absolute;
  left: 16px;
  top: 20px;
  font-size: 12px;
  color: var(--navy);
  line-height: 1;
}

.brand-text strong {
  font-family: var(--font-serif);
  font-size: 34px;
  display: block;
  line-height: 1;
  letter-spacing: -0.04em;
}

.brand-text span {
  font-size: 12px;
  display: block;
  color: rgba(255, 255, 255, 0.88);
  margin-top: 3px;
}

/* Desktop Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  opacity: 0.95;
  position: relative;
}

.nav a:hover,
.nav a.active {
  color: var(--gold);
  opacity: 1;
}

.nav a.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.nav .cta {
  background: var(--gold);
  color: var(--navy);
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(247, 173, 24, 0.25);
}

.nav .cta:hover {
  background: var(--gold-2);
  color: var(--navy);
  transform: translateY(-1px);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 590px;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  overflow: hidden;
  background: linear-gradient(90deg, #fff 0%, #fff 43%, #f4eee6 100%);
}

.hero-copy {
  padding: 70px 0 60px 62px;
  max-width: 640px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 58px;
  max-width: 560px;
  margin-bottom: 25px;
}

.hero h1 .gold {
  display: block;
  color: var(--gold);
}

.hero p {
  font-size: 18px;
  max-width: 570px;
  color: #15223c;
  margin-bottom: 18px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 34px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  min-height: 590px;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 35% 45%, rgba(255,255,255,0.1), transparent 40%),
              linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.22) 23%, rgba(255,255,255,0) 47%);
  z-index: 1;
}

.dog-placeholder {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 52% 42%, #d9923b 0 13%, transparent 14%),
    radial-gradient(circle at 55% 43%, #edb66f 0 23%, transparent 24%),
    radial-gradient(circle at 48% 53%, #be7f38 0 8%, transparent 9%),
    linear-gradient(120deg, #eadbca, #c88b49 52%, #80522c 100%);
  filter: saturate(0.95);
  position: relative;
}

.dog-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/golden-retriever-hero.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.94;
}

.hero-card {
  position: absolute;
  right: 62px;
  top: 250px;
  width: 255px;
  background: var(--navy);
  color: var(--white);
  padding: 26px;
  border-radius: var(--radius-md);
  z-index: 2;
  box-shadow: var(--shadow-lg);
}

.hero-card .icon {
  width: 45px;
  height: 45px;
  border: 2px solid var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 24px;
  margin-bottom: 22px;
}

.hero-card strong {
  display: block;
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 7px;
}

.hero-card span {
  display: block;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 700;
}

/* Inner Page Hero */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 80px 62px;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  font-size: 48px;
  max-width: 750px;
  margin: 0 auto 16px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 19px;
  max-width: 650px;
  margin: 0 auto;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.card h3 {
  font-family: var(--font-sans);
  font-size: 18px;
  letter-spacing: 0;
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* Card Grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ============================================================
   DARK PANEL
   ============================================================ */
.dark-panel-wrap {
  padding: 22px 48px 30px;
  background: var(--white);
}

.dark-panel {
  background: var(--navy);
  color: var(--white);
  border-radius: 9px;
  padding: 34px 42px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  position: relative;
  overflow: hidden;
}

.dark-panel::after {
  content: "";
  position: absolute;
  right: 34px;
  bottom: -20px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  border: 26px solid rgba(255, 255, 255, 0.06);
}

.dark-left {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
  padding-right: 38px;
}

.search-icon {
  width: 72px;
  height: 72px;
  border: 4px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--gold);
  margin-top: 4px;
}

.dark-panel h3 {
  font-family: var(--font-sans);
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 14px;
  letter-spacing: 0;
  line-height: 1.2;
}

.dark-panel p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 16px;
}

.dark-panel .highlight {
  color: var(--gold);
  font-weight: 900;
}

.dark-list {
  display: grid;
  gap: 12px;
  list-style: none;
  position: relative;
  z-index: 1;
}

.dark-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.94);
}

.check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex-shrink: 0;
}

/* ============================================================
   CONTENT BLOCKS (Alternating)
   ============================================================ */
.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 62px;
}

.content-block.reverse {
  direction: rtl;
}

.content-block.reverse > * {
  direction: ltr;
}

.content-block h2 {
  font-size: 38px;
  margin-bottom: 20px;
}

.content-block p {
  font-size: 17px;
  margin-bottom: 16px;
  color: var(--muted);
}

.content-block .btn {
  margin-top: 10px;
}

.content-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   ORG GRID
   ============================================================ */
.org-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.org-card {
  padding: 28px 18px;
  text-align: center;
  border-right: 1px solid var(--line);
  min-height: 165px;
}

.org-card:last-child { border-right: 0; }

.org-icon {
  height: 46px;
  font-size: 38px;
  margin-bottom: 12px;
  color: var(--navy);
}

.org-card:nth-child(even) .org-icon { color: var(--gold); }

.org-card h3 {
  font-family: var(--font-sans);
  font-size: 15px;
  letter-spacing: 0;
  margin-bottom: 10px;
  line-height: 1.3;
}

.org-card p {
  font-size: 12px;
  color: #27354c;
  line-height: 1.45;
}

/* ============================================================
   PARTNER / IMPACT SECTION
   ============================================================ */
.partner-section {
  padding: 0 45px 34px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
}

.partner-card,
.impact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  min-height: 300px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.partner-card {
  display: grid;
  grid-template-columns: 1fr 210px;
  background: linear-gradient(90deg, var(--cream), #fff);
}

.partner-copy {
  padding: 30px;
}

.partner-copy h2,
.impact-card h2 {
  font-size: 32px;
  margin-bottom: 18px;
}

.partner-copy h2::after,
.impact-card h2::after {
  content: "";
  display: block;
  width: 38px;
  height: 3px;
  background: var(--gold);
  margin-top: 12px;
}

.partner-copy p {
  margin-bottom: 18px;
  color: #172744;
  font-size: 15px;
}

.cat-image {
  background-image: url('../assets/images/cat-partner.jpg');
  background-size: cover;
  background-position: center;
  min-height: 100%;
}

.impact-card {
  padding: 30px;
}

.impact-list {
  list-style: none;
  display: grid;
  gap: 24px;
  margin-top: 18px;
}

.impact-list li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  align-items: start;
}

.round-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: white;
  font-size: 24px;
  font-weight: 800;
  flex-shrink: 0;
}

.impact-list li:nth-child(2) .round-icon {
  background: var(--gold);
  color: var(--navy);
}

.impact-list h3 {
  font-family: var(--font-sans);
  font-size: 18px;
  letter-spacing: 0;
  margin-bottom: 4px;
}

.impact-list p {
  font-size: 14px;
  color: var(--muted);
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
  margin: 0 45px 35px;
  background: #eef3fb;
  border-radius: 9px;
  padding: 25px 34px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 38px;
  align-items: center;
}

.newsletter-left {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  align-items: center;
}

.newsletter h3 {
  font-family: var(--font-sans);
  font-size: 18px;
  letter-spacing: 0;
  margin-bottom: 5px;
}

.newsletter p {
  color: var(--muted);
  font-size: 14px;
}

.signup {
  display: grid;
  grid-template-columns: 1fr 170px;
  gap: 12px;
}

.signup input {
  height: 50px;
  border: 1px solid #b9c4d2;
  border-radius: 5px;
  padding: 0 18px;
  font-size: 15px;
  background: white;
  font-family: var(--font-sans);
}

.signup input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(247, 173, 24, 0.15);
}

.signup button {
  height: 50px;
  border: 0;
  background: var(--navy);
  color: white;
  border-radius: 5px;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: background 0.2s ease;
}

.signup button:hover {
  background: var(--navy-2);
}

.privacy-note {
  grid-column: 1 / -1;
  font-size: 12px;
  color: var(--muted);
  margin-top: -4px;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 80px 62px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.contact-form {
  display: grid;
  gap: 20px;
}

.contact-form label {
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  display: block;
  margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: var(--font-sans);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(247, 173, 24, 0.15);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form .btn {
  justify-content: center;
  width: 100%;
}

.contact-info {
  display: grid;
  gap: 30px;
  align-content: start;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: start;
}

.contact-info-item .round-icon {
  background: var(--cream);
  color: var(--navy);
  font-size: 20px;
}

.contact-info-item h3 {
  font-family: var(--font-sans);
  font-size: 16px;
  letter-spacing: 0;
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 14px;
  color: var(--muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  color: white;
  padding: 44px 62px 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.75fr 0.9fr 0.85fr;
  gap: 42px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.footer .brand {
  margin-bottom: 12px;
}

.footer h4 {
  color: var(--gold);
  margin-bottom: 14px;
  font-size: 15px;
  font-family: var(--font-sans);
  letter-spacing: 0;
}

.footer ul {
  list-style: none;
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

.footer ul a:hover {
  color: var(--gold);
}

.future-box {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 9px;
  padding: 20px;
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 14px;
}

.future-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  border: 2px solid var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a:hover {
  color: var(--gold);
}

/* ============================================================
   PAGE-SPECIFIC STYLES
   ============================================================ */

/* --- About Page --- */
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 0 62px 60px;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* --- Mission Page --- */
.mission-beliefs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 62px 60px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.belief-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--cream);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.belief-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.belief-card .belief-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}

.belief-card h3 {
  font-family: var(--font-sans);
  font-size: 17px;
  letter-spacing: 0;
  margin-bottom: 8px;
}

.belief-card p {
  font-size: 14px;
  color: var(--muted);
}

/* --- Approach Page --- */
.approach-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 0 62px 60px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.principle-card {
  padding: 32px 24px;
  border-left: 4px solid var(--gold);
  background: var(--white);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  box-shadow: var(--shadow-sm);
}

.principle-card .principle-num {
  font-family: var(--font-serif);
  font-size: 42px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}

.principle-card h3 {
  font-family: var(--font-sans);
  font-size: 18px;
  letter-spacing: 0;
  margin-bottom: 8px;
}

.principle-card p {
  font-size: 14px;
  color: var(--muted);
}

/* --- Who We're Talking To --- */
.talking-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 62px 60px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.talking-card {
  padding: 28px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all 0.3s ease;
}

.talking-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.talking-card .talking-icon {
  font-size: 40px;
  margin-bottom: 14px;
  display: block;
}

.talking-card h3 {
  font-family: var(--font-sans);
  font-size: 17px;
  letter-spacing: 0;
  margin-bottom: 8px;
}

.talking-card p {
  font-size: 14px;
  color: var(--muted);
}

/* --- Get Involved --- */
.involve-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 0 62px 60px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.involve-step {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  position: relative;
  transition: all 0.3s ease;
}

.involve-step:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.involve-step .step-number {
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 20px;
  margin: 0 auto 16px;
}

.involve-step:nth-child(even) .step-number {
  background: var(--gold);
  color: var(--navy);
}

.involve-step h3 {
  font-family: var(--font-sans);
  font-size: 17px;
  letter-spacing: 0;
  margin-bottom: 8px;
}

.involve-step p {
  font-size: 14px;
  color: var(--muted);
}

/* --- Resources Page --- */
.resource-topics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 0 62px 60px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.resource-category {
  padding: 32px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.resource-category:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.resource-category .cat-icon {
  font-size: 34px;
  margin-bottom: 14px;
  display: block;
}

.resource-category h3 {
  font-family: var(--font-sans);
  font-size: 18px;
  letter-spacing: 0;
  margin-bottom: 10px;
}

.resource-category ul {
  display: grid;
  gap: 8px;
}

.resource-category li {
  font-size: 14px;
  color: var(--muted);
  padding-left: 18px;
  position: relative;
}

.resource-category li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 900;
}

/* --- Privacy Page --- */
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 62px 80px;
}

.privacy-content h2 {
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 14px;
}

.privacy-content h2:first-child {
  margin-top: 0;
}

.privacy-content p {
  margin-bottom: 16px;
  font-size: 16px;
}

.privacy-content ul {
  list-style: none;
  margin-bottom: 20px;
}

/* ============================================================
   RESPONSIVE / MOBILE
   ============================================================ */

/* Tablet & Below */
@media (max-width: 1050px) {
  .container {
    padding: 0 24px;
  }

  .site-header {
    padding: 0 24px;
  }

  .nav {
    gap: 14px;
    font-size: 12px;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 48px 28px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-image {
    min-height: 390px;
  }

  .hero-card {
    right: 24px;
    top: 200px;
    width: 220px;
  }

  .org-grid,
  .partner-section,
  .newsletter,
  .footer-grid,
  .dark-panel {
    grid-template-columns: 1fr;
  }

  .org-grid {
    border: 0;
  }

  .org-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .dark-left {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0 0 24px;
  }

  .partner-card {
    grid-template-columns: 1fr;
  }

  .cat-image {
    min-height: 220px;
  }

  .content-block {
    grid-template-columns: 1fr;
    padding: 50px 24px;
    gap: 30px;
  }

  .content-block.reverse {
    direction: ltr;
  }

  .content-image {
    min-height: 280px;
  }

  .page-hero {
    padding: 60px 24px;
  }

  .page-hero h1 {
    font-size: 36px;
  }

  .about-values,
  .mission-beliefs,
  .approach-principles,
  .talking-grid,
  .involve-steps,
  .resource-topics {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 24px 40px;
  }

  .contact-section {
    grid-template-columns: 1fr;
    padding: 50px 24px;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dark-panel-wrap {
    padding: 22px 24px 30px;
  }

  .newsletter {
    margin: 0 24px 35px;
    padding: 25px 24px;
  }

  .footer {
    padding: 44px 24px 24px;
  }

  .signup {
    grid-template-columns: 1fr;
  }

  .privacy-content {
    padding: 40px 24px 60px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    padding: 100px 32px 40px;
    gap: 20px;
    font-size: 15px;
    transition: right 0.35s ease;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    align-items: flex-start;
  }

  .nav.open {
    right: 0;
  }

  .nav .cta {
    margin-top: 10px;
    text-align: center;
    width: 100%;
  }

  .brand-text strong {
    font-size: 26px;
  }

  .brand-text span {
    font-size: 10px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  .hero-card {
    position: relative;
    right: auto;
    top: auto;
    width: auto;
    margin: -40px 16px 0;
    border-radius: var(--radius-md);
  }

  .hero-image {
    min-height: 300px;
  }

  .page-hero h1 {
    font-size: 30px;
  }

  .page-hero p {
    font-size: 16px;
  }

  h2 {
    font-size: 28px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .about-values,
  .mission-beliefs,
  .approach-principles,
  .talking-grid,
  .involve-steps,
  .resource-topics,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .content-block h2 {
    font-size: 28px;
  }

  .partner-copy h2,
  .impact-card h2 {
    font-size: 26px;
  }

  .footer-grid {
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .newsletter-left {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .newsletter-left .round-icon {
    margin: 0 auto;
  }

  .dark-panel {
    padding: 28px 24px;
  }

  .dark-left {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .search-icon {
    margin: 0 auto;
  }

  .section {
    padding: 50px 0;
  }

  .section-header {
    padding: 0 24px;
  }

  .partner-section {
    padding: 0 24px 34px;
  }
}

/* Toast notification for contact form */
.toast {
  display: none;
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  padding: 16px 28px;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  z-index: 9999;
  max-width: 520px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast.success {
  background: #1a7f4e;
}
.toast.error {
  background: #c0392b;
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }

  .site-header {
    padding: 0 16px;
  }

  .hero-copy {
    padding: 36px 20px;
  }

  .btn {
    font-size: 14px;
    padding: 0 20px;
    min-height: 44px;
  }
}

