/* For The Real G - Contact page */

:root {
  --black: #070706;
  --black-2: #10100f;
  --charcoal: #171614;
  --cream: #f6f1e8;
  --cream-2: #fffaf1;
  --muted: #756d61;
  --muted-dark: #a99d8b;
  --gold: #c8953d;
  --gold-2: #e0b55f;
  --line: rgba(21, 18, 14, 0.12);
  --line-dark: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  --serif: Georgia, "Times New Roman", serif;
  --sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black-2);
  background: var(--cream);
  font-family: var(--sans);
  line-height: 1.55;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -44px;
  z-index: 100;
  background: var(--gold);
  color: #111;
  padding: 10px 14px;
  border-radius: 999px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.sr-only,
.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-hero {
  position: relative;
  min-height: 430px;
  color: #fff;
  overflow: hidden;
  background: var(--black);
}

.contact-hero-bg,
.contact-hero-overlay {
  position: absolute;
  inset: 0;
}

.contact-hero-bg {
  background-image: url("/images/contact-hero.webp");
  background-size: cover;
  background-position: center 43%;
  transform: scale(1.01);
}

.contact-hero-overlay {
}

.site-nav {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 6;
  max-width: 1440px;
  margin: 0 auto;
  padding: 34px 42px 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
}

.site-nav .nav-toggle,
.site-nav .nav-links {
  pointer-events: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.9);
}

.nav-links a:hover,
.nav-links a:focus {
  color: #fff;
}

.nav-links a[href*="subscribe"] {
  color: var(--gold-2);
}

.nav-cta {
  padding: 12px 22px;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #12100c !important;
  border-radius: 2px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 38px;
  border: 1px solid var(--line-dark);
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  border-radius: 3px;
  padding: 9px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 42px 42px 70px;
}

.hero-logo-lockup {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  width: clamp(220px, 22vw, 330px);
  margin: 0 0 70px;
  line-height: 1;
  text-transform: none;
  letter-spacing: 0;
}

.hero-logo-lockup .logo-top {
  display: block;
  width: 100%;
  height: auto;
  max-height: 132px;
  object-fit: contain;
  object-position: left center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-2);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.45;
  text-transform: uppercase;
}

.contact-hero h1,
.contact-form-panel h2,
.response-strip h2,
.footer-signup h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.contact-hero h1 {
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 0.94;
}

.gold-rule {
  width: 52px;
  height: 3px;
  margin: 26px 0 22px;
  background: var(--gold);
}

.hero-lede {
  max-width: 460px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
}

.contact-main {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.65), transparent 36%),
    var(--cream);
}

.contact-layout {
  max-width: var(--max);
  margin: 0 auto;
  padding: 44px 24px 38px;
  display: grid;
  grid-template-columns: minmax(320px, 420px) 1fr;
  gap: 92px;
  align-items: start;
}

.contact-form-panel h2 {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  line-height: 1.08;
}

.section-lede {
  max-width: 330px;
  color: var(--muted);
  margin: 18px 0 30px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--line);
  outline: none;
}

.contact-form textarea {
  min-height: 150px;
  padding-top: 16px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 149, 61, 0.14);
}

.recaptcha-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
}

.contact-form button {
  min-height: 56px;
  border: 0;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #17110a;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.secure-note {
  margin: -2px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.84rem;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: #916c35;
  font-weight: 700;
  font-size: 0.92rem;
}

.contact-info-panel > .eyebrow,
.reach-list > .eyebrow {
  color: #8e6a31;
}

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

.contact-card {
  padding: 28px;
  min-height: 188px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--line);
  box-shadow: 0 16px 44px rgba(28, 21, 12, 0.055);
}

.contact-card img {
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 50%;
}

.contact-card h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 500;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
}

.contact-card a,
.response-strip a {
  display: inline-block;
  margin-top: 18px;
  color: #9b6d25;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reach-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) minmax(260px, 380px);
  gap: 34px;
  align-items: end;
}

.reach-list {
  display: grid;
  gap: 14px;
}

.reach-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
}

.reach-item img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

.reach-item strong {
  display: block;
  font-size: 0.9rem;
}

.reach-item a {
  color: var(--muted);
  font-size: 0.92rem;
}

.reach-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 18px 46px rgba(28, 21, 12, 0.1);
}

.response-strip {
  max-width: var(--max);
  margin: 10px auto 0;
  padding: 0 24px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.response-strip article {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 22px;
  min-height: 188px;
  padding: 34px 42px;
  align-items: center;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(21, 18, 14, 0.08);
}

.response-strip article + article {
  border-left: 0;
}

.response-strip article > img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
}

.response-strip h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  line-height: 1.12;
}

.response-strip p:not(.eyebrow) {
  color: var(--muted);
  margin-bottom: 0;
}

.footer-signup {
  padding: 34px max(24px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 1fr minmax(320px, 440px);
  gap: 34px;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 25% 0%, rgba(200, 149, 61, 0.16), transparent 34%),
    linear-gradient(180deg, #11110f, #050505);
}

.footer-signup h2 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.08;
}

.footer-signup p:not(.eyebrow) {
  color: var(--muted-dark);
  margin-bottom: 0;
}

.signup-form.compact {
  display: grid;
  grid-template-columns: 1fr 130px;
  gap: 0;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.signup-form input {
  min-height: 54px;
  width: 100%;
  padding: 0 18px;
  color: #fff;
  background: transparent;
  border: 0;
  outline: none;
}

.signup-form input:focus {
  box-shadow: 0 0 0 3px rgba(200, 149, 61, 0.18);
}

.signup-form button {
  min-height: 54px;
  border: 0;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #17110a;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer {
  padding: 46px max(24px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 38px;
  border-top: 1px solid var(--line);
  background: #fbf7ef;
}

.footer-logo-lockup {
  width: 190px;
  max-width: 100%;
  display: block;
}

.footer-logo-lockup .logo-top {
  width: 100%;
  height: auto;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
}

.footer-logo-tagline {
  display: block;
  width: 148px;
  max-width: 100%;
  height: auto;
  max-height: 16px;
  margin-top: 9px;
  opacity: 0.78;
}

.footer-col h3 {
  margin: 0 0 14px;
  font-size: 0.76rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  margin: 8px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-col a.is-active {
  color: #9b6d25;
  font-weight: 800;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-links a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 900;
}

.copyright {
  padding: 16px 24px 26px;
  color: var(--muted);
  background: #fbf7ef;
  text-align: center;
  font-size: 0.82rem;
}

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

  .contact-form-panel {
    max-width: 560px;
  }

  .site-footer,
  .footer-signup,
  .response-strip {
    grid-template-columns: 1fr;
  }

  .response-strip article + article {
    border-left: 1px solid rgba(21, 18, 14, 0.08);
    border-top: 0;
  }
}

@media (max-width: 760px) {
  .site-nav {
    position: relative;
    padding: 20px;
    justify-content: flex-end;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% - 6px);
    right: 20px;
    left: 20px;
    z-index: 10;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    background: rgba(8, 8, 7, 0.96);
    border: 1px solid var(--line-dark);
  }

  .nav-links.is-open {
    display: flex;
  }

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

  .nav-cta {
    text-align: center;
  }

  .contact-hero {
    min-height: auto;
  }

  .contact-hero-content {
    padding: 26px 22px 58px;
  }

  .hero-logo-lockup {
    width: 230px;
    margin-bottom: 50px;
  }

  .contact-hero h1 {
    font-size: clamp(3.2rem, 15vw, 4.8rem);
  }

  .contact-layout {
    padding-left: 18px;
    padding-right: 18px;
  }

  .contact-card-grid,
  .reach-grid {
    grid-template-columns: 1fr;
  }

  .response-strip {
    padding-left: 18px;
    padding-right: 18px;
  }

  .response-strip article {
    grid-template-columns: 1fr;
    padding: 28px;
  }

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

@media (max-width: 440px) {
  .contact-form-panel h2 {
    font-size: 2rem;
  }

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


/* v2 contact refinements */
.js-inquiry-link {
  cursor: pointer;
}

.response-strip {
  grid-template-columns: minmax(0, 1fr);
}

.response-strip article {
  max-width: 100%;
}

.response-strip article + article {
  display: none;
}

@media (min-width: 900px) {
  .response-strip article {
    grid-template-columns: 76px minmax(0, 1fr);
  }
}
