/* ========================= */
/* RESET                     */
/* ========================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  letter-spacing: 0.08em;
  font-family: system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

html, body {
  background: #161616;
  color: #ffffff;
  overflow-x: hidden;
}

/* ========================= */
/* WRAPPER                   */
/* ========================= */

.wrapper {
  width: 920px;
  margin-inline: auto;
  padding-top: 80px;
}

/* ========================= */
/* HERO                      */
/* ========================= */

.hero { margin-bottom: 50px; }

.site-logo { width: 320px; display: block; }

.hero-text {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.6;
  color: #9a9a9a;
  text-transform: uppercase;
}

/* ========================= */
/* BUTTONS / NAV             */
/* ========================= */

.button-row { display: flex; gap: 10px; margin-bottom: 20px; }

.btn-about {
  padding: 12px 18px;
  font-size: 12px;
  color: #ffffff;
  background: #2c2c2c;
  border-radius: 2mm;
  border: 1px solid #393939;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.2s ease;
}

.btn-about:hover { background: #242424; }

.btn-about.active {
  background: #ffffff;
  color: #161616;
  border-color: #ffffff;
}

/* ========================= */
/* SLIDER                    */
/* ========================= */

.slider-viewport { width: 920px; }
.slider-track { position: relative; }

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 30px;

  transform: translateX(0);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.slide.from-right { transform: translateX(100%); }
.slide.from-left  { transform: translateX(-100%); }

.slide.active {
  position: relative;
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

/* ========================= */
/* HOME CARDS                */
/* ========================= */

.card-link { display: block; text-decoration: none; color: inherit; }
.card-link:visited { color: inherit; }

.card-row { display: flex; margin-bottom: 20px; gap: 20px; }

.site-card {
  width: 450px;
  background: #1c1c1c;
  border-radius: 2mm;
  border: 1px solid #242424;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-image {
  height: 250px;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-size 0.4s ease;
}

.card-image--fields { background-image: url("images/image.jpg"); }
.card-image--gear   { background-image: url("images/field.jpg"); }

.site-card:hover .card-image { background-size: 105%; }

.card-footer {
  padding: 12px 16px;
  background: #1c1c1c;
  border-top: 1px solid #242424;
}

.card-title { font-size: 16px; font-weight: 600; margin-bottom: 5px; }

.card-subtitle {
  font-size: 10px;
  color: #9a9a9a;
  line-height: 1.3;
  text-transform: uppercase;
}

.card-instruction {
  font-size: 12px;
  color: #ffffff;
  line-height: 1.3;
  text-transform: uppercase;
  margin-top: 15px;
}

/* ========================= */
/* ABOUT SLIDE               */
/* ========================= */

.about-statement {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.about-statement p:not(.about-role) {
  margin-bottom: 20px;
  font-size: 12px;
  line-height: 1.7;
  color: #9a9a9a;
  text-transform: uppercase;
}

.about-signature {
  display: block;
  margin: 30px auto 0;
  height: 50px;
  width: auto;
  opacity: 0.85;
}

.about-role {
  margin-top: 4px;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: #9a9a9a;
}

.about-final { color: #ffffff; }

/* ========================= */
/* CONTACT SLIDE             */
/* ========================= */

.contact-block {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding-top: 0px;
}

.contact-block p { font-size: 13px; color: #9a9a9a; }

.contact-block p.contact-title {
  margin-bottom: 8px;
  font-size: 14px;
  color: #ffffff;
  text-transform: uppercase;
}

.contact-block p.contact-subtitle {
  margin-bottom: 30px;
  font-size: 10px;
  color: #9a9a9a;
  text-transform: uppercase;
}

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-row  { display: flex; gap: 16px; }
.contact-row input { flex: 1; }

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #161616;
  border: 1px solid #242424;
  border-radius: 2mm;
  padding: 12px 14px;
  font-size: 12px;
  color: #ffffff;
  outline: none;
  text-transform: none;
  letter-spacing: normal;
}

.contact-form textarea { resize: vertical; min-height: 120px; }

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #7a7a7a;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-submit {
  align-self: center;
  margin-top: 10px;
  padding: 12px 24px;
  background: #2c2c2c;
  border: 1px solid #393939;
  border-radius: 2mm;
  color: #ffffff;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.2s ease;
}

.contact-submit:hover { background: #242424; }

/* ========================= */
/* THANK YOU SLIDE           */
/* ========================= */

.thankyou-block {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding-top: 40px;
}

.thankyou-block h2 {
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.thankyou-block p {
  font-size: 13px;
  color: #9a9a9a;
  line-height: 1.6;
  text-transform: uppercase;
}

/* ========================= */
/* FULL WIDTH FOLLOW CARD    */
/* ========================= */

.site-card--full {
  width: 100%;
  margin-top: 50px;

  background: #1c1c1c;
  border: 1px solid #242424;
  border-radius: 2mm;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Follow section */
.site-card--full .card-content {
  padding: 20px;
  background: #161616;
}

.card-content-title {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.card-content-subtitle {
  font-size: 10px;
  color: #9a9a9a;
  text-transform: uppercase;
}

/* ========================= */
/* SOCIAL BLOCKS             */
/* ========================= */

.social-row { margin-top: 15px; display: flex; gap: 20px; }

.social-link {
  flex: 1;
  display: block;
  text-decoration: none;
  color: inherit;
}

.social-block {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: 2mm;
  border: 1px solid #161616;
  transition: background-color 0.2s ease, border 0.2s ease;
  text-transform: uppercase;
}

.social-block:hover {
  background-color: #1c1c1c;
  border: 1px solid #242424;
}

.social-icon { width: 40px; height: 40px; flex-shrink: 0; }

.social-title { font-size: 14px; font-weight: 600; margin-bottom: 5px; }
.social-handle { font-size: 10px; color: #9a9a9a; }

.social-link:hover .social-title { color: #ffffff; }

/* ========================= */
/* SUBSCRIPTION BAR          */
/* ========================= */

.subscription-bar {
  background: #1c1c1c;
  padding: 18px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-transform: uppercase;

  /* WORKING FIX: stops flex stretching + keeps layout stable */
  height: 80px;
  flex: 0 0 100px;
}

.subscribe-main {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* LEFT */
.subscription-left {
  flex: 1 1 auto;
  min-width: 320px;      /* prevents JOIN/OUR/MAILING vertical stacking */
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* RIGHT */
.subscription-right {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.subscription-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;

  width: 420px;
  max-width: 420px;
  flex: 0 1 420px;       /* IMPORTANT: allow shrink so left text doesn't get crushed */
  min-width: 0;
  flex-wrap: nowrap;
}

.subscription-input {
  height: 38px;
  flex: 1 1 auto;
  min-width: 0;
  padding: 0 14px;
  background: #161616;
  border: 1px solid #242424;
  border-radius: 2mm;
  color: #ffffff;
  font-size: 12px;
  outline: none;
  text-transform: none;
  letter-spacing: normal;
}

.subscription-input::placeholder {
  color: #7a7a7a;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.subscription-button {
  height: 38px;
  padding: 0 16px;
  background: #2c2c2c;
  border: 1px solid #393939;
  border-radius: 2mm;
  color: #ffffff;
  font-size: 12px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.2s ease;
  flex: 0 0 auto;
}

.subscription-button:hover { background: #242424; }

/* Honeypot */
.hp-field {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Success/error */
.subscribe-status { width: 100%; text-align: center; }
.subscription-bar.subscribe-complete { justify-content: center; }

/* ========================= */
/* FOOTER & EXTRAS           */
/* ========================= */

.footer-flag {
  display: block;
  height: 55px;
  margin: 80px auto 0;
  opacity: 0.9;
}

.easter-egg {
  padding-top: 16px;
  margin-bottom: 20px;
  text-align: center;
  font-size: 10px;
  color: #7a7a7a;
  line-height: 1.6;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.easter-egg a { color: #7a7a7a; text-decoration: none; }
.easter-egg a:hover { color: #ffffff; }

.site-footer {
  padding: 20px 0;
  border-top: 1px solid #242424;
  color: #7a7a7a;
  font-size: 10px;
  text-transform: uppercase;
}

.site-footer a { color: #7a7a7a; text-decoration: none; }
.site-footer a:hover { color: #ffffff; }

/* ========================= */
/* LAGERTHA OVERLAY          */
/* ========================= */

.lagertha-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 40px 20px;
  overflow-y: auto;
}

.lagertha-overlay.is-open { display: flex; }

.lagertha-overlay-inner {
  width: 45%;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

.lagertha-overlay .lagertha-card {
  width: 100%;
  background: #1c1c1c;
  border-radius: 2mm;
  border: 1px solid #242424;
  overflow: hidden;
  padding: 20px;
  margin: 0;
}

.lagertha-overlay .lagertha-name,
.lagertha-overlay .lagertha-title {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: center;
  color: #ffffff;
  margin: 0;
}

.lagertha-overlay .lagertha-image {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
  max-height: 65vh;
  object-fit: contain;
}

.lagertha-overlay .lagertha-footer { text-align: left; }

.lagertha-overlay .lagertha-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  color: #9a9a9a;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-left: 5px;
}

.lagertha-overlay .lagertha-details span { color: #ffffff; }

.lagertha-close { margin-top: 18px; }

.lagertha-code {
  margin-top: 10px;
  font-size: 9px;
  color: #9a9a9a;
  text-transform: uppercase;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 10px;
}

.lagertha-code .lagertha-initial { font-weight: 700; color: #ffffff; }

/* Mobile */
@media (max-width: 860px) {
  .wrapper { width: 92%; }
  .slider-viewport { width: 100%; }

  .card-row { flex-direction: column; }
  .site-card { width: 100%; }

  /* allow stacking on mobile */
  .subscription-bar,
  .subscribe-main {
    flex-direction: column;
    align-items: stretch;
  }

  /* remove fixed height on mobile so it can wrap */
  .subscription-bar {
    height: auto;
    flex: 0 0 auto;
  }

  .subscription-right { align-items: stretch; }

  .subscription-controls {
    width: 100%;
    max-width: 100%;
    flex: 0 0 auto;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .subscription-input { width: 100%; }

  .subscription-left { min-width: 0; }
}

/* IMPORTANT: make the HTML `hidden` attribute always work */
#subscribeMain[hidden],
#subscribeSuccess[hidden],
#subscribeError[hidden]{
  display: none !important;
}

.site-card--full .card-content { position: relative; z-index: 2; }
.subscription-bar { position: relative; z-index: 1; }

/* ========================= */
/* SLIDE HEADER              */
/* ========================= */

.slide-header{
  text-align: center;
  margin-bottom: 18px;          /* space before the rest of the slide */
}

.slide-title{
  margin-bottom: 8px;
  font-size: 25px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
}

.slide-subtitle{
  margin-bottom: 14px;
  font-size: 12px;
  color: #9a9a9a;
  text-transform: uppercase;
}

/* 1px line under title/subtitle */
.slide-divider{
  width: 100%;
  max-width: 700px;            /* match your content width */
  height: 1px;
  background: #242424;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
}


/* ========================= */
/* Coming Soon Pill             */
/* ========================= */

.coming-soon-pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 5px;

  padding: 4px 5px;
  border-radius: 6px;

  background: #331d17;      /* dark “rust” tint */
  border: 1px solid #542618;/* outer glow rim */

  color: #ff431a;
  font-size: 10px;
  letter-spacing: 0.0em;
  text-transform: uppercase;
}

