@font-face {
  font-family: "DM Serif Display";
  src: url("assets/dm-serif-display.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "DM Serif Display";
  src: url("assets/dm-serif-display-italic.ttf") format("truetype");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/manrope-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/manrope-semibold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
}

:root {
  --paper: #fffafa;
  --paper-soft: #fcf2f4;
  --paper-rose: #f8e5e9;
  --rose-light: #f5d9df;
  --rose: #e8556d;
  --rose-deep: #c8445c;
  --rose-dark: #8b3143;
  --ink: #272b3b;
  --ink-soft: #484a59;
  --muted: #737282;
  --white: #ffffff;
  --line: rgba(39, 43, 59, 0.12);
  --serif: "DM Serif Display", Georgia, "Times New Roman", serif;
  --sans: "Manrope", Arial, Helvetica, sans-serif;
  --container: 1180px;
  --shadow: 0 28px 70px rgba(101, 49, 61, 0.14);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

p,
h1,
h2,
h3,
dl,
dd {
  margin-top: 0;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 128px 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 16px;
  left: 16px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(232, 85, 109, 0.42);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 84px;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  background: rgba(255, 250, 250, 0.93);
  border-color: rgba(39, 43, 59, 0.08);
  box-shadow: 0 10px 30px rgba(72, 37, 46, 0.07);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  color: var(--white);
  background: var(--rose);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 0.9rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 600;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--rose);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav > a:not(.nav-cta):hover::after,
.main-nav > a:not(.nav-cta).is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 20px;
  color: var(--white);
  background: var(--rose);
  border: 1px solid var(--rose);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-cta:hover {
  color: var(--rose);
  background: transparent;
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 23px;
  height: 1.5px;
  margin: 6px auto;
  background: var(--ink);
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 800px;
  overflow: hidden;
  background: var(--paper-soft);
}

.hero-stripes {
  position: absolute;
  z-index: -3;
  inset: 0;
  opacity: 0.72;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.12)),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.52) 0,
      rgba(255, 255, 255, 0.52) 72px,
      rgba(232, 85, 109, 0.025) 72px,
      rgba(232, 85, 109, 0.025) 144px
    );
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.01fr) minmax(430px, 0.99fr);
  align-items: center;
  gap: 30px;
  min-height: 770px;
  padding-top: 96px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 68px 0 42px;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 22px;
  color: var(--rose-deep);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  width: 36px;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero h1 {
  max-width: 650px;
  margin-bottom: 26px;
  font-family: var(--serif);
  font-size: clamp(4.5rem, 6.2vw, 6.7rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.045em;
}

.hero h1 span {
  display: block;
}

.hero h1 .accent {
  color: var(--rose);
  font-style: italic;
}

.hero-lead {
  max-width: 570px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: 1.06rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 180ms ease;
}

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

.button:hover svg {
  transform: translateX(3px);
}

.button-primary {
  color: var(--white);
  background: var(--rose);
  border-color: var(--rose);
  box-shadow: 0 16px 30px rgba(232, 85, 109, 0.2);
}

.button-primary:hover {
  background: var(--rose-deep);
  border-color: var(--rose-deep);
  box-shadow: 0 20px 38px rgba(200, 68, 92, 0.25);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  color: var(--rose-deep);
  border-bottom: 1px solid rgba(200, 68, 92, 0.28);
  font-size: 0.82rem;
  font-weight: 600;
}

.text-link span {
  font-size: 1rem;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateY(3px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  align-items: start;
  column-gap: clamp(22px, 2.5vw, 38px);
  margin: 56px 0 0;
}

.hero-stats div {
  display: grid;
  grid-template-columns: minmax(68px, max-content) max-content;
  align-items: center;
  column-gap: 12px;
}

.hero-stats dt {
  display: inline-flex;
  align-items: baseline;
  margin: 0;
  font-family: var(--serif);
  font-size: 2.2rem;
  line-height: 1;
  white-space: nowrap;
}

.hero-stats .stat-unit {
  margin-left: 5px;
  color: var(--ink);
  font-size: 0.46em;
  letter-spacing: 0.01em;
}

.hero-stats .stat-plus {
  margin-left: 2px;
  color: var(--rose);
  font-size: 0.7em;
  font-family: var(--sans);
  font-weight: 400;
}

.hero-stats dd {
  margin: 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 0.82rem;
  line-height: 1.15;
}

.hero-portrait {
  position: relative;
  align-self: end;
  height: 710px;
}

.hero-person {
  position: absolute;
  z-index: 4;
  right: -14px;
  bottom: 0;
  width: min(100%, 486px);
  max-height: 690px;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 24px 20px rgba(56, 34, 39, 0.13));
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 89%, rgba(0, 0, 0, 0.9) 92%, rgba(0, 0, 0, 0.38) 97%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 89%, rgba(0, 0, 0, 0.9) 92%, rgba(0, 0, 0, 0.38) 97%, transparent 100%);
}

.portrait-monogram {
  position: absolute;
  z-index: 1;
  top: 58px;
  right: -46px;
  color: var(--rose);
  font-family: var(--serif);
  font-size: 590px;
  font-style: italic;
  line-height: 0.82;
  letter-spacing: -0.14em;
  opacity: 0.96;
  text-shadow: 0 30px 65px rgba(139, 49, 67, 0.16);
  transform: rotate(-7deg) scaleX(1.04);
  transform-origin: center;
  user-select: none;
}

.hero-flower {
  position: absolute;
  z-index: 6;
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 12px 16px rgba(58, 47, 45, 0.18));
}

.hero-flower-top {
  top: 104px;
  right: -72px;
  width: 178px;
  transform: rotate(16deg);
}

.hero-flower-bottom {
  left: -8px;
  bottom: 68px;
  width: 136px;
  transform: rotate(-16deg) scaleX(-1);
}

.availability-card {
  position: absolute;
  z-index: 6;
  right: 12px;
  bottom: 62px;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 210px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 3px;
  box-shadow: 0 16px 40px rgba(53, 35, 41, 0.14);
  backdrop-filter: blur(12px);
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.35;
}

.availability-card strong {
  display: block;
  color: var(--ink);
  font-size: 0.78rem;
}

.availability-dot {
  width: 10px;
  height: 10px;
  border: 3px solid #f9c8d1;
  background: var(--rose);
  border-radius: 50%;
  box-sizing: content-box;
}

.authority-card {
  position: absolute;
  z-index: 7;
  left: -42px;
  bottom: 150px;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  width: 315px;
  padding: 15px 17px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(232, 85, 109, 0.15);
  border-radius: 3px;
  box-shadow: 0 18px 44px rgba(74, 40, 49, 0.15);
  backdrop-filter: blur(14px);
}

.authority-seal {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
}

.authority-seal img {
  width: 100%;
  height: auto;
}

.authority-copy {
  display: block;
  min-width: 0;
  line-height: 1.22;
}

.authority-copy small {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.authority-copy strong {
  display: block;
  font-family: var(--serif);
  font-size: 0.88rem;
  font-weight: 400;
}

.authority-acronym {
  display: block;
  margin-top: 5px;
  color: var(--rose-deep);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.story {
  background: var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1.12fr);
  align-items: center;
  gap: 100px;
}

.story-image-wrap {
  position: relative;
  max-width: 440px;
}

.story-image-wrap::before {
  position: absolute;
  z-index: 0;
  inset: 18px -18px -18px 18px;
  border: 1px solid rgba(200, 68, 92, 0.3);
  border-radius: 2px;
  content: "";
}

.story-image-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 4 / 5.1;
  background: var(--ink);
  border-radius: 2px;
  box-shadow: var(--shadow);
}

.story-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.story-caption {
  position: absolute;
  z-index: 2;
  right: -52px;
  bottom: 38px;
  width: 224px;
  padding: 20px 22px;
  background: var(--ink);
  border-left: 4px solid var(--rose);
  border-radius: 2px;
  box-shadow: 0 20px 42px rgba(39, 43, 59, 0.2);
  color: var(--white);
  line-height: 1.2;
}

.story-caption span {
  display: block;
  margin-bottom: 3px;
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-caption strong {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
}

.story-copy h2,
.section-heading h2,
.approach h2,
.product h2,
.contact h2 {
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: clamp(3.1rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.story-copy .lead {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.story-copy > p:not(.section-kicker) {
  max-width: 680px;
  color: var(--muted);
}

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 34px 0 30px;
}

.credentials span {
  padding: 9px 13px;
  color: var(--rose-dark);
  background: var(--paper-soft);
  border: 1px solid rgba(232, 85, 109, 0.16);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
}

.text-link-dark {
  color: var(--ink);
  border-color: var(--line);
}

.services {
  position: relative;
  overflow: hidden;
  background: var(--paper-soft);
}

.services::before {
  position: absolute;
  top: 20%;
  left: -150px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(232, 85, 109, 0.16);
  border-radius: 50%;
  content: "";
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 68px;
}

.section-heading h2 {
  max-width: 790px;
  margin-bottom: 0;
}

.section-heading > p {
  margin-bottom: 6px;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  position: relative;
  min-height: 330px;
  padding: 36px 30px 32px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(232, 85, 109, 0.12);
  border-radius: 18px;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.service-card::after {
  position: absolute;
  right: -58px;
  bottom: -58px;
  width: 130px;
  height: 130px;
  background: var(--rose-light);
  border-radius: 50%;
  content: "";
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 220ms ease, transform 220ms ease;
}

.service-card:hover {
  z-index: 1;
  background: var(--white);
  box-shadow: 0 22px 52px rgba(88, 50, 59, 0.1);
  transform: translateY(-7px);
}

.service-card:hover::after {
  opacity: 0.65;
  transform: scale(1);
}

.service-number {
  position: absolute;
  top: 28px;
  right: 28px;
  color: rgba(200, 68, 92, 0.48);
  font-family: var(--serif);
  font-size: 0.92rem;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 48px;
  color: var(--rose-deep);
  background: var(--paper-rose);
  border-radius: 50%;
}

.service-icon svg,
.contact-icon svg,
.floating-whatsapp svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.service-card h3 {
  margin-bottom: 15px;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.1;
}

.service-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.approach {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.approach::before {
  position: absolute;
  top: -180px;
  right: -100px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(232, 85, 109, 0.3), rgba(232, 85, 109, 0) 68%);
  content: "";
}

.approach-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 110px;
}

.section-kicker-light {
  color: #f4a9b6;
}

.approach h2 {
  max-width: 520px;
  color: var(--white);
}

.approach-intro > p:last-child {
  max-width: 490px;
  color: rgba(255, 255, 255, 0.68);
}

.approach-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.approach-steps li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.approach-steps > li > span {
  color: #f4a9b6;
  font-family: var(--serif);
  font-size: 1.12rem;
}

.approach-steps h3 {
  margin-bottom: 6px;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
}

.approach-steps p {
  max-width: 530px;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.86rem;
}

.speaking {
  position: relative;
  isolation: isolate;
  min-height: 760px;
  padding: 132px 0;
  overflow: hidden;
  color: var(--white);
  background: #171923;
}

.speaking::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, #171923 0%, rgba(23, 25, 35, 0.98) 38%, rgba(23, 25, 35, 0.7) 58%, rgba(23, 25, 35, 0.12) 100%);
  content: "";
}

.speaking::after {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 51%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.18), transparent);
  content: "";
}

.speaking-media {
  position: absolute;
  z-index: -2;
  inset: 0 0 0 36%;
}

.speaking-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.speaking-layout {
  display: grid;
  grid-template-columns: minmax(0, 610px) 1fr;
  align-items: center;
  min-height: 496px;
}

.speaking-copy {
  max-width: 610px;
}

.speaking h2 {
  margin-bottom: 26px;
  font-family: var(--serif);
  font-size: clamp(3.6rem, 5.5vw, 5.8rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.035em;
}

.speaking-lead {
  max-width: 570px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.7);
}

.speaking-topics {
  max-width: 560px;
  margin-bottom: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.speaking-topics > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: baseline;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.speaking-topics span {
  color: #f4a9b6;
  font-family: var(--serif);
  font-size: 0.9rem;
}

.speaking-topics strong {
  font-size: 0.83rem;
  font-weight: 600;
}

.speaking-note {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
}

.product {
  background: var(--white);
}

.product-shell {
  display: grid;
  grid-template-columns: 1fr 0.84fr;
  align-items: center;
  gap: 82px;
}

.product-copy {
  padding: 25px 0;
}

.product h2 {
  margin-bottom: 8px;
  color: var(--rose-deep);
  font-size: clamp(3.8rem, 6vw, 6.5rem);
}

.product-subtitle {
  max-width: 590px;
  margin-bottom: 24px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-style: italic;
  line-height: 1.3;
}

.product-copy > p:not(.section-kicker):not(.product-subtitle) {
  max-width: 620px;
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
  font-size: 0.87rem;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 11px;
}

.check-list span {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: var(--rose-deep);
  background: var(--paper-rose);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 600;
}

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

.button-dark:hover {
  background: var(--rose-deep);
  box-shadow: 0 18px 35px rgba(139, 49, 67, 0.2);
}

.product-editorial {
  position: relative;
  isolation: isolate;
  min-height: 580px;
  padding: 48px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.1), transparent 36%),
    var(--rose);
  border-radius: 3px;
  box-shadow: 0 35px 75px rgba(125, 46, 62, 0.22);
}

.product-editorial::before {
  position: absolute;
  z-index: -1;
  content: "";
}

.product-editorial::before {
  top: 0;
  right: 44px;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.18);
}

.product-label {
  width: fit-content;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.product-note {
  margin: 82px 0 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-title-art span,
.product-title-art strong {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.035em;
}

.product-title-art span {
  font-size: 3rem;
  font-style: italic;
}

.product-title-art strong {
  font-size: clamp(3.8rem, 5vw, 5.5rem);
}

.product-rule {
  width: 100%;
  height: 1px;
  margin: 38px 0 25px;
  background: rgba(255, 255, 255, 0.28);
}

.product-editorial > p:not(.product-note) {
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.5;
}

.product-signature {
  position: absolute;
  right: 46px;
  bottom: 40px;
  font-family: var(--serif);
  font-size: 1rem;
}

.contact {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: linear-gradient(180deg, var(--paper-soft), var(--white));
}

.contact::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(39, 43, 59, 0.08);
  content: "";
}

.contact-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: 82px;
  width: min(calc(100% - 80px), 1320px);
  margin-bottom: 62px;
}

.contact h2 {
  max-width: 820px;
  margin-bottom: 0;
  color: var(--ink);
}

.contact-intro-copy {
  padding-left: 30px;
  border-left: 1px solid rgba(200, 68, 92, 0.26);
}

.contact-intro-copy p {
  max-width: 430px;
  margin-bottom: 28px;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.52fr) minmax(0, 1.48fr);
  align-items: stretch;
  gap: 24px;
  width: min(calc(100% - 80px), 1320px);
}

.contact-portrait {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
  border: 1px solid rgba(39, 43, 59, 0.12);
  border-radius: 2px;
  box-shadow: 0 22px 55px rgba(66, 43, 49, 0.12);
}

.contact-portrait img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center 12%;
}

.contact-portrait figcaption {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  padding: 23px 25px;
  color: var(--white);
}

.contact-portrait small {
  margin-bottom: 5px;
  color: #f4a9b6;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-portrait strong {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 400;
  line-height: 1.3;
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  font-style: normal;
}

.contact-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  min-height: 150px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(39, 43, 59, 0.1);
  border-radius: 2px;
  box-shadow: 0 14px 34px rgba(76, 45, 53, 0.055);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

a.contact-item:hover {
  border-color: rgba(200, 68, 92, 0.34);
  box-shadow: 0 20px 42px rgba(76, 45, 53, 0.11);
  transform: translateY(-3px);
}

.contact-location {
  grid-column: 1 / -1;
  min-height: 132px;
}

.contact-icon {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  color: var(--rose-deep);
  background: var(--paper-rose);
  border: 1px solid rgba(200, 68, 92, 0.13);
  border-radius: 2px;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-item small {
  display: block;
  margin: 1px 0 7px;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-item strong,
.contact-item span > a {
  display: block;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.contact-location strong {
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 400;
}

.contact-location > span:nth-child(2) {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.contact-arrow {
  position: absolute;
  top: 22px;
  right: 24px;
  color: var(--rose-deep);
  font-size: 1.1rem;
}

.icon-fill {
  fill: currentColor;
  stroke: none;
}

.site-footer {
  padding: 50px 0 24px;
  color: rgba(255, 255, 255, 0.66);
  background: #202331;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto;
  align-items: center;
  gap: 42px;
}

.brand-mark-light {
  color: var(--rose);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.18;
}

.footer-brand-copy strong,
.footer-brand-copy small {
  display: block;
}

.footer-brand-copy strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 400;
}

.footer-brand-copy small {
  margin-top: 5px;
  font-size: 0.66rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.7rem;
}

.footer-copyright {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 14px;
}

.footer-copyright strong {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 9px 22px;
  font-size: 0.7rem;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 180ms ease;
}

.footer-legal-links a:hover,
.footer-legal-links a[aria-current="page"] {
  color: var(--rose);
}

.back-top {
  justify-self: end;
  color: var(--white) !important;
  font-weight: 600;
}

.back-top span {
  display: inline-block;
  margin-left: 6px;
  color: var(--rose);
  transition: transform 180ms ease;
}

.back-top:hover span {
  transform: translateY(-3px);
}

.legal-page {
  background: var(--paper-soft);
}

.legal-site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 84px;
  background: rgba(255, 250, 250, 0.94);
  border-bottom: 1px solid rgba(39, 43, 59, 0.08);
  box-shadow: 0 10px 30px rgba(72, 37, 46, 0.05);
  backdrop-filter: blur(18px);
}

.legal-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--rose-deep);
  font-size: 0.78rem;
  font-weight: 600;
}

.legal-back span {
  transition: transform 180ms ease;
}

.legal-back:hover span {
  transform: translateX(-3px);
}

.legal-main {
  background: var(--paper-soft);
}

.legal-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 104px 0 88px;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.16)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.44) 0, rgba(255, 255, 255, 0.44) 72px, rgba(232, 85, 109, 0.025) 72px, rgba(232, 85, 109, 0.025) 144px);
}

.legal-hero::after {
  position: absolute;
  z-index: -1;
  right: -110px;
  bottom: -170px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(232, 85, 109, 0.17);
  border-radius: 50%;
  box-shadow: 0 0 0 54px rgba(232, 85, 109, 0.025);
  content: "";
}

.legal-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.46fr);
  align-items: end;
  gap: 80px;
}

.legal-hero h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(4rem, 7vw, 6.8rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.legal-hero .legal-lead {
  max-width: 720px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.legal-summary {
  margin: 0;
  padding: 24px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(232, 85, 109, 0.13);
  border-radius: 18px;
  box-shadow: 0 20px 48px rgba(90, 50, 61, 0.08);
  backdrop-filter: blur(14px);
}

.legal-summary div + div {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.legal-summary dt {
  margin: 0 0 3px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-summary dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.45;
}

.legal-content {
  padding: 90px 0 120px;
  background: var(--white);
}

.legal-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 780px);
  justify-content: space-between;
  gap: 90px;
}

.legal-nav {
  position: sticky;
  top: 118px;
  align-self: start;
}

.legal-nav > p {
  margin-bottom: 17px;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-nav ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal-nav a {
  display: block;
  padding: 8px 0;
  color: var(--muted);
  border-bottom: 1px solid transparent;
  font-size: 0.76rem;
  line-height: 1.35;
  transition: color 180ms ease, border-color 180ms ease;
}

.legal-nav a:hover {
  color: var(--rose-deep);
  border-color: rgba(200, 68, 92, 0.22);
}

.legal-article {
  color: var(--ink-soft);
}

.legal-article > section {
  scroll-margin-top: 118px;
}

.legal-article > section + section {
  margin-top: 58px;
  padding-top: 58px;
  border-top: 1px solid var(--line);
}

.legal-article h2 {
  margin-bottom: 20px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.legal-article h3 {
  margin: 30px 0 10px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 600;
}

.legal-article p,
.legal-article li {
  font-size: 0.94rem;
  line-height: 1.82;
}

.legal-article ul {
  display: grid;
  gap: 7px;
  margin: 18px 0 0;
  padding-left: 20px;
}

.legal-article a {
  color: var(--rose-deep);
  border-bottom: 1px solid rgba(200, 68, 92, 0.26);
}

.legal-note,
.legal-contact-card {
  margin-top: 24px;
  padding: 22px 24px;
  background: var(--paper-soft);
  border-left: 3px solid var(--rose);
  border-radius: 0 14px 14px 0;
}

.legal-note p,
.legal-contact-card p {
  margin: 0;
}

.legal-contact-card p + p {
  margin-top: 7px;
}

.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: var(--white);
  background: #25d366;
  border: 3px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(27, 114, 59, 0.3);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp:hover {
  box-shadow: 0 16px 34px rgba(27, 114, 59, 0.38);
  transform: translateY(-4px) scale(1.02);
}

.floating-whatsapp svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.6;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms cubic-bezier(0.2, 0.65, 0.25, 1), transform 700ms cubic-bezier(0.2, 0.65, 0.25, 1);
}

.js [data-reveal][data-delay="1"] {
  transition-delay: 100ms;
}

.js [data-reveal][data-delay="2"] {
  transition-delay: 180ms;
}

.js [data-reveal][data-delay="3"] {
  transition-delay: 260ms;
}

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

@media (max-width: 1080px) {
  .main-nav {
    gap: 20px;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 14px;
  }

  .hero-stats div {
    grid-template-columns: max-content minmax(0, 1fr);
    column-gap: 8px;
  }

  .hero-stats dt {
    font-size: 2rem;
  }

  .hero-stats dd {
    font-size: 0.75rem;
  }

  .hero-grid {
    grid-template-columns: 1.08fr 0.92fr;
  }

  .hero h1 {
    font-size: clamp(4.1rem, 7vw, 5.8rem);
  }

  .hero-person {
    right: -65px;
  }

  .authority-card {
    left: -26px;
    width: 285px;
  }

  .portrait-monogram {
    right: -92px;
    font-size: 550px;
  }

  .story-grid,
  .approach-grid {
    gap: 64px;
  }

  .product-shell {
    gap: 56px;
  }

  .product-editorial {
    padding: 40px;
  }

  .speaking-media {
    inset: 0 0 0 32%;
  }

  .speaking-layout {
    grid-template-columns: minmax(0, 560px) 1fr;
  }

  .speaking h2 {
    font-size: clamp(3.5rem, 6vw, 5rem);
  }

  .contact-intro {
    gap: 50px;
  }

  .contact-layout {
    grid-template-columns: minmax(250px, 0.44fr) minmax(0, 1fr);
  }

  .contact-location {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 100px 0;
  }

  .site-header {
    height: 76px;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.75px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.75px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    padding: 100px 10vw;
    visibility: hidden;
    opacity: 0;
    background: var(--paper-soft);
    transform: translateY(-18px);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms;
  }

  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav > a:not(.nav-cta) {
    font-family: var(--serif);
    font-size: 2.1rem;
    font-weight: 400;
  }

  .nav-cta {
    min-height: 52px;
    margin-top: 14px;
    padding: 0 25px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 116px;
  }

  .hero-copy {
    padding: 34px 0 0;
  }

  .hero h1 {
    max-width: 740px;
    font-size: clamp(4.1rem, 10.5vw, 6.6rem);
  }

  .hero-lead {
    max-width: 660px;
  }

  .hero-portrait {
    justify-self: center;
    width: min(100%, 620px);
    height: 650px;
  }

  .hero-person {
    right: 2%;
    max-height: 640px;
  }

  .portrait-monogram {
    top: 44px;
    right: -20px;
    font-size: 560px;
  }

  .hero-flower-top {
    right: -18px;
  }

  .hero-flower-bottom {
    left: 18px;
  }

  .authority-card {
    left: 0;
    width: 310px;
  }

  .story-grid {
    grid-template-columns: minmax(280px, 0.75fr) 1.25fr;
    gap: 50px;
  }

  .story-caption {
    right: -24px;
    width: 190px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading > p {
    max-width: 650px;
  }

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

  .approach-grid,
  .product-shell,
  .contact-intro,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .approach-grid {
    gap: 54px;
  }

  .product-shell {
    gap: 68px;
  }

  .product-editorial {
    width: min(100%, 570px);
    margin-inline: auto;
  }

  .speaking {
    min-height: auto;
    padding: 540px 0 100px;
  }

  .speaking::before {
    background: linear-gradient(to bottom, rgba(23, 25, 35, 0.04) 0%, rgba(23, 25, 35, 0.24) 36%, #171923 70%);
  }

  .speaking::after {
    display: none;
  }

  .speaking-media {
    inset: 0 0 auto;
    height: 650px;
  }

  .speaking-media img {
    object-position: center top;
  }

  .speaking-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .speaking-copy {
    max-width: 680px;
  }

  .contact-intro {
    gap: 32px;
    margin-bottom: 50px;
  }

  .contact-intro-copy {
    max-width: 620px;
  }

  .contact-layout {
    gap: 18px;
  }

  .contact-portrait {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
  }

  .contact-portrait img {
    height: 440px;
  }

  .contact-details {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-location {
    grid-column: 1 / -1;
  }

  .legal-hero-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .legal-summary {
    width: min(100%, 620px);
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .legal-nav {
    position: static;
  }

  .legal-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 22px;
  }

  .legal-nav a {
    padding: 5px 0;
  }
}

@media (max-width: 660px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 82px 0;
  }

  .brand-copy small {
    display: none;
  }

  .hero-grid {
    padding-top: 98px;
  }

  .hero h1 {
    margin-bottom: 24px;
    font-size: clamp(3.5rem, 17vw, 5.1rem);
    line-height: 0.9;
  }

  .eyebrow,
  .section-kicker {
    font-size: 0.65rem;
    letter-spacing: 0.14em;
  }

  .hero-lead {
    font-size: 0.98rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 17px;
  }

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

  .hero-actions .text-link {
    align-self: flex-start;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 10px;
    margin-top: 43px;
  }

  .hero-stats div {
    grid-template-columns: 1fr;
    align-content: start;
    gap: 7px;
  }

  .hero-stats dt {
    font-size: 1.85rem;
  }

  .hero-stats dd {
    font-size: 0.72rem;
  }

  .hero-portrait {
    height: 540px;
    margin-top: 16px;
  }

  .hero-person {
    right: 50%;
    width: 390px;
    max-width: none;
    max-height: 520px;
    transform: translateX(50%);
  }

  .portrait-monogram {
    top: 62px;
    right: 50%;
    font-size: 420px;
    transform: translateX(51%) rotate(-7deg) scaleX(1.04);
  }

  .hero-flower-top {
    top: 92px;
    right: -22px;
    width: 120px;
  }

  .hero-flower-bottom {
    left: -12px;
    bottom: 76px;
    width: 100px;
  }

  .availability-card {
    right: 50%;
    bottom: 30px;
    min-width: 190px;
    transform: translateX(50%);
  }

  .authority-card {
    left: 50%;
    bottom: 112px;
    width: min(100%, 310px);
    padding: 13px 15px;
    transform: translateX(-50%);
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .story-image-wrap {
    width: calc(100% - 20px);
  }

  .story-caption {
    right: -20px;
    bottom: 32px;
  }

  .story-copy h2,
  .section-heading h2,
  .approach h2,
  .speaking h2,
  .contact h2 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

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

  .service-card {
    min-height: 285px;
  }

  .approach-steps li {
    grid-template-columns: 42px 1fr;
    gap: 13px;
  }

  .product h2 {
    font-size: clamp(3.55rem, 16vw, 5rem);
  }

  .product-subtitle {
    font-size: 1.25rem;
  }

  .product-editorial {
    min-height: 520px;
    padding: 34px 28px;
    border-radius: 3px;
  }

  .speaking {
    padding: 430px 0 82px;
  }

  .speaking-media {
    height: 520px;
  }

  .speaking-lead {
    font-size: 0.94rem;
  }

  .speaking-topics > div {
    grid-template-columns: 34px 1fr;
    gap: 10px;
  }

  .speaking .button {
    width: 100%;
  }

  .product-note {
    margin-top: 72px;
  }

  .product-title-art span {
    font-size: 2.45rem;
  }

  .product-title-art strong {
    font-size: clamp(3.2rem, 16vw, 4.6rem);
  }

  .product-signature {
    right: 28px;
    bottom: 30px;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }

  .contact-intro,
  .contact-layout {
    width: min(calc(100% - 32px), var(--container));
  }

  .contact-intro-copy {
    padding-left: 20px;
  }

  .contact-portrait {
    display: flex;
  }

  .contact-portrait img {
    height: 420px;
  }

  .contact-location {
    grid-column: auto;
  }

  .contact-item {
    min-height: auto;
  }

  .footer-main {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 30px;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .footer-copyright,
  .footer-legal-links {
    justify-content: center;
  }

  .back-top {
    justify-self: center;
  }

  .legal-site-header {
    height: 76px;
  }

  .legal-back {
    font-size: 0.72rem;
  }

  .legal-hero {
    padding: 76px 0 66px;
  }

  .legal-hero h1 {
    font-size: clamp(3.2rem, 15vw, 4.8rem);
  }

  .legal-hero .legal-lead {
    font-size: 0.96rem;
  }

  .legal-content {
    padding: 72px 0 90px;
  }

  .legal-layout {
    gap: 44px;
  }

  .legal-nav ul {
    display: grid;
    gap: 2px;
  }

  .legal-article > section + section {
    margin-top: 44px;
    padding-top: 44px;
  }

  .legal-article p,
  .legal-article li {
    font-size: 0.9rem;
  }

  .floating-whatsapp {
    right: 15px;
    bottom: 15px;
    width: 52px;
    height: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Rounded UX refresh */
:root {
  --radius-control: 14px;
  --radius-card: 22px;
  --radius-media: 30px;
  --radius-section: 42px;
  --shadow-soft: 0 22px 60px rgba(83, 48, 57, 0.09);
  --shadow-card: 0 14px 34px rgba(76, 45, 53, 0.07);
}

body:not(.legal-page) {
  overflow-x: clip;
  background: #f7edef;
}

body:not(.legal-page) main {
  padding-bottom: 22px;
}

body:not(.legal-page) main > section[id] {
  scroll-margin-top: 104px;
}

body:not(.legal-page) .section,
body:not(.legal-page) .speaking {
  width: min(calc(100% - 28px), 1440px);
  margin: 22px auto 0;
  border-radius: var(--radius-section);
}

body:not(.legal-page) .section {
  padding: 108px 0;
}

.site-header {
  top: 12px;
  height: 66px;
  border: 0;
  background: transparent;
  box-shadow: none;
  pointer-events: none;
}

.site-header.is-scrolled,
.site-header.menu-active {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.site-header .header-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 28px), 1320px);
  padding: 0 8px 0 16px;
  background: rgba(255, 250, 250, 0.87);
  border: 1px solid rgba(39, 43, 59, 0.09);
  border-radius: 22px;
  box-shadow: 0 12px 34px rgba(72, 37, 46, 0.08);
  backdrop-filter: blur(18px);
  pointer-events: auto;
  transition: background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.site-header.is-scrolled .header-inner,
.site-header.menu-active .header-inner {
  background: rgba(255, 250, 250, 0.97);
  box-shadow: 0 16px 42px rgba(72, 37, 46, 0.13);
}

.brand-mark {
  border-radius: 13px;
}

.main-nav {
  gap: 3px;
}

.main-nav > a:not(.nav-cta) {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 10px;
  border-radius: 12px;
  font-size: 0.875rem;
  transition: color 180ms ease, background 180ms ease;
}

.main-nav > a:not(.nav-cta)::after {
  display: none;
}

.main-nav > a:not(.nav-cta):hover,
.main-nav > a:not(.nav-cta).is-active {
  color: var(--rose-deep);
  background: var(--paper-rose);
}

.nav-cta,
.button {
  border-radius: var(--radius-control);
  font-size: 0.875rem;
}

.nav-cta {
  min-height: 44px;
  margin-left: 5px;
  padding-inline: 17px;
}

.hero {
  width: min(calc(100% - 28px), 1440px);
  min-height: 790px;
  margin: 0 auto;
  border-radius: 0 0 var(--radius-section) var(--radius-section);
  box-shadow: var(--shadow-soft);
}

.hero-stats {
  column-gap: 0;
  width: fit-content;
  padding: 17px 20px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(39, 43, 59, 0.08);
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(83, 48, 57, 0.06);
  backdrop-filter: blur(12px);
}

.hero-stats div {
  padding: 0 20px;
  border-right: 1px solid rgba(39, 43, 59, 0.09);
}

.hero-stats div:first-child {
  padding-left: 0;
}

.hero-stats div:last-child {
  padding-right: 0;
  border-right: 0;
}

.authority-card,
.availability-card {
  border-radius: 18px;
}

.authority-seal {
  border-radius: 14px;
}

.story,
.product {
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.story-grid {
  gap: 82px;
}

.story-image-wrap::before {
  inset: 16px -16px -16px 16px;
  border-radius: 34px;
}

.story-image-frame {
  border-radius: var(--radius-media);
}

.story-caption {
  border-left: 0;
  border-radius: 18px;
}

.credentials span {
  padding: 10px 14px;
  border-radius: 14px;
}

.services {
  background: linear-gradient(145deg, #fcf2f4 0%, #fff9fa 100%);
  box-shadow: var(--shadow-soft);
}

.section-heading {
  gap: 60px;
  margin-bottom: 54px;
}

.services::before,
.service-card::after {
  display: none;
}

.service-grid {
  gap: 14px;
}

.service-card {
  min-height: 310px;
  padding: 32px 28px 30px;
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(39, 43, 59, 0.08);
  border-radius: 24px;
  box-shadow: 0 10px 28px rgba(76, 45, 53, 0.045);
}

.service-card:hover {
  border-color: rgba(200, 68, 92, 0.2);
  box-shadow: 0 20px 44px rgba(76, 45, 53, 0.1);
  transform: translateY(-5px);
}

.service-icon {
  margin-bottom: 42px;
  border: 1px solid rgba(200, 68, 92, 0.1);
  border-radius: 16px;
}

.service-card p,
.approach-steps p {
  font-size: 1rem;
}

.approach {
  border-radius: var(--radius-section);
  box-shadow: 0 26px 64px rgba(29, 31, 43, 0.16);
}

.approach-grid {
  gap: 72px;
}

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

.approach-steps li {
  grid-template-columns: 42px 1fr;
  align-content: start;
  gap: 14px;
  min-height: 176px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
}

.product-editorial {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 32px;
  box-shadow: 0 30px 68px rgba(125, 46, 62, 0.2);
}

.product-shell {
  gap: 64px;
}

.product-label {
  border-radius: 12px;
}

.speaking {
  min-height: 720px;
  padding: 112px 0;
  box-shadow: 0 28px 70px rgba(29, 31, 43, 0.18);
}

.speaking-topics {
  display: grid;
  gap: 9px;
  border-top: 0;
}

.speaking-topics > div {
  align-items: center;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  backdrop-filter: blur(8px);
}

.speaking-topics strong {
  font-size: 0.9rem;
}

.contact {
  padding: 18px 0;
  overflow: visible;
  background: transparent;
}

.contact::before {
  display: none;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(0, 1.22fr);
  grid-template-areas: "portrait content";
  align-items: stretch;
  gap: 14px;
  width: min(calc(100% - 28px), 1240px);
  padding: 14px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(39, 43, 59, 0.08);
  border-radius: 38px;
  box-shadow: 0 28px 72px rgba(83, 48, 57, 0.12);
}

.contact-portrait {
  position: relative;
  grid-area: portrait;
  min-height: 690px;
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  box-shadow: none;
}

.contact-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-position: center 10%;
}

.contact-portrait figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  flex: none;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 17px 18px;
  background: rgba(32, 35, 49, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(20, 22, 31, 0.22);
  backdrop-filter: blur(14px);
}

.contact-portrait figcaption .availability-dot {
  flex: 0 0 auto;
}

.contact-portrait figcaption > span:last-child {
  display: flex;
  flex-direction: column;
}

.contact-content {
  grid-area: content;
  display: flex;
  flex-direction: column;
  padding: 42px 34px 32px;
}

.contact h2 {
  max-width: 650px;
  margin-bottom: 20px;
  font-size: clamp(3.2rem, 4.4vw, 4.8rem);
}

.contact-heading > p:last-child {
  max-width: 560px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 1rem;
}

.contact-cta {
  align-self: flex-start;
  margin-bottom: 30px;
}

.contact-details {
  gap: 10px;
  margin-top: auto;
}

.contact-item {
  min-height: 112px;
  padding: 18px;
  background: #fffafa;
  border-color: rgba(39, 43, 59, 0.08);
  border-radius: 18px;
  box-shadow: none;
}

.contact-location {
  min-height: 108px;
}

.contact-social {
  min-height: 94px;
}

.contact-icon {
  flex-basis: 44px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
}

.contact-item small {
  font-size: 0.75rem;
}

.contact-item strong,
.contact-item span > a {
  font-size: 0.88rem;
}

a.contact-item:hover {
  background: var(--white);
  border-color: rgba(200, 68, 92, 0.28);
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}

body:not(.legal-page) .site-footer {
  width: min(calc(100% - 28px), 1440px);
  margin: 0 auto;
  border-radius: var(--radius-section) var(--radius-section) 0 0;
}

@media (max-width: 1120px) {
  .brand-copy small {
    display: none;
  }

  .main-nav > a:not(.nav-cta) {
    padding-inline: 8px;
    font-size: 0.875rem;
  }

  .nav-cta {
    padding-inline: 14px;
  }

  .contact-shell {
    grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.32fr);
  }

  .contact-content {
    padding: 34px 24px 26px;
  }
}

@media (max-width: 900px) {
  .site-header::before {
    position: fixed;
    z-index: 0;
    inset: 0;
    visibility: hidden;
    opacity: 0;
    background: rgba(32, 35, 49, 0.28);
    backdrop-filter: blur(3px);
    content: "";
    pointer-events: none;
    transition: opacity 180ms ease, visibility 180ms ease;
  }

  .site-header.menu-active::before {
    visibility: visible;
    opacity: 1;
  }

  .site-header {
    top: 10px;
    height: 62px;
  }

  .site-header .header-inner {
    width: calc(100% - 20px);
    padding-left: 13px;
    border-radius: 19px;
  }

  .main-nav {
    position: absolute;
    inset: calc(100% + 10px) 0 auto;
    justify-content: flex-start;
    gap: 7px;
    padding: 26px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    background: rgba(255, 250, 250, 0.98);
    border: 1px solid rgba(39, 43, 59, 0.09);
    border-radius: 26px;
    box-shadow: 0 24px 70px rgba(72, 37, 46, 0.18);
    backdrop-filter: blur(20px);
  }

  .main-nav > a:not(.nav-cta) {
    width: 100%;
    min-height: 50px;
    padding: 0 17px;
    border-radius: 14px;
    font-size: 1.25rem;
  }

  .nav-cta {
    width: 100%;
    min-height: 54px;
    margin: 8px 0 0;
    justify-content: center;
  }

  body:not(.legal-page) .section,
  body:not(.legal-page) .speaking {
    width: calc(100% - 20px);
    margin-top: 14px;
    border-radius: 32px;
  }

  body:not(.legal-page) .section {
    padding: 88px 0;
  }

  .hero {
    width: calc(100% - 16px);
    min-height: auto;
    border-radius: 0 0 34px 34px;
  }

  .story-grid {
    gap: 50px;
  }

  .section-heading {
    gap: 24px;
    margin-bottom: 44px;
  }

  .approach-grid {
    gap: 50px;
  }

  .speaking {
    min-height: auto;
    padding: 540px 0 96px;
  }

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

  .contact-shell {
    grid-template-columns: 1fr;
    grid-template-areas: "content" "portrait";
    width: calc(100% - 20px);
    border-radius: 30px;
  }

  .contact-content {
    padding: 34px 26px 24px;
  }

  .contact-portrait {
    min-height: 500px;
    border-radius: 23px;
  }

  .contact-portrait img {
    height: 500px;
  }

  body:not(.legal-page) .site-footer {
    width: calc(100% - 20px);
    border-radius: 32px 32px 0 0;
  }
}

@media (max-width: 660px) {
  body:not(.legal-page) .section {
    padding: 76px 0;
  }

  .main-nav {
    padding: 22px;
  }

  .main-nav > a:not(.nav-cta) {
    min-height: 47px;
    font-size: 1.1rem;
  }

  .hero-stats {
    width: 100%;
    padding: 15px 12px;
    border-radius: 18px;
  }

  .story-grid {
    gap: 58px;
  }

  .hero-stats div {
    padding: 0 10px;
  }

  .story-image-wrap::before {
    border-radius: 28px;
  }

  .story-image-frame {
    border-radius: 25px;
  }

  .story-caption {
    border-radius: 16px;
  }

  .service-card {
    min-height: 270px;
    border-radius: 21px;
  }

  .approach-steps {
    grid-template-columns: 1fr;
  }

  .approach-steps li {
    min-height: auto;
    border-radius: 18px;
  }

  .product-editorial {
    border-radius: 25px;
  }

  .speaking-topics > div {
    border-radius: 14px;
  }

  .speaking {
    padding: 430px 0 76px;
  }

  .contact {
    padding: 10px 0;
  }

  .contact-shell {
    width: calc(100% - 12px);
    padding: 8px;
    border-radius: 26px;
  }

  .contact-content {
    padding: 30px 18px 18px;
  }

  .contact h2 {
    font-size: clamp(2.7rem, 13vw, 3.8rem);
  }

  .contact-cta {
    width: 100%;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }

  .contact-location {
    grid-column: auto;
  }

  .contact-item,
  .contact-social {
    min-height: auto;
    padding: 17px;
    border-radius: 16px;
  }

  .contact-portrait {
    min-height: 450px;
    border-radius: 20px;
  }

  .contact-portrait img {
    height: 450px;
  }

  .contact-portrait figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    border-radius: 15px;
  }

  body:not(.legal-page) .site-footer {
    width: calc(100% - 12px);
    border-radius: 28px 28px 0 0;
  }
}
