:root {
  --forest: #3b3b3b;
  --emerald: #5f8f9d;
  --gold: #d8b44a;
  --clay: #c7a27a;
  --sky: #c7d7dc;
  --sand: #f6f2ea;
  --bone: #fbf9f5;
  --ink: #2a2a2a;
  --muted: #5f5f5f;
  --deep: #1f1f1f;
  --shadow: 0 24px 60px rgba(35, 35, 35, 0.18);
  --radius: 22px;
  --font-head: "Fraunces", serif;
  --font-body: "Archivo", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(216, 180, 74, 0.18), transparent 42%),
    radial-gradient(circle at 88% 16%, rgba(95, 143, 157, 0.2), transparent 45%),
    linear-gradient(180deg, #f7f5f0 0%, #ffffff 55%, #eef3f2 100%);
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  margin: 0 0 0.6rem;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 1.05;
}

h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.15;
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
}

small {
  color: var(--muted);
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
}

.section.tight {
  padding: 3rem 0;
}

.section-muted {
  background: rgba(245, 239, 230, 0.7);
}

.section-header {
  margin-bottom: 2.5rem;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--emerald);
  font-weight: 700;
}

.kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--emerald);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 249, 245, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(95, 143, 157, 0.12);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 0.85rem 0;
}

.brand {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--forest);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(35, 35, 35, 0.12);
  padding: 4px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 1.1rem;
  align-items: center;
  font-weight: 600;
  color: var(--forest);
  font-size: 0.95rem;
  white-space: nowrap;
}

.nav-links a {
  position: relative;
  padding: 0.3rem 0;
}

.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 100%;
  height: 2px;
  background: var(--gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(95, 143, 157, 0.2);
  background: #fff;
  border-radius: 12px;
  padding: 0.4rem 0.6rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--forest);
  margin: 4px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-small {
  padding: 0.55rem 1.1rem;
  font-size: 0.9rem;
}

.btn-primary {
  background: var(--emerald);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 60px rgba(35, 35, 35, 0.25);
}

.btn-outline {
  border-color: rgba(95, 143, 157, 0.45);
  color: var(--forest);
  background: transparent;
}

.btn-gold {
  background: var(--gold);
  color: #1b1f1c;
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  background: transparent;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0 4.5rem;
}

.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(95, 143, 157, 0.35), transparent 70%);
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(35, 35, 35, 0.08);
  border-radius: var(--radius);
  padding: 2.4rem;
  box-shadow: var(--shadow);
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero-highlights {
  display: flex;
  gap: 1rem;
  margin-top: 1.4rem;
  flex-wrap: wrap;
}

.hero-highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: rgba(95, 143, 157, 0.15);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--forest);
  font-weight: 600;
}

.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-badge {
  position: absolute;
  left: 1.5rem;
  bottom: -1.2rem;
  background: var(--emerald);
  color: #fff;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.grid {
  display: grid;
  gap: 1.6rem;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: #fff;
  border: 1px solid rgba(95, 143, 157, 0.12);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: 0 16px 40px rgba(95, 143, 157, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card.highlight {
  background: linear-gradient(160deg, rgba(35, 35, 35, 0.92), rgba(95, 143, 157, 0.9));
  color: #fff;
}

.card.highlight p,
.card.highlight small,
.card.highlight h3 {
  color: #fff;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(216, 180, 74, 0.2);
  color: #7a4b00;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.stat {
  background: #fff;
  border-radius: 18px;
  padding: 1.2rem;
  text-align: left;
  border: 1px solid rgba(35, 35, 35, 0.08);
}

.stat h3 {
  font-size: 1.6rem;
  margin-bottom: 0.2rem;
}

.media-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.media-card img {
  border-radius: 20px;
}

.list {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
}

.list li {
  list-style: none;
  padding-left: 1.8rem;
  position: relative;
  color: var(--muted);
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.banner {
  background: linear-gradient(120deg, rgba(35, 35, 35, 0.94), rgba(95, 143, 157, 0.92));
  color: #fff;
  border-radius: var(--radius);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.banner h2,
.banner p {
  color: #fff;
}

.form {
  display: grid;
  gap: 1rem;
}

.form label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.form input[type="checkbox"] {
  accent-color: var(--emerald);
}

.input,
.textarea,
.select {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(95, 143, 157, 0.2);
  font-family: var(--font-body);
  background: #fff;
}

.textarea {
  min-height: 140px;
  resize: vertical;
}

  .form-message {
    display: none;
    padding: 0.8rem 1rem;
    background: rgba(95, 143, 157, 0.12);
    border-radius: 10px;
    color: var(--forest);
    font-weight: 600;
  }

  .form-message.error {
    background: rgba(180, 35, 24, 0.12);
    color: #b42318;
  }

.form-message.show {
  display: block;
}

.blog-grid {
  display: grid;
  gap: 1.8rem;
}

.post-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(35, 35, 35, 0.12);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  box-shadow: 0 18px 40px rgba(35, 35, 35, 0.08);
}

  .post-card[data-card-link],
  .media-card[data-card-link],
  .product-card[data-card-link] {
    cursor: pointer;
  }

  .post-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 0;
  }

  .post-image-link {
    display: block;
    line-height: 0;
  }

  .post-body {
    padding: 1.4rem;
    display: grid;
    gap: 0.8rem;
  }

  .post-card h3 a {
    display: inline-block;
  }

  .post-card h3 a:hover,
  .post-card h3 a:focus-visible {
    color: var(--forest);
    text-decoration: underline;
    text-underline-offset: 4px;
  }

  .media-card h3 a {
    display: inline-block;
  }

  .media-card h3 a:hover,
  .media-card h3 a:focus-visible {
    color: var(--forest);
    text-decoration: underline;
    text-underline-offset: 4px;
  }

.post-meta {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--muted);
}

.blog-layout {
  display: grid;
  grid-template-columns: 2.1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.article-meta {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.article-body p {
  margin-bottom: 1.2rem;
}

.sidebar {
  display: grid;
  gap: 1.4rem;
}

.sidebar-products {
  display: grid;
  gap: 1rem;
  margin-top: 0.8rem;
}

.sidebar-product {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0.8rem;
  align-items: center;
}

.sidebar-product img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 12px;
}

.share-bar {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(35, 35, 35, 0.12);
  display: grid;
  gap: 0.8rem;
}

.share-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

  .share-links a {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(35, 35, 35, 0.2);
  font-size: 0.85rem;
  color: var(--forest);
}

  .icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    margin-right: 6px;
    background-color: var(--forest);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
  }

  .icon-whatsapp {
    background-color: #25d366;
    mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2a10 10 0 0 0-8.7 15l-1.3 5 5-1.3A10 10 0 1 0 12 2zm0 18a8 8 0 0 1-4.1-1.1l-.3-.2-2.4.6.6-2.3-.2-.3A8 8 0 1 1 12 20zm4.6-5.2c-.2-.1-1.3-.6-1.5-.7-.2-.1-.4-.1-.6.1-.2.2-.7.7-.8.8-.1.1-.3.2-.5.1-.3-.1-1.1-.4-2.1-1.3-.8-.7-1.3-1.6-1.5-1.8-.1-.2 0-.4.1-.5.1-.1.2-.3.3-.4.1-.1.1-.3.2-.4.1-.1.1-.3 0-.5-.1-.2-.6-1.4-.8-1.9-.2-.5-.4-.4-.6-.4h-.5c-.2 0-.4.1-.6.3-.2.2-.8.8-.8 2 0 1.2.8 2.3.9 2.5.1.2 1.6 2.5 4 3.5.6.3 1 .4 1.3.5.5.2 1 .2 1.3.1.4-.1 1.3-.5 1.5-1 .2-.5.2-1 .2-1.1-.1-.1-.2-.2-.4-.3z'/></svg>");
    -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2a10 10 0 0 0-8.7 15l-1.3 5 5-1.3A10 10 0 1 0 12 2zm0 18a8 8 0 0 1-4.1-1.1l-.3-.2-2.4.6.6-2.3-.2-.3A8 8 0 1 1 12 20zm4.6-5.2c-.2-.1-1.3-.6-1.5-.7-.2-.1-.4-.1-.6.1-.2.2-.7.7-.8.8-.1.1-.3.2-.5.1-.3-.1-1.1-.4-2.1-1.3-.8-.7-1.3-1.6-1.5-1.8-.1-.2 0-.4.1-.5.1-.1.2-.3.3-.4.1-.1.1-.3.2-.4.1-.1.1-.3 0-.5-.1-.2-.6-1.4-.8-1.9-.2-.5-.4-.4-.6-.4h-.5c-.2 0-.4.1-.6.3-.2.2-.8.8-.8 2 0 1.2.8 2.3.9 2.5.1.2 1.6 2.5 4 3.5.6.3 1 .4 1.3.5.5.2 1 .2 1.3.1.4-.1 1.3-.5 1.5-1 .2-.5.2-1 .2-1.1-.1-.1-.2-.2-.4-.3z'/></svg>");
  }

  .icon-facebook {
    background-color: #1877f2;
    mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M14 8h-2V6.5c0-.4.3-.7.7-.7H14V3h-2.3C9.5 3 8 4.6 8 6.5V8H6v3h2v8h3v-8h2.3L14 8z'/></svg>");
    -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M14 8h-2V6.5c0-.4.3-.7.7-.7H14V3h-2.3C9.5 3 8 4.6 8 6.5V8H6v3h2v8h3v-8h2.3L14 8z'/></svg>");
  }

  .icon-twitter {
    background-color: #1da1f2;
    mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M19.9 7.7v.6c0 6.5-4.9 11.1-11.1 11.1-2.2 0-4.3-.6-6-1.8.3 0 .6.1.9.1 1.8 0 3.4-.6 4.7-1.6-1.7 0-3.1-1.1-3.6-2.6.2 0 .4.1.7.1.3 0 .7 0 1-.1-1.7-.3-3-1.8-3-3.5v-.1c.5.3 1.1.5 1.8.5-1-.7-1.6-1.9-1.6-3.2 0-.7.2-1.4.6-2 2 2.4 4.9 4 8.2 4.1-.1-.3-.1-.6-.1-.9 0-2.1 1.7-3.8 3.8-3.8 1.1 0 2.1.5 2.8 1.2.9-.2 1.7-.5 2.4-.9-.3.9-.9 1.6-1.7 2 .8-.1 1.5-.3 2.2-.6-.5.8-1.1 1.4-1.8 2z'/></svg>");
    -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M19.9 7.7v.6c0 6.5-4.9 11.1-11.1 11.1-2.2 0-4.3-.6-6-1.8.3 0 .6.1.9.1 1.8 0 3.4-.6 4.7-1.6-1.7 0-3.1-1.1-3.6-2.6.2 0 .4.1.7.1.3 0 .7 0 1-.1-1.7-.3-3-1.8-3-3.5v-.1c.5.3 1.1.5 1.8.5-1-.7-1.6-1.9-1.6-3.2 0-.7.2-1.4.6-2 2 2.4 4.9 4 8.2 4.1-.1-.3-.1-.6-.1-.9 0-2.1 1.7-3.8 3.8-3.8 1.1 0 2.1.5 2.8 1.2.9-.2 1.7-.5 2.4-.9-.3.9-.9 1.6-1.7 2 .8-.1 1.5-.3 2.2-.6-.5.8-1.1 1.4-1.8 2z'/></svg>");
  }

  .icon-email {
    background-color: #6b7280;
    mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M4 6h16v12H4z'/><path d='M4 7l8 6 8-6'/></svg>");
    -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M4 6h16v12H4z'/><path d='M4 7l8 6 8-6'/></svg>");
  }

.impact-section {
  position: relative;
  background: url("https://christforallministry.com/wp-content/uploads/2016/12/home-4.jpg") center/cover no-repeat;
  color: #fff;
}

.impact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(24, 24, 24, 0.92), rgba(55, 55, 55, 0.75));
}

.impact-section .container {
  position: relative;
  z-index: 1;
}

.impact-section h2,
.impact-section p,
.impact-section .kicker {
  color: #fff;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.impact-card {
  background: rgba(35, 35, 35, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  padding: 1.6rem;
  display: grid;
  gap: 0.6rem;
  backdrop-filter: blur(6px);
}

.impact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: grid;
  place-items: center;
}

.impact-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--gold);
}

.impact-number {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.impact-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.team-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(35, 35, 35, 0.12);
  box-shadow: 0 18px 40px rgba(35, 35, 35, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(35, 35, 35, 0.14);
}

.team-photo {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 0;
}

.team-info {
  padding: 1.2rem 1.4rem 1.5rem;
  display: grid;
  gap: 0.4rem;
}

.team-role {
  color: var(--emerald);
  font-weight: 600;
  font-size: 0.9rem;
}

.resource-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.resource-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(35, 35, 35, 0.1);
  padding: 1.8rem;
  display: grid;
  gap: 1rem;
  box-shadow: 0 16px 36px rgba(35, 35, 35, 0.08);
}

.resource-player {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: stretch;
  background: rgba(245, 239, 230, 0.8);
  border-radius: 16px;
  padding: 1rem;
  border: 1px dashed rgba(35, 35, 35, 0.2);
}

.audio-player {
  width: 100%;
}

.pdf-frame {
  width: 100%;
  height: 520px;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(35, 35, 35, 0.12);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

  .product-card {
    background: #fff;
    border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(35, 35, 35, 0.1);
  box-shadow: 0 18px 40px rgba(35, 35, 35, 0.08);
  display: grid;
  grid-template-rows: auto 1fr;
}

  .product-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 0;
  }

  .product-image-link {
    display: block;
    line-height: 0;
  }

  .product-body {
    padding: 1.4rem;
    display: grid;
    gap: 0.6rem;
  }

  .product-card h3 a {
    display: inline-block;
  }

  .product-card h3 a:hover,
  .product-card h3 a:focus-visible {
    color: var(--forest);
    text-decoration: underline;
    text-underline-offset: 4px;
  }

.product-price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--emerald);
}

  .product-actions {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
  }

  .product-detail {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 2rem;
    align-items: start;
  }

  .product-gallery {
    display: grid;
    gap: 1rem;
  }

  .product-main-image {
    width: 100%;
    border-radius: 22px;
    border: 1px solid rgba(35, 35, 35, 0.1);
    box-shadow: 0 18px 40px rgba(35, 35, 35, 0.12);
  }

  .product-thumbs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.6rem;
  }

  .product-thumbs img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid rgba(35, 35, 35, 0.1);
  }

  .product-info {
    background: #fff;
    border-radius: 22px;
    border: 1px solid rgba(35, 35, 35, 0.1);
    box-shadow: 0 18px 40px rgba(35, 35, 35, 0.08);
    padding: 2rem;
    display: grid;
    gap: 1rem;
  }

  .product-cta {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
  }

  .product-meta {
    display: grid;
    gap: 0.4rem;
    color: var(--muted);
    font-size: 0.95rem;
  }

  .product-meta strong {
    color: var(--deep);
  }

  .product-notice {
    border-left: 4px solid var(--gold);
    background: rgba(216, 180, 74, 0.18);
    border-radius: 16px;
    padding: 1rem 1.2rem;
    color: var(--deep);
  }

  .checklist {
    margin: 0;
    padding-left: 1.2rem;
    display: grid;
    gap: 0.4rem;
    color: var(--muted);
  }

  .checkout-layout {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 2rem;
    align-items: start;
  }

  .checkout-card {
    background: #fff;
    border-radius: 22px;
    border: 1px solid rgba(35, 35, 35, 0.1);
    box-shadow: 0 18px 40px rgba(35, 35, 35, 0.08);
    padding: 2rem;
    display: grid;
    gap: 1.2rem;
  }

  .checkout-form {
    display: grid;
    gap: 1.2rem;
  }

  .form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .form-field {
    display: grid;
    gap: 0.4rem;
  }

  .form-field.full {
    grid-column: 1 / -1;
  }

  .form-field label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--deep);
  }

  .field-hint {
    font-size: 0.8rem;
    color: var(--muted);
  }

  .field-hint.error {
    color: #b42318;
  }

  .divider {
    height: 1px;
    background: rgba(35, 35, 35, 0.1);
    border-radius: 999px;
    margin: 0.6rem 0;
  }

  .secure-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--muted);
  }

  .secure-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--emerald);
  }

  .form-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
  }

  .summary-card {
    gap: 1.2rem;
  }

  .summary-item {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: 0.8rem;
    align-items: center;
  }

  .summary-image {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    object-fit: cover;
  }

  .summary-name {
    font-weight: 600;
    color: var(--deep);
  }

  .summary-price {
    font-weight: 700;
    color: var(--emerald);
  }

  .summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: var(--muted);
  }

  .summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--deep);
  }

  .quantity-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }

  .quantity-input {
    max-width: 110px;
  }

  .secure-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .secure-badge {
    background: rgba(95, 143, 157, 0.12);
    color: var(--forest);
    border-radius: 999px;
    padding: 0.3rem 0.7rem;
    font-size: 0.75rem;
    font-weight: 600;
  }

  .secure-note {
    font-size: 0.85rem;
    color: var(--muted);
    margin: 0;
  }

.breadcrumb {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.6rem;
}

.footer {
  background: var(--deep);
  color: #eaf6f1;
  padding: 3.5rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer h3,
.footer h4 {
  color: #ffffff;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(216, 180, 74, 0.2), transparent 45%),
    radial-gradient(circle at bottom left, rgba(95, 143, 157, 0.2), transparent 45%);
  opacity: 0.6;
}

.footer a,
.footer p,
.footer small {
  color: #e9f4ef;
}

.footer small {
  opacity: 0.85;
}

.footer a:hover {
  color: var(--gold);
}

.footer-top {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.3fr 1fr;
  gap: 2rem;
}

.footer-brand img {
  width: 70px;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: #fff;
  padding: 6px;
}

.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.footer-post {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 0.8rem;
}

.footer-post a {
  color: #e9f4ef;
}

.footer-post img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 12px;
}

.footer-list {
  display: grid;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #e9f4ef;
}

.footer-newsletter {
  display: grid;
  gap: 0.6rem;
  margin-top: 1rem;
}

.footer-newsletter input {
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  margin-top: 2.2rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  text-align: center;
}

.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .js .reveal {
    opacity: 0;
    transform: translateY(18px);
  }

  .js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

@media (max-width: 1100px) {
  .nav-links {
    gap: 0.8rem;
    font-size: 0.9rem;
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

  @media (max-width: 980px) {
    .hero-grid,
    .media-card,
    .resource-grid,
    .blog-layout,
    .product-detail,
    .checkout-layout {
      grid-template-columns: 1fr;
    }

  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

    .grid-3,
    .product-grid,
    .impact-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .banner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav-links {
    position: fixed;
    inset: 72px 16px auto 16px;
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    gap: 1rem;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-actions .btn-gold {
    display: none;
  }

  .grid-2,
  .grid-3,
  .product-grid,
  .impact-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

    .hero-actions {
      flex-direction: column;
      align-items: stretch;
    }

    .form-grid {
      grid-template-columns: 1fr;
    }

    .summary-item {
      grid-template-columns: 1fr;
      text-align: left;
    }

    .summary-price {
      justify-self: flex-start;
    }

    .quantity-row {
      flex-direction: column;
      align-items: flex-start;
    }
  }

@media (prefers-reduced-motion: reduce) {
    .js .reveal {
      opacity: 1;
      transform: none;
    }
  }
