/* ---------------------------------------------------------
   Terry Lee Morgan — Subscribe Section (v1.2)
   - Smooth gold sweep fill
   - Rounded corners always (no broken edges)
   - Proper text color contrast on hover
   --------------------------------------------------------- */

:root{
  --gold:   #d6b36a;
  --gold-2: #f0d79a;
  --gold-3: #8a6e37;
}

/* Gradient text utility */
.gradient-text{
  background: var(--grad-hero);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 18px rgba(0,0,0,.25);
}

/* Catchphrase */
.catchphrase{
  font-family: "Montserrat", serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.4rem, 4vw, 2rem);
  margin: 0 0 .75rem;
  text-align: center;
  letter-spacing: .5px;
}

/* Supporting paragraph */
.subscribe-subtext{
  max-width: 720px;
  margin: 0 auto 1.4rem;
  color: #d4d6e0;
  font-size: clamp(.95rem, 2.6vw, 1.05rem);
  line-height: 1.7;
  text-align: center;
}

/* Form layout */
.subscribe-form{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .75rem;
  flex-wrap: nowrap;
}

.subscribe-form input[type="email"]{
  flex: 1 1 420px;
  min-width: min(420px, 70vw);
  font-family: "Montserrat", sans-serif;
  background: #0d1025;
  color: #f1f3fa;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  padding: 14px 16px;
  height: 52px;
  max-height: 52px;
  font-size: 1rem;
  outline: none;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.subscribe-form input[type="email"]::placeholder{ color:#9ca3b8; }
.subscribe-form input[type="email"]:focus{
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(214,179,106,.18);
  background:#141630;
}

/* Button with smooth sweep */
.btn-outline-gold{
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  height: 52px; padding: 0 34px;
  cursor: pointer; user-select: none;
  text-transform: uppercase; letter-spacing: .12em;
  font-weight: 800; font-size: .95rem;
  background: transparent; color: var(--gold);
  border: 1.6px solid var(--gold);
  border-radius: 10px;
  overflow: hidden;
  transition: transform .06s ease, color .25s ease, filter .25s ease;
  isolation: isolate;
}

/* Sweep layer */
.btn-outline-gold::before{
  content:""; position:absolute; inset:0; z-index:-1;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .45s ease;
  border-radius: inherit;
}

.btn-outline-gold:hover{
  color:#0b0b10; /* contrast against gold fill */
  filter: drop-shadow(0 0 22px rgba(214,179,106,.25));
}
.btn-outline-gold:hover::before{ transform: scaleX(1); }

.btn-outline-gold:active{ transform: translateY(1px) scale(.99); }

/* Fine print */
.fine-print{ margin:.6rem 0 0; color:#C6CBDC; font-size:.9rem; text-align:center; }
.fine-print.alt{ max-width: 760px; margin: .7rem auto 0; }

/* Mobile polish */
@media (max-width: 780px){
  .subscribe-form{ flex-direction: column; align-items: stretch; }
  .subscribe-form input[type="email"]{
    min-width: 0; width: 100%;
    height: 48px; max-height: 48px; padding: 12px 14px; border-radius: 8px;
  }
  .btn-outline-gold{ width: 100%; height: 48px; }
}
