/* Theme 1 — Stillwater
   Cool mist paper + deep teal ink. Horizon wash is the signature.
   Tokens only — material structure lives in the HTML templates. */

@import url("https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;600;700&family=Newsreader:opsz,wght@6..72,500;6..72,600;6..72,700&display=swap");

:root {
  --t1-paper: #e6ecee;
  --t1-foam: #f4f8f9;
  --t1-ink: #122f36;
  --t1-ink-soft: #3a555c;
  --t1-sea: #2a6b75;
  --t1-sea-deep: #1a4a52;
  --t1-horizon: #b89a4f;
  --t1-line: rgba(18, 47, 54, 0.12);
  --t1-shadow: 0 18px 40px -24px rgba(18, 47, 54, 0.45);
  --t1-display: "Newsreader", "Times New Roman", serif;
  --t1-body: "Figtree", system-ui, sans-serif;
  --t1-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .t1-rise,
  .t1-horizon__glow {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

body.t1-page {
  margin: 0;
  font-family: var(--t1-body);
  color: var(--t1-ink);
  background: var(--t1-paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.t1-page a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.t1-wrap {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.t1-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--t1-line);
  background: rgba(244, 248, 249, 0.88);
  backdrop-filter: blur(10px);
}

.t1-wordmark {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  text-decoration: none;
  min-width: 0;
}

.t1-wordmark strong {
  font-family: var(--t1-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.t1-wordmark span {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--t1-ink-soft);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.t1-topbar__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--t1-sea-deep);
}

.t1-topbar__phone svg {
  width: 1.1rem;
  height: 1.1rem;
}

.t1-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.25rem;
  border-radius: 0.35rem;
  font-family: var(--t1-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 160ms var(--t1-ease), opacity 160ms var(--t1-ease),
    background-color 160ms var(--t1-ease), color 160ms var(--t1-ease),
    border-color 160ms var(--t1-ease);
}

.t1-btn svg {
  width: 1.05rem;
  height: 1.05rem;
}

.t1-btn:hover {
  transform: translateY(-1px);
}

.t1-btn:active {
  transform: translateY(0);
  opacity: 0.92;
}

.t1-btn:focus-visible {
  outline: 2px solid var(--t1-horizon);
  outline-offset: 3px;
}

.t1-btn--sea {
  background: var(--t1-sea);
  color: #f7fbfc;
  box-shadow: var(--t1-shadow);
}

.t1-btn--sea:hover {
  background: var(--t1-sea-deep);
}

.t1-btn--ghost {
  background: transparent;
  border-color: rgba(18, 47, 54, 0.22);
  color: var(--t1-ink);
}

.t1-btn--ghost:hover {
  border-color: var(--t1-sea);
  color: var(--t1-sea-deep);
}

.t1-btn--gold {
  background: var(--t1-horizon);
  color: #1a1a12;
  box-shadow: 0 16px 36px -20px rgba(184, 154, 79, 0.7);
}

.t1-btn--gold:hover {
  filter: brightness(1.05);
}

/* Hero — full-bleed stillwater horizon */
.t1-hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: flex;
  align-items: flex-end;
  padding: 4.5rem 0 3.5rem;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 70% 10%, rgba(42, 107, 117, 0.18), transparent 55%),
    linear-gradient(180deg, #d5e2e5 0%, var(--t1-paper) 48%, #c9d8dc 100%);
}

.t1-horizon {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.t1-horizon__glow {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: 18%;
  height: 42%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(42, 107, 117, 0.22) 40%,
    rgba(18, 47, 54, 0.35) 100%
  );
  filter: blur(0.5px);
  animation: t1-drift 14s var(--t1-ease) infinite alternate;
}

.t1-horizon__line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(184, 154, 79, 0.55),
    transparent
  );
}

@keyframes t1-drift {
  from {
    transform: translateY(0);
    opacity: 0.85;
  }
  to {
    transform: translateY(8px);
    opacity: 1;
  }
}

.t1-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  max-width: 40rem;
}

.t1-brand-signal {
  font-family: var(--t1-display);
  font-size: clamp(2.4rem, 6vw, 4.25rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin: 0;
}

.t1-brand-signal em {
  font-style: italic;
  font-weight: 500;
  color: var(--t1-sea-deep);
}

.t1-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--t1-sea);
}

.t1-lead {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--t1-ink-soft);
  max-width: 36rem;
}

.t1-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.t1-consent {
  margin: 1rem 0 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--t1-ink-soft);
  max-width: 34rem;
}

.t1-consent a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Sections */
.t1-section {
  padding: 4.5rem 0;
}

.t1-section--foam {
  background: var(--t1-foam);
}

.t1-section--ink {
  background: var(--t1-ink);
  color: #e8f0f2;
}

.t1-section--ink .t1-lead,
.t1-section--ink .t1-muted {
  color: rgba(232, 240, 242, 0.72);
}

.t1-h2 {
  font-family: var(--t1-display);
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 0.85rem;
}

.t1-muted {
  margin: 0;
  color: var(--t1-ink-soft);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 38rem;
}

.t1-split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 880px) {
  .t1-split {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
  }
}

.t1-points {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.t1-points li {
  padding-left: 1.1rem;
  border-left: 2px solid var(--t1-horizon);
}

.t1-points strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.t1-points span {
  color: var(--t1-ink-soft);
  font-size: 0.95rem;
}

.t1-section--ink .t1-points span {
  color: rgba(232, 240, 242, 0.7);
}

.t1-portrait {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 0.4rem;
  box-shadow: var(--t1-shadow);
  background: #c5d4d8;
}

.t1-portrait--logo {
  object-fit: contain;
  aspect-ratio: 1;
  max-width: 320px;
  padding: 2rem;
  background: #fff;
}

.t1-portrait--placeholder {
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #9bb6bc, #2a6b75);
  color: #f4f8f9;
  font-family: var(--t1-display);
  font-size: 5rem;
  font-weight: 600;
}

.t1-meet-meta {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: var(--t1-ink-soft);
}

.t1-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

/* Thank-you */
.t1-ty-hero {
  padding: 3.5rem 0 2.5rem;
  background:
    radial-gradient(90% 60% at 20% 0%, rgba(184, 154, 79, 0.16), transparent 50%),
    var(--t1-foam);
}

.t1-stamp {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--t1-sea);
}

.t1-stamp__check {
  display: inline-grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: var(--t1-sea);
  color: #fff;
}

.t1-stamp__check svg {
  width: 0.85rem;
  height: 0.85rem;
}

.t1-callcard {
  margin-top: 1.75rem;
  padding: 1.35rem 1.4rem;
  border: 1px solid var(--t1-line);
  border-radius: 0.45rem;
  background: #fff;
  box-shadow: var(--t1-shadow);
}

.t1-callcard__label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t1-ink-soft);
  margin-bottom: 0.35rem;
}

.t1-callcard a.t1-phone-xl {
  display: inline-block;
  font-family: var(--t1-display);
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--t1-sea-deep);
}

.t1-callcard a.t1-phone-xl:hover {
  color: var(--t1-sea);
}

.t1-callcard a.t1-phone-xl:focus-visible {
  outline: 2px solid var(--t1-horizon);
  outline-offset: 3px;
}

.t1-callcard__hint {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--t1-ink-soft);
}

.t1-callcard__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.1rem;
}

.t1-resources {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

@media (min-width: 720px) {
  .t1-resources {
    grid-template-columns: 1fr 1fr;
  }
}

.t1-resource {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.1rem 1.15rem;
  text-decoration: none;
  border: 1px solid var(--t1-line);
  border-radius: 0.35rem;
  background: var(--t1-foam);
  transition: transform 160ms var(--t1-ease), border-color 160ms var(--t1-ease);
}

.t1-resource:hover {
  transform: translateY(-2px);
  border-color: rgba(42, 107, 117, 0.45);
}

.t1-resource:focus-visible {
  outline: 2px solid var(--t1-horizon);
  outline-offset: 3px;
}

.t1-resource strong {
  font-size: 1.02rem;
  letter-spacing: -0.01em;
}

.t1-resource span {
  font-size: 0.9rem;
  color: var(--t1-ink-soft);
  line-height: 1.45;
}

.t1-footer {
  background: #0d2228;
  color: rgba(255, 255, 255, 0.7);
  padding: 2.5rem 0 3rem;
}

.t1-footer .site-legal__title,
.t1-footer .site-legal__heading {
  margin: 0 0 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.t1-footer .site-legal__block p {
  margin: 0 0 0.55rem;
}

.t1-rise {
  opacity: 0;
  transform: translateY(12px);
  animation: t1-rise 700ms var(--t1-ease) forwards;
}

.t1-rise--2 {
  animation-delay: 80ms;
}

.t1-rise--3 {
  animation-delay: 160ms;
}

@keyframes t1-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .t1-topbar .t1-btn {
    display: none;
  }
  .t1-hero {
    min-height: auto;
    padding-top: 3rem;
  }
}

.t1-sms-body {
  display: grid;
  gap: 1.25rem;
  margin-top: 0.5rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--t1-ink-soft);
}

.t1-sms-body p {
  margin: 0;
}

.t1-sms-h {
  margin: 0.5rem 0 0;
  font-family: var(--t1-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t1-ink);
}

.t1-sms-pending {
  margin: 0 0 1.5rem;
  padding: 0.85rem 1rem;
  border: 1px dashed rgba(184, 154, 79, 0.7);
  border-radius: 0.35rem;
  background: rgba(184, 154, 79, 0.12);
  font-size: 0.9rem;
  color: var(--t1-ink);
}

.t1-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  margin: 0 0 1.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

.t1-footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.t1-footer-links a:hover {
  color: #fff;
}

.t1-footer-links a:focus-visible {
  outline: 2px solid var(--t1-horizon);
  outline-offset: 3px;
}

.t1-legal-page__wrap {
  max-width: 42rem;
}

.t1-legal-page__body {
  margin-bottom: 2rem;
}

.t1-legal-page .site-legal,
.t1-legal-page .site-legal p,
.t1-legal-page .site-legal div {
  color: var(--t1-ink-soft);
}

.t1-legal-page .site-legal__title,
.t1-legal-page .site-legal__heading {
  color: var(--t1-ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 0.4rem;
}

.t1-legal-page .site-legal__block {
  margin-bottom: 1.35rem;
}

.t1-legal-page .site-legal a {
  color: var(--t1-sea-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.t1-legal-page__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  font-size: 0.9rem;
  color: var(--t1-ink-soft);
}

.t1-legal-page__links a {
  color: var(--t1-sea-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}
