/* BBI / letsgetdry.com – Coming Soon Page */

:root {
  --pink: #e0177b;
  --blue: #4a6fd4;
  --navy: #1a2d5a;
  --deep-purple: #20144c;
  --text: #444;
}

*, *::before, *::after { box-sizing: border-box; }
html { font-size: 16px; }
body {
  margin: 0;
  min-width: 320px;
  font-family: 'Nunito Sans', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.5;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.wrap {
  width: min(960px, 100%);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 9px 0;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid #e5e5e5;
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo img { width: auto; height: 46px; }
.nav-phone {
  color: #333;
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
}
.nav-phone:hover { color: var(--pink); }

/* Hero */
.hero {
  position: relative;
  min-height: 550px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/header-bg-back.jpg') center center / cover no-repeat;
  transform: scale(1.04);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255,255,255,.93) 0%,
    rgba(255,255,255,.78) 43%,
    rgba(255,255,255,.24) 78%,
    rgba(255,255,255,.05) 100%
  );
}
.hero-front {
  position: absolute;
  z-index: 1;
  right: clamp(-20px, 7vw, 130px);
  bottom: 0;
  height: 100%;
  pointer-events: none;
}
.hero-front img {
  width: auto;
  height: 100%;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 64px;
  padding-bottom: 64px;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--pink);
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
h1 {
  max-width: 620px;
  margin: 0 0 18px;
  color: var(--deep-purple);
  font-family: 'Lato', sans-serif;
  font-size: clamp(2.75rem, 6vw, 4.35rem);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: -.035em;
}
h1 span { color: var(--pink); font-style: italic; }
.hero-copy {
  max-width: 535px;
  margin: 0;
  color: #3d3d3d;
  font-size: 1.13rem;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 17px 24px;
  margin-top: 28px;
}
.btn-grad, .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 26px;
  border-radius: .75rem;
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .065em;
  text-transform: uppercase;
  transition: transform .15s ease, opacity .15s ease, background .15s ease;
}
.btn-grad {
  color: #fff;
  background: linear-gradient(to right, var(--blue), var(--pink));
  box-shadow: 0 8px 18px rgba(43, 79, 160, .18);
}
.btn-grad:hover { opacity: .9; transform: translateY(-1px); }
.text-link {
  color: var(--deep-purple);
  font-size: 1rem;
  font-weight: 800;
}
.text-link:hover { color: var(--pink); }

/* Support card */
.support {
  padding: 42px 0;
  background: linear-gradient(135deg, #fce8f3 0%, #e8eef8 100%);
}
.support-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 23px 28px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 4px 18px rgba(26,45,90,.09);
}
.support-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(to bottom right, var(--blue), var(--pink));
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 1.9rem;
  font-weight: 900;
}
.support h2 {
  margin: 0 0 3px;
  color: #222;
  font-family: 'Lato', sans-serif;
  font-size: 1.45rem;
}
.support p { margin: 0; font-size: 1rem; }
.btn-outline {
  border: 2px solid var(--pink);
  color: var(--pink);
  white-space: nowrap;
}
.btn-outline:hover { background: var(--pink); color: #fff; }

/* Phone bar */
.phone-bar {
  padding: 21px 0;
  background: linear-gradient(to right, var(--blue), var(--pink));
  color: #fff;
  text-align: center;
}
.phone-bar a { font-size: 1.45rem; }
.phone-bar strong {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
}
.phone-bar span { color: rgba(255,255,255,.93); }

/* Footer */
.footer { padding: 20px 0 16px; background: var(--navy); color: rgba(255,255,255,.65); }
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-links { display: flex; gap: 7px; align-items: center; font-size: .95rem; }
.footer-links a:hover { color: #fff; text-decoration: underline; }
.sep { color: rgba(255,255,255,.35); }
.footer-center { color: rgba(255,255,255,.58); font-size: .95rem; text-align: center; }
.footer-center span { font-size: .7rem; }
.footer-logo img { width: auto; height: 44px; }
.footer hr { margin: 12px 0 10px; border: 0; border-top: 1px solid rgba(255,255,255,.15); }
.footer-disclaimer, .footer-copyright { margin: 0; font-size: .78rem; color: rgba(255,255,255,.46); }
.footer-copyright { margin-top: 5px; }

@media (max-width: 680px) {
  .nav-phone { font-size: .9rem; }
  .nav-logo img { height: 38px; }
  .hero { min-height: 500px; align-items: flex-start; }
  .hero-bg { background-position: 60% center; }
  .hero-overlay { background: rgba(255,255,255,.88); }
  .hero-front { opacity: .14; right: -140px; }
  .hero-content { padding-top: 70px; padding-bottom: 60px; }
  h1 { max-width: 420px; font-size: clamp(2.7rem, 13vw, 3.6rem); }
  .hero-copy { font-size: 1.05rem; }
  .support-card { grid-template-columns: auto 1fr; padding: 21px; }
  .btn-outline { grid-column: 1 / -1; width: 100%; }
  .phone-bar a { font-size: 1.12rem; }
  .phone-bar span { display: block; font-size: .98rem; margin-top: 2px; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-center { text-align: left; }
}
