/* ==========================================================================
   drazadehweber.com — rebuilt from the Wix original (see docs/design-tokens.md,
   archive/layout/*.json for the reference metrics at 1440px / 390px).
   ========================================================================== */
:root {
  --black: #000;
  --white: #fff;
  --teal: #15a28f;
  --navy: #2f356c;
  --pine: #304e4a;
  --brown: #915f25;
  --grey-input: rgba(255, 255, 255, 0.16);

  --font-text: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-display: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-condensed: "Jost", "Futura", "Inter", sans-serif;

  /* Section backgrounds copied from the Wix theme (360deg == bottom → top) */
  --grad-a: linear-gradient(360deg, #000 0%, #304e4a 39.3%, #2f356c 65.4%, #000 100%);
  --grad-b: linear-gradient(360deg, #2f356c 1%, #000 100%);
  --grad-c: linear-gradient(360deg, #15a28f 2.5%, #304e4a 19%, #2f356c 99.7%);
  --grad-d: linear-gradient(360deg, #915f25 0%, #15a28f 95.7%);
  --grad-e: linear-gradient(360deg, #000 0.6%, #2f356c 100%);
  --contact-glow:
    radial-gradient(circle at 94% 90%, #000 0%, 20%, rgba(0, 0, 0, 0) 40%),
    radial-gradient(circle at 6.5% 88%, rgba(21, 162, 143, 0.99) 0%, 25%, rgba(21, 162, 143, 0) 50%),
    radial-gradient(circle at 6% 14.5%, #000 0%, 42%, rgba(0, 0, 0, 0) 70%),
    radial-gradient(circle at 50% 50%, #0f5a50 0%, 30%, #000 65%);

  --gutter: clamp(20px, 3vw, 43px);
  --content-max: 1354px;
  --header-h: 160px;

  /* Type scale (desktop values; mobile overrides below) */
  --fs-display-xl: 51.75px;   /* section titles */
  --fs-display-l: 45px;       /* hero h1, "Services", footer "Stay Updated" */
  --fs-display-m: 40px;
  --fs-h2-text: 30.375px;
  --fs-h3-card: 28.125px;
  --fs-lead: 19.125px;
  --fs-body-l: 18px;
  --fs-body: 16px;
  --fs-body-s: 15px;
  --fs-small: 14px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation: none !important; transition: none !important; } }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-text);
  font-size: var(--fs-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; line-height: 1.2; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--teal); color: var(--black); padding: 8px 12px; z-index: 100; }
.skip-link:focus { left: 8px; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.container { width: min(100% - 2 * var(--gutter), var(--content-max)); margin-inline: auto; }
.section { position: relative; padding-block: 96px; }
.section__title { font-family: var(--font-display); font-size: var(--fs-display-xl); line-height: 1.2; text-align: center; }
.section__lead { font-size: var(--fs-body-l); line-height: 1.6; text-align: center; max-width: 652px; margin: 20px auto 0; }
.text-center { text-align: center; }

/* Buttons — outlined pills with the long arrow (Wix "Book Now" style) ------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  min-height: 46px; padding: 0 28px;
  border: 1px solid var(--white); border-radius: 30px;
  font-size: var(--fs-body); line-height: 1.4; color: var(--white); background: transparent;
  transition: background-color .2s, color .2s;
}
.btn:hover, .btn:focus-visible { background: var(--white); color: var(--black); text-decoration: none; }
.btn .icon-arrow { width: 44px; height: 16px; flex: none; }
.btn--wide { width: 100%; min-height: 41px; border-radius: 100px; background: var(--black); font-size: var(--fs-small); }
.btn--submit { width: 100%; min-height: 43px; border-radius: 100px; font-size: var(--fs-body); }

/* Social icons ---------------------------------------------------------------------------------- */
.social { display: flex; gap: 22px; }
.social a { display: block; width: 22px; height: 22px; color: var(--white); }
.social a:hover { color: var(--teal); }
.social .icon { width: 22px; height: 22px; }

/* Header ---------------------------------------------------------------------------------------- */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 20; color: var(--white); background: transparent;
  transition: background-color .3s, transform .25s linear; }
.site-header.is-scrolled { background: var(--black); }
.site-header.is-hidden { transform: translateY(-100%); }
main { padding-top: var(--header-h); }
.page-home main { padding-top: 0; }
.site-header__inner {
  position: relative; display: grid; grid-template-columns: 1fr auto 1fr; align-items: start;
  min-height: var(--header-h); padding: 19px var(--gutter) 0;
}
.site-header__social { padding-top: 50px; }
.site-header__brand { display: flex; flex-direction: column; align-items: center; text-align: center; }
.site-header__name { font-family: var(--font-display); font-weight: 800; font-size: 30px; line-height: 1.3; letter-spacing: -0.01em; }
.site-header__name:hover { text-decoration: none; }
.site-header__tagline { font-size: var(--fs-body); line-height: 1.6; margin-top: 2px; }
.site-header__brand::after { content: ""; display: block; width: min(680px, 80vw); height: 1px; background: var(--white); margin: 4px 0 8px; }
.site-nav ul { display: flex; gap: 20px; }
.site-nav a { display: block; padding: 7px 0; font-size: var(--fs-small); line-height: 1.7; }
.site-nav a[aria-current="page"] { text-decoration: underline; text-underline-offset: 3px; }
.site-header__cta { display: flex; justify-content: flex-end; padding-top: 66px; }
.site-header__cta .btn { min-width: 220px; }
.menu-toggle { display: none; }
.mobile-menu { display: none; }

/* Footer ---------------------------------------------------------------------------------------- */
.site-footer { background: var(--black); color: var(--white); padding: 43px 0 40px; }
.site-footer__inner { width: min(100% - 2 * var(--gutter), var(--content-max)); margin-inline: auto; }
.site-footer__name { font-family: var(--font-display); font-weight: 800; font-size: 56.25px; line-height: 1.3; letter-spacing: -0.01em; }
.site-footer__grid { display: grid; grid-template-columns: minmax(0, 591px) minmax(0, 1fr); gap: 40px; margin-top: 35px; }
.footer-nav li + li { margin-top: 12px; }
.footer-nav li:last-child { margin-top: 22px; }
.footer-nav a { font-size: var(--fs-body); line-height: 1.6; }
.site-footer .social { margin-top: 35px; }
.site-footer__contact { margin-top: 35px; font-size: var(--fs-body); line-height: 1.6; }
.site-footer__col--form { padding-top: 74px; }
.subscribe-form__title { font-family: var(--font-display); font-size: var(--fs-display-l); line-height: 1.3; margin-bottom: 40px; }
.subscribe-form .field label { display: block; font-size: var(--fs-small); line-height: 1.6; margin-bottom: 9px; }
.subscribe-form .field input { width: 100%; height: 38px; background: transparent; border: 0; border-bottom: 1px solid var(--white); color: var(--white); font: inherit; font-size: var(--fs-small); padding: 0 4px; border-radius: 0; }
.subscribe-form__row { display: flex; align-items: center; gap: 24px; margin-top: 25px; }
.subscribe-form__row .btn { flex: 0 1 435px; margin-left: auto; }
.checkbox { display: flex; align-items: center; gap: 12px; font-size: var(--fs-small); line-height: 1.5; cursor: pointer; }
.checkbox input { width: 16px; height: 16px; margin: 0; accent-color: var(--teal); flex: none; }
.form__status { margin-top: 12px; font-size: var(--fs-small); min-height: 1.2em; }
.form__status.is-error { color: #ffbfa1; }
.form__status.is-success { color: #d2e4c7; }
.site-footer__bottom { display: flex; justify-content: space-between; align-items: baseline; gap: 24px; margin-top: 58px; font-size: var(--fs-small); }
.legal-nav { display: flex; flex-wrap: wrap; gap: 22px 42px; }

/* Home: hero ------------------------------------------------------------------------------------ */
.hero { position: relative; min-height: 900px; display: grid; justify-items: center; align-content: start; text-align: center; overflow: hidden; background: var(--black); }
.hero__bg, .hero__bg img, .hero__bg picture, .hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
/* Wix fades the video in over its poster once it can play (~0.8s) */
.hero__video { opacity: 0; transition: opacity .8s ease; }
.hero__video.is-playing { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .hero__video { display: none; } }
.hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.45) 60%, #000 100%); }
.hero__content { position: relative; width: min(1098px, 100% - 2 * var(--gutter)); padding: 223px 0 200px; }
.hero__logo { width: 104px; height: 104px; margin: 0 auto 6px; }
.hero__title { font-family: var(--font-display); font-size: var(--fs-display-l); line-height: 1.3; }
.hero__lead { font-size: var(--fs-lead); line-height: 1.6; margin-top: 12px; }
.hero .btn { margin-top: 24px; min-width: 222px; }

/* Home: nurture / services (photo with a soft oval mask + text) ---------------------------------- */
/* Masks are the SVGs Wix applies (archive/html -> --mask-image), stretched to the box like Wix does. */
.oval, .mask-portrait, .mask-blob, .mask-ellipse { -webkit-mask-size: 100% 100%; mask-size: 100% 100%; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; }
.oval { -webkit-mask-image: url(/assets/img/masks/oval-feather.svg); mask-image: url(/assets/img/masks/oval-feather.svg); }
.mask-portrait { -webkit-mask-image: url(/assets/img/masks/portrait-feather.svg); mask-image: url(/assets/img/masks/portrait-feather.svg); }
.mask-blob { -webkit-mask-image: url(/assets/img/masks/blob.svg); mask-image: url(/assets/img/masks/blob.svg); }
.mask-ellipse { -webkit-mask-image: url(/assets/img/masks/ellipse.svg); mask-image: url(/assets/img/masks/ellipse.svg); }
.oval img, .mask-portrait img { width: 100%; height: auto; object-fit: cover; aspect-ratio: var(--ar, 1); }
.nurture { background: var(--grad-a); padding: 130px 0 130px; }
.nurture .container { display: grid; grid-template-columns: minmax(0, 460px) minmax(0, 455px); justify-content: space-between; gap: 40px 100px; align-items: center; padding-inline: clamp(0px, 12.64vw, 182px) clamp(0px, 10.28vw, 148px); }
.nurture__photo { width: 460px; max-width: 100%; --ar: 460 / 510; }
.nurture__title { font-size: var(--fs-h2-text); line-height: 1.3; }
.nurture__text { font-size: var(--fs-body-l); line-height: 1.6; margin-top: 16px; }
.nurture .btn { margin-top: 32px; min-width: 255px; }

.services { background: var(--grad-a); padding: 57px 0 57px; }
.services .container { display: grid; grid-template-columns: minmax(0, 482px) minmax(0, 491px); justify-content: space-between; align-items: start; gap: 40px 60px; padding-inline: clamp(0px, 9.03vw, 130px) clamp(0px, 9.8vw, 141px); }
.services__title { font-family: var(--font-display); font-size: var(--fs-display-l); line-height: 1.3; margin-top: 60px; }
.services__list { margin-top: 44px; }
.services__list li { display: flex; align-items: center; gap: 17px; font-size: 25px; line-height: 1.6; }
.services__list li + li { margin-top: 23px; }
.services__list .icon { width: 40px; height: 40px; flex: none; }
.services__photo { width: 491px; max-width: 100%; --ar: 491 / 585; }

/* Home: solutions cards --------------------------------------------------------------------------- */
.solutions { background: var(--grad-b); padding: 43px 0 22px; }
.solutions__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 48px; max-width: 1070px; margin: 110px auto 0; }
.card { display: grid; grid-template-columns: minmax(0, 1fr) 147px; gap: 24px; align-items: center; min-height: 200px; padding: 28px 36px; border: 1px solid var(--white); border-radius: 20px; }
.card__title { font-size: var(--fs-h3-card); font-style: italic; line-height: 1.4; }
.card__text { font-size: var(--fs-body); line-height: 1.6; margin-top: 9px; }
.card__img { width: 147px; height: 137px; overflow: hidden; }
.card__img img { width: 100%; height: 100%; object-fit: cover; }

/* Home: insights teaser ---------------------------------------------------------------------------- */
.insights { background: var(--grad-c); padding: 172px 0 128px; }
.insights__lead { max-width: 633px; }
.blog-empty { max-width: 900px; margin: 96px auto 0; padding: 36px 20px; background: var(--black); text-align: center; }
.blog-empty__title { font-size: 24px; line-height: 1.4; }
.blog-empty__text { font-size: var(--fs-small); margin-top: 6px; }
.insights .btn { display: inline-flex; margin-top: 60px; min-width: 222px; }

/* Home: testimonials ---------------------------------------------------------------------------------- */
.testimonials { background: var(--grad-d); color: var(--black); padding: 114px 0 116px; }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; align-items: start; max-width: 1080px; margin: 108px auto 0; }
.quote { border: 1px solid var(--black); border-radius: 12px; padding: 44px 40px 36px; }
.quote p { font-size: var(--fs-body); line-height: 1.6; text-align: center; }
.quote footer { display: flex; align-items: center; gap: 24px; margin-top: 44px; font-style: italic; }
.quote .icon-quote { width: 39px; height: 15px; }

/* Generic page hero (about/speaking/policies) ---------------------------------------------------------- */
.page-hero { background: var(--grad-a); }
.page-hero--black { background: var(--black); }
.page-hero__title { font-family: var(--font-display); font-size: var(--fs-display-xl); line-height: 1.2; text-align: center; }
.page-hero__lead { font-size: var(--fs-body-l); line-height: 1.6; text-align: center; max-width: 791px; margin: 24px auto 0; }

/* About ---------------------------------------------------------------------------------------------- */
.about-hero { background: var(--grad-a); padding: 56px 0 100px; }
.about-hero .container { display: grid; grid-template-columns: minmax(0, 599px) minmax(0, 599px); justify-content: space-between; gap: 40px; align-items: start; padding-inline: clamp(0px, 4.03vw, 58px); }
.about-hero__photo { width: 599px; max-width: 100%; --ar: 599 / 822; }
.about-hero__text { padding-top: 40px; }
.about-hero__title { font-family: var(--font-display); font-size: var(--fs-display-m); line-height: 1.2; }
.about-hero__text p { font-size: var(--fs-body-s); line-height: 1.6; }
.about-hero__text p + p { margin-top: 24px; }
.about-hero__title + p { margin-top: 12px; }
.values { background: var(--grad-e); padding: 125px 0 90px; }
.values__lead { max-width: 791px; }
.values-ring { position: relative; min-height: 571px; background: var(--black); overflow: hidden; }
.values-ring video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; -webkit-mask-image: url(/assets/img/masks/ellipse.svg); mask-image: url(/assets/img/masks/ellipse.svg); -webkit-mask-size: 100% 100%; mask-size: 100% 100%; }
.values-ring__list { position: absolute; right: clamp(20px, 13.4vw, 194px); top: 73px; width: 310px; font-size: 33.75px; font-style: italic; line-height: 1.3; }
.values-ring__list li { position: relative; padding-left: 26px; }
.values-ring__list li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 8px; height: 8px; border-radius: 50%; background: var(--white); }
.values-ring__list li + li { margin-top: 52px; }
.values-ring__list li:nth-child(1) { margin-left: 0; }
.values-ring__list li:nth-child(2) { margin-left: 59px; }
.values-ring__list li:nth-child(3) { margin-left: 102px; }
.values-ring__list li:nth-child(4) { margin-left: 58px; }
.values-ring__list li:nth-child(5) { margin-left: -8px; }

/* Speaking / Media ------------------------------------------------------------------------------------ */
.speaking-hero { padding: 121px 0 63px; }
.speaking-panels { background: var(--black); padding: 72px 0 120px; }
.speaking-panels .container { max-width: 1296px; }
.panel { width: 100%; }
.panel img { width: 100%; height: auto; }
.panel + .panel { margin-top: 121px; }
.panel__zoom { overflow: hidden; }
.panel__zoom img { transition: transform 2.2s cubic-bezier(.14, .4, .09, .99); }
.panel__zoom:hover img { transform: scale(1.1); }
@media (prefers-reduced-motion: reduce) { .panel__zoom img { transition: none; } .panel__zoom:hover img { transform: none; } }
.panel--book { background: #bcc6cc; color: var(--black); padding-bottom: 6%; }
.panel--book img { width: 100%; }
.panel__contact { text-align: center; font-family: var(--font-text); font-weight: 600; }
.panel__contact a { display: block; font-size: clamp(16px, 2.2vw, 30px); line-height: 1.5; letter-spacing: 0.06em; }
.panel__contact a + a { font-size: clamp(15px, 2vw, 27px); margin-top: 0.6em; }

/* New client forms ------------------------------------------------------------------------------------ */
.forms-hero { padding: 57px 0 57px; }
.forms-hero__title { font-family: var(--font-display); font-size: 39px; line-height: 1.3; text-align: center; max-width: 1252px; margin-inline: auto; }
.forms-hero__lead { font-size: var(--fs-body); line-height: 1.6; text-align: center; max-width: 1252px; margin: 40px auto 0; }
.forms-hero .btn { display: inline-flex; min-width: 222px; margin-top: 22px; }

/* Contact ---------------------------------------------------------------------------------------------- */
.contact { background: var(--contact-glow), var(--black); padding: 117px 0 100px; }
.contact-form { max-width: 700px; margin: 50px auto 0; padding: 24px 24px 24px; border: 1px solid var(--white); border-radius: 20px; }
.field + .field { margin-top: 24px; }
.field label { display: block; font-size: var(--fs-small); line-height: 1.4; margin-bottom: 8px; }
.field input, .field textarea { width: 100%; min-height: 40px; padding: 8px 12px; background: var(--grey-input); border: 1px solid transparent; border-radius: 6px; color: var(--white); font: inherit; font-size: var(--fs-body); line-height: 1.5; }
.field textarea { min-height: 76px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--white); }
.field--phone { display: grid; grid-template-columns: auto 1fr; }
.field--phone label { grid-column: 1 / -1; }
.contact-form .btn--submit { margin-top: 32px; }
.form__note { font-size: 13px; opacity: .8; margin-top: 10px; }

/* Blog ------------------------------------------------------------------------------------------------- */
.blog-hero { background: var(--black); padding: 117px 0 100px; min-height: 864px; }
.blog-hero .blog-empty { background: transparent; margin-top: 290px; }
.post-list { max-width: 900px; margin: 60px auto 0; display: grid; gap: 32px; }
.post-card { border: 1px solid var(--white); border-radius: 20px; padding: 32px; }
.post-card h2 { font-size: var(--fs-h3-card); line-height: 1.3; }
.post-card time { display: block; font-size: var(--fs-small); opacity: .8; margin-top: 6px; }
.post-card p { margin-top: 12px; }
.post { background: var(--black); padding: 80px 0 100px; }
.post__inner { max-width: 842px; margin-inline: auto; }
.post__title { font-family: var(--font-display); font-size: var(--fs-display-m); line-height: 1.2; }
.post__meta { font-size: var(--fs-small); opacity: .8; margin-top: 12px; }
.prose { margin-top: 40px; font-size: var(--fs-body); line-height: 1.6; }
.prose h2 { font-size: 24px; margin: 40px 0 12px; }
.prose h3 { font-size: 20px; margin: 32px 0 10px; }
.prose p + p { margin-top: 24px; }
.prose ul { list-style: disc; padding-left: 29px; }
.prose li + li { margin-top: 0; }
.prose a { text-decoration: underline; }
.prose img { border-radius: 12px; }

/* Press --------------------------------------------------------------------------------------------------- */
.press { background: var(--black); padding: 43px 0 120px; }
.press__title { font-family: var(--font-display); font-size: 47.25px; text-align: center; }
.press__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 43px 23px; margin-top: 90px; }
.press-card { display: flex; flex-direction: column; background: #161616; color: var(--white); text-align: center; padding: 0 0 32px; border: 1px solid #333; border-radius: 12px; overflow: hidden; transition: transform .3s ease, border-color .3s ease; }
.press-card:hover { text-decoration: none; transform: translateY(-4px); border-color: #666; }
.press-card__media { aspect-ratio: 436 / 300; display: grid; place-items: center; padding: 24px; background: #8f8f8f; }
.press-card__media--photo { padding: 0; overflow: hidden; }
.press-card__media--photo img, .press-card__media--photo picture { width: 100%; height: 100%; object-fit: cover; transition: transform 2.2s cubic-bezier(.14, .4, .09, .99); }
.press-card:hover .press-card__media--photo img { transform: scale(1.08); }
.press-card__outlet { display: block; padding: 0 32px; font-family: var(--font-condensed); font-size: clamp(22px, 2.2vw, 30px); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; line-height: 1.2; }
.press-card__body { display: block; padding: 0 28px; }
.press-card__source { display: block; margin-top: 26px; font-family: var(--font-condensed); font-size: 15px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); }
.press-card__title { display: block; font-family: var(--font-display); font-size: 21px; line-height: 1.35; margin-top: 12px; }
.press-card__kicker { display: inline-block; font-size: var(--fs-small); margin-top: 14px; opacity: .9; text-decoration: underline; white-space: nowrap; }
@media (prefers-reduced-motion: reduce) { .press-card, .press-card__media--photo img { transition: none; } .press-card:hover { transform: none; } .press-card:hover .press-card__media--photo img { transform: none; } }

/* Policy pages ------------------------------------------------------------------------------------------------ */
.policy-centered { padding: 97px 0 80px; }
.policy-centered__title { font-family: var(--font-display); font-size: 46px; line-height: 1.2; text-align: center; }
.policy-centered .prose { max-width: 1237px; margin: 11px auto 0; text-align: center; font-size: var(--fs-body-s); }
.policy-centered .prose p + p { margin-top: 24px; }
.policy { background: var(--black); padding: 86px 0 44px; }
.policy__title { font-size: 33.75px; font-style: italic; line-height: 1.3; }
.policy .prose { max-width: 842px; margin-top: 73px; }
.policy .prose h2 { font-size: 17px; font-weight: 400; margin: 44px 0 17px; }
.policy .prose h2:first-child { margin-top: 0; }
.policy .prose p + p { margin-top: 26px; }
.policy .prose ul { margin-top: 0; }
.policy-note { background: var(--brown); color: var(--black); padding: 72px 0 72px; }
.policy-note .prose { max-width: 808px; margin: 0; font-size: var(--fs-body); }
.policy-note .prose a { text-decoration: underline; }
.policy--accessibility .prose > p:first-of-type, .policy--accessibility .prose em { font-style: italic; }

/* 404 ---------------------------------------------------------------------------------------------------------- */
.not-found { min-height: 60vh; display: grid; place-items: center; text-align: center; padding: 100px var(--gutter); }
.not-found h1 { font-family: var(--font-display); font-size: var(--fs-display-xl); }
.not-found p { margin-top: 16px; font-size: var(--fs-body-l); }
.not-found .btn { margin-top: 32px; }

/* ==========================================================================================================
   Responsive
   ========================================================================================================== */
@media (max-width: 1100px) {
  .nurture .container, .services .container, .about-hero .container { padding-inline: 0; }
  .site-nav ul { gap: 14px; }
}
@media (max-width: 1000px) {
  :root { --header-h: auto; }
  .site-header { position: sticky; background: var(--black); }
  main, .page-home main { padding-top: 0; }
  .site-header__inner { display: block; padding: 18px 20px 0; }
  .site-header__social, .site-header__brand::after { display: none; }
  .site-header__brand { align-items: flex-start; text-align: left; padding-right: 90px; }
  .site-header__name { font-size: 25px; line-height: 1.3; }
  .site-header__tagline { margin-top: 22px; max-width: 275px; }
  .site-nav { display: none; }
  .site-header__cta { padding: 20px 0 0; }
  .site-header__cta .btn { width: 100%; min-height: 46px; background: var(--black); font-size: var(--fs-small); }
  .page-home .hero__content { padding-top: 60px; }
  .menu-toggle { display: block; position: absolute; top: 33px; right: 15px; width: 60px; height: 60px; color: var(--white); display: grid; place-items: center; }
  .menu-toggle__close { display: none; }
  .menu-toggle[aria-expanded="true"] .menu-toggle__open { display: none; }
  .menu-toggle[aria-expanded="true"] .menu-toggle__close { display: block; }
  .mobile-menu { position: fixed; inset: 0; z-index: 30; background: var(--white); color: var(--black); padding: 100px 40px 40px; overflow: auto; }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu:not([hidden]) { display: block; }
  .mobile-menu nav a { display: block; text-align: right; padding: 12px 0; font-size: 16px; }
  .mobile-menu nav a[aria-current="page"] { color: #4a7bff; }
  .mobile-menu .social { justify-content: flex-end; margin-top: 40px; }
  .mobile-menu .social a { color: var(--black); }
  body.menu-open { overflow: hidden; }
  body.menu-open .menu-toggle { position: fixed; z-index: 40; color: var(--black); }
}
@media (max-width: 800px) {
  :root {
    --fs-display-xl: 26px; --fs-display-l: 26px; --fs-display-m: 26px; --fs-h2-text: 26px; --fs-h3-card: 18px;
    --fs-lead: 14px; --fs-body-l: 14px; --fs-body-s: 16px;
  }
  .section { padding-block: 60px; }
  .section__lead { margin-top: 16px; }
  .btn { font-size: var(--fs-small); }
  .hero { min-height: 771px; }
  .hero__content { padding: 315px 0 120px; }
  .hero__logo { margin-bottom: 0; }
  .hero__lead { margin-top: 12px; }
  .nurture { padding: 48px 0 70px; }
  .nurture .container { grid-template-columns: 1fr; text-align: center; gap: 50px; }
  .nurture__photo { order: 2; width: 100%; max-width: 460px; margin-inline: auto; }
  .nurture__text { margin-top: 8px; font-size: var(--fs-small); }
  .services { padding: 19px 0 60px; }
  .services .container { grid-template-columns: 1fr; gap: 30px; }
  .services__title { margin-top: 0; }
  .services__list { margin-top: 26px; }
  .services__list li { font-size: 16px; gap: 15px; }
  .services__list li + li { margin-top: 18px; }
  .services__list .icon { width: 30px; height: 30px; }
  .services__photo { width: 100%; max-width: 491px; margin-inline: auto; }
  .solutions { padding: 25px 0 60px; }
  .solutions__grid { grid-template-columns: 1fr; gap: 24px; margin-top: 60px; }
  .card { grid-template-columns: 1fr; padding: 20px 10px 24px; }
  .card__img { width: 235px; height: 200px; }
  .insights { padding: 76px 0 90px; }
  .blog-empty { margin-top: 60px; }
  .insights .btn { margin-top: 40px; }
  .testimonials { padding: 47px 0 80px; }
  .testimonials__grid { grid-template-columns: 1fr; margin-top: 60px; }
  .site-footer { padding: 28px 0 40px; }
  .site-footer__name { font-size: 31.4px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 40px; margin-top: 20px; }
  .footer-nav li + li { margin-top: 6px; }
  .footer-nav li:last-child { margin-top: 6px; }
  .site-footer .social { margin-top: 30px; }
  .site-footer .social a, .site-footer .social .icon { width: 18px; height: 18px; }
  .site-footer__contact { margin-top: 28px; font-size: var(--fs-small); }
  .site-footer__col--form { padding-top: 0; }
  .subscribe-form__title { font-size: 30px; margin-bottom: 52px; }
  .subscribe-form__row { align-items: flex-start; }
  .subscribe-form__row .btn { flex: 1 1 195px; }
  .site-footer__bottom { flex-direction: column; margin-top: 50px; gap: 20px; }
  .legal-nav { flex-direction: column; gap: 4px; }
  .about-hero { padding: 40px 0 28px; }
  .about-hero .container { grid-template-columns: 1fr; }
  .about-hero__photo { width: 100%; max-width: 335px; margin-inline: auto; --ar: 335 / 702; }
  .about-hero__text { padding-top: 0; }
  .values { padding: 90px 0 0; }
  .values-ring { min-height: 314px; }
  .values-ring video { width: 321px; height: 314px; right: auto; }
  .values-ring__list { right: 34px; left: auto; top: 83px; width: 120px; font-size: 14px; }
  .values-ring__list li + li { margin-top: 15px; }
  .values-ring__list li { padding-left: 16px; }
  .values-ring__list li::before { width: 5px; height: 5px; }
  .values-ring__list li:nth-child(2) { margin-left: 16px; }
  .values-ring__list li:nth-child(3) { margin-left: 28px; }
  .values-ring__list li:nth-child(4) { margin-left: 16px; }
  .values-ring__list li:nth-child(5) { margin-left: 0; }
  .speaking-hero { padding: 60px 0 40px; }
  .speaking-panels { padding: 40px 0 80px; }
  .panel + .panel { margin-top: 120px; }
  .forms-hero { padding: 40px 0 50px; }
  .forms-hero__title { font-size: 26px; }
  .forms-hero__lead { margin-top: 24px; }
  .contact { padding: 60px 0 70px; }
  .contact-form { margin-top: 32px; padding: 20px 16px; }
  .blog-hero { min-height: 0; padding: 60px 0 80px; }
  .blog-hero .blog-empty { margin-top: 120px; }
  .press__grid { grid-template-columns: 1fr; gap: 24px; margin-top: 50px; }
  .press__title { font-size: 30px; }
  .policy-centered { padding: 60px 0 60px; }
  .policy-centered__title { font-size: 26px; }
  .policy { padding: 60px 0 40px; }
  .policy .prose { margin-top: 40px; }
  .policy-note { padding: 48px 0; }
}
@media (max-width: 480px) {
  .subscribe-form__row { flex-wrap: wrap; }
  .subscribe-form__row .btn { flex-basis: 100%; }
  .quote { padding: 32px 24px; }
}

/* ==========================================================================================================
   Entrance animations (measured on the Wix site: 1.2s, same easings/delays; see scripts/probe-animations.mjs)
   Elements get data-anim="reveal|fade|expand|float|float-left" and optional style="--anim-delay:.3s".
   Hidden only when JS is available (html.js), revealed with .in-view by the IntersectionObserver in main.js.
   ========================================================================================================== */
.js [data-anim] { opacity: 0; }
.js [data-anim].in-view { animation-duration: 1.2s; animation-fill-mode: both; animation-delay: var(--anim-delay, 0s); }
.js [data-anim="reveal"].in-view { animation-name: motion-reveal; animation-timing-function: cubic-bezier(.645, .045, .355, 1); }
.js [data-anim="fade"].in-view { animation-name: motion-fade; animation-timing-function: cubic-bezier(.445, .05, .55, .95); }
.js [data-anim="float"].in-view { animation-name: motion-float; animation-timing-function: cubic-bezier(.445, .05, .55, .95); }
.js [data-anim="float-left"].in-view { animation-name: motion-float-left; animation-timing-function: cubic-bezier(.445, .05, .55, .95); }
.js [data-anim="expand"].in-view { animation-name: motion-fade-linear, motion-expand; animation-timing-function: linear, cubic-bezier(.645, .045, .355, 1); }
@keyframes motion-reveal {
  from { opacity: 0; transform: translateY(100%); clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); }
  to   { opacity: 1; transform: none; clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
}
@keyframes motion-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes motion-fade-linear { from { opacity: 0; } to { opacity: 1; } }
@keyframes motion-expand { from { transform: scale(.8); } to { transform: none; } }
@keyframes motion-float { from { opacity: 0; transform: translateY(60px); } to { opacity: 1; transform: none; } }
@keyframes motion-float-left { from { opacity: 0; transform: translateX(-60px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .js [data-anim] { opacity: 1; animation: none !important; } }
