:root {
  --surface: rgba(255, 250, 243, 0.72);
  --text: #16212d;
  --text-soft: #50606c;
  --line: rgba(22, 33, 45, 0.11);
  --brand: #1b3550;
  --accent: #be8457;
  --shadow: 0 24px 70px rgba(12, 23, 35, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(190, 132, 87, 0.16), transparent 30%),
    linear-gradient(180deg, #f7f1e8 0%, #f3ede4 38%, #efe6da 100%);
}

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

button,
input,
select,
textarea {
  font: 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;
}

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

.page-shell {
  position: relative;
  overflow: hidden;
}

.aurora {
  position: absolute;
  z-index: 0;
  filter: blur(20px);
  pointer-events: none;
}

.aurora-one {
  top: 5rem;
  right: -6rem;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(190, 132, 87, 0.28), transparent 68%);
}

.aurora-two {
  top: 38rem;
  left: -10rem;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27, 53, 80, 0.14), transparent 68%);
}

.site-header,
.section,
.section-slim,
.site-footer {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  padding: 1.2rem 0 0;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: linear-gradient(145deg, var(--brand), #264968);
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.brand-name,
.brand-subline {
  margin: 0;
}

.brand-name {
  font-weight: 800;
}

.brand-subline,
.site-nav a,
.hero-lead,
.section-heading p,
.about-copy > p,
.contact-copy > p,
.faq-answer p,
.practice-panel p,
.signature-card p,
.contact-details p,
.assessment-result p,
.form-feedback,
.panel-footer,
.floating-note span {
  color: var(--text-soft);
  line-height: 1.7;
}

.brand-subline {
  font-size: 0.84rem;
}

.site-nav ul {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  position: relative;
  font-weight: 600;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 248, 241, 0.75);
}

.menu-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 0.35rem auto;
  background: var(--text);
}

.section {
  padding: 6rem 0;
}

.section-slim {
  padding: 1.25rem 0 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 2.5rem;
  align-items: center;
  min-height: calc(100vh - 4rem);
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3.3rem, 7vw, 6.6rem);
}

h2 {
  font-size: clamp(2.4rem, 4.8vw, 4.6rem);
}

h3 {
  margin: 0 0 0.65rem;
  font-size: 1.18rem;
}

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

.primary-button,
.ghost-button,
.text-link,
.round-button,
.tab-button,
.modal-close {
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-button,
.ghost-button {
  border: 0;
  border-radius: 999px;
  padding: 1rem 1.45rem;
  cursor: pointer;
  font-weight: 700;
}

.primary-button {
  background: linear-gradient(135deg, var(--brand), #294d70);
  color: #fff;
  box-shadow: 0 16px 40px rgba(27, 53, 80, 0.24);
}

.ghost-button {
  background: rgba(255, 248, 241, 0.68);
  border: 1px solid var(--line);
  color: var(--text);
}

.text-link {
  display: inline-flex;
  align-items: center;
  padding: 1rem 0;
  color: var(--brand);
  font-weight: 700;
}

.primary-button:hover,
.ghost-button:hover,
.round-button:hover,
.tab-button:hover,
.modal-close:hover {
  transform: translateY(-2px);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.6rem;
}

.trust-card,
.card,
.signature-card,
.faq-item,
.floating-note {
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.trust-card {
  padding: 1.25rem;
  border-radius: var(--radius-md);
}

.trust-card strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--brand);
}

.hero-visual {
  position: relative;
  padding: 2rem;
}

.hero-visual img,
.portrait-card,
.office-card {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.floating-note {
  position: absolute;
  display: grid;
  gap: 0.25rem;
  max-width: 15rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-md);
}

.floating-note strong {
  font-size: 1rem;
}

.floating-note-top {
  top: 1rem;
  left: 0;
}

.floating-note-bottom {
  right: 0;
  bottom: 1rem;
}

.ticker {
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  padding: 1rem 0;
  color: var(--brand);
  font-weight: 800;
  animation: scroll 24s linear infinite;
}

.ticker-track span::before {
  content: "•";
  margin-right: 2rem;
  color: var(--accent);
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 2.5rem;
}

.section-heading.light h2,
.section-heading.light p {
  color: rgba(255, 251, 247, 0.88);
}

.practice-layout,
.about-visuals,
.contact-details,
.assessment-form,
.booking-form,
.modal-card,
.faq-list {
  display: grid;
  gap: 1rem;
}

.practice-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.tab-button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 248, 241, 0.85);
  padding: 0.85rem 1.15rem;
  cursor: pointer;
  font-weight: 700;
  color: var(--text-soft);
}

.tab-button.active {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 14px 30px rgba(27, 53, 80, 0.18);
}

.card {
  border-radius: var(--radius-lg);
  padding: 1.6rem;
}

.practice-panel {
  background: linear-gradient(140deg, rgba(255, 248, 241, 0.88), rgba(246, 236, 220, 0.62));
}

.panel-topline,
.panel-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
}

.panel-topline {
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: grid;
  gap: 0.8rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.35rem;
  line-height: 1.6;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #d7ac83);
}

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

.service-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.65;
}

.service-card span {
  display: inline-block;
  margin-top: 1rem;
  color: var(--brand);
  font-weight: 800;
}

.about-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
}

.signature-card {
  padding: 1.3rem;
  border-radius: var(--radius-md);
}

.assessment-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
}

.assessment-form label,
.booking-form label,
.modal-form label {
  display: grid;
  gap: 0.55rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(22, 33, 45, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.82);
  padding: 0.95rem 1rem;
  color: var(--text);
}

textarea {
  resize: vertical;
}

.range-labels {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text-soft);
  font-size: 0.85rem;
  font-weight: 600;
}

.result-kicker {
  margin: 0 0 0.5rem;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-dark {
  width: 100%;
  background:
    radial-gradient(circle at 20% 20%, rgba(190, 132, 87, 0.18), transparent 22%),
    linear-gradient(135deg, #0f1b25 0%, #182a3a 52%, #10202c 100%);
}

.testimonials-layout {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 1rem;
  align-items: end;
}

.testimonial-stage {
  min-height: 22rem;
  background: rgba(255, 251, 247, 0.08);
  color: #fff;
}

.quote-mark {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 6rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.22);
}

.testimonial-text {
  margin-top: -1rem;
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  color: rgba(255, 251, 247, 0.94);
}

.testimonial-meta {
  display: grid;
  gap: 0.25rem;
  margin-top: 2rem;
  color: rgba(255, 251, 247, 0.8);
}

.testimonial-controls {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.round-button {
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
}

.faq-item {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.35rem;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 800;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-answer p {
  overflow: hidden;
  margin: 0;
  padding: 0 1.35rem 0;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.active .faq-answer p {
  padding-bottom: 1.25rem;
}

.section-contact {
  padding-bottom: 7rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
  align-items: start;
}

.booking-highlights {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.booking-highlight {
  padding: 1rem 1.1rem;
}

.booking-highlight strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--brand);
}

.booking-highlight span {
  color: var(--text-soft);
  line-height: 1.6;
}

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

.booking-label {
  display: inline-block;
  margin-bottom: 0.7rem;
  font-weight: 700;
}

.slot-list,
.format-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.slot-button,
.format-option span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(22, 33, 45, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  font-weight: 700;
}

.slot-button {
  cursor: pointer;
}

.slot-button.active {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 14px 30px rgba(27, 53, 80, 0.16);
}

.format-option {
  position: relative;
}

.format-option input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.format-option input:checked + span {
  background: linear-gradient(135deg, var(--brand), #294d70);
  color: #fff;
  box-shadow: 0 14px 30px rgba(27, 53, 80, 0.16);
}

.form-feedback {
  min-height: 1.4rem;
  margin: 0;
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 0 2rem;
  color: var(--text-soft);
}

.chatbot-shell {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  display: grid;
  justify-items: end;
  gap: 0.8rem;
}

.chatbot-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 0;
  border-radius: 999px;
  padding: 0.95rem 1.2rem;
  background: linear-gradient(135deg, var(--brand), #294d70);
  color: #fff;
  box-shadow: 0 18px 42px rgba(11, 35, 57, 0.28);
  cursor: pointer;
  font-weight: 800;
}

.chatbot-toggle-mark {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.chatbot-panel {
  width: min(100vw - 2rem, 24rem);
  max-height: min(44rem, calc(100vh - 7rem));
  display: none;
  grid-template-rows: auto 1fr auto;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 243, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 26px 70px rgba(10, 18, 25, 0.2);
  overflow: hidden;
}

.chatbot-panel.open {
  display: grid;
}

.chatbot-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1rem 0.8rem;
  border-bottom: 1px solid rgba(22, 33, 45, 0.08);
}

.chatbot-header .eyebrow {
  margin-bottom: 0.35rem;
}

.chatbot-header h3 {
  margin: 0;
}

.chatbot-close {
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  border-radius: 50%;
  background: rgba(27, 53, 80, 0.08);
  color: var(--text);
  cursor: pointer;
  font-size: 1.4rem;
}

.chatbot-messages {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  overflow-y: auto;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(245, 237, 225, 0.4)),
    radial-gradient(circle at top right, rgba(190, 132, 87, 0.12), transparent 28%);
}

.chatbot-message {
  max-width: 88%;
  padding: 0.85rem 0.95rem;
  border-radius: 1.2rem;
  line-height: 1.6;
}

.chatbot-message p {
  margin: 0;
}

.chatbot-message.bot {
  justify-self: start;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
}

.chatbot-message.user {
  justify-self: end;
  background: linear-gradient(135deg, var(--brand), #294d70);
  color: #fff;
}

.chatbot-message.pending {
  opacity: 0.72;
}

.chatbot-form {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  border-top: 1px solid rgba(22, 33, 45, 0.08);
  background: rgba(255, 249, 243, 0.94);
}

.chatbot-form textarea {
  min-height: 5rem;
}

.chatbot-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.chatbot-status {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.5;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(10, 18, 25, 0.56);
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
  z-index: 20;
}

.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  position: relative;
  width: min(100%, 34rem);
  border-radius: var(--radius-xl);
  padding: 2rem;
  background: linear-gradient(180deg, #fffaf3 0%, #f5ede1 100%);
  box-shadow: 0 30px 60px rgba(5, 12, 19, 0.25);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.6rem;
  height: 2.6rem;
  border: 0;
  border-radius: 50%;
  background: rgba(27, 53, 80, 0.08);
  cursor: pointer;
  font-size: 1.5rem;
}

.modal-form {
  display: grid;
  gap: 0.95rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero,
  .about-layout,
  .assessment-layout,
  .testimonials-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: auto;
    padding-top: 3rem;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    grid-column: 1 / -1;
    display: none;
  }

  .site-nav.open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 248, 241, 0.88);
    border: 1px solid var(--line);
  }

  .site-header > .ghost-button {
    display: none;
  }

  .form-grid,
  .trust-grid,
  .signature-grid,
  .service-cards {
    grid-template-columns: 1fr;
  }

  .floating-note {
    position: static;
    margin-top: 1rem;
    max-width: none;
  }

  .hero-visual {
    padding: 0;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 4.5rem 0;
  }

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  .site-footer {
    flex-direction: column;
  }

  .chatbot-shell {
    left: 1rem;
    right: 1rem;
    justify-items: stretch;
  }

  .chatbot-panel {
    width: 100%;
  }

  .card,
  .trust-card,
  .modal-card {
    padding: 1.2rem;
  }
}
