:root {
  --bg: #f5f6ff;
  --paper: #ffffff;
  --ink: #2f3d85;
  --muted: #5d6797;
  --line: rgba(72, 86, 167, 0.16);
  --accent: #6d58d7;
  --accent-strong: #3f56a6;
  --accent-soft: #e8e6ff;
  --sand: #edf2ff;
  --shadow: 0 18px 50px rgba(71, 83, 163, 0.12);
  --radius: 26px;
  --radius-small: 16px;
  --max: 1160px;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(108, 166, 255, 0.2), transparent 30%),
    radial-gradient(circle at 85% 18%, rgba(109, 88, 215, 0.16), transparent 28%),
    linear-gradient(180deg, #eef3ff 0%, #f7f5ff 42%, #ffffff 100%);
  line-height: 1.6;
}

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 100;
  background: var(--ink);
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 999px;
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.narrow {
  width: min(calc(100% - 2rem), 780px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(248, 249, 255, 0.88);
  border-bottom: 1px solid rgba(72, 86, 167, 0.1);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  width: 62px;
  height: 50px;
  flex: 0 0 auto;
  border-radius: 0;
  display: inline-block;
  background: center / contain no-repeat url("/assets/images/logo.png");
  color: transparent;
  font-size: 0;
  line-height: 0;
}

.brand-text {
  display: grid;
}

.brand-text strong {
  font-size: 0.95rem;
}

.brand-text small {
  color: var(--muted);
}

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

.site-nav a {
  color: var(--muted);
}

.site-nav a[aria-current="page"] {
  color: var(--ink);
  font-weight: 700;
}

.site-nav .button[aria-current="page"] {
  color: white;
}

.menu-toggle {
  display: none;
}

.button {
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-strong) 0%, var(--accent) 100%);
  color: white;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}

.button-disabled {
  background: rgba(93, 103, 151, 0.18);
  color: var(--muted);
  box-shadow: none;
  cursor: not-allowed;
}

.button-small {
  padding: 0.7rem 1rem;
}

.site-nav a.button-small {
  color: white;
}

.text-link {
  color: var(--accent);
  font-weight: 700;
}

.hero,
.page-hero {
  padding: 4.5rem 0 2.5rem;
}

.hero-grid,
.two-column,
.split-callout,
.booking-layout {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: start;
}

.hero-copy h1,
.page-hero h1,
.section-heading h2,
.split-callout h2,
.cta-panel h2 {
  font-family: var(--serif);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  margin: 0.2rem 0 1rem;
}

.hero-copy .hero-title-compact {
  font-size: clamp(2.35rem, 5.8vw, 4.35rem);
}

.page-hero h1,
.section-heading h2,
.split-callout h2,
.cta-panel h2 {
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  margin: 0.2rem 0 1rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-points {
  padding: 0;
  margin: 1.7rem 0 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
  color: var(--muted);
}

.hero-points li::before {
  content: "•";
  color: var(--accent);
  margin-right: 0.6rem;
}

.hero-card,
.card,
.embed-placeholder,
.cta-panel,
.cal-embed-shell {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(72, 86, 167, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1rem;
  margin-top: 0.35rem;
}

.hero-card img,
.portrait-large {
  border-radius: calc(var(--radius) - 10px);
  width: 100%;
}

.portrait-note {
  padding: 1rem 0.3rem 0.2rem;
}

.portrait-credentials {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.portrait-credentials li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}

.portrait-credentials li::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  margin-top: 0.32rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-strong) 0%, var(--accent) 100%);
}

.section {
  padding: 2.5rem 0;
}

.section-tint {
  background: linear-gradient(180deg, rgba(108, 166, 255, 0.09), rgba(109, 88, 215, 0.06) 55%, rgba(255, 255, 255, 0));
}

.section-heading {
  margin-bottom: 1.8rem;
}

.card-grid {
  display: grid;
  gap: 1.25rem;
}

.three-up,
.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.values-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.embed-placeholder {
  padding: 1.5rem;
}

.card h2,
.card h3,
.service-list h3 {
  margin-top: 0;
  font-family: var(--serif);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.home-service-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-list article {
  padding: 1.4rem;
  background: rgba(239, 243, 255, 0.72);
  border-radius: var(--radius-small);
  border: 1px solid rgba(72, 86, 167, 0.1);
}

.split-callout,
.two-column,
.booking-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.signature-quote {
  position: relative;
  margin: 0;
  padding: 2rem 1.7rem 1.55rem 2rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(72, 86, 167, 0.1);
  border-radius: calc(var(--radius) - 6px);
  box-shadow: var(--shadow);
}

.signature-quote::before,
.signature-quote::after {
  position: absolute;
  font-family: var(--serif);
  color: var(--accent);
  line-height: 1;
  opacity: 0.95;
}

.signature-quote::before {
  content: "“";
  top: 0.65rem;
  left: 1rem;
  font-size: 4.8rem;
}

.signature-quote::after {
  content: "”";
  right: 1rem;
  bottom: -0.3rem;
  font-size: 4.1rem;
}

.signature-quote p {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0 1rem;
  color: var(--ink);
  font-size: 1.03rem;
  text-align: justify;
}

.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
}

.newsletter-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  align-items: start;
}

.newsletter-art {
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-art img {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.newsletter-copy {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.newsletter-copy > * {
  margin: 0;
}

.newsletter-single-column {
  max-width: 820px;
}

.newsletter-signature {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.3rem;
}

.newsletter-signature img {
  width: 250px;
  max-width: 42%;
  height: auto;
}

.newsletter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.6rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}

.contact-form-card {
  gap: 1rem;
}

.section-cta {
  padding-top: 1rem;
}

.cta-panel {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.phases-section {
  padding-bottom: 4rem;
}

.phase-list,
.simple-steps {
  margin: 0;
  padding-left: 1.2rem;
}

.phase-list li,
.simple-steps li {
  padding-left: 0.45rem;
  margin-bottom: 1rem;
}

.phase-list span {
  display: block;
  color: var(--muted);
}

.pricing-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-price-sections {
  display: grid;
  gap: 1.25rem;
}

.service-price-block {
  padding: 1.5rem;
}

.service-price-item + .service-price-item {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.service-price-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.service-price-head strong {
  font-size: 1.08rem;
  color: var(--ink);
}

.service-price-head span {
  color: var(--accent-strong);
  font-weight: 700;
  text-align: right;
}

.service-footnote {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.services-info-stack {
  display: grid;
  gap: 1.25rem;
  max-width: 860px;
}

.booking-page-stack {
  display: grid;
  gap: 1.5rem;
}

.booking-highlight {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.6rem;
  background: linear-gradient(135deg, rgba(108, 166, 255, 0.14), rgba(109, 88, 215, 0.12));
}

.booking-highlight h2,
.booking-selector-copy h2,
.booking-contact-note h2 {
  margin-top: 0;
  font-family: var(--serif);
}

.booking-selector {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
}

.booking-selector-copy {
  max-width: 650px;
}

.booking-toggle {
  display: inline-flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.booking-toggle-button {
  border: 1px solid rgba(72, 86, 167, 0.12);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.booking-toggle-button.is-active {
  background: linear-gradient(135deg, var(--accent-strong) 0%, var(--accent) 100%);
  color: white;
}

.booking-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.booking-options.is-hidden {
  display: none;
}

.booking-option-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.booking-option-card > * {
  margin: 0;
}

.booking-contact-note {
  max-width: 860px;
}

.price-tag {
  font-size: 1.9rem;
  line-height: 1;
  margin: 0 0 0.8rem;
  font-weight: 700;
  color: var(--accent);
  font-family: var(--serif);
}

.plain-list {
  margin: 0;
  padding-left: 1.2rem;
}

.plain-list li {
  margin-bottom: 0.7rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.contact-button:hover,
.contact-button:focus-visible {
  transform: translateY(-1px);
}

.contact-icon {
  width: 1.1rem;
  height: 1.1rem;
  display: inline-flex;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field span {
  font-weight: 700;
  color: var(--ink);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(72, 86, 167, 0.16);
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font: inherit;
}

.form-field textarea {
  resize: vertical;
  min-height: 180px;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(109, 88, 215, 0.22);
  border-color: rgba(109, 88, 215, 0.5);
}

.contact-form-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

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

.page-shell {
  min-height: 70vh;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.legal-copy h2,
.legal-copy h3 {
  font-family: var(--serif);
  margin-top: 0;
}

.legal-copy h2 {
  margin-bottom: 0.8rem;
}

.legal-copy h3 {
  margin: 1.4rem 0 0.6rem;
  font-size: 1.15rem;
}

.legal-copy p,
.legal-copy ul {
  color: var(--muted);
}

.legal-copy > * + * {
  margin-top: 1rem;
}

.two-column p {
  text-align: justify;
}

.faq-list details {
  padding: 1.2rem 1.3rem;
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(72, 86, 167, 0.1);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.embed-placeholder {
  min-height: 340px;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(108, 166, 255, 0.22), rgba(109, 88, 215, 0.22));
}

.cal-embed-shell {
  padding: 0.75rem;
  min-height: 760px;
}

.cal-embed-frame {
  width: 100%;
  min-height: 720px;
  overflow: auto;
  border-radius: calc(var(--radius) - 10px);
}

.site-footer {
  border-top: 1px solid rgba(72, 86, 167, 0.1);
  padding: 2rem 0 3rem;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.footer-grid a {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--muted);
}

.footer-badges {
  display: grid;
  gap: 0.9rem;
  justify-items: start;
}

.footer-badges img {
  max-width: 135px;
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  .hero-grid,
  .three-up,
  .card-grid,
  .pricing-grid,
  .booking-options,
  .service-list,
  .split-callout,
  .two-column,
  .contact-layout,
  .newsletter-layout,
  .booking-layout,
  .footer-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

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

  .home-service-list {
    grid-template-columns: 1fr;
  }

  .service-price-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .booking-highlight,
  .booking-selector {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    position: absolute;
    inset: 88px 1rem auto;
    padding: 1rem;
    border-radius: 20px;
    background: rgba(250, 251, 255, 0.98);
    border: 1px solid rgba(72, 86, 167, 0.1);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

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

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(72, 86, 167, 0.1);
    background: rgba(250, 251, 255, 0.9);
    padding: 0.7rem 1rem;
    border-radius: 999px;
    font: inherit;
  }
}
