:root {
  --ink: #17477a;
  --navy: #102a4c;
  --navy-soft: #17375f;
  --footer-blue: #17477a;
  --gold: #b88938;
  --gold-soft: #e8d4a8;
  --sage: #7e9089;
  --mist: #f2eee6;
  --paper: #f8f6f1;
  --surface: #ffffff;
  --line: #ded8cb;
  --muted: #17477a;
  --shadow: 0 24px 70px rgba(16, 42, 76, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(248, 246, 241, 0.9);
  border-bottom: 1px solid rgba(222, 216, 203, 0.78);
  backdrop-filter: blur(16px);
}

.brand,
.nav,
.hero-actions,
.hero-stats,
.form-actions,
.site-footer,
.social-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  min-width: 245px;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand span {
  display: grid;
  gap: 2px;
}

.brand strong {
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1;
}

.brand small {
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav {
  gap: clamp(14px, 2.6vw, 30px);
  color: var(--footer-blue);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav a:hover,
.header-cta:hover,
.social-links a:hover {
  color: var(--gold);
}

.header-cta {
  color: var(--navy);
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 138px clamp(20px, 5vw, 72px) 58px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(248, 246, 241, 0.98) 0%, rgba(248, 246, 241, 0.9) 42%, rgba(248, 246, 241, 0.32) 74%),
    linear-gradient(0deg, rgba(248, 246, 241, 0.92) 0%, rgba(248, 246, 241, 0) 42%);
}

.hero-content {
  position: relative;
  width: min(780px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.02;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.2rem, 7.4vw, 6.6rem);
  letter-spacing: 0;
}

h2 {
  max-width: 820px;
  font-size: clamp(2.25rem, 4.8vw, 4.6rem);
  letter-spacing: 0;
}

h3 {
  font-size: 1.55rem;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--footer-blue);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
  line-height: 1.72;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #ffffff;
  background: var(--navy);
  box-shadow: 0 14px 32px rgba(16, 42, 76, 0.26);
}

.button-primary:hover {
  background: var(--navy-soft);
}

.button:disabled {
  opacity: 0.46;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.button:disabled:hover {
  transform: none;
  background: var(--navy);
}

.button-secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(16, 42, 76, 0.16);
}

.hero-stats {
  flex-wrap: wrap;
  gap: 14px;
  margin: 42px 0 0;
  padding: 0;
}

.hero-stats div {
  min-width: 170px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(16, 42, 76, 0.1);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(16, 42, 76, 0.08);
}

.hero-stats dt {
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 800;
}

.hero-stats dd {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.section,
.process-band,
.contact-section,
.care-band,
.agenda-section {
  padding: clamp(74px, 11vw, 130px) clamp(20px, 5vw, 72px);
}

.intro,
.audience,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: start;
}

.intro {
  background: var(--navy);
}

.intro h2 {
  color: #ffffff;
}

.intro .eyebrow {
  color: var(--gold-soft);
}

.section-text {
  display: grid;
  gap: 18px;
}

.about-portrait {
  position: relative;
  overflow: hidden;
  width: min(420px, 100%);
  margin: 18px 0 0;
  aspect-ratio: 1 / 1.08;
  background: #ffffff;
  border: 1px solid rgba(232, 212, 168, 0.46);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
}

.about-portrait::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 42%;
  height: 2px;
  background: var(--gold);
  opacity: 0.72;
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 18%;
}

.rich-copy,
.audience-list {
  display: grid;
  gap: 18px;
}

.rich-copy p,
.audience-list p,
.contact-copy p,
.support-copy,
.feature p,
.step p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.78;
}

.intro .rich-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.intro .rich-copy strong {
  color: #ffffff;
}

.signature-quote {
  grid-column: 1 / -1;
  margin: clamp(10px, 2vw, 22px) 0 0;
  padding: clamp(24px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(232, 212, 168, 0.28);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.12);
}

.signature-quote p {
  max-width: 980px;
  margin: 0;
  color: #ffffff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.08;
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading .eyebrow {
  color: var(--gold);
}

.section-heading p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.72);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature {
  min-height: 300px;
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 35px rgba(16, 42, 76, 0.07);
}

.feature-icon {
  display: inline-flex;
  margin-bottom: 54px;
  color: var(--gold);
  font-weight: 900;
}

.feature h3,
.step h3 {
  margin-bottom: 12px;
}

.care-band {
  background: var(--mist);
}

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

.concern-item {
  min-width: 0;
}

.concern-trigger {
  display: flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 12px 34px 12px 14px;
  color: var(--navy);
  background: #ffffff;
  border: 1px solid rgba(16, 42, 76, 0.1);
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  position: relative;
  transition: border-color 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.concern-trigger::after {
  content: "+";
  position: absolute;
  right: 14px;
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 900;
}

.concern-trigger[aria-expanded="true"] {
  color: #ffffff;
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 12px 26px rgba(16, 42, 76, 0.16);
}

.concern-trigger[aria-expanded="true"]::after {
  content: "−";
  color: var(--gold-soft);
}

.concern-trigger:focus-visible {
  outline: 3px solid rgba(184, 137, 56, 0.24);
  outline-offset: 3px;
}

.concern-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms ease;
}

.concern-panel p {
  margin: 10px 0 0;
  padding: 18px;
  color: var(--footer-blue);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 42, 76, 0.1);
  border-radius: 8px;
  font-size: 0.95rem;
  line-height: 1.68;
}

.support-copy {
  max-width: 760px;
  margin-top: 32px;
  padding: 20px 22px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 700;
}

.process-band {
  color: #ffffff;
  background: var(--navy);
}

.process-band h2,
.process-band h3 {
  color: #ffffff;
}

.process-band .eyebrow {
  color: var(--gold-soft);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.step {
  min-height: 248px;
  padding: 30px;
  background: var(--navy);
}

.step span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 48px;
  place-items: center;
  color: var(--navy);
  background: var(--gold-soft);
  border-radius: 50%;
  font-weight: 900;
}

.step p {
  color: rgba(255, 255, 255, 0.72);
}

.audience {
  background: #ffffff;
}

.testimonials {
  background: var(--paper);
}

.testimonials-heading {
  max-width: 980px;
}

.testimonials-heading p:not(.eyebrow) {
  color: var(--footer-blue);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.testimonial-card {
  display: grid;
  min-height: 280px;
  align-content: space-between;
  gap: 18px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(16, 42, 76, 0.1);
  border-radius: 8px;
  box-shadow: 0 14px 35px rgba(16, 42, 76, 0.07);
  transition: opacity 220ms ease, transform 220ms ease;
}

.testimonial-card.is-changing {
  opacity: 0.35;
  transform: translateY(4px);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1.08rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.testimonial-text {
  margin: 0;
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 700;
  line-height: 1.16;
}

.testimonial-name {
  margin: 0;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button-quiet {
  color: var(--navy);
  background: transparent;
  border-color: rgba(184, 137, 56, 0.42);
}

.button-quiet:hover {
  background: rgba(255, 255, 255, 0.62);
}

.contact-section {
  background: #ede7dc;
}

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

.agenda-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.contact-copy .eyebrow,
.calendar-card-heading .eyebrow {
  color: var(--gold);
}

.contact-copy h2,
.contact-copy p,
.calendar-card-heading h2,
.calendar-card-heading h3,
.calendar-card-heading p:not(.eyebrow) {
  color: var(--navy);
}

.contact-copy h2 {
  margin-bottom: 24px;
}

.social-links {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.social-links a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 10px;
  padding: 0 16px 0 12px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(16, 42, 76, 0.12);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(16, 42, 76, 0.05);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  background: #ffffff;
  border-color: rgba(184, 137, 56, 0.48);
  box-shadow: 0 14px 30px rgba(16, 42, 76, 0.1);
}

.social-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.social-icon path,
.social-icon rect,
.social-icon circle {
  vector-effect: non-scaling-stroke;
}

.social-links a[aria-label="Facebook"] .social-icon,
.social-links a[aria-label="LinkedIn"] .social-icon {
  fill: currentColor;
  stroke: none;
}

.social-links a[aria-label="Instagram"] .social-icon {
  stroke-width: 2;
}

.social-links a[aria-label="WhatsApp"] .social-icon {
  fill: currentColor;
  stroke: none;
}

.social-links a[aria-label="WhatsApp"] .social-icon path:last-child,
.social-links a[aria-label="YouTube"] .social-icon path {
  fill: #ffffff;
}

.social-links a[aria-label="YouTube"] .social-icon rect {
  fill: currentColor;
  stroke: none;
}

.social-links a[aria-label="YouTube"] .social-icon path {
  stroke: none;
}

.calendar-card {
  display: grid;
  gap: 18px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.calendar-card-heading {
  display: grid;
  gap: 10px;
}

.calendar-card-heading .eyebrow,
.calendar-card-heading p {
  margin: 0;
}

.calendar-card-heading h3 {
  font-size: 1.85rem;
}

.calendar-card-heading h2 {
  font-size: clamp(2.25rem, 4.2vw, 4.2rem);
}

.calendar-card-heading p:not(.eyebrow) {
  max-width: 760px;
  font-size: 0.95rem;
  line-height: 1.68;
}

.booking-panel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(16, 42, 76, 0.06), rgba(184, 137, 56, 0.1));
  border: 1px solid rgba(16, 42, 76, 0.1);
  border-radius: 8px;
}

.booking-mark {
  display: grid;
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  place-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 2px solid rgba(184, 137, 56, 0.52);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(16, 42, 76, 0.08);
}

.booking-mark img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.booking-panel strong,
.booking-panel span {
  display: block;
}

.booking-panel strong {
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1;
}

.booking-panel div > span {
  margin-top: 5px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.booking-policy {
  padding: 18px 20px;
  color: var(--navy);
  background: rgba(248, 246, 241, 0.86);
  border: 1px solid rgba(184, 137, 56, 0.26);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
}

.booking-policy strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 900;
}

.booking-policy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.cal-embed-shell {
  overflow: hidden;
  min-height: 640px;
  background: #fbfaf7;
  border: 1px solid rgba(16, 42, 76, 0.12);
  border-radius: 8px;
}

.cal-inline {
  display: block;
  width: 100%;
  height: 640px;
  min-height: 640px;
  border: 0;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.calendar-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.62;
}

.calendar-note a,
.privacy-check a,
.privacy-copy a {
  color: var(--navy);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(184, 137, 56, 0.52);
  text-underline-offset: 4px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfc6b7;
  border-radius: 8px;
  padding: 14px;
  color: var(--navy);
  background: #fbfaf7;
  font: inherit;
}

textarea {
  resize: vertical;
}

.privacy-check {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  padding: 14px;
  color: var(--navy);
  background: #fbfaf7;
  border: 1px solid rgba(184, 137, 56, 0.26);
  border-radius: 8px;
  font-size: 0.88rem;
  line-height: 1.5;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--navy);
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(184, 137, 56, 0.2);
  border-color: var(--gold);
}

.form-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--navy);
  font-weight: 800;
}

.privacy-copy {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.privacy-copy p {
  margin: 0;
  color: var(--navy);
  font-size: 0.98rem;
  line-height: 1.74;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--footer-blue);
  border-top: 1px solid var(--line);
}

.site-footer span:first-child {
  color: var(--footer-blue);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.62rem;
  font-weight: 800;
}

.footer-privacy-link {
  justify-self: center;
  color: var(--footer-blue);
  font-size: 0.74rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(184, 137, 56, 0.48);
  text-underline-offset: 4px;
}

.footer-brandline {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  color: var(--footer-blue);
  font-size: 1rem;
  font-weight: 900;
}

.footer-brandline img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
  padding: 24px;
  place-items: center;
}

.privacy-modal:target {
  display: grid;
}

.privacy-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 42, 76, 0.42);
}

.privacy-panel {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  max-height: min(82vh, 760px);
  overflow: auto;
  padding: clamp(24px, 4vw, 42px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.privacy-panel h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.privacy-close {
  position: absolute;
  top: 18px;
  right: 18px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(184, 137, 56, 0.48);
  text-underline-offset: 4px;
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }
}

@media (max-width: 860px) {
  .site-header {
    position: sticky;
  }

  .brand {
    min-width: 0;
  }

  .hero {
    min-height: 88vh;
    padding-top: 86px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(248, 246, 241, 0.98) 0%, rgba(248, 246, 241, 0.9) 54%, rgba(248, 246, 241, 0.44) 100%),
      linear-gradient(90deg, rgba(248, 246, 241, 0.95), rgba(248, 246, 241, 0.6));
  }

  .intro,
  .audience,
  .contact-section,
  .feature-grid,
  .steps,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .feature,
  .step,
  .testimonial-card {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand small,
  .header-cta {
    display: none;
  }

  h1 {
    font-size: 3rem;
  }

  .button,
  .hero-actions,
  .form-actions,
  .testimonial-actions {
    width: 100%;
  }

  .hero-stats div,
  .concern-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 20px;
  }

  .calendar-card {
    padding: 20px;
  }

  .cal-embed-shell,
  .cal-inline {
    min-height: 720px;
  }

  .cal-inline {
    height: 720px;
  }

  .site-footer {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .footer-privacy-link {
    justify-self: start;
  }

  .footer-brandline {
    justify-content: flex-start;
  }
}
