@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --ink: #10263b;
  --ink-deep: #091a29;
  --paper: #fbf8f2;
  --sand: #eee5d7;
  --white: #fff;
  --pink: #e64b7a;
  --pink-dark: #bf315e;
  --plum: #776499;
  --sky: #dbe8ef;
  --muted: #5d6d7a;
  --line: rgba(16, 38, 59, .14);
  --shadow: 0 24px 60px rgba(9, 26, 41, .12);
  --radius: 20px;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: 180ms ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--ink); background: var(--paper); line-height: 1.65; overflow-x: hidden; }
body::before { content: ''; position: fixed; inset: 0; pointer-events: none; opacity: .22; background-image: radial-gradient(rgba(16,38,59,.15) .55px, transparent .55px); background-size: 8px 8px; z-index: -1; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input { font: inherit; }
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(2.8rem, 7vw, 5.75rem); }
h2 { font-size: clamp(2.05rem, 4vw, 3.75rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }
p { text-wrap: pretty; }

.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(780px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; position: relative; }
.section-sm { padding: clamp(3rem, 6vw, 5rem) 0; }
.surface { background: var(--white); }
.surface-sand { background: var(--sand); }
.surface-dark { background: var(--ink); color: var(--paper); }
.surface-pink { background: var(--pink); color: var(--white); }
.eyebrow { display: inline-flex; align-items: center; gap: .65rem; color: var(--pink); font-family: var(--font-heading); font-size: .78rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; margin-bottom: 1.3rem; }
.eyebrow::before { content: ''; width: 26px; height: 2px; background: currentColor; }
.surface-dark .eyebrow, .surface-pink .eyebrow { color: #f6c3d3; }
.lede { font-size: clamp(1.08rem, 2vw, 1.3rem); color: var(--muted); max-width: 700px; }
.surface-dark .lede { color: #bed0da; }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr); gap: 3rem; align-items: end; margin-bottom: 3.5rem; }
.section-heading p { color: var(--muted); }
.surface-dark .section-heading p { color: #bed0da; }

.skip-link { position: fixed; z-index: 1000; left: 1rem; top: -5rem; background: var(--white); color: var(--ink); padding: .8rem 1rem; border-radius: 8px; box-shadow: var(--shadow); }
.skip-link:focus { top: 1rem; }
.utility-bar { background: var(--ink-deep); color: #c8d7df; font-size: .78rem; }
.utility-inner { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.contact-info, .social-links { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.utility-bar a:hover, .social-links a:hover, .footer-links a:hover { color: var(--pink); }
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(251,248,242,.94); border-bottom: 1px solid var(--line); backdrop-filter: blur(16px); transition: box-shadow var(--transition); }
.site-header.scrolled { box-shadow: 0 10px 35px rgba(9,26,41,.08); }
.header-inner { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand-logo-link { display: inline-flex; align-items: center; }
.brand-logo { width: 180px; max-height: 72px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 1.75rem; font-size: .92rem; font-weight: 700; }
.nav-links > a:not(.btn) { position: relative; padding: 1rem 0; }
.nav-links > a:not(.btn)::after { content: ''; position: absolute; height: 2px; left: 0; right: 100%; bottom: .7rem; background: var(--pink); transition: right var(--transition); }
.nav-links > a:hover::after, .nav-links > a.is-current::after { right: 0; }
.mobile-toggle { display: none; border: 0; background: transparent; width: 44px; height: 44px; padding: 10px; cursor: pointer; }
.mobile-toggle span { display: block; height: 2px; background: var(--ink); margin: 5px 0; }

.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: .8rem 1.35rem; border: 1px solid transparent; border-radius: 999px; background: var(--pink); color: var(--white); font-weight: 700; box-shadow: 0 10px 28px rgba(230,75,122,.22); transition: transform var(--transition), background var(--transition), box-shadow var(--transition); }
.btn:hover { transform: translateY(-2px); background: var(--pink-dark); box-shadow: 0 14px 34px rgba(230,75,122,.3); }
.btn-small { min-height: 44px; padding: .65rem 1.15rem; }
.btn-light { background: var(--white); color: var(--ink); box-shadow: none; }
.btn-light:hover { background: var(--paper); }
.btn-ghost { background: transparent; color: inherit; border-color: currentColor; box-shadow: none; }
.button-row { display: flex; gap: .85rem; flex-wrap: wrap; margin-top: 2rem; }
.text-link { display: inline-flex; gap: .45rem; align-items: center; color: var(--pink); font-weight: 700; }
.text-link::after { content: '→'; transition: transform var(--transition); }
.text-link:hover::after { transform: translateX(4px); }

.hero { min-height: 690px; display: flex; align-items: center; overflow: hidden; }
.hero::after { content: ''; position: absolute; width: 520px; height: 520px; border-radius: 50%; border: 90px solid rgba(255,255,255,.08); right: -160px; top: -100px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(350px, .92fr); gap: clamp(2.5rem, 7vw, 6rem); align-items: center; position: relative; z-index: 1; }
.hero-copy p { font-size: clamp(1.08rem, 2vw, 1.3rem); color: #fff; opacity: .92; max-width: 650px; margin-top: 1.5rem; }
.hero-visual { position: relative; min-height: 520px; }
.hero-photo { width: calc(100% - 35px); height: 470px; margin-left: auto; object-fit: cover; border-radius: 180px 180px 24px 24px; box-shadow: var(--shadow); }
.floating-card { position: absolute; background: var(--white); color: var(--ink); padding: 1.3rem 1.5rem; border-radius: 14px; box-shadow: var(--shadow); max-width: 260px; }
.floating-card strong { display: block; font-family: var(--font-heading); font-size: 1.05rem; margin-bottom: .25rem; }
.floating-card span { font-size: .82rem; color: var(--muted); }
.floating-card.top { top: 1.5rem; left: -1.5rem; }
.floating-card.bottom { bottom: 1.25rem; right: -1.25rem; }
.trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); transform: translateY(-50%); position: relative; z-index: 3; }
.trust-item { padding: 1.4rem; text-align: center; border-right: 1px solid var(--line); }
.trust-item:last-child { border: 0; }
.trust-item strong { display: block; font-family: var(--font-heading); }
.trust-item span { font-size: .8rem; color: var(--muted); }

.grid-2, .grid-3, .grid-4 { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card { background: var(--white); color: var(--ink); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.2rem); transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(230,75,122,.35); }
.card h3 { margin-bottom: .7rem; }
.card p { color: var(--muted); }
.card-num { display: inline-grid; place-items: center; min-width: 42px; height: 30px; margin-bottom: 1.2rem; background: #fbe7ed; color: var(--pink-dark); border-radius: 999px; font-family: var(--font-heading); font-size: .75rem; font-weight: 700; }
.icon-mark { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 15px; color: var(--pink); background: #fbe7ed; font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; margin-bottom: 1.2rem; }
.dark-card { background: var(--ink-deep); color: var(--paper); border-color: rgba(255,255,255,.1); }
.dark-card p { color: #b8ccd6; }
.feature-list { display: grid; gap: .85rem; margin-top: 1.4rem; }
.feature-list li { display: flex; gap: .8rem; align-items: flex-start; }
.feature-list li::before { content: ''; flex: 0 0 10px; height: 10px; margin: .48rem .45rem 0 .35rem; border-radius: 50%; background: var(--pink); box-shadow: 0 0 0 5px #fbe7ed; }

.split { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(2.5rem, 7vw, 6rem); align-items: center; }
.split-media { position: relative; }
.split-media img { width: 100%; min-height: 500px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.metric-card { position: absolute; right: -1.5rem; bottom: 2rem; width: min(270px, 80%); background: var(--pink); color: white; padding: 1.5rem; border-radius: 16px; box-shadow: var(--shadow); }
.metric-card strong { display: block; font-family: var(--font-heading); font-size: 1.35rem; margin-bottom: .35rem; }
.process-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.process-step { display: grid; grid-template-columns: 70px 1fr; gap: 1.3rem; padding: 1.7rem 0; border-bottom: 1px solid var(--line); }
.step-number { color: var(--pink); font-family: var(--font-heading); font-size: .85rem; font-weight: 700; letter-spacing: .1em; }
.process-step p { color: var(--muted); margin-top: .45rem; }

.industry-card { min-height: 300px; display: flex; flex-direction: column; justify-content: flex-end; position: relative; overflow: hidden; color: white; border: 0; background: var(--ink); }
.industry-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 10%, rgba(9,26,41,.92) 100%); z-index: 1; }
.industry-card::after { content: ''; position: absolute; width: 120px; height: 120px; border: 24px solid rgba(230,75,122,.5); border-radius: 50%; top: -45px; right: -35px; }
.industry-card > * { position: relative; z-index: 2; }
.industry-card p { color: #c7d7df; }
.industry-card .text-link { margin-top: 1.25rem; color: #ffd1df; }

.proof-feature { display: grid; grid-template-columns: .9fr 1.1fr; gap: 2rem; align-items: center; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.25rem, 3vw, 2.25rem); box-shadow: var(--shadow); }
.proof-feature img { width: 100%; max-height: 360px; object-fit: contain; border-radius: 12px; background: #fff; }
.quote { font-family: var(--font-heading); font-size: clamp(1.3rem, 2.5vw, 2rem); line-height: 1.35; }
.quote-attribution { color: var(--muted); margin-top: 1rem; }
.proof-grid { columns: 3 280px; column-gap: 1.25rem; }
.proof-shot { break-inside: avoid; margin-bottom: 1.25rem; padding: .7rem; background: var(--white); border: 1px solid var(--line); border-radius: 15px; }
.proof-shot img { width: 100%; border-radius: 9px; }
.proof-shot figcaption { font-size: .76rem; color: var(--muted); padding: .65rem .3rem .15rem; }

.page-hero { padding: clamp(5rem, 10vw, 9rem) 0; background: var(--ink); color: var(--paper); overflow: hidden; position: relative; }
.page-hero::after { content: ''; position: absolute; width: 430px; height: 430px; border: 70px solid rgba(230,75,122,.14); border-radius: 50%; right: -100px; top: -160px; }
.page-hero .lede { color: #bed0da; margin-top: 1.4rem; }
.not-found { min-height: 650px; display: flex; align-items: center; padding: clamp(5rem, 10vw, 9rem) 0; background: var(--ink); color: var(--paper); overflow: hidden; position: relative; }
.not-found::before { content: '404'; position: absolute; right: -1vw; bottom: -14vw; color: rgba(255, 255, 255, .035); font-family: var(--font-heading); font-size: clamp(18rem, 44vw, 42rem); font-weight: 700; line-height: 1; letter-spacing: -.1em; }
.not-found-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); gap: clamp(3rem, 8vw, 7rem); align-items: center; position: relative; z-index: 1; }
.not-found-copy h1 { max-width: 760px; }
.not-found-copy .lede { color: #bed0da; margin-top: 1.4rem; }
.error-code { color: var(--pink); font-family: var(--font-heading); font-size: clamp(4rem, 10vw, 8rem); font-weight: 700; line-height: .8; letter-spacing: -.08em; margin-bottom: 1.5rem; }
.btn-outline-light { color: var(--paper); border: 1px solid rgba(255, 255, 255, .45); background: transparent; }
.btn-outline-light:hover { color: var(--ink); background: var(--paper); border-color: var(--paper); }
.recovery-card { padding: clamp(1.75rem, 4vw, 2.75rem); border: 1px solid rgba(255, 255, 255, .16); border-radius: var(--radius); background: rgba(255, 255, 255, .07); backdrop-filter: blur(10px); box-shadow: var(--shadow); }
.recovery-card h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); margin: .75rem 0 1.5rem; }
.recovery-links { border-top: 1px solid rgba(255, 255, 255, .16); }
.recovery-links li { border-bottom: 1px solid rgba(255, 255, 255, .16); }
.recovery-links a { display: flex; justify-content: space-between; gap: 1rem; padding: 1rem 0; color: #dce8ee; transition: color var(--transition), padding-left var(--transition); }
.recovery-links a:hover { color: var(--white); padding-left: .35rem; }
.industry-hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr); gap: clamp(2.5rem, 6vw, 5rem); align-items: center; position: relative; z-index: 1; }
.industry-hero-copy { min-width: 0; }
.industry-hero-copy h1 { font-size: clamp(2.75rem, 5.3vw, 5rem); }
.industry-hero-media { position: relative; }
.industry-hero-media::before { content: ''; position: absolute; inset: -14px 14px 14px -14px; border: 1px solid rgba(230,75,122,.55); border-radius: 24px; }
.industry-hero-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 20px; box-shadow: 0 28px 70px rgba(0,0,0,.3); position: relative; }
.about-hero-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr); gap: clamp(2.5rem, 6vw, 5rem); align-items: center; position: relative; z-index: 1; }
.about-hero-media { position: relative; padding: 0 0 2rem 2rem; }
.about-hero-media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: center; border-radius: 24px; box-shadow: 0 28px 70px rgba(0,0,0,.35); }
.about-hero-note { position: absolute; left: 0; bottom: 0; max-width: 280px; padding: 1.2rem 1.35rem; border-radius: 14px; background: var(--pink); color: var(--white); box-shadow: var(--shadow); font-family: var(--font-heading); font-weight: 700; }
.founder-grid { display: grid; grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr); gap: clamp(2.5rem, 7vw, 6rem); align-items: center; }
.founder-portrait { position: relative; }
.founder-portrait::after { content: ''; position: absolute; inset: 18px -18px -18px 18px; border: 1px solid rgba(230,75,122,.45); border-radius: 24px; z-index: -1; }
.founder-portrait img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 24px; box-shadow: var(--shadow); }
.founder-role { color: var(--pink); font-family: var(--font-heading); font-weight: 700; margin: .8rem 0 1.5rem; }
.story-copy { display: grid; gap: 1.15rem; color: var(--muted); }
.team-collage { display: grid; grid-template-columns: 1.5fr 1fr 1fr; grid-template-rows: repeat(2, 220px); gap: 1rem; }
.team-collage figure { overflow: hidden; border-radius: 18px; background: var(--sand); }
.team-collage figure:first-child { grid-row: 1 / 3; }
.team-collage img { width: 100%; height: 100%; object-fit: cover; }
.team-collage figure:first-child img { object-position: center; }
.logo-wall { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 1px; background: rgba(16, 38, 59, .2); border: 1px solid rgba(16, 38, 59, .2); border-radius: var(--radius); overflow: hidden; }
.client-logo { min-height: 142px; display: grid; place-items: center; padding: 1.3rem; background: #c7d6de; box-shadow: inset 0 0 32px rgba(255, 255, 255, .16); transition: background-color var(--transition); }
.client-logo img { width: 100%; height: 82px; object-fit: contain; filter: saturate(.78); transition: filter var(--transition), transform var(--transition); }
.client-logo:hover { background: #b9cbd5; }
.client-logo:hover img { filter: saturate(1); transform: scale(1.04); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: .6rem; color: #9db3c0; font-size: .82rem; margin-bottom: 2rem; }
.breadcrumbs span { opacity: .6; }
.service-row { display: grid; grid-template-columns: 80px minmax(0, .8fr) minmax(280px, 1fr); gap: 2rem; padding: 2.2rem 0; border-bottom: 1px solid var(--line); align-items: start; }
.service-row:first-child { border-top: 1px solid var(--line); }
.service-row p { color: var(--muted); }
.service-row ul { columns: 2; column-gap: 2rem; color: var(--muted); font-size: .92rem; }
.service-row li { margin-bottom: .5rem; }

.faq-list { display: grid; gap: .8rem; }
details { border: 1px solid var(--line); border-radius: 14px; background: var(--white); padding: 1.2rem 1.35rem; }
summary { cursor: pointer; font-family: var(--font-heading); font-weight: 700; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; float: right; color: var(--pink); }
details[open] summary::after { content: '−'; }
details p { color: var(--muted); padding-top: 1rem; }

.cta-band { padding: clamp(3.5rem, 7vw, 6rem) 0; background: var(--pink); color: var(--white); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.cta-inner h2 { max-width: 730px; }
.booking-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 3rem; align-items: start; }
.booking-panel { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; min-height: 860px; }
.calendly-inline-widget { min-width: 320px; height: 900px; }
.booking-notes { display: grid; gap: 1rem; margin-top: 2rem; }
.booking-note { display: flex; gap: .9rem; }
.booking-note strong { display: block; }
.booking-note span { color: var(--muted); font-size: .9rem; }

.site-footer { background: var(--ink-deep); color: #b9cbd5; padding: 5rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.7fr repeat(3, 1fr); gap: 3rem; }
.footer-intro p { max-width: 360px; margin: 1rem 0 1.5rem; }
.footer-brand { padding: .3rem; border-radius: 10px; background: var(--paper); }
.footer-brand .brand-logo { width: 150px; }
.footer-heading { color: var(--white); font-size: .95rem; letter-spacing: 0; margin-bottom: 1.1rem; }
.footer-links { display: grid; gap: .6rem; font-size: .9rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 4rem; padding-top: 1.5rem; display: flex; justify-content: space-between; gap: 1rem; font-size: .78rem; }

@media (max-width: 960px) {
  .nav-links { gap: 1rem; }
  .hero-grid, .split, .proof-feature, .booking-layout, .industry-hero-grid, .about-hero-grid, .not-found-grid { grid-template-columns: 1fr; }
  .industry-hero-media { max-width: 720px; }
  .about-hero-media { max-width: 780px; }
  .founder-grid { grid-template-columns: minmax(260px, .7fr) 1fr; gap: 3rem; }
  .logo-wall { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .hero { min-height: 0; }
  .hero-visual { max-width: 640px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr repeat(2, 1fr); }
  .footer-grid > :last-child { grid-column: 2; }
  .service-row { grid-template-columns: 60px 1fr; }
  .service-row > :last-child { grid-column: 2; }
}

@media (max-width: 760px) {
  .shell, .narrow { width: min(100% - 28px, 1180px); }
  .utility-inner { justify-content: center; min-height: 42px; }
  .utility-inner > p { display: none; }
  .header-inner { min-height: 76px; }
  .brand-logo { width: 145px; max-height: 60px; }
  .mobile-toggle { display: block; }
  .nav-links { display: none; position: absolute; left: 0; right: 0; top: 100%; padding: 1.25rem 20px 1.5rem; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); flex-direction: column; align-items: stretch; }
  .nav-links.active { display: flex; }
  .nav-links .btn { width: 100%; }
  .section-heading { grid-template-columns: 1fr; gap: 1rem; }
  .hero-grid { gap: 3rem; }
  .industry-hero-grid { gap: 2.75rem; }
  .industry-hero-media::before { inset: -8px 8px 8px -8px; }
  .about-hero-media { padding: 0 0 1.5rem 1rem; }
  .about-hero-note { max-width: 240px; font-size: .9rem; }
  .founder-grid { grid-template-columns: 1fr; }
  .founder-portrait { max-width: 520px; }
  .team-collage { grid-template-columns: 1fr 1fr; grid-template-rows: 260px 180px 180px; }
  .team-collage figure:first-child { grid-column: 1 / -1; grid-row: auto; }
  .logo-wall { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .client-logo { min-height: 120px; }
  .hero-visual { min-height: 430px; }
  .hero-photo { height: 390px; }
  .floating-card.top { left: 0; }
  .floating-card.bottom { right: 0; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); transform: none; margin: 1rem 0 3rem; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .split-media img { min-height: 380px; }
  .metric-card { right: .8rem; bottom: .8rem; }
  .service-row { grid-template-columns: 48px 1fr; gap: 1rem; }
  .service-row ul { columns: 1; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem 1.5rem; }
  .footer-intro { grid-column: 1 / -1; }
  .footer-grid > :last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .booking-panel { min-height: 760px; }
  .calendly-inline-widget { height: 790px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
