.page-contact {
  --contact-grid-size: 52px;
  --contact-grid-line: rgba(11, 61, 46, 0.055);
  --contact-gold-soft: rgba(212, 175, 55, 0.35);
  --contact-card-radius: 30px;
  background:
    repeating-linear-gradient(0deg, var(--contact-grid-line) 0 1px, transparent 1px var(--contact-grid-size)),
    repeating-linear-gradient(90deg, var(--contact-grid-line) 0 1px, transparent 1px var(--contact-grid-size)),
    var(--light-gray);
  padding: clamp(22px, 5vw, 48px) clamp(16px, 4vw, 48px) clamp(44px, 7vw, 80px);
}

.contact-hero {
  max-width: var(--content-max);
  margin: 0 auto clamp(30px, 5vw, 52px);
  position: relative;
  display: grid;
  gap: 12px;
}

.contact-hero__content h1 {
  font-family: var(--heading-font);
  font-size: clamp(30px, 4.8vw, 56px);
  line-height: 1.12;
  color: var(--primary-green);
  margin: 8px 0 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.contact-hero__desc {
  font-family: var(--body-font);
  font-size: 15px;
  line-height: 1.75;
  color: var(--dark-gray);
  max-width: 640px;
}

.contact-hero__note {
  position: absolute;
  top: -12px;
  right: 0;
  display: none;
}

.contact-split {
  max-width: var(--content-max);
  margin: 0 auto clamp(32px, 5vw, 56px);
  display: grid;
  gap: 24px;
}

.contact-split__left {
  display: grid;
  gap: 24px;
  align-content: start;
}

.contact-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--contact-card-radius);
  overflow: hidden;
  background: var(--primary-green);
  color: var(--white);
  box-shadow: var(--shadow-lift);
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  border: 1px solid var(--contact-gold-soft);
  border-radius: calc(var(--contact-card-radius) - 12px);
  pointer-events: none;
}

.contact-card__media {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.contact-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 61, 46, 0.15) 0%, rgba(11, 61, 46, 0.68) 72%, var(--primary-green) 100%);
}

.contact-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-card__stamp {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--primary-green);
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.contact-card__body {
  position: relative;
  z-index: 1;
  padding: clamp(20px, 3.2vw, 32px);
}

.contact-card__body h2 {
  font-family: var(--heading-font);
  font-size: 26px;
  line-height: 1.2;
  color: var(--gold);
  margin: 8px 0 10px;
}

.contact-card__intro {
  font-family: var(--body-font);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 18px;
}

.contact-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.contact-card__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(212, 175, 55, 0.18);
}

.contact-card__label {
  font-family: var(--heading-font);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.contact-card__value {
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  overflow-wrap: anywhere;
}

.contact-card__note {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed rgba(255, 255, 255, 0.25);
  font-family: var(--body-font);
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
}

.contact-hour {
  background: var(--white);
  border-radius: 22px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(11, 61, 46, 0.08);
  box-shadow: var(--shadow-soft);
}

.contact-hour h2 {
  font-family: var(--heading-font);
  font-size: 22px;
  margin: 8px 0 16px;
  color: var(--primary-green);
}

.contact-hour__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.contact-hour__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 6px 12px;
  padding: 12px 14px;
  background: var(--light-gray);
  border-radius: 14px;
  border-left: 4px solid var(--gold);
}

.contact-hour__day {
  font-family: var(--body-font);
  font-weight: 600;
  color: var(--dark-gray);
  font-size: 14px;
}

.contact-hour__time {
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-green);
}

.contact-hour__tag {
  font-family: var(--body-font);
  font-size: 12px;
  color: var(--dark-red);
  background: rgba(139, 0, 0, 0.09);
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.contact-coop {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(11, 61, 46, 0.08);
  border-radius: var(--contact-card-radius);
  padding: clamp(22px, 3.4vw, 34px);
  box-shadow: var(--shadow-soft);
}

.contact-coop::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.22), transparent 68%);
  pointer-events: none;
}

.contact-coop__header {
  position: relative;
  z-index: 1;
}

.contact-coop h2 {
  font-family: var(--heading-font);
  font-size: 26px;
  color: var(--primary-green);
  margin: 8px 0 12px;
}

.contact-coop__lead {
  font-family: var(--body-font);
  font-size: 14px;
  line-height: 1.7;
  color: var(--dark-gray);
  max-width: 46em;
}

.contact-coop__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.contact-coop__stat {
  background: var(--light-gray);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.contact-coop__stat strong {
  font-family: var(--heading-font);
  font-size: 26px;
  line-height: 1;
  color: var(--primary-green);
}

.contact-coop__stat span {
  font-family: var(--body-font);
  font-size: 12px;
  color: var(--mid-gray);
}

.contact-coop__types {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.contact-coop__type {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--light-gray);
  border-left: 4px solid var(--gold);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-coop__type:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 18px rgba(11, 61, 46, 0.08);
}

.contact-coop__index {
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}

.contact-coop__type-body h3 {
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--primary-green);
}

.contact-coop__type-body p {
  font-family: var(--body-font);
  font-size: 13px;
  line-height: 1.6;
  color: var(--dark-gray);
  margin: 0;
}

.contact-coop__figure {
  margin: 24px 0 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(11, 61, 46, 0.08);
}

.contact-coop__figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.contact-coop__figure figcaption {
  padding: 10px 14px;
  font-family: var(--body-font);
  font-size: 12px;
  color: var(--mid-gray);
  background: var(--light-gray);
}

.contact-coop__note {
  margin: 18px 0 0;
  padding: 14px 16px;
  background: var(--cream);
  border: 1px dashed rgba(212, 175, 55, 0.7);
  border-radius: 14px;
  font-family: var(--body-font);
  font-size: 13px;
  line-height: 1.6;
  color: var(--dark-gray);
}

.contact-faq {
  position: relative;
  overflow: hidden;
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  gap: 18px;
  background: var(--primary-green);
  border-radius: var(--contact-card-radius);
  padding: clamp(24px, 4vw, 40px);
  color: var(--white);
  box-shadow: var(--shadow-lift);
}

.contact-faq::after {
  content: "";
  position: absolute;
  right: -56px;
  bottom: -56px;
  width: 180px;
  height: 180px;
  border: 26px solid rgba(212, 175, 55, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.contact-faq__header {
  position: relative;
  z-index: 1;
}

.contact-faq h2 {
  font-family: var(--heading-font);
  font-size: 26px;
  color: var(--gold);
  margin: 8px 0 12px;
}

.contact-faq__lead {
  font-family: var(--body-font);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
}

.contact-faq__mini {
  display: grid;
  gap: 10px;
}

.contact-faq__item {
  display: grid;
  gap: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 12px 14px;
}

.contact-faq__item strong {
  font-family: var(--heading-font);
  font-size: 15px;
  color: var(--gold);
}

.contact-faq__item span {
  font-family: var(--body-font);
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

.contact-faq__item a {
  font-family: var(--body-font);
  font-size: 12px;
  color: var(--bright-green);
  text-decoration: none;
  justify-self: start;
  margin-top: 4px;
}

.contact-faq__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.contact-faq .btn--outline {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}

.contact-faq__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-faq__links a {
  font-family: var(--body-font);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  position: relative;
}

.contact-faq__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.contact-faq__links a:hover {
  color: var(--gold);
}

@media (min-width: 480px) {
  .contact-card__row {
    grid-template-columns: 92px 1fr;
    gap: 10px;
    align-items: baseline;
  }
}

@media (min-width: 620px) {
  .contact-hour__list {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-hour__item {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-hour__time {
    margin: 0;
  }

  .contact-coop__stats {
    grid-template-columns: repeat(2, minmax(0, 160px));
  }
}

@media (min-width: 760px) {
  .contact-hero__note {
    display: block;
  }

  .contact-card__media {
    height: 260px;
  }
}

@media (min-width: 980px) {
  .contact-split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
    align-items: start;
    gap: 28px;
  }

  .contact-split__left {
    gap: 28px;
  }

  .contact-faq {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .contact-faq__header {
    grid-column: 1 / -1;
  }

  .contact-faq__actions {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }

  .contact-faq__links {
    grid-column: 1 / -1;
  }
}
