/* ===== AAL Coffee Exporters — shared styles =====
   Design tokens: one neutral base (cream), one deep anchor
   (espresso/charcoal), one muted gold accent used sparingly. */

:root {
  --cream: #f8f5ef;
  --cream-rgb: 248, 245, 239;
  --cream-soft: #f1ece2;

  --anchor: #221f1a;
  --anchor-rgb: 34, 31, 26;
  --anchor-soft: #322d25;

  --ink: #2c2721;
  --ink-muted: #6b6259;

  --accent: #ab8752;
  --accent-rgb: 171, 135, 82;
  --accent-strong: #8f6d3f;
  --on-accent: #fdf9f2;

  --white: #ffffff;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-btn: 8px;
  --shadow: 0 10px 28px rgba(20, 16, 10, 0.07);
  --shadow-md: 0 18px 42px rgba(20, 16, 10, 0.11);
  --border-soft: 1px solid rgba(34, 31, 26, 0.09);
  --border-dark: 1px solid rgba(248, 245, 239, 0.12);
  --transition: 0.25s ease;

  --font-head: "Iowan Old Style", "Palatino Linotype", Georgia, "Times New Roman", serif;
  --font-body: -apple-system, "Segoe UI", "Helvetica Neue", Inter, Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 110px 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.74rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 18px;
}

.section-tag .icon-sm {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.section-tag::after {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--accent);
  opacity: 0.6;
}

.icon-svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-sm {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-head {
  max-width: 660px;
  margin-bottom: 64px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--anchor);
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 2.75rem);
}

h3 {
  font-size: 1.3rem;
  font-weight: 600;
}

p {
  color: var(--ink-muted);
  line-height: 1.75;
}

.lead {
  font-size: 1.15rem;
  color: var(--ink-muted);
  line-height: 1.75;
}

/* ===== Buttons =====
   Restrained outline style everywhere: transparent by default,
   soft fill only on hover. Consistent height / radius across the site. */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 52px;
  padding: 0 30px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.2px;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
  background: transparent;
}

.btn .icon-sm {
  transition: transform var(--transition);
}

.btn:hover .icon-sm {
  transform: translateX(3px);
}

.btn-primary {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent);
  color: var(--on-accent);
}

.btn-outline {
  color: var(--cream);
  border-color: rgba(var(--cream-rgb), 0.4);
}

.btn-outline:hover {
  background: rgba(var(--cream-rgb), 0.1);
  border-color: rgba(var(--cream-rgb), 0.7);
}

.btn-dark {
  color: var(--anchor);
  border-color: rgba(var(--anchor-rgb), 0.35);
}

.btn-dark:hover {
  background: var(--anchor);
  color: var(--cream);
  border-color: var(--anchor);
}

/* ===== Header / Nav ===== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(var(--anchor-rgb), 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background var(--transition);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
}

.brand img {
  height: 36px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-family: var(--font-head);
  font-size: 1.04rem;
  letter-spacing: 1px;
  color: var(--cream);
  font-weight: 600;
}

.brand-text span {
  font-size: 0.62rem;
  letter-spacing: 2.5px;
  color: var(--accent);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  color: rgba(var(--cream-rgb), 0.82);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 9px 15px;
  border-radius: var(--radius-btn);
  transition: background var(--transition), color var(--transition);
}

.nav-links a:hover {
  background: rgba(var(--cream-rgb), 0.08);
  color: var(--cream);
}

.nav-links a.active {
  background: rgba(var(--accent-rgb), 0.16);
  color: var(--accent);
  font-weight: 600;
}

.nav-cta {
  margin-left: 8px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ===== Page hero (inner pages) ===== */

.page-hero {
  padding: 156px 0 76px;
  background-image:
    linear-gradient(140deg, rgba(var(--anchor-rgb), 0.9), rgba(var(--anchor-rgb), 0.72)),
    var(--hero-bg, none);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--cream);
  text-align: center;
}

.page-hero h1 {
  color: var(--cream);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(var(--cream-rgb), 0.78);
  max-width: 560px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

/* ===== Hero (home) ===== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--cream);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/hero-coffee.jpg") center 35%/cover no-repeat;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(var(--anchor-rgb), 0.9) 40%, rgba(var(--anchor-rgb), 0.6));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 150px 24px 100px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(var(--cream-rgb), 0.22);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 26px;
  color: var(--accent);
}

.hero h1 {
  color: var(--cream);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  margin-bottom: 22px;
  font-weight: 600;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero p {
  color: rgba(var(--cream-rgb), 0.8);
  font-size: 1.15rem;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(var(--cream-rgb), 0.55);
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-cue::after {
  content: "";
  width: 1px;
  height: 34px;
  background: linear-gradient(rgba(var(--cream-rgb), 0.5), transparent);
  animation: scrollpulse 1.8s infinite;
}

@keyframes scrollpulse {
  0% { opacity: 0.2; }
  50% { opacity: 1; }
  100% { opacity: 0.2; }
}

/* ===== Stats strip ===== */

.stats {
  background: var(--anchor);
  color: var(--cream);
}

.stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 64px 24px;
}

.stat .icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: rgba(var(--accent-rgb), 0.14);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.stat h3 {
  color: var(--cream);
  font-size: 2.1rem;
  margin-bottom: 8px;
}

.stat p {
  color: rgba(var(--cream-rgb), 0.62);
  font-size: 0.88rem;
  letter-spacing: 0.4px;
}

/* ===== Cards / grid ===== */

.grid {
  display: grid;
  gap: 32px;
}

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

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

.card {
  background: var(--white);
  border-radius: var(--radius);
  border: var(--border-soft);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ===== About teaser (home) ===== */

.about-teaser {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.about-media .badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--cream);
  color: var(--anchor);
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 600;
  box-shadow: var(--shadow);
  border-left: 2px solid var(--accent);
}

.about-media .badge span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.about-copy .section-tag {
  margin-bottom: 14px;
}

.about-copy p {
  margin-bottom: 20px;
}

.motto-line {
  margin-top: 26px;
  padding: 20px 26px;
  border-left: 2px solid var(--accent);
  background: var(--cream-soft);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-head);
  font-style: italic;
  color: var(--anchor);
  font-size: 1.05rem;
}

/* ===== Mission / Vision ===== */

.mv-section {
  background: var(--anchor);
  color: var(--cream);
}

.mv-section .section-tag {
  color: var(--accent);
}

.mv-section h2 {
  color: var(--cream);
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 24px;
}

.mv-card,
.why-card {
  background: rgba(var(--cream-rgb), 0.04);
  border: var(--border-dark);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: none;
}

.mv-card .icon,
.why-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(var(--accent-rgb), 0.14);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  flex-shrink: 0;
}

.mv-card .icon .icon-svg,
.why-card .icon .icon-svg {
  width: 24px;
  height: 24px;
}

.mv-card h3 {
  color: var(--cream);
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.mv-card p {
  color: rgba(var(--cream-rgb), 0.68);
}

/* ===== Why-us ===== */

.why-grid {
  grid-template-columns: repeat(3, 1fr);
}

.why-card {
  background: var(--white);
  border: var(--border-soft);
  box-shadow: var(--shadow);
  padding: 40px;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-card .why-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.why-card .why-top .icon {
  margin-bottom: 0;
}

.why-card .num {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  color: var(--ink-muted);
  font-weight: 600;
}

.why-card h3 {
  margin-bottom: 12px;
  color: var(--anchor);
}

.why-card p {
  color: var(--ink-muted);
}

.why-list {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.why-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  border: var(--border-soft);
  font-weight: 600;
  color: var(--anchor);
  font-size: 0.92rem;
}

.why-list li .check {
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.14);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-list li .check .icon-sm {
  width: 12px;
  height: 12px;
  stroke-width: 3;
}

/* ===== Product / grade cards ===== */

.grade-card {
  display: flex;
  flex-direction: column;
}

.grade-media {
  height: 190px;
  position: relative;
  overflow: hidden;
}

.grade-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .grade-media img {
  transform: scale(1.05);
}

.grade-price {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(var(--anchor-rgb), 0.88);
  color: var(--cream);
  font-weight: 600;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  backdrop-filter: blur(6px);
}

.grade-price small {
  display: block;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
}

.grade-body {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.grade-body h3 {
  margin-bottom: 6px;
}

.grade-tagline {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.spec-list {
  margin-top: auto;
  border-top: var(--border-soft);
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.spec-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.86rem;
  color: var(--ink-muted);
}

.spec-list li b {
  color: var(--anchor);
  font-weight: 600;
}

.grade-note {
  margin-top: 56px;
  background: var(--cream-soft);
  border-radius: var(--radius);
  padding: 34px 40px;
  display: flex;
  gap: 26px;
  align-items: center;
  flex-wrap: wrap;
}

.grade-note h4 {
  margin-bottom: 6px;
}

.spec-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
  margin-top: 16px;
}

.spec-strip div {
  text-align: center;
}

.spec-strip span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 5px;
}

.spec-strip p {
  font-size: 0.88rem;
  color: var(--anchor);
  font-weight: 600;
}

/* ===== CTA band ===== */

.cta-band {
  background: linear-gradient(135deg, var(--anchor), var(--anchor-soft));
  color: var(--cream);
  text-align: center;
}

.cta-band h2 {
  color: var(--cream);
  margin-bottom: 20px;
}

.cta-band p {
  color: rgba(var(--cream-rgb), 0.72);
  max-width: 560px;
  margin: 0 auto 38px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== Contact page ===== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 28px;
}

.contact-card .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(var(--accent-rgb), 0.14);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--anchor);
}

.contact-card a,
.contact-card p {
  font-size: 0.94rem;
  color: var(--ink-muted);
}

.contact-card a {
  display: block;
  color: var(--anchor);
  font-weight: 600;
  transition: color var(--transition);
}

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

.contact-form {
  background: var(--white);
  border: var(--border-soft);
  padding: 44px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  margin-bottom: 22px;
}

.field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--anchor);
  margin-bottom: 9px;
  letter-spacing: 0.3px;
}

.field input,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(34, 31, 26, 0.12);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--cream);
  transition: border-color var(--transition);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.field textarea {
  resize: vertical;
  min-height: 130px;
}

.form-note {
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin-top: 12px;
}

.map-wrap {
  margin-top: 32px;
  border-radius: var(--radius);
  overflow: hidden;
  border: var(--border-soft);
  height: 320px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ===== Footer ===== */

.site-footer {
  background: var(--anchor);
  color: rgba(var(--cream-rgb), 0.65);
  padding-top: 96px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-brand img {
  height: 38px;
}

.footer-brand strong {
  font-family: var(--font-head);
  color: var(--cream);
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-col > p {
  color: rgba(var(--cream-rgb), 0.6);
  font-size: 0.92rem;
  max-width: 320px;
}

.footer-col h4 {
  color: var(--cream);
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 22px;
  font-weight: 600;
}

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

.footer-col a {
  transition: color var(--transition);
  font-size: 0.92rem;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
}

.footer-contact-item .icon-sm {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  padding: 26px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(var(--cream-rgb), 0.4);
  border-top: var(--border-dark);
}

/* ===== Responsive ===== */

@media (max-width: 980px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .why-list,
  .mv-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .spec-strip {
    grid-template-columns: repeat(3, 1fr);
  }

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

  section {
    padding: 88px 0;
  }
}

@media (max-width: 760px) {
  .nav-links {
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    background: var(--anchor);
    flex-direction: column;
    align-items: stretch;
    padding: 14px 24px 24px;
    gap: 4px;
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 14px 12px;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 6px;
  }

  .nav-toggle {
    display: flex;
  }

  section {
    padding: 64px 0;
  }

  .grid-3,
  .why-list,
  .mv-grid,
  .grid-2,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

  .stats .container {
    grid-template-columns: 1fr 1fr;
  }

  .hero-content {
    padding: 130px 20px 80px;
  }
}
