/* =========================================================
   Big Woods Contact Page
   File: assets/css/bwfgp-contact.css
========================================================= */

.contact-page {
  min-height: 100vh;
  color: #fff;
  background:
    radial-gradient(circle at 18% 18%, rgba(211, 170, 69, .10), transparent 24rem),
    radial-gradient(circle at 84% 24%, rgba(42, 96, 52, .18), transparent 28rem),
    linear-gradient(
      180deg,
      #07180f 0px,
      #092516 145px,
      #06150f 230px,
      #020806 292px,
      #020806 309px,
      #e6dcc6 310px,
      #efe7d7 100%
    );
}


/* =========================================================
   Contact Hero
   Pixel matched to Membership / Fish Landed screenshots
========================================================= */

.contact-page .contact-simple-hero {
  position: relative;
  width: 100%;
  height: 230px !important;
  min-height: 0 !important;
  max-height: 230px !important;
  box-sizing: border-box;
  padding: 0 !important;
  overflow: hidden;
  border-bottom: 22px solid #020806;
  background:
    radial-gradient(circle at 72% 18%, rgba(211, 170, 69, .18), transparent 30%),
    radial-gradient(circle at 14% 90%, rgba(37, 93, 48, .34), transparent 36%),
    linear-gradient(
      180deg,
      #07180f 0%,
      #092516 54%,
      #06150f 82%,
      #020806 100%
    );
}

.contact-page .contact-simple-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(4, 13, 8, .88), rgba(5, 20, 12, .68), rgba(7, 31, 18, .40)),
    linear-gradient(0deg, rgba(7, 35, 20, .64), rgba(5, 17, 11, .24));
}

.contact-page .contact-simple-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 78px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(8, 36, 21, .68) 32%,
    #06150f 60%,
    #020806 88%,
    #020806 100%
  );
}

.contact-page .contact-simple-inner {
  position: relative;
  z-index: 3;
  width: min(1500px, calc(100% - 44px));
  height: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-kicker {
  margin: 0 0 8px;
  color: #d3aa45;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .3em;
  text-transform: uppercase;
}

.contact-page .contact-simple-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(44px, 5vw, 66px);
  font-weight: 900;
  line-height: .84;
  letter-spacing: -.058em;
  text-transform: uppercase;
  text-shadow: 0 20px 54px rgba(0, 0, 0, .50);
}

.contact-page .contact-simple-hero p:not(.contact-kicker) {
  max-width: 690px;
  margin: 11px 0 0;
  color: rgba(255, 255, 255, .84);
  font-size: 13px;
  line-height: 1.45;
}


/* =========================================================
   Locations
========================================================= */

.locations-section {
  width: min(1120px, calc(100% - 64px));
  margin: 0 auto;
  padding: 28px 0 22px;
}

.locations-header {
  margin-bottom: 18px;
}

.locations-header .contact-kicker {
  color: #9a7422;
}

.locations-header h2,
.communication-box h2 {
  margin: 0;
  color: #08170f;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.028em;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.location-card {
  overflow: hidden;
  border: 1px solid rgba(126, 98, 36, .24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .42), rgba(235, 224, 195, .46));
  box-shadow:
    0 18px 44px rgba(34, 25, 10, .12),
    0 0 0 1px rgba(255, 255, 255, .26) inset;
}

.location-map {
  height: 230px;
  background: #07140e;
  border-bottom: 1px solid rgba(126, 98, 36, .22);
}

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

.location-content {
  padding: 22px;
}

.location-label {
  margin: 0 0 8px;
  color: #9a7422;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.location-content h3 {
  margin: 0;
  color: #08170f;
  font-size: 21px;
  line-height: 1.1;
  letter-spacing: -.02em;
}

.location-content p:not(.location-label) {
  margin: 7px 0 0;
  color: rgba(8, 23, 15, .70);
  font-size: 13px;
  line-height: 1.5;
}

.location-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: 16px;
  padding: 10px 15px;
  border: 1px solid rgba(177, 137, 45, .95);
  background: #caa24a;
  color: #06130d;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    transform .18s ease,
    background .18s ease;
}

.location-button:hover {
  transform: translateY(-2px);
  background: #d7b96a;
}


/* =========================================================
   Contact Cards
   Green version
========================================================= */

.contact-card-section {
  width: min(1120px, calc(100% - 64px));
  margin: 0 auto;
  padding: 20px 0 14px;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-card {
  position: relative;
  min-height: 132px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(202, 162, 74, .36);
  background:
    radial-gradient(circle at 92% 12%, rgba(202, 162, 74, .12), transparent 12rem),
    linear-gradient(145deg, #082716 0%, #061e13 48%, #03110c 100%);
  box-shadow:
    0 18px 44px rgba(3, 17, 12, .28),
    inset 0 1px 0 rgba(255, 255, 255, .045);
  color: #fffdf6;
  text-decoration: none;
  transition:
    transform .18s ease,
    border-color .18s ease,
    background .18s ease,
    box-shadow .18s ease;
}

.contact-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 4px;
  background: linear-gradient(180deg, #caa24a, rgba(202, 162, 74, .28));
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(202, 162, 74, .62);
  background:
    radial-gradient(circle at 92% 12%, rgba(202, 162, 74, .16), transparent 12rem),
    linear-gradient(145deg, #0a2f1d 0%, #082716 48%, #04170f 100%);
  box-shadow:
    0 22px 52px rgba(3, 17, 12, .34),
    inset 0 1px 0 rgba(255, 255, 255, .055);
}

.contact-card span {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 12px;
  color: #d7b96a;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.contact-card strong {
  position: relative;
  z-index: 1;
  display: block;
  color: #fffdf6;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -.035em;
}

.contact-card small {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 470px;
  margin-top: 12px;
  color: rgba(255, 253, 246, .72);
  font-size: 12px;
  line-height: 1.5;
}


/* =========================================================
   Communication
========================================================= */

.communication-section {
  width: min(1120px, calc(100% - 64px));
  margin: 0 auto;
  padding: 18px 0 56px;
}

.communication-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 24px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(126, 98, 36, .24);
  background:
    radial-gradient(circle at 100% 0%, rgba(202, 162, 74, .12), transparent 22rem),
    linear-gradient(180deg, rgba(255, 255, 255, .44), rgba(235, 224, 195, .46));
  box-shadow:
    0 18px 44px rgba(34, 25, 10, .12),
    0 0 0 1px rgba(255, 255, 255, .26) inset;
}

.communication-box .contact-kicker {
  color: #9a7422;
}

.communication-box p:not(.contact-kicker) {
  max-width: 760px;
  margin: 12px 0 0;
  color: rgba(8, 23, 15, .70);
  font-size: 13px;
  line-height: 1.58;
}

.communication-actions {
  display: grid;
  gap: 10px;
}

.communication-actions a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid rgba(177, 137, 45, .95);
  background: #caa24a;
  color: #06130d;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    transform .18s ease,
    background .18s ease,
    border-color .18s ease;
}

.communication-actions a:hover {
  transform: translateY(-2px);
  background: #d7b96a;
}

.communication-actions a:nth-child(2) {
  border-color: rgba(8, 23, 15, .22);
  background: rgba(8, 23, 15, .10);
  color: #08170f;
}

.communication-actions a:nth-child(2):hover {
  border-color: rgba(177, 137, 45, .55);
  background: rgba(202, 162, 74, .18);
}


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

.contact-page .footer {
  background:
    linear-gradient(180deg, #03100a 0%, #020806 100%);
}


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

@media (max-width: 1050px) {
  .contact-card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .location-grid,
  .communication-box {
    grid-template-columns: 1fr;
  }

  .communication-actions {
    max-width: 340px;
  }
}

@media (max-width: 760px) {
  .contact-page .contact-simple-hero {
    height: auto !important;
    min-height: 270px !important;
    max-height: none !important;
    padding: 0 !important;
  }

  .contact-page .contact-simple-inner {
    width: min(100% - 32px, 1500px);
    height: auto;
    min-height: 270px;
    padding: 48px 0 34px;
  }

  .contact-card-section,
  .locations-section,
  .communication-section {
    width: min(100% - 32px, 1120px);
  }

  .contact-card-section {
    padding-top: 24px;
  }

  .contact-card,
  .location-content,
  .communication-box {
    padding: 21px;
  }

  .location-map {
    height: 230px;
  }

  .communication-section {
    padding-bottom: 44px;
  }

  .contact-page .contact-simple-hero h1 {
    font-size: clamp(32px, 14vw, 58px);
  }

  .locations-header h2,
  .communication-box h2 {
    font-size: clamp(23px, 7vw, 30px);
  }
}

@media (max-width: 460px) {
  .contact-kicker {
    font-size: 8px;
    letter-spacing: .18em;
  }

  .contact-page .contact-simple-hero h1 {
    font-size: 28px;
  }

  .contact-page .contact-simple-hero p:not(.contact-kicker) {
    font-size: 12px;
  }

  .location-map {
    height: 210px;
  }

  .contact-card strong {
    font-size: 20px;
  }

  .location-content h3 {
    font-size: 19px;
  }
}