/* Reprise Coaching — shared site stylesheet.
   Colors, type, spacing here are the "Harbour" brand tokens — treat as
   source of truth, don't introduce other colors. See design-handoff/
   for the full token reference this was built from. */

:root {
  --rc-teal: #14343B;
  --rc-teal-500: #2A5A64;
  --rc-teal-900: #0C2126;
  --rc-amber: #E0A33E;
  --rc-amber-200: #F7E3BF;
  --rc-amber-600: #C78A28;
  --rc-amber-deep: #8A5D14;
  --rc-mist: #EDF0F0;
  --rc-mist-300: #9DB2B6;
  --rc-seafoam: #5B7A80;
  --rc-paper: #F7F9F9;
}

/* ---- Base ---- */

body.page {
  background: var(--rc-mist);
  font-family: 'Public Sans', sans-serif;
  color: var(--rc-teal);
}

a {
  color: var(--rc-amber-deep);
}

a:hover {
  color: var(--rc-amber-600);
}

.rc-page ::selection {
  background: var(--rc-amber);
  color: var(--rc-teal);
}

.rc-page {
  max-width: 1600px;
  margin: 0 auto;
  background: var(--rc-mist);
}

.rc-page h1,
.rc-page h2,
.rc-page h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
}

/* ---- Nav ---- */

.rc-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: clamp(24px, 4vw, 40px) clamp(24px, 8vw, 96px);
  flex-wrap: wrap;
}

.rc-nav--solid {
  background: var(--rc-teal);
}

.rc-nav--transparent {
  position: relative;
  z-index: 2;
}

.rc-nav-logo {
  display: block;
}

.rc-nav-logo img {
  height: 44px;
  display: block;
}

.rc-nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  flex-wrap: wrap;
}

.rc-nav-links .rc-nav-link--active {
  color: var(--rc-amber);
}

.rc-nav-links .rc-nav-link--active:hover {
  color: var(--rc-amber-600);
}

.rc-nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
}

.rc-nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--rc-mist);
}

.rc-nav-toggle[aria-expanded="true"] .rc-nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.rc-nav-toggle[aria-expanded="true"] .rc-nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.rc-nav-toggle[aria-expanded="true"] .rc-nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.rc-nav-toggle-label {
  position: absolute;
  left: -9999px;
}

.rc-nav-toggle:focus-visible {
  outline: 2px solid var(--rc-amber);
  outline-offset: 2px;
}

/* ---- Page header (About / Services / Contact / Book intro) ---- */

.rc-page-header h1 {
  font-size: clamp(40px, 7vw, 80px);
  line-height: 1.05;
  color: var(--rc-teal);
  margin: 0 0 32px 0;
}

.rc-page-header p {
  font-size: 19px;
  line-height: 1.7;
  color: var(--rc-teal);
  max-width: 620px;
  margin: 0 0 40px 0;
}

.rc-about-page h1 {
  max-width: 18ch;
}

.rc-services-page h1 {
  max-width: 16ch;
  margin-bottom: 56px;
}

.rc-contact-page h1 {
  max-width: 16ch;
}

.rc-book-page {
  text-align: center;
}

.rc-book-page .rc-eyebrow {
  justify-content: center;
}

.rc-book-page h1 {
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
}

.rc-book-page p {
  margin-left: auto;
  margin-right: auto;
}

.rc-book-calendar {
  margin: 40px auto 0;
  max-width: 640px;
  background: var(--rc-paper);
  border: 1px solid var(--rc-seafoam);
  line-height: 0;
}

.rc-book-calendar iframe {
  display: block;
  height: 650px;
}

p.rc-book-fallback {
  font-size: 15px;
  color: var(--rc-seafoam);
  margin-top: 20px;
  margin-bottom: 0;
}

/* ---- Contact form ---- */

.rc-contact-row {
  display: flex;
  gap: clamp(32px, 5vw, 64px);
  align-items: flex-start;
  flex-wrap: wrap;
}

.rc-form-card {
  flex: 1.5 1 420px;
  min-width: 340px;
}

.rc-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.rc-form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rc-form-field label {
  font-size: 14px;
  font-weight: 600;
  color: var(--rc-teal);
}

.rc-form-field input[type="text"],
.rc-form-field input[type="email"],
.rc-form-field textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  font-family: 'Public Sans', sans-serif;
  font-size: 16px;
  color: var(--rc-teal);
  background: var(--rc-mist);
  border: 1px solid var(--rc-seafoam);
  border-radius: 0;
  outline: none;
}

.rc-form-field textarea {
  resize: vertical;
}

.rc-form-field input:focus-visible,
.rc-form-field textarea:focus-visible {
  outline: 2px solid var(--rc-amber-deep);
  outline-offset: 2px;
}

.rc-form-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.6;
  color: var(--rc-teal);
}

.rc-form-consent input {
  margin-top: 3px;
  flex: none;
}

.rc-form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.rc-form-error {
  display: none;
  background: var(--rc-amber-200);
  padding: 14px 16px;
  font-size: 15px;
  color: var(--rc-teal);
}

.rc-form-error.is-visible {
  display: block;
}

.rc-contact-sent {
  display: none;
  text-align: left;
}

.rc-contact-sent.is-visible {
  display: block;
}

.rc-contact-sent h2 {
  font-size: clamp(28px, 4vw, 36px);
  color: var(--rc-teal);
  margin: 0 0 12px 0;
}

.rc-contact-sent p {
  font-size: 19px;
  line-height: 1.7;
  color: var(--rc-teal);
  margin: 0 0 28px 0;
}

.rc-contact-sidebar {
  flex: 1 1 280px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.rc-contact-card {
  padding: clamp(24px, 3vw, 32px);
}

.rc-contact-card--light {
  background: var(--rc-mist);
}

.rc-contact-details {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 16px;
  color: var(--rc-teal);
}

.rc-contact-details-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--rc-seafoam);
  margin-bottom: 3px;
}

.rc-contact-card--dark {
  background: var(--rc-teal-900);
}

.rc-contact-card--dark h3 {
  font-size: 20px;
  color: var(--rc-mist);
  margin: 0 0 10px 0;
}

.rc-contact-card--dark p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--rc-mist-300);
  margin: 0 0 20px 0;
}

/* ---- Repeat-sign brand mark ---- */

.rc-mark {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 16px;
}

.rc-mark--lg {
  height: 18px;
}

.rc-mark-bar1 {
  width: 5px;
  height: 100%;
}

.rc-mark-bar2 {
  width: 2px;
  height: 100%;
}

.rc-mark-dots {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-left: 3px;
}

.rc-mark-dots span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  display: block;
}

.rc-mark--amber .rc-mark-bar1,
.rc-mark--amber .rc-mark-bar2,
.rc-mark--amber .rc-mark-dots span {
  background: var(--rc-amber);
}

.rc-mark--teal .rc-mark-bar1,
.rc-mark--teal .rc-mark-bar2,
.rc-mark--teal .rc-mark-dots span {
  background: var(--rc-teal);
}

.rc-mark-divider {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(32px, 5vw, 56px);
}

/* ---- Eyebrow label ---- */

.rc-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.rc-eyebrow-text {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rc-eyebrow-text--amber-deep {
  color: var(--rc-amber-deep);
}

.rc-eyebrow-text--amber {
  color: var(--rc-amber);
}

/* ---- Section shells ---- */

.rc-section {
  padding: clamp(64px, 10vw, 140px) clamp(24px, 8vw, 96px);
}

.rc-section--mist {
  background: var(--rc-mist);
}

.rc-section--paper {
  background: var(--rc-paper);
}

.rc-section--teal {
  background: var(--rc-teal);
}

.rc-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.rc-section-inner--narrow {
  max-width: 900px;
}

/* ---- Hero ---- */

.rc-hero {
  position: relative;
  overflow: hidden;
  background: var(--rc-teal);
  min-height: min(860px, 100vh);
  display: flex;
  flex-direction: column;
}

.rc-hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rc-hero-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 52, 59, 0.9) 0%, rgba(20, 52, 59, 0.72) 40%, rgba(20, 52, 59, 0.9) 100%);
  pointer-events: none;
}

.rc-hero-content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 clamp(32px, 8vw, 120px) clamp(32px, 8vw, 120px);
}

.rc-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: clamp(20px, 3vw, 28px);
}

.rc-hero h1 {
  font-size: clamp(40px, 7vw, 80px);
  line-height: 1.05;
  color: var(--rc-mist);
  margin: 0 0 12px 0;
  letter-spacing: -0.01em;
  max-width: 16ch;
}

.rc-hero-rule {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: clamp(14px, 2vw, 20px) 0 clamp(20px, 3vw, 28px) 0;
}

.rc-hero-lead {
  font-size: 19px;
  line-height: 1.7;
  color: var(--rc-mist-300);
  max-width: 38ch;
  margin: 0 0 40px 0;
}

.rc-hero-ctas {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  flex-wrap: wrap;
  justify-content: center;
}

/* ---- Buttons & links ---- */

.rc-btn {
  display: inline-flex;
  align-items: center;
  background: var(--rc-amber);
  color: var(--rc-teal);
  font-family: 'Public Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  padding: 18px 32px;
  text-decoration: none;
  border: none;
  border-radius: 2px;
  cursor: pointer;
}

.rc-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.rc-btn:hover {
  background: var(--rc-amber-600);
  color: var(--rc-teal);
}

.rc-btn:focus-visible {
  outline: 2px solid var(--rc-amber);
  outline-offset: 2px;
}

.rc-btn--ghost {
  background: transparent;
  border: 1px solid var(--rc-teal);
  color: var(--rc-teal);
}

.rc-btn--ghost:hover {
  background: var(--rc-teal);
  color: var(--rc-mist);
}

.rc-link-light {
  font-size: 18px;
  font-weight: 600;
  color: var(--rc-mist);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.rc-link-light:hover {
  color: var(--rc-amber);
}

.rc-link-light:focus-visible {
  outline: 2px solid var(--rc-amber);
  outline-offset: 2px;
}

.rc-link {
  font-size: 18px;
  font-weight: 600;
  color: var(--rc-amber-deep);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.rc-link:hover {
  color: var(--rc-amber-600);
}

.rc-link:focus-visible {
  outline: 2px solid var(--rc-amber-deep);
  outline-offset: 2px;
}

.rc-link--lg {
  font-size: 19px;
}

/* ---- Recognition ---- */

.rc-recognition-body {
  max-width: 640px;
  margin-left: auto;
}

.rc-recognition-body p {
  font-size: 19px;
  line-height: 1.7;
  color: var(--rc-teal);
  margin: 0 0 28px 0;
}

.rc-recognition-body p:last-child {
  margin-bottom: 0;
}

/* ---- Who this is for ---- */

.rc-section h2 {
  font-size: clamp(30px, 4.5vw, 52px);
  line-height: 1.2;
  color: var(--rc-teal);
  margin: 0 0 24px 0;
  max-width: 20ch;
}

.rc-section-intro {
  font-size: 19px;
  line-height: 1.7;
  color: var(--rc-teal);
  max-width: 700px;
  margin: 0 0 56px 0;
}

.rc-recognition h2 {
  margin-bottom: 32px;
}

.rc-numbered-rows {
  display: flex;
  flex-direction: column;
}

.rc-numbered-row {
  display: flex;
  gap: clamp(20px, 4vw, 48px);
  padding: 28px 0;
  border-top: 1px solid var(--rc-seafoam);
}

.rc-numbered-row:last-child {
  border-bottom: 1px solid var(--rc-seafoam);
}

.rc-numbered-row-num {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  color: var(--rc-amber-deep);
  flex-shrink: 0;
  width: 3ch;
}

.rc-numbered-row p {
  font-size: 19px;
  line-height: 1.7;
  color: var(--rc-teal);
  margin: 0;
  max-width: 620px;
}

/* ---- Founder story ---- */

.rc-story-inner {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 5vw, 48px);
}

.rc-story-inner h2 {
  max-width: 16ch;
}

.rc-story-columns {
  display: flex;
  gap: clamp(24px, 5vw, 64px);
  flex-wrap: wrap;
}

.rc-story-text {
  flex: 1 1 420px;
  min-width: 0;
}

.rc-story-text p {
  font-size: 19px;
  line-height: 1.7;
  color: var(--rc-teal);
  margin: 0 0 28px 0;
}

.rc-story-text p:last-child {
  margin-bottom: 0;
}

.rc-pull-quote {
  flex: 1 1 320px;
  min-width: 0;
  background: var(--rc-amber-200);
  padding: clamp(28px, 4vw, 40px);
  align-self: flex-start;
}

.rc-pull-quote p {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.5;
  color: var(--rc-teal);
  margin: 0;
}

.rc-story-closing {
  font-size: 19px;
  line-height: 1.7;
  color: var(--rc-teal);
  max-width: 680px;
  margin: 0;
}

/* ---- What we offer ---- */

.rc-offer-section h2 {
  margin-bottom: 56px;
}

.rc-offer-rows {
  display: flex;
  flex-direction: column;
}

.rc-offer-row {
  display: flex;
  gap: clamp(24px, 5vw, 56px);
  padding: 40px 0;
  border-top: 1px solid var(--rc-seafoam);
  flex-wrap: wrap;
}

.rc-offer-row:last-child {
  border-bottom: 1px solid var(--rc-seafoam);
}

.rc-offer-num {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5vw, 64px);
  color: var(--rc-amber);
  flex-shrink: 0;
  width: 2ch;
  line-height: 1;
}

.rc-offer-body {
  flex: 1 1 420px;
  min-width: 0;
}

.rc-offer-body h3 {
  font-size: clamp(24px, 2.8vw, 32px);
  color: var(--rc-teal);
  margin: 0 0 16px 0;
}

.rc-offer-body p {
  font-size: 19px;
  line-height: 1.7;
  color: var(--rc-teal);
  max-width: 620px;
  margin: 0 0 20px 0;
}

/* ---- How we're different (dark band) ---- */

.rc-different h2 {
  color: var(--rc-mist);
  max-width: 18ch;
}

.rc-different-body {
  max-width: 660px;
  margin-left: auto;
}

.rc-different-body p {
  font-size: 19px;
  line-height: 1.7;
  color: var(--rc-mist-300);
  margin: 0 0 28px 0;
}

.rc-different-body p:last-child {
  margin-bottom: 0;
}

/* ---- About Brian ---- */

.rc-about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: clamp(32px, 6vw, 72px);
  flex-wrap: wrap-reverse;
  align-items: flex-start;
}

.rc-about-text {
  flex: 1 1 420px;
  min-width: 0;
}

.rc-about-text h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin: 0 0 28px 0;
}

.rc-about-text p {
  font-size: 19px;
  line-height: 1.7;
  color: var(--rc-teal);
  max-width: 620px;
  margin: 0 0 24px 0;
}

.rc-about-text p:last-child {
  margin-bottom: 0;
}

.rc-about-photo {
  flex: 0 1 320px;
  min-width: 220px;
}

.rc-about-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

/* ---- Final CTA (dark band) ---- */

.rc-final-cta {
  padding: clamp(72px, 12vw, 160px) clamp(24px, 8vw, 96px);
  text-align: center;
}

.rc-final-cta .rc-mark-divider {
  margin-bottom: 32px;
}

.rc-final-cta h2 {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.15;
  color: var(--rc-mist);
  margin: 0 auto 24px auto;
  max-width: 16ch;
}

.rc-final-cta p {
  font-size: 19px;
  line-height: 1.7;
  color: var(--rc-mist-300);
  max-width: 52ch;
  margin: 0 auto 40px auto;
}

/* ---- Footer ---- */

.rc-footer {
  background: var(--rc-teal-900);
  padding: clamp(40px, 6vw, 64px) clamp(24px, 8vw, 96px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}

.rc-footer-logo {
  height: 28px;
  display: block;
}

.rc-footer p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--rc-mist-300);
  margin: 0;
}

.rc-footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.rc-footer-links a {
  font-size: 16px;
  color: var(--rc-amber);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rc-footer-links a:hover {
  color: var(--rc-amber-600);
}

.rc-footer-links a:focus-visible {
  outline: 2px solid var(--rc-amber);
  outline-offset: 2px;
}

.rc-footer-links span {
  font-size: 16px;
  color: var(--rc-mist-300);
}

/* ---- Mobile nav (hamburger) ---- */

@media (max-width: 768px) {
  .rc-nav {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
    position: relative;
    gap: 0;
  }

  .rc-nav-logo {
    grid-column: 2;
    justify-self: center;
  }

  .rc-nav-toggle {
    grid-column: 3;
    justify-self: end;
    display: flex;
  }

  .rc-nav-links {
    display: none;
    grid-column: 1 / -1;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 10;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    background: var(--rc-teal);
    padding: 32px 24px;
  }

  .rc-nav-links.is-open {
    display: flex;
  }

  /* Homepage hero already repeats the "Reprise Coaching" name in the
     header logo directly above; the eyebrow label is redundant at
     mobile width and just adds clutter above the H1. */
  .rc-hero-eyebrow {
    display: none;
  }

  /* Google's appointment-schedule embed stacks the calendar and time
     list vertically at narrow widths instead of side-by-side, so it
     needs roughly double the desktop height to avoid an inner
     scrollbar. There's no resize API for this embed to size it
     precisely — this is a tuned fixed height, not an exact fit. */
  .rc-book-calendar iframe {
    height: 1050px;
  }
}
