/* cc-marketing.css
   The experience landing pages. Built from the same tokens as the home page so
   a visitor arriving on one of these from a search sees the site they would
   have seen from the front door.

   Palette, for reference: ground #16301F, raised #1E4029, bone #F5F1E4,
   gold #C9A227, gold hover #E0BC4A, muted #C4CFBF. */

.mk-wrap { max-width: 1280px; margin: 0 auto; padding: 0 clamp(16px,4vw,56px); }
.mk-narrow { max-width: 760px; }

.mk-sec { padding: clamp(44px,6vw,86px) 0; }
.mk-sec-raised { background: #1E4029; }

.mk-hero { padding: clamp(52px,8vw,104px) 0 clamp(34px,4.6vw,60px); }
.mk-eyebrow {
  margin: 0 0 12px; font-size: 11px; letter-spacing: .24em;
  text-transform: uppercase; color: #C9A227; font-weight: 500;
}
.mk-h1 {
  margin: 0 0 18px; font-family: 'Cormorant Garamond','CormorantFallback',Georgia,serif;
  font-weight: 400; font-size: clamp(38px,6vw,74px); line-height: 1.05;
  letter-spacing: -0.01em; color: #F5F1E4;
}
.mk-h1 em { font-style: italic; color: #C9A227; }
.mk-h2 {
  margin: 0 0 14px; font-family: 'Cormorant Garamond','CormorantFallback',Georgia,serif;
  font-weight: 400; font-size: clamp(28px,3.6vw,44px); line-height: 1.15; color: #F5F1E4;
}
.mk-h3 {
  margin: 0 0 10px; font-family: 'Cormorant Garamond','CormorantFallback',Georgia,serif;
  font-weight: 400; font-size: clamp(22px,2.6vw,30px); line-height: 1.2; color: #C9A227;
}
.mk-lede { margin: 0 0 8px; max-width: 62ch; font-size: clamp(16px,1.3vw,18px);
           line-height: 1.75; color: #C4CFBF; }
.mk-point { margin-bottom: clamp(26px,3vw,42px); }
.mk-point p { margin: 0; max-width: 68ch; font-size: 16.5px; line-height: 1.8; color: #C4CFBF; }

.mk-cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.mk-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0 26px; border-radius: 2px;
  font-size: 12px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  border: 1px solid #C9A227; transition: background 300ms ease, color 300ms ease;
}
.mk-btn-gold  { background: #C9A227; color: #16301F; }
.mk-btn-gold:hover  { background: #E0BC4A; border-color: #E0BC4A; color: #16301F; }
.mk-btn-ghost { background: transparent; color: #C9A227; }
.mk-btn-ghost:hover { background: rgba(224,188,74,.14); color: #E0BC4A; border-color: #E0BC4A; }

/* Rig cards. Whole card is the link, so the tap target is the card. */
.mk-rig-grid, .mk-card-grid {
  display: grid; gap: clamp(16px,2.2vw,26px); margin-top: clamp(22px,3vw,36px);
  grid-template-columns: repeat(auto-fit, minmax(min(100%,272px), 1fr));
}
.mk-rig, .mk-card {
  display: flex; flex-direction: column; gap: 8px; padding: 24px 22px 26px;
  border: 1px solid rgba(201,162,39,.55); border-radius: 8px; background: #16301F;
  transition: border-color 300ms ease; color: #F5F1E4;
}
.mk-sec-raised .mk-rig { background: #16301F; }
.mk-rig:hover, .mk-card:hover { border-color: #E0BC4A; }
.mk-rig-name, .mk-card-title {
  font-family: 'Cormorant Garamond','CormorantFallback',Georgia,serif;
  font-size: clamp(24px,2.4vw,30px); letter-spacing: .06em; color: #C9A227;
}
.mk-rig-meta { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: #F5F1E4; }
.mk-rig-why, .mk-card-desc { font-size: 15.5px; line-height: 1.7; color: #C4CFBF; }
.mk-rig-cta { margin-top: 6px; font-size: 11.5px; letter-spacing: .18em;
              text-transform: uppercase; color: #C9A227; }
.mk-card-eyebrow { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: #C9A227; }

/* FAQ */
.mk-faq-list { margin-top: clamp(18px,2.4vw,30px); }
.mk-faq { border-bottom: 1px solid rgba(201,162,39,.22); }
.mk-faq summary {
  cursor: pointer; list-style: none; padding: 20px 0; min-height: 44px;
  font-size: clamp(16px,1.5vw,19px); color: #F5F1E4;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.mk-faq summary::-webkit-details-marker { display: none; }
.mk-faq summary::after { content: '+'; color: #C9A227; font-size: 22px; line-height: 1; flex: 0 0 auto; }
.mk-faq[open] summary::after { content: '\2212'; }
.mk-faq summary:hover { color: #C9A227; }
.mk-faq-a p { margin: 0 0 20px; max-width: 68ch; font-size: 16px; line-height: 1.8; color: #C4CFBF; }

/* Lead form. Bigger than a footer afterthought, because on these pages it is
   the point of the page. */
.mk-form-sec { background: #1E4029; }
.mk-form { display: flex; flex-direction: column; gap: 16px; margin-top: 26px; }
.mk-row { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(min(100%,220px), 1fr)); }
.mk-form label { display: flex; flex-direction: column; gap: 7px;
                 font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: #C9A227; }
.mk-req { color: #E0BC4A; }
.mk-form input, .mk-form textarea {
  font-family: 'Jost','JostFallback',system-ui,sans-serif; font-size: 16px;
  color: #F5F1E4; background: #16301F; border: 1px solid rgba(201,162,39,.45);
  border-radius: 3px; padding: 13px 14px; min-height: 48px; width: 100%;
}
.mk-form textarea { min-height: 118px; resize: vertical; line-height: 1.6; }
.mk-form input:focus, .mk-form textarea:focus {
  outline: 2px solid #C9A227; outline-offset: 1px; border-color: #C9A227;
}
.mk-form button { align-self: flex-start; cursor: pointer; font-family: inherit; }
.mk-fineprint { margin: 0; font-size: 13px; color: #C4CFBF; }
.mk-err { margin: 0; padding: 12px 14px; border-radius: 3px; font-size: 15px;
          color: #FFD9D2; background: rgba(192,57,43,.22); border: 1px solid rgba(192,57,43,.5); }
.mk-done h3 { font-family: 'Cormorant Garamond','CormorantFallback',Georgia,serif;
              font-weight: 400; font-size: clamp(26px,3vw,36px); color: #C9A227; margin: 26px 0 10px; }
.mk-done p { margin: 0; font-size: 16.5px; line-height: 1.8; color: #C4CFBF; }
/* The honeypot has to be reachable by a bot and invisible to a person, so it
   is moved off screen rather than display:none, which some bots skip. */
.mk-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.mk-links .mk-link-row { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 14px; }
.mk-links a { font-size: 15.5px; color: #F5F1E4; min-height: 44px; display: flex; align-items: center; }
.mk-links a:hover { color: #E0BC4A; }
.mk-link-row-alt a { color: #C9A227; }
