/* =============================================
   de・ban — Corporate Site Styles
   Logo colors: Green #4a8c2a, Orange #e0852a, Dark Gray #3a3a3a
   ============================================= */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --c-bg:       #ffffff;
  --c-surface:  #f6f8f4;
  --c-border:   #dde3d8;
  --c-text:     #555555;
  --c-muted:    #888888;
  --c-heading:  #3a3a3a;
  --c-accent:   #4a8c2a;
  --c-accent2:  #e0852a;
  --c-green-l:  #6aad3d;
  --c-white:    #ffffff;
  --c-black:    #000000;
  --font-ja:    'Noto Sans JP', sans-serif;
  --font-en:    'Inter', sans-serif;
  --ease:       cubic-bezier(.23,1,.32,1);
  --header-h:   72px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-ja);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.8;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
strong { font-weight: 700; }

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

::selection {
  background: var(--c-accent);
  color: var(--c-white);
}

/* ---------- HEADER ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  transition: background .4s var(--ease), box-shadow .4s var(--ease);
}

.header.scrolled {
  background: rgba(255,255,255,.95);
  box-shadow: 0 1px 0 var(--c-border);
}
.header.scrolled::before {
  content: '';
  position: absolute;
  inset: 0;
  backdrop-filter: blur(16px);
  z-index: -1;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.header__logo {
  display: flex;
  align-items: center;
}

.header__logo-img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter .4s var(--ease);
}

.header.scrolled .header__logo-img {
  filter: none;
}

.header__nav-list {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.header__nav-list a {
  font-family: var(--font-en);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  transition: color .3s;
  position: relative;
}

.header.scrolled .header__nav-list a {
  color: var(--c-muted);
}

.header__nav-list a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-accent);
  transition: width .3s var(--ease);
}

.header__nav-list a:hover { color: var(--c-white); }
.header.scrolled .header__nav-list a:hover { color: var(--c-heading); }
.header__nav-list a:hover::after { width: 100%; }

/* ---------- Dropdown ---------- */
.has-dropdown {
  position: relative;
}

.header__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 180px;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  padding: .5rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s, visibility .25s, transform .25s var(--ease);
  transform: translateX(-50%) translateY(8px);
  z-index: 100;
  margin-top: .5rem;
}

.has-dropdown:hover .header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.header__dropdown li {
  padding: 0;
}

.header__dropdown a {
  display: block;
  padding: .6rem 1.2rem !important;
  font-size: .75rem !important;
  color: var(--c-muted) !important;
  white-space: nowrap;
  transition: background .2s, color .2s !important;
}

.header__dropdown a::after {
  display: none !important;
}

.header__dropdown a:hover {
  background: var(--c-surface);
  color: var(--c-heading) !important;
}

.btn-nav {
  padding: .5rem 1.4rem !important;
  border: 1px solid rgba(255,255,255,.5) !important;
  border-radius: 100px;
  color: var(--c-white) !important;
  transition: background .3s, color .3s, border-color .3s !important;
}
.header.scrolled .btn-nav {
  border-color: var(--c-accent) !important;
  color: var(--c-accent) !important;
}
.btn-nav:hover {
  background: var(--c-accent) !important;
  color: var(--c-white) !important;
  border-color: var(--c-accent) !important;
}
.btn-nav::after { display: none !important; }

/* Hamburger */
.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-white);
  transition: transform .3s, opacity .3s, background .3s;
}
.header.scrolled .header__hamburger span {
  background: var(--c-heading);
}
.header__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__hamburger.active span:nth-child(2) { opacity: 0; }
.header__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
}

.hero__video--sp {
  display: none;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero__content--bottom {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 800px;
}

.hero__subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,.85);
  line-height: 2;
  margin-bottom: 2rem;
  animation: fadeUp .8s var(--ease) .5s both;
  text-shadow: 0 1px 8px rgba(0,0,0,.3);
}

.hero__cta {
  display: inline-block;
  font-family: var(--font-ja);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .1em;
  padding: 1rem 3rem;
  background: linear-gradient(135deg, var(--c-accent), var(--c-green-l));
  color: var(--c-white);
  border-radius: 100px;
  transition: transform .3s var(--ease), box-shadow .3s;
  animation: fadeUp .8s var(--ease) .7s both;
}
.hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(74,140,42,.35);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  z-index: 2;
}
.hero__scroll span {
  font-family: var(--font-en);
  font-size: .65rem;
  letter-spacing: .2em;
  color: rgba(255,255,255,.6);
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.3);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  width: 100%;
  height: 100%;
  background: var(--c-accent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

/* ---------- NOTICE ---------- */
.notice {
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-border);
  padding: 1rem 0;
}

.notice__inner {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.notice__icon {
  color: var(--c-accent);
  font-size: .6rem;
  animation: pulse 2s infinite;
}

.notice__text {
  font-size: .85rem;
  color: var(--c-muted);
}
.notice__text strong {
  color: var(--c-heading);
}

/* ---------- SECTION COMMON ---------- */
.section {
  padding: 7rem 0;
}

.section__header {
  margin-bottom: 4rem;
}

.section__label {
  display: block;
  font-family: var(--font-en);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .2em;
  color: var(--c-accent);
  margin-bottom: .75rem;
}

.section__title {
  font-family: var(--font-en);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--c-heading);
  letter-spacing: -.01em;
}

/* ---------- NEWS ---------- */
.news {
  background: var(--c-surface);
}

.news__list {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.news__item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--c-border);
  transition: padding-left .3s var(--ease);
}
.news__item:hover {
  padding-left: .5rem;
}

.news__date {
  font-family: var(--font-en);
  font-size: .8rem;
  color: var(--c-muted);
  white-space: nowrap;
  min-width: 100px;
}

.news__tag {
  font-size: .7rem;
  padding: .2rem .7rem;
  border: 1px solid var(--c-accent);
  border-radius: 100px;
  color: var(--c-accent);
  white-space: nowrap;
}

.news__text {
  font-size: .9rem;
  color: var(--c-text);
}

.news__content {
  flex: 1;
  min-width: 0;
}

.news__body {
  font-size: .85rem;
  color: var(--c-muted);
  margin: .35rem 0 0;
  line-height: 1.7;
  white-space: pre-line;
}

.news__loading,
.news__empty {
  list-style: none;
  padding: 1.4rem 0;
  color: var(--c-muted);
  font-size: .9rem;
}

/* ---------- ABOUT ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about__lead {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--c-heading);
  line-height: 2;
  margin-bottom: 2rem;
}

.about__body {
  font-size: .95rem;
  color: var(--c-text);
  line-height: 2;
}
.about__body strong {
  color: var(--c-accent);
}

.about__visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about__card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 12px;
  padding: 1.8rem 2rem;
  transition: border-color .3s, transform .3s var(--ease), box-shadow .3s;
}
.about__card:hover {
  border-color: var(--c-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74,140,42,.08);
}

.about__card-number {
  font-family: var(--font-en);
  font-size: .95rem;
  font-weight: 600;
  color: var(--c-accent);
  letter-spacing: .1em;
  display: block;
  margin-bottom: .5rem;
}

.about__card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-heading);
  margin-bottom: .4rem;
}

.about__card p {
  font-size: .85rem;
  color: var(--c-muted);
}

/* ---------- SERVICES ---------- */
.services {
  background: var(--c-surface);
}

/* --- Magazine rhythm grid --- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  align-items: start;
}

.services__card {
  background: var(--c-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  transition: transform .4s var(--ease), box-shadow .4s;
}
.services__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(74,140,42,.13);
}

/* Even cards offset downward for magazine rhythm */
.services__card:nth-child(2),
.services__card:nth-child(4) {
  margin-top: 2.5rem;
}

/* Photo wrapper */
.services__photo {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 4/3;
}
/* Odd (large) cards get taller photo */
.services__card:nth-child(odd) .services__photo {
  aspect-ratio: 3/2;
}
.services__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
  display: block;
}
.services__card:hover .services__photo img {
  transform: scale(1.06);
}

/* Card body */
.services__body {
  padding: 1.5rem 1.75rem 2rem;
}

.services__number {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--c-accent);
  margin-bottom: .6rem;
}

.services__card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-heading);
  margin-bottom: .75rem;
  line-height: 1.5;
}

.services__card-text {
  font-size: .82rem;
  color: var(--c-muted);
  line-height: 1.9;
}

.services__card-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  margin-top: 1.1rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--c-accent);
  transition: gap .2s, color .2s;
}
.services__card-link:hover {
  color: var(--c-accent2);
  gap: .55rem;
}

/* ---------- INITIATIVES ---------- */
.initiatives__grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.initiatives__item {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  padding: 2.5rem;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 16px;
  transition: border-color .3s, transform .3s var(--ease), box-shadow .3s;
}
.initiatives__item:hover {
  border-color: var(--c-accent);
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(74,140,42,.08);
}

.initiatives__number {
  font-family: var(--font-en);
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: .25;
  line-height: 1;
  min-width: 72px;
  transition: opacity .3s;
}
.initiatives__item:hover .initiatives__number {
  opacity: .7;
}

.initiatives__content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-heading);
  margin-bottom: .5rem;
}

.initiatives__content p {
  font-size: .9rem;
  color: var(--c-text);
  line-height: 1.8;
}

.initiatives__sdgs-link {
  text-align: center;
  margin-top: 2.5rem;
}
.initiatives__sdgs-link a {
  display: inline-block;
  padding: .9rem 2.4rem;
  background: var(--c-accent);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 60px;
  text-decoration: none;
  letter-spacing: .04em;
  transition: background .25s, transform .25s;
  box-shadow: 0 4px 16px rgba(74,140,42,.25);
}
.initiatives__sdgs-link a:hover {
  background: #3d7623;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(74,140,42,.35);
}

/* ---------- LINKS ---------- */
.links {
  background: var(--c-surface);
}

.links__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  box-sizing: border-box;
}

.links__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 2rem;
  min-height: 80px;
  min-width: 0;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 10px;
  box-sizing: border-box;
  overflow: hidden;
  transition: border-color .3s, transform .3s var(--ease), box-shadow .3s;
}
.links__item img {
  max-height: 54px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.links__item img.links__item-img--zoom {
  transform: scale(2.6);
}
.links__item img.links__item-img--zoom-sm {
  transform: scale(1.3);
}
.links__item:hover {
  border-color: var(--c-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(74,140,42,.08);
}

/* ---------- CONTACT ---------- */
.contact {
  background: var(--c-bg);
}

.contact__inner {
  max-width: 720px;
  margin: 0 auto;
}

.contact__lead {
  text-align: center;
  font-size: .95rem;
  color: var(--c-text);
  margin-bottom: 3rem;
  line-height: 2;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact__form-group {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.contact__form-group label {
  font-size: .8rem;
  font-weight: 500;
  color: var(--c-heading);
  letter-spacing: .05em;
}

.required {
  color: var(--c-accent2);
}

.contact__form-group input,
.contact__form-group textarea {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 8px;
  padding: .9rem 1.2rem;
  font-family: var(--font-ja);
  font-size: .9rem;
  color: var(--c-heading);
  transition: border-color .3s, box-shadow .3s;
  outline: none;
}
.contact__form-group input::placeholder,
.contact__form-group textarea::placeholder {
  color: #b0b0b0;
}
.contact__form-group input:focus,
.contact__form-group textarea:focus {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(74,140,42,.1);
}

.contact__form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.contact__submit {
  align-self: center;
  font-family: var(--font-ja);
  font-size: .9rem;
  font-weight: 600;
  padding: 1rem 4rem;
  background: linear-gradient(135deg, var(--c-accent), var(--c-green-l));
  color: var(--c-white);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.contact__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(74,140,42,.25);
}
.contact__submit:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.contact__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact__status {
  margin: 1rem 0 0;
  text-align: center;
  font-size: .9rem;
  min-height: 1.4em;
  color: var(--c-text);
}
.contact__status.is-success {
  color: var(--c-accent);
  font-weight: 600;
}
.contact__status.is-error {
  color: #c0392b;
  font-weight: 600;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--c-heading);
  padding: 3rem 0 2rem;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.footer__logo-img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .85;
}

.footer__nav {
  display: flex;
  gap: 2rem;
}

.footer__nav a {
  font-family: var(--font-en);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  color: rgba(255,255,255,.5);
  transition: color .3s;
}
.footer__nav a:hover {
  color: var(--c-white);
}

.footer__copy {
  text-align: center;
  font-size: .75rem;
  color: rgba(255,255,255,.3);
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollLine {
  0%   { top: -100%; }
  50%  { top: 100%; }
  100% { top: 100%; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: .3; }
}

/* Scroll reveal — JS adds .reveal class, then .visible on intersection */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Fallback: if JS hasn't run yet, ensure content is visible */
.no-js .reveal {
  opacity: 1;
  transform: none;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .services__card:nth-child(2),
  .services__card:nth-child(4) {
    margin-top: 1.75rem;
  }
  .about__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }

  .hero__video--pc {
    display: none;
  }
  .hero__video--sp {
    display: block;
  }

  .hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(0,0,0,.15) 0%,
      rgba(0,0,0,.05) 30%,
      rgba(0,0,0,.25) 70%,
      rgba(0,0,0,.55) 100%
    );
  }

  .header__hamburger {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(58,58,58,.98);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 5rem 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s var(--ease);
  }
  .header__nav.open {
    opacity: 1;
    pointer-events: auto;
  }

  .header__nav-list {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  .header__nav-list a {
    font-size: 1rem;
    color: rgba(255,255,255,.8);
  }

  .header__dropdown {
    position: static;
    transform: none !important;   /* タッチhoverによるtranslateX打ち消し */
    left: auto;
    width: 100%;
    min-width: 0;
    background: rgba(255,255,255,.1);
    box-shadow: none;
    backdrop-filter: none;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    margin-top: 0;
    border-radius: 8px;
    padding: 0;
    transition: opacity .25s, max-height .3s, margin-top .25s, padding .25s;
  }

  .has-dropdown.dropdown-open .header__dropdown {
    opacity: 1;
    visibility: visible;
    max-height: 300px;
    margin-top: .5rem;
    padding: .25rem 0;
  }

  /* モバイルではhoverによるtransform/表示を無効化 */
  .has-dropdown:hover .header__dropdown {
    transform: none;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
  }
  .has-dropdown.dropdown-open .header__dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    max-height: 300px !important;
  }

  .has-dropdown > a::after {
    content: ' ▾';
    font-size: .7em;
    opacity: .6;
  }
  .has-dropdown.dropdown-open > a::after {
    content: ' ▴';
  }

  .header__dropdown a {
    color: rgba(255,255,255,.6) !important;
    text-align: center;
  }

  .header__dropdown a:hover {
    background: rgba(255,255,255,.1);
    color: #fff !important;
  }

  .section { padding: 5rem 0; }
  .section__header { margin-bottom: 2.5rem; }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .services__card:nth-child(2),
  .services__card:nth-child(4) {
    margin-top: 0;
  }

  .news__item {
    flex-direction: column;
    align-items: flex-start;
    gap: .75rem;
  }

  .initiatives__item {
    flex-direction: column;
    gap: 1rem;
    padding: 2rem 1.5rem;
  }
  .initiatives__number { font-size: 2rem; }

  .links__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: .75rem;
  }
  .links__item {
    padding: 1rem .75rem;
    min-height: 70px;
  }
  .links__item img {
    max-height: 44px;
    max-width: 100%;
  }

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

  .footer__inner {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .footer__nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .links__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: .5rem;
  }
  .links__item {
    padding: .8rem .5rem;
    min-height: 60px;
  }
  .links__item img {
    max-height: 36px;
    max-width: 100%;
  }
}
