/* TTC Living — shared partner landing page styles */
:root {
  --cream: #f4ede0;
  --cream-deep: #ebe1cf;
  --cream-soft: #fbf6ec;
  --ink: #1a2438;
  --ink-soft: #2a3147;
  --gold: #8a6b2e;
  --gold-lt: #b08a3e;
  --rule: #1a2438;
  --grey: #5a5f6c;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---------- HERO BAND (no image dependency) ---------- */
.hero-band {
  background: linear-gradient(160deg, #1a2438 0%, #223052 60%, #1a2438 100%);
  text-align: center;
  padding: 106px 28px 56px;
}

/* ---------- SITE NAV (matches newportbeachttc.com) ---------- */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 72px;
  background: rgba(11,31,58,0.92);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-family: 'DM Sans', Arial, Helvetica, sans-serif;
}
.site-nav .nav-logo { text-decoration: none; display: flex; align-items: center; gap: 12px; }
.site-nav .nav-logo img { height: 44px; width: auto; }
.site-nav .nav-location { font-size: 11px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: #C4973A; }
.site-nav .nav-links { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; }
.site-nav .nav-links a { font-size: 12px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.72); text-decoration: none; transition: color 0.2s; }
.site-nav .nav-links a:hover { color: #C4973A; }
.site-nav .nav-cta { background: #C4973A; color: #0B1F3A !important; padding: 10px 22px; }
.site-nav .nav-cta:hover { background: #e0b96a; }
@media (max-width: 900px) { .site-nav { padding: 0 24px; } .site-nav .nav-links { display: none; } }

/* ---------- SITE FOOTER (matches newportbeachttc.com) ---------- */
.site-footer { background: #060e1c; padding: 64px 48px 36px; font-family: 'DM Sans', Arial, Helvetica, sans-serif; }
.site-footer .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 36px; }
.site-footer .footer-brand { display: inline-flex; align-items: center; margin-bottom: 18px; text-decoration: none; }
.site-footer .footer-brand img { height: 40px; width: auto; }
.site-footer .footer-tagline { font-family: 'Cormorant Garamond', serif; font-size: 15px; font-style: italic; color: rgba(255,255,255,0.45); line-height: 1.7; margin: 0 0 20px; }
.site-footer .footer-address { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.8; margin: 0; }
.site-footer .footer-col-title { font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: #C4973A; margin-bottom: 18px; }
.site-footer .footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; margin: 0; padding: 0; }
.site-footer .footer-links a { font-size: 14px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.site-footer .footer-links a:hover { color: #ffffff; }
.site-footer .footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.site-footer .footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); margin: 0; }
.site-footer .footer-copy span { color: #C4973A; }
.site-footer .legal-links { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.site-footer .legal-links a { color: #8a96a3; text-decoration: none; font-family: 'IBM Plex Mono', monospace; letter-spacing: 0.14em; font-size: 11px; text-transform: uppercase; }
.site-footer .legal-links a:hover { color: #C4973A; }
@media (max-width: 900px) { .site-footer { padding: 48px 28px 32px; } .site-footer .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 560px) { .site-footer .footer-top { grid-template-columns: 1fr; } .site-footer .footer-bottom { flex-direction: column; align-items: flex-start; } }
.hero-band .eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 20px;
}
.hero-band h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1.08;
  color: #f6efe2;
  margin: 0 auto 22px;
  max-width: 760px;
}
.hero-band h1 em { font-style: italic; color: var(--gold-lt); font-weight: 500; }
.hero-band .tag {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #f6efe2;
  border: 1px solid rgba(176,138,62,0.55);
  padding: 9px 20px;
}

.wrap { max-width: 820px; margin: 0 auto; padding: 30px 28px 60px; }

.sec { padding-top: 38px; margin-top: 22px; border-top: 2px solid var(--rule); }
.sec.first { border-top: none; padding-top: 26px; margin-top: 0; }
.sec-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--ink);
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 500;
}
.sec p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 14px;
}
.sec p:last-child { margin-bottom: 0; }
.sec a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

.deal {
  background: var(--cream-soft);
  border: 1px solid rgba(26,36,56,0.18);
  border-left: 4px solid var(--gold);
  padding: 26px 24px;
  margin-top: 8px;
}
.deal .eb {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 0.24em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.deal h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 26px;
  color: var(--ink);
  margin: 0 0 10px;
  line-height: 1.15;
}
.deal h3 em { color: var(--gold); font-style: italic; font-weight: 500; }
.deal p { font-family: 'Cormorant Garamond', serif; font-size: 18px; line-height: 1.5; color: var(--ink); margin: 0; }
.deal code {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.86em;
  letter-spacing: 0.05em;
  background: #efe6d3;
  border: 1px solid rgba(138,107,46,0.4);
  padding: 1px 7px;
  color: var(--gold);
}

.benefits { margin-top: 8px; list-style: none; padding: 0; column-count: 2; column-gap: 36px; }
@media (max-width: 640px) { .benefits { column-count: 1; } }
.benefits li {
  padding: 9px 0 9px 22px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--ink);
  line-height: 1.4;
  break-inside: avoid;
  position: relative;
}
.benefits li::before {
  content: '';
  position: absolute;
  left: 0; top: 16px;
  width: 8px; height: 8px;
  border: 1.5px solid var(--gold);
  transform: rotate(45deg);
}

/* ---------- FORM ---------- */
.signup { background: var(--cream-soft); border: 1px solid rgba(26,36,56,0.18); padding: 36px 34px; margin-top: 42px; }
.signup-eb {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px; letter-spacing: 0.28em; color: var(--gold); text-transform: uppercase; margin-bottom: 8px;
}
.signup .sub { font-size: 17px; color: var(--ink); line-height: 1.55; margin: 0 0 22px; }
.field { margin-bottom: 16px; }
.field label {
  display: block; font-family: 'IBM Plex Mono', monospace; font-size: 10.5px;
  letter-spacing: 0.24em; color: var(--ink); text-transform: uppercase; margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 13px; background: #ffffff;
  border: 1px solid rgba(26,36,56,0.28); border-radius: 0; color: var(--ink);
  font-family: 'Cormorant Garamond', serif; font-size: 17px;
  -webkit-appearance: none; appearance: none; line-height: 1.4;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ink); }
.field textarea { min-height: 86px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 540px) { .field-row { grid-template-columns: 1fr; } }
.submit-btn {
  width: 100%; background: var(--ink); color: var(--cream); border: none; padding: 16px;
  font-family: 'IBM Plex Mono', monospace; font-size: 13px; letter-spacing: 0.24em;
  text-transform: uppercase; cursor: pointer; margin-top: 8px; transition: background 0.15s;
}
.submit-btn:hover { background: var(--ink-soft); }

.success { display: none; background: var(--ink); color: var(--cream); padding: 36px 34px; margin-top: 42px; text-align: center; }
.success.show { display: block; }
.success h3 { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 30px; margin: 0 0 8px; color: var(--cream); }
.success p { font-size: 17px; line-height: 1.6; color: rgba(244,237,224,0.85); margin: 0; }

.disclaimer {
  margin-top: 44px; text-align: center; font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 16px; line-height: 1.55; color: var(--ink);
}
