@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Outfit:wght@300;400;500;600;700&display=swap");

:root {
  --ink: #0a1628;
  --ink-soft: #15263d;
  --slate: #3a4f66;
  --stone: #e7ebf0;
  --paper: #f3f6f9;
  --brass: #b8956c;
  --brass-deep: #8f704a;
  --teal: #3d7a7a;
  --white: #ffffff;
  --text: #1c2836;
  --muted: #5c6b7a;
  --max: 1120px;
  --header-h: 4.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-soft: 0 18px 50px rgba(10, 22, 40, 0.08);
  --shadow-card: 0 10px 30px rgba(10, 22, 40, 0.06);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(184, 149, 108, 0.18), transparent 55%),
    radial-gradient(900px 500px at -10% 20%, rgba(61, 122, 122, 0.12), transparent 50%),
    linear-gradient(180deg, #eef2f6 0%, var(--paper) 40%, #e8eef4 100%);
  line-height: 1.6;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(10, 22, 40, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 149, 108, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
}

.brand-logo {
  width: 3.25rem;
  height: 3.25rem;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.brand-tag {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(231, 235, 240, 0.7);
  font-weight: 400;
}

.footer-brand-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.footer-logo {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}

.about-media {
  display: grid;
  gap: 1rem;
}

.about-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.about-media .headshot {
  max-height: 24rem;
  background:
    radial-gradient(circle at 50% 35%, rgba(184, 149, 108, 0.16), transparent 55%),
    linear-gradient(180deg, rgba(21, 38, 61, 0.06), rgba(21, 38, 61, 0.02));
  border: 0;
}
@media (max-width: 860px) {
  .brand-tag {
    display: none;
  }

  .brand-name {
    font-size: 1.15rem;
  }

  .brand-logo {
    width: 2.75rem;
    height: 2.75rem;
  }
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav a {
  color: rgba(243, 246, 249, 0.88);
  font-size: 0.92rem;
  font-weight: 400;
  position: relative;
  transition: color 0.25s var(--ease);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--white);
}

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta {
  margin-left: 0.5rem;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(184, 149, 108, 0.7);
  color: var(--brass) !important;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--brass);
  color: var(--ink) !important;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  padding: 0.45rem 0.7rem;
  font: inherit;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(120deg, rgba(10, 22, 40, 0.82) 10%, rgba(10, 22, 40, 0.45) 55%, rgba(10, 22, 40, 0.7) 100%),
    url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=2000&q=80")
      center / cover no-repeat;
  transform: scale(1.04);
  animation: hero-drift 18s var(--ease) infinite alternate;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(184, 149, 108, 0.22), transparent 40%),
    linear-gradient(to top, rgba(10, 22, 40, 0.75), transparent 45%);
}

.hero-content {
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto 4.5rem;
  max-width: 42rem;
  animation: rise-in 0.9s var(--ease) both;
}

.hero-eyebrow {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--white);
  max-width: 14ch;
}

.hero p {
  margin: 0 0 1.75rem;
  color: rgba(231, 235, 240, 0.82);
  font-weight: 300;
  font-size: 1.05rem;
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease),
    border-color 0.25s var(--ease);
}

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

.btn-primary {
  background: var(--brass);
  color: var(--ink);
}

.btn-primary:hover {
  background: #c9a97c;
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--ink-soft);
}

.btn-outline {
  border-color: var(--ink);
  color: var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--white);
}

.btn-ghost-dark {
  border-color: rgba(10, 22, 40, 0.2);
  color: var(--ink);
}

.btn-ghost-dark:hover {
  border-color: var(--ink);
  background: rgba(10, 22, 40, 0.05);
}

/* Trust bar */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid rgba(26, 40, 54, 0.08);
  box-shadow: var(--shadow-soft);
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.35rem 0;
}

.trust-item {
  display: grid;
  gap: 0.15rem;
  padding-left: 1rem;
  border-left: 2px solid var(--brass);
}

.trust-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}

.trust-desc {
  font-size: 0.88rem;
  color: var(--muted);
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-head {
  max-width: 36rem;
  margin-bottom: 2.5rem;
  animation: rise-in 0.8s var(--ease) both;
}

.section-head h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 0.75rem;
  color: var(--ink);
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.section-dark {
  background:
    linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 55%, #1a3348 100%);
  color: var(--white);
}

.section-dark .section-head h2 {
  color: var(--white);
}

.section-dark .section-head p {
  color: rgba(231, 235, 240, 0.72);
}

.section-muted {
  background: rgba(255, 255, 255, 0.55);
}

/* Persona cards */
.persona-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.persona-card {
  background: var(--white);
  border: 1px solid rgba(26, 40, 54, 0.08);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.persona-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.persona-card h3 {
  margin: 0 0 0.65rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  color: var(--ink);
}

.persona-card p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.persona-card a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--teal);
  border-bottom: 1px solid rgba(61, 122, 122, 0.35);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.persona-card a:hover {
  color: var(--ink);
  border-color: var(--brass);
}

/* Founder spotlight */
.founder-spotlight {
  align-items: start;
}

.founder-media {
  width: 100%;
  max-width: 20rem;
  justify-self: center;
}

.founder-media img {
  width: 100%;
  height: auto;
  max-height: 24rem;
  object-fit: contain;
  object-position: top center;
  margin-inline: auto;
  border-radius: 2px;
  background:
    radial-gradient(circle at 50% 35%, rgba(184, 149, 108, 0.14), transparent 55%),
    linear-gradient(180deg, rgba(21, 38, 61, 0.04), transparent);
}

.founder-copy h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin: 0 0 1rem;
  color: var(--ink);
  line-height: 1.1;
}

.founder-copy p {
  color: var(--slate);
  margin: 0 0 1.5rem;
}

.founder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Resource cards */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.resource-card {
  background: var(--white);
  border: 1px solid rgba(26, 40, 54, 0.08);
  padding: 1.5rem;
  display: grid;
  gap: 0.65rem;
  align-content: start;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.resource-card:hover {
  border-color: rgba(184, 149, 108, 0.45);
  box-shadow: var(--shadow-card);
}

.resource-card h3 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--ink);
}

.resource-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.resource-card a {
  margin-top: 0.35rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--brass-deep);
  border-bottom: 1px solid rgba(143, 112, 74, 0.4);
  width: fit-content;
}

.resource-card a:hover {
  color: var(--ink);
}

.resource-more {
  margin: 0;
  text-align: center;
}

/* CTA band */
.cta-band {
  background:
    linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 60%, #1a3348 100%);
  color: var(--white);
  padding: 4rem 0;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-band h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin: 0 0 0.5rem;
  line-height: 1.1;
}

.cta-band p {
  margin: 0;
  color: rgba(231, 235, 240, 0.78);
  max-width: 28rem;
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.cta-band .btn-ghost-dark {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.cta-band .btn-ghost-dark:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--white);
}

/* Sticky mobile CTA */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: flex;
  gap: 0.65rem;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid rgba(26, 40, 54, 0.1);
  box-shadow: 0 -8px 30px rgba(10, 22, 40, 0.08);
  backdrop-filter: blur(10px);
}

.sticky-cta .btn {
  flex: 1;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
}

.sticky-cta[hidden] {
  display: none;
}

.prose {
  max-width: 42rem;
}

.prose p {
  color: var(--slate);
  margin: 0 0 1.1rem;
}

.prose h2,
.prose h3 {
  font-family: "Cormorant Garamond", serif;
  color: var(--ink);
  margin: 2rem 0 0.75rem;
  line-height: 1.15;
}

.prose h2 {
  font-size: 2rem;
}

.prose h3 {
  font-size: 1.45rem;
}

.quote {
  margin: 2.5rem 0 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(184, 149, 108, 0.45);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.92);
  max-width: 34rem;
}

.quote cite {
  display: block;
  margin-top: 0.75rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.85rem;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brass);
}

/* Service list (not cards) */
.service-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(26, 40, 54, 0.15);
}

.service-item {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(26, 40, 54, 0.15);
  align-items: start;
  animation: rise-in 0.7s var(--ease) both;
}

.service-item:nth-child(2) {
  animation-delay: 0.08s;
}

.service-item:nth-child(3) {
  animation-delay: 0.16s;
}

.service-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: var(--brass-deep);
  line-height: 1;
}

.service-item h3 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
  color: var(--ink);
}

.service-item p {
  margin: 0;
  color: var(--muted);
}

/* Page hero (inner) */
.page-hero {
  padding: 4.5rem 0 3rem;
  background:
    linear-gradient(120deg, rgba(10, 22, 40, 0.92), rgba(21, 38, 61, 0.88)),
    url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?auto=format&fit=crop&w=1800&q=80")
      center / cover no-repeat;
  color: var(--white);
}

.page-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin: 0 0 0.75rem;
  line-height: 1.05;
  animation: rise-in 0.8s var(--ease) both;
}

.page-hero p {
  margin: 0;
  max-width: 34rem;
  color: rgba(231, 235, 240, 0.8);
  animation: rise-in 0.9s var(--ease) both;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
}

.panel {
  padding: 1.75rem 0;
  border-top: 1px solid rgba(184, 149, 108, 0.4);
}

.panel h3 {
  margin: 0 0 0.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
}

.panel p,
.panel li {
  color: var(--muted);
}

.panel ol,
.panel ul {
  margin: 0.5rem 0 0;
  padding-left: 1.1rem;
}

.panel li + li {
  margin-top: 0.4rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-details p {
  margin: 0 0 1rem;
  color: var(--slate);
}

.contact-details a {
  color: var(--ink);
  border-bottom: 1px solid rgba(184, 149, 108, 0.55);
}

.form {
  display: grid;
  gap: 0.9rem;
}

.form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: var(--slate);
}

.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid rgba(26, 40, 54, 0.2);
  background: rgba(255, 255, 255, 0.75);
  padding: 0.8rem 0.9rem;
  font: inherit;
  color: var(--text);
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: 2px solid rgba(184, 149, 108, 0.45);
  border-color: var(--brass);
}

.form textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
}

.eyebrow a {
  color: inherit;
  border-bottom: 1px solid rgba(184, 149, 108, 0.45);
}

.post-body {
  max-width: 44rem;
}

.post-cta {
  margin-top: 2.5rem !important;
}

.scheduling-embed {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  border: 1px solid rgba(26, 40, 54, 0.12);
  background: rgba(255, 255, 255, 0.55);
}

.scheduling-embed iframe {
  width: 100%;
  flex: 1;
  min-height: 520px;
  border: 0;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(231, 235, 240, 0.78);
  padding: 3rem 0 2rem;
  margin-top: 2rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  color: var(--white);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
}

.footer-nav a:hover {
  color: var(--brass);
}

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.25rem;
  font-size: 0.8rem;
  color: rgba(231, 235, 240, 0.55);
  display: grid;
  gap: 0.65rem;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.5%, -1%, 0);
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .trust-bar-inner {
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.25rem;
  }

  .persona-grid,
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .founder-media {
    max-width: 16rem;
    justify-self: center;
  }

  .hero h1 {
    max-width: none;
  }

  .nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(10, 22, 40, 0.97);
    padding: 0.75rem 1.25rem 1.25rem;
    border-bottom: 1px solid rgba(184, 149, 108, 0.25);
  }

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

  .nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav a::after {
    display: none;
  }

  .nav-cta {
    margin: 0.75rem 0 0;
    text-align: center;
  }

  .split,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero {
    min-height: calc(92vh - var(--header-h));
  }

  .service-item {
    grid-template-columns: 2.5rem 1fr;
  }
}

@media (min-width: 861px) {
  .sticky-cta {
    display: none !important;
  }
}

/* Page enrichment */
.content-band {
  padding: 4rem 0;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.value-card {
  background: var(--white);
  border: 1px solid rgba(26, 40, 54, 0.08);
  padding: 1.35rem;
  box-shadow: var(--shadow-card);
}

.value-card h3 {
  margin: 0 0 0.45rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  color: var(--ink);
}

.value-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: process;
}

.process-step {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.35rem;
  position: relative;
}

.process-step .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--brass);
  color: var(--brass);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.process-step h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--white);
}

.process-step p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(231, 235, 240, 0.75);
}

.sidebar-card {
  background: var(--white);
  border: 1px solid rgba(26, 40, 54, 0.08);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}

.sidebar-card h3 {
  margin: 0 0 0.75rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  color: var(--ink);
}

.sidebar-card p,
.sidebar-card li {
  color: var(--muted);
  font-size: 0.95rem;
}

.sidebar-card ul,
.sidebar-card ol {
  margin: 0.5rem 0 0;
  padding-left: 1.1rem;
}

.sidebar-card li + li {
  margin-top: 0.45rem;
}

.feature-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.feature-visual {
  border-radius: 2px;
  overflow: hidden;
  min-height: 18rem;
  background:
    linear-gradient(135deg, rgba(10, 22, 40, 0.35), rgba(61, 122, 122, 0.25)),
    url("https://images.unsplash.com/photo-1542744173-8e7e53427bb0?auto=format&fit=crop&w=1200&q=80")
      center / cover no-repeat;
  box-shadow: var(--shadow-soft);
}

.feature-visual.alt {
  background:
    linear-gradient(135deg, rgba(10, 22, 40, 0.4), rgba(184, 149, 108, 0.2)),
    url("https://images.unsplash.com/photo-1600880292203-757bb62b4baf?auto=format&fit=crop&w=1200&q=80")
      center / cover no-repeat;
}

.callout {
  margin: 2rem 0 0;
  padding: 1.25rem 1.35rem;
  border-left: 3px solid var(--brass);
  background: rgba(184, 149, 108, 0.1);
  color: var(--slate);
}

.callout strong {
  color: var(--ink);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.blog-card {
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 1.25rem;
  background: var(--white);
  border: 1px solid rgba(26, 40, 54, 0.08);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.blog-card-media {
  min-height: 100%;
  background: var(--ink-soft) center / cover no-repeat;
}

.blog-card-body {
  padding: 1.15rem 1.15rem 1.15rem 0;
  display: grid;
  align-content: center;
  gap: 0.5rem;
}

.blog-card-body h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.35;
}

.blog-card-body h3 a:hover {
  color: var(--teal);
}

.blog-card-body p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.blog-card-body .read-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--brass-deep);
  border-bottom: 1px solid rgba(143, 112, 74, 0.4);
  width: fit-content;
}

.resource-list {
  display: grid;
  gap: 1.25rem;
}

.resource-row {
  display: grid;
  grid-template-columns: 7.5rem 1fr auto;
  gap: 1.25rem;
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(26, 40, 54, 0.08);
  padding: 1rem;
  box-shadow: var(--shadow-card);
}

.resource-thumb {
  width: 7.5rem;
  height: 9.5rem;
  object-fit: cover;
  object-position: top;
  border: 1px solid rgba(26, 40, 54, 0.08);
  background: var(--paper);
}

.resource-row h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  color: var(--ink);
}

.resource-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.resource-row .resource-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
}

.form-success {
  padding: 1rem 1.1rem;
  background: rgba(61, 122, 122, 0.12);
  border: 1px solid rgba(61, 122, 122, 0.35);
  color: var(--ink);
  font-size: 0.92rem;
}

.form-error {
  padding: 1rem 1.1rem;
  background: rgba(160, 48, 48, 0.08);
  border: 1px solid rgba(160, 48, 48, 0.25);
  color: #7a2424;
  font-size: 0.92rem;
}

.schedule-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

.schedule-panel {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid rgba(26, 40, 54, 0.08);
  box-shadow: var(--shadow-card);
}

.schedule-panel-head h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
  margin: 0 0 0.5rem;
  color: var(--ink);
  line-height: 1.1;
}

.schedule-panel-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.schedule-form {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.schedule-form .form-note {
  margin-top: auto;
}

.schedule-layout.is-embed .schedule-panel:last-child {
  min-height: 100%;
}

.schedule-layout.is-embed .scheduling-embed {
  min-height: 520px;
}

.schedule-layout.is-embed .scheduling-embed iframe {
  min-height: 520px;
}

@media (max-width: 860px) {
  .value-grid,
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-band {
    grid-template-columns: 1fr;
  }

  .feature-visual {
    min-height: 14rem;
    order: -1;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card {
    grid-template-columns: 1fr;
  }

  .blog-card-media {
    min-height: 10rem;
  }

  .blog-card-body {
    padding: 0 1.15rem 1.15rem;
  }

  .resource-row {
    grid-template-columns: 5.5rem 1fr;
  }

  .resource-thumb {
    width: 5.5rem;
    height: 7rem;
  }

  .resource-row .resource-actions {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }

  .schedule-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .value-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }
}
