/* ============================================
   AMAYA DEHYDRATED FOODS — STYLE.CSS
   Complete design system
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  /* Brand colours */
  --green: #2E9B4F;
  --green-dark: #237A3F;
  --green-soft: rgba(46, 155, 79, 0.1);
  --green-border: rgba(46, 155, 79, 0.3);

  --amber: #FFB627;
  --amber-dark: #E29A0E;
  --amber-soft: rgba(255, 182, 39, 0.2);

  --tomato: #E63946;

  --cream: #FFF8EC;
  --white: #FFFFFF;
  --bark: #2B2118;
  --bark-60: rgba(43, 33, 24, 0.6);
  --bark-70: rgba(43, 33, 24, 0.7);
  --bark-80: rgba(43, 33, 24, 0.8);
  --bark-10: rgba(43, 33, 24, 0.1);
  --bark-15: rgba(43, 33, 24, 0.15);
  --bark-05: rgba(43, 33, 24, 0.05);
  --cream-60: rgba(255, 248, 236, 0.6);
  --cream-20: rgba(255, 248, 236, 0.2);
  --cream-10: rgba(255, 248, 236, 0.1);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Layout */
  --container: 1280px;
  --container-narrow: 900px;
  --container-tight: 640px;

  /* Radii */
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-pill: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(43, 33, 24, 0.06);
  --shadow-md: 0 4px 12px rgba(43, 33, 24, 0.08);
  --shadow-lg: 0 10px 25px rgba(43, 33, 24, 0.12);

  /* Transitions */
  --ease: 0.2s ease;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--bark);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

ul,
ol {
  list-style: none;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6,
.font-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--bark);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p { color: var(--bark-70); }

.text-leaf     { color: var(--green); }
.text-leaf-dark{ color: var(--green-dark); }
.text-amber    { color: var(--amber-dark); }
.text-bark     { color: var(--bark); }
.text-cream    { color: var(--cream); }
.text-center   { text-align: center; }
.text-sm       { font-size: 0.875rem; }
.text-xs       { font-size: 0.75rem; }
.text-lg       { font-size: 1.125rem; }
.font-medium   { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold     { font-weight: 700; }
.uppercase     { text-transform: uppercase; letter-spacing: 0.05em; }

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container-tight {
  max-width: var(--container-tight);
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 1024px) {
  .container,
  .container-narrow,
  .container-tight {
    padding: 0 2rem;
  }
}

/* Section spacing */
.section     { padding: 4rem 0; }
.section-lg  { padding: 5rem 0; }
.section-xl  { padding: 6rem 0; }

@media (min-width: 1024px) {
  .section    { padding: 5rem 0; }
  .section-lg { padding: 6rem 0; }
  .section-xl { padding: 7rem 0; }
}

/* Backgrounds */
.bg-cream { background-color: var(--cream); }
.bg-white { background-color: var(--white); }
.bg-bark  { background-color: var(--bark); }
.bg-green { background-color: var(--green); }
.bg-green-soft { background-color: var(--green-soft); }
.bg-amber-soft { background-color: var(--amber-soft); }

/* Grid */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Flex */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-sm { gap: 0.75rem; }
.gap-md { gap: 1.5rem; }
.gap-lg { gap: 2.5rem; }
.flex-wrap { flex-wrap: wrap; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: all var(--ease);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background-color: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.btn-primary:hover {
  background-color: var(--green-dark);
  border-color: var(--green-dark);
}

.btn-amber {
  background-color: var(--amber);
  color: var(--bark);
  border-color: var(--amber);
}

.btn-amber:hover {
  background-color: var(--amber-dark);
  border-color: var(--amber-dark);
}

.btn-outline {
  background-color: transparent;
  color: var(--bark);
  border-color: var(--amber);
}

.btn-outline:hover {
  background-color: var(--amber);
}

.btn-outline-green {
  background-color: transparent;
  color: var(--green);
  border-color: var(--green-border);
}

.btn-outline-green:hover {
  background-color: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.btn-white {
  background-color: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
}

.btn-white:hover {
  background-color: var(--cream);
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.btn-block {
  width: 100%;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 248, 236, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--bark-10);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}

.brand-logo {
  height: 75px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.brand-logo-footer {
  height: 200px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bark);
  line-height: 1;
}

.main-nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.main-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--bark-80);
  transition: color var(--ease);
  position: relative;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--green);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.header-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--green-border);
  color: var(--green);
  transition: all var(--ease);
}

.header-whatsapp:hover {
  background-color: var(--green);
  color: var(--white);
}

.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--bark);
}

@media (min-width: 1024px) {
  .main-nav,
  .header-actions {
    display: flex;
  }
  .mobile-toggle {
    display: none;
  }
}

/* Mobile menu */
.mobile-menu {
  display: none;
  border-top: 1px solid var(--bark-10);
  background-color: var(--cream);
  padding: 1rem 1.25rem 1.5rem;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-menu a {
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--bark-80);
}

.mobile-menu a.active {
  color: var(--green);
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background-color: var(--cream);
  border-bottom: 1px solid var(--bark-10);
  padding: 4rem 0;
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- Home hero ---------- */
.hero {
  background-color: var(--cream);
  padding: 3.5rem 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero h1 {
  margin-bottom: 1.25rem;
}

.hero p {
  font-size: 1.125rem;
  max-width: 540px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background-color: var(--bark-05);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 900px) {
  .hero { padding: 5rem 0; }
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* ---------- Cards ---------- */
.card {
  background-color: var(--white);
  border: 1px solid var(--bark-10);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all var(--ease);
}

.card:hover {
  border-color: var(--green-border);
  box-shadow: var(--shadow-md);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: var(--green-soft);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.card h3 {
  margin-bottom: 0.625rem;
}

.card p {
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green);
  transition: gap var(--ease);
}

.card-link:hover {
  gap: 0.75rem;
}

/* Card with pill icon (why section) */
.pill-card {
  text-align: center;
}

.pill-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-pill);
  background-color: var(--amber-soft);
  color: var(--amber-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.pill-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.pill-card p {
  font-size: 0.9375rem;
}

/* ---------- Process flow (dark section) ---------- */
.process-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 96px;
}

.process-step .step-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-pill);
  background-color: var(--cream-10);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step span {
  font-size: 0.75rem;
  text-align: center;
  color: var(--cream-60);
}

.process-arrow {
  color: rgba(255, 248, 236, 0.25);
  flex-shrink: 0;
  display: none;
}

@media (min-width: 640px) {
  .process-arrow { display: block; }
}

/* ---------- Spec table (product pages) ---------- */
.spec-table {
  border: 1px solid var(--bark-10);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
}

.spec-row:nth-child(odd) {
  background-color: var(--cream);
}

.spec-row:nth-child(even) {
  background-color: var(--white);
}

.spec-row .label {
  font-weight: 500;
  color: var(--bark-60);
}

.spec-row .value {
  color: var(--bark);
  text-align: right;
}

/* ---------- Trust strip ---------- */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.trust-badge {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  background-color: var(--white);
  border: 1px solid var(--bark-10);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--bark-70);
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-md);
  background-color: var(--green-soft);
}

.stat {
  text-align: center;
}

.stat .value {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.25rem;
}

.stat .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--bark-60);
}

@media (min-width: 640px) {
  .stat-strip { grid-template-columns: repeat(4, 1fr); }
  .stat .value { font-size: 2rem; }
}

/* ---------- Product card ---------- */
.product-card {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border: 1px solid var(--bark-10);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--ease);
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
}

.product-card-image {
  aspect-ratio: 4 / 3;
  background-color: var(--cream);
  overflow: hidden;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.05);
}

.product-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--green);
  margin-bottom: 0.375rem;
}

.product-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.375rem;
}

.product-card .product-short {
  font-size: 0.875rem;
  color: var(--bark-60);
  margin-bottom: 1rem;
}

.product-card-actions {
  margin-top: auto;
  display: flex;
  gap: 0.5rem;
}

.product-card-actions .btn {
  flex: 1;
  padding: 0.625rem 0.75rem;
  font-size: 0.8125rem;
}

/* ---------- Product filter bar ---------- */
.filter-bar {
  position: sticky;
  top: 65px;
  z-index: 50;
  background-color: rgba(255, 248, 236, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--bark-10);
}

.filter-bar-inner {
  display: flex;
  gap: 0.5rem;
  padding: 1rem 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-bar-inner::-webkit-scrollbar { display: none; }

.filter-pill {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--bark-15);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--bark-70);
  white-space: nowrap;
  transition: all var(--ease);
}

.filter-pill:hover {
  border-color: var(--green);
  color: var(--green);
}

.filter-pill.active {
  background-color: var(--green);
  color: var(--white);
  border-color: var(--green);
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--bark-60);
  padding: 1.5rem 0;
}

.breadcrumbs a:hover { color: var(--green); }

.breadcrumbs .current { color: var(--bark); }

.breadcrumbs svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ---------- Forms ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .form-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid .full { grid-column: 1 / -1; }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-field label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--bark-70);
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--bark-15);
  border-radius: var(--radius-sm);
  background-color: var(--white);
  font-size: 0.9375rem;
  transition: border-color var(--ease);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--font-body);
}

/* ---------- Footer ---------- */
.site-footer {
  background-color: var(--bark);
  color: var(--cream-60);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; }
}

.footer-brand .brand-name {
  color: var(--cream);
}

.footer-brand p {
  color: #FFFFFF;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--cream-20);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--ease);
}

.footer-social a:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.site-footer h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 1rem;
}

.site-footer ul li {
  margin-bottom: 0.625rem;
  font-size: 0.875rem;
}

.site-footer ul li a:hover {
  color: var(--amber);
}

.footer-newsletter {
  border: 1px solid var(--cream-20);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-newsletter {
    flex-direction: row;
    align-items: center;
  }
}

.footer-newsletter-form {
  display: flex;
  gap: 0.5rem;
  flex: 1;
}

.footer-newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 0.625rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--cream-20);
  background-color: var(--cream-10);
  color: var(--cream);
  font-size: 0.875rem;
}

.footer-newsletter-form input::placeholder {
  color: rgba(255, 248, 236, 0.4);
}

.footer-newsletter-form input:focus {
  outline: none;
  border-color: var(--amber);
}

.footer-bottom {
  border-top: 1px solid var(--cream-10);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom-links {
  display: flex;
  gap: 1rem;
}

.footer-bottom-links a:hover { color: var(--amber); }

/* ---------- Floating WhatsApp button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-pill);
  background-color: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(43, 33, 24, 0.25);
  z-index: 90;
  transition: all var(--ease);
}

.whatsapp-float:hover {
  background-color: var(--green-dark);
  transform: scale(1.05);
}

/* ---------- Utility ---------- */
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 1.5rem; }
.mt-lg { margin-top: 2.5rem; }
.mb-sm { margin-bottom: 1rem; }
.mb-md { margin-bottom: 1.5rem; }
.mb-lg { margin-bottom: 2.5rem; }

.hidden { display: none; }

/* ---------- Responsive grid for two-column content ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
}

/* ---------- Info list (used on About/Quality) ---------- */
.info-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .info-list { grid-template-columns: repeat(2, 1fr); }
}

.info-list-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--bark-10);
  border-radius: var(--radius-md);
}

.info-list-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  background-color: var(--amber-soft);
  color: var(--amber-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-list-item span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--bark);
}

/* ---------- Download cards ---------- */
.download-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background-color: var(--white);
  border: 1px solid var(--bark-10);
  border-radius: var(--radius-md);
  transition: all var(--ease);
}

.download-card:hover {
  border-color: var(--green-border);
  box-shadow: var(--shadow-md);
}

.download-card svg {
  color: var(--green);
  margin-bottom: 1rem;
}

.download-card h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.download-card .size {
  font-size: 0.75rem;
  color: rgba(43, 33, 24, 0.45);
  margin-bottom: 1.25rem;
}

.download-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* ---------- CTA banner (green section) ---------- */
.cta-banner {
  background-color: var(--green);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 2rem;
}

.cta-banner .btn-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ---------- Contact cards ---------- */
.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .contact-cards { grid-template-columns: repeat(4, 1fr); }
}

.contact-card {
  padding: 1.5rem;
  border: 1px solid var(--bark-10);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--ease);
}

.contact-card:hover {
  border-color: var(--green-border);
  box-shadow: var(--shadow-md);
}

.contact-card h3 {
  font-size: 1rem;
  margin-bottom: 0.375rem;
}

.contact-card .email {
  font-size: 0.875rem;
  color: var(--green);
}

/* ---------- Map ---------- */
.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--bark-10);
}

.map-wrap iframe {
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
}

/* ---------- Thank you page ---------- */
.thank-you {
  text-align: center;
  padding: 6rem 1.25rem;
}

.thank-you h1 {
  margin-bottom: 1rem;
}

.thank-you p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}