:root {
  --ink: #2e2433;
  --ink-soft: #6f6572;
  --paper: #fffdfb;
  --cream: #fff6ec;
  --pink: #e92169;
  --pink-deep: #c8155a;
  --coral: #ff6f61;
  --orange: #f6a52b;
  --lilac: #9f8ac2;
  --lilac-soft: #eee9f7;
  --line: rgba(66, 45, 70, 0.12);
  --shadow: 0 30px 80px rgba(77, 45, 74, 0.14);
  --radius-lg: 36px;
  --radius-md: 24px;
  --page: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(233, 33, 105, 0.35);
  outline-offset: 4px;
}

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

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

.page-shell {
  width: var(--page);
  margin-inline: auto;
}

.section-space {
  padding-block: 140px;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 0;
  z-index: 100;
  width: 100%;
  transition: top 240ms ease;
}

.nav-shell {
  display: flex;
  width: min(1210px, calc(100% - 28px));
  min-height: 74px;
  margin-inline: auto;
  padding: 8px 10px 8px 18px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  background: rgba(255, 253, 251, 0.76);
  box-shadow: 0 12px 40px rgba(55, 37, 61, 0.08);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  backdrop-filter: blur(24px) saturate(160%);
}

.site-header.is-scrolled {
  top: 8px;
}

.brand {
  flex: 0 0 auto;
  width: 206px;
  overflow: hidden;
}

.brand img,
.footer-brand img {
  width: 100%;
  mix-blend-mode: multiply;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #564c59;
  font-size: 14px;
  font-weight: 600;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink), var(--orange));
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.main-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 13px 20px;
  border-radius: 16px;
  background: var(--ink);
  color: white;
  box-shadow: 0 10px 24px rgba(46, 36, 51, 0.16);
  transition: transform 180ms ease, background 180ms ease;
}

.nav-cta:hover {
  background: var(--pink-deep);
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: var(--ink);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: white;
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  min-height: 880px;
  padding-top: 168px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 20%, rgba(255, 169, 73, 0.18), transparent 25%),
    radial-gradient(circle at 88% 14%, rgba(233, 33, 105, 0.13), transparent 26%),
    linear-gradient(145deg, #fffdfb 0%, #fff8f3 48%, #f5effb 100%);
}

.hero::after {
  position: absolute;
  right: -8%;
  bottom: -260px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(233, 33, 105, 0.1);
  border-radius: 50%;
  content: "";
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-orb-one {
  top: 120px;
  left: -100px;
  width: 220px;
  height: 220px;
  background: linear-gradient(145deg, rgba(246, 165, 43, 0.5), rgba(255, 111, 97, 0.08));
  animation: orb-drift-one 14s ease-in-out infinite alternate;
}

.hero-orb-two {
  top: 45%;
  right: -70px;
  width: 170px;
  height: 170px;
  border: 38px solid rgba(159, 138, 194, 0.13);
  animation: orb-drift-two 17s ease-in-out infinite alternate;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(410px, 0.82fr);
  align-items: center;
  gap: clamp(60px, 8vw, 120px);
}

.hero-copy {
  padding-bottom: 24px;
}

.eyebrow,
.section-label {
  margin: 0 0 22px;
  color: var(--pink-deep);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
}

.eyebrow span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--pink), var(--orange));
  box-shadow: 0 0 0 7px rgba(233, 33, 105, 0.08);
}

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

h1,
h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 730px;
  margin-bottom: 26px;
  font-size: clamp(54px, 6vw, 82px);
  line-height: 0.99;
}

h1 em {
  display: inline;
  color: var(--pink);
  font-style: normal;
  background: linear-gradient(90deg, var(--pink-deep), var(--pink), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  max-width: 640px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: 20px;
  line-height: 1.65;
}

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

.button {
  position: relative;
  display: inline-flex;
  min-height: 56px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 18px;
  font-size: 15px;
  font-weight: 700;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button::after {
  position: absolute;
  top: -120%;
  left: -35%;
  width: 26%;
  height: 340%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.52), transparent);
  content: "";
  pointer-events: none;
  transform: rotate(22deg) translateX(-240%);
  transition: transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.button:hover::after {
  transform: rotate(22deg) translateX(760%);
}

.button svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.button-primary {
  background: linear-gradient(120deg, var(--pink-deep), var(--pink) 55%, #ef4d55);
  color: white;
  box-shadow: 0 18px 38px rgba(206, 24, 91, 0.24);
}

.button-primary:hover {
  box-shadow: 0 22px 46px rgba(206, 24, 91, 0.32);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.66);
  color: var(--ink);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.privacy-note {
  margin: 18px 0 0;
  color: #857a87;
  font-size: 13px;
}

.hero-visual {
  position: relative;
  display: grid;
  width: min(100%, 470px);
  gap: 14px;
  justify-self: end;
}

.portrait-glow {
  position: absolute;
  inset: 7% -9% 112px 8%;
  border-radius: 48% 48% 36px 36px;
  background: linear-gradient(145deg, rgba(246, 165, 43, 0.9), rgba(233, 33, 105, 0.72) 55%, rgba(159, 138, 194, 0.85));
  filter: blur(30px);
  opacity: 0.42;
  animation: portrait-glow 7s ease-in-out infinite alternate;
}

.portrait-card {
  position: relative;
  height: 555px;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.78);
  border-radius: 220px 220px 38px 38px;
  background: #d6cfe0;
  box-shadow: var(--shadow);
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 500ms ease;
}

.hero-visual:hover .portrait-card {
  box-shadow: 0 38px 92px rgba(77, 45, 74, 0.2);
  transform: translateY(-5px);
}

.portrait-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}

.portrait-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(36, 23, 40, 0.78) 100%);
}

.portrait-caption {
  position: absolute;
  right: 30px;
  bottom: 30px;
  left: 30px;
  display: flex;
  color: white;
  line-height: 1.1;
  flex-direction: column;
}

.portrait-caption span {
  font-family: "Fraunces", Georgia, serif;
  font-size: 24px;
}

.portrait-caption strong {
  margin-top: 4px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 32px;
  font-weight: 600;
}

.portrait-caption small {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portrait-details {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.portrait-detail {
  position: relative;
  display: grid;
  min-height: 96px;
  padding: 14px;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 42px rgba(63, 38, 66, 0.1);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  backdrop-filter: blur(18px) saturate(145%);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 260ms ease, border-color 260ms ease;
}

.portrait-detail::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.72) 48%, transparent 75%);
  content: "";
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity 220ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.portrait-detail:hover {
  border-color: rgba(233, 33, 105, 0.18);
  box-shadow: 0 22px 52px rgba(91, 43, 79, 0.16);
  transform: translateY(-5px);
}

.portrait-detail:hover::before {
  opacity: 1;
  transform: translateX(100%);
}

.portrait-detail-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 43px;
  height: 43px;
  border-radius: 14px;
  background: linear-gradient(145deg, #ffd8e4, #fff0d8);
  place-items: center;
}

.portrait-detail-icon svg {
  width: 21px;
  fill: none;
  stroke: var(--pink);
  stroke-width: 1.7;
}

.portrait-detail-copy {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.portrait-detail-copy strong {
  color: var(--ink);
  font-size: 12px;
  line-height: 1.2;
}

.portrait-detail-copy small {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 9.5px;
  line-height: 1.35;
}

.portrait-detail > svg {
  position: relative;
  z-index: 1;
  width: 17px;
  fill: none;
  stroke: var(--pink-deep);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 220ms ease;
}

.portrait-detail:hover > svg {
  transform: translateX(3px);
}

.portrait-years {
  position: relative;
  z-index: 1;
  color: var(--pink-deep);
  font-family: "Fraunces", Georgia, serif;
  font-size: 27px;
  font-weight: 600;
  line-height: 1;
}

.portrait-detail-years {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 238, 222, 0.82));
}

.hero-trust {
  position: relative;
  z-index: 2;
  display: flex;
  margin-top: 74px;
  padding: 22px 30px;
  align-items: center;
  justify-content: center;
  gap: 30px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 22px 22px 0 0;
  background: rgba(255, 255, 255, 0.55);
  color: #766a79;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.hero-trust i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--pink), var(--orange));
}

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

.intro-grid {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 9vw;
}

.intro-copy {
  max-width: 780px;
}

.intro-copy h2,
.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(42px, 5.2vw, 68px);
  line-height: 1.04;
}

.intro-copy p,
.section-heading > p:last-child,
.about-copy > p,
.contact-copy > p {
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.75;
}

.services {
  position: relative;
  background: #f8f5fa;
}

.services::before {
  position: absolute;
  top: 70px;
  left: 7%;
  width: 90px;
  height: 90px;
  border: 20px solid rgba(246, 165, 43, 0.13);
  border-radius: 50%;
  content: "";
}

.section-heading {
  max-width: 760px;
  margin-bottom: 64px;
}

.section-heading > p:last-child {
  max-width: 620px;
}

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

.service-card {
  position: relative;
  min-height: 320px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: 0 22px 70px rgba(71, 50, 79, 0.07);
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.service-card:hover {
  z-index: 2;
  box-shadow: 0 30px 80px rgba(71, 50, 79, 0.13);
  transform: translateY(-7px);
}

.service-card h3 {
  max-width: 360px;
  margin-bottom: 13px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.service-card p {
  max-width: 440px;
  margin-bottom: 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.service-icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 50px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(74, 47, 76, 0.08);
  place-items: center;
}

.service-icon svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.service-number {
  display: block;
  margin-bottom: 12px;
  color: rgba(58, 44, 61, 0.42);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.service-featured {
  display: grid;
  min-height: 420px;
  padding: 44px;
  grid-column: span 7;
  grid-template-columns: 0.48fr 1fr;
  align-items: end;
  background: linear-gradient(140deg, #ef226e 0%, #e8347b 48%, #f27461 100%);
  color: white;
}

.service-featured .service-icon {
  align-self: start;
  color: white;
}

.service-featured .service-number,
.service-featured p {
  color: rgba(255, 255, 255, 0.78);
}

.service-featured h3 {
  color: white;
  font-size: 36px;
}

.service-orbit {
  position: absolute;
  top: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.service-orbit::before,
.service-orbit::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.service-orbit::before {
  inset: 45px;
}

.service-orbit::after {
  inset: 95px;
}

.service-pink {
  grid-column: span 5;
  background: linear-gradient(145deg, #fff 15%, #ffe4ed 100%);
  color: var(--pink-deep);
}

.service-lilac {
  grid-column: span 4;
  background: linear-gradient(145deg, #f0ebf8, #dfd5f0);
  color: #6f559b;
}

.service-terminal {
  grid-column: span 8;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.32), transparent 24%),
    linear-gradient(130deg, #f9a53a, #ff765d);
  color: #542c35;
}

.service-terminal p {
  color: rgba(72, 42, 47, 0.74);
}

.service-sun {
  grid-column: span 6;
  background: linear-gradient(145deg, #fffaf1, #ffe7ad);
  color: #86520a;
}

.service-flow {
  grid-column: span 6;
  background: linear-gradient(145deg, #f4effa, #eadff5);
  color: #735592;
}

.flow-lines {
  position: absolute;
  right: -30px;
  bottom: 10px;
  display: grid;
  gap: 15px;
  opacity: 0.16;
  transform: rotate(-8deg);
}

.flow-lines span {
  display: block;
  width: 220px;
  height: 34px;
  border: 4px solid currentColor;
  border-color: currentColor transparent transparent transparent;
  border-radius: 50%;
}

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

.about-backdrop {
  position: absolute;
  top: 16%;
  right: -150px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(233, 33, 105, 0.1), rgba(159, 138, 194, 0.12));
  filter: blur(12px);
}

.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  align-items: center;
  gap: clamp(70px, 9vw, 130px);
}

.about-visual {
  position: relative;
  min-height: 690px;
}

.about-photo {
  position: absolute;
  inset: 0 28px 46px 0;
  overflow: hidden;
  border-radius: 42px 160px 42px 42px;
  background: var(--lilac-soft);
  box-shadow: var(--shadow);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 43%;
}

.about-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(46, 36, 51, 0.2));
  content: "";
}

.about-badge {
  position: absolute;
  right: -28px;
  bottom: 0;
  display: flex;
  width: 190px;
  height: 190px;
  padding: 26px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 10px solid var(--paper);
  border-radius: 50%;
  background: linear-gradient(145deg, var(--orange), #ff795e);
  color: white;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  flex-direction: column;
}

.about-badge svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.3;
}

.about-copy {
  position: relative;
  z-index: 2;
}

.about-copy h2 {
  max-width: 600px;
}

.about-copy > p {
  font-size: 17px;
}

.about-copy .about-lead {
  color: var(--ink);
  font-size: 20px;
}

.credentials {
  display: grid;
  margin-block: 34px;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.credentials > div {
  display: flex;
  min-height: 135px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  flex-direction: column;
}

.credentials strong {
  color: var(--pink-deep);
  font-family: "Fraunces", Georgia, serif;
  font-size: 40px;
  line-height: 1;
}

.credentials span {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.4;
}

.credential-list {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: 1fr 1fr;
  gap: 14px 22px;
  list-style: none;
}

.credential-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
  font-size: 14px;
}

.credential-list li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--pink), var(--orange));
  content: "";
}

.process {
  background: var(--cream);
}

.process-heading {
  max-width: 720px;
}

.process-list {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  list-style: none;
}

.process-list li {
  min-height: 290px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 50px rgba(107, 73, 79, 0.06);
}

.process-number {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 76px;
  border-radius: 16px;
  background: var(--ink);
  color: white;
  font-family: "Fraunces", Georgia, serif;
  font-size: 20px;
  place-items: center;
}

.process-list li:nth-child(2) .process-number {
  background: var(--pink);
}

.process-list li:nth-child(3) .process-number {
  background: var(--orange);
}

.process-list h3 {
  margin-bottom: 10px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 25px;
  font-weight: 600;
}

.process-list p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.contact-section {
  padding-block: 110px;
  background: var(--paper);
}

.contact-card {
  position: relative;
  display: grid;
  min-height: 480px;
  padding: 70px;
  overflow: hidden;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) 0.62fr;
  gap: 70px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 94% 12%, rgba(246, 165, 43, 0.75), transparent 24%),
    radial-gradient(circle at 55% 110%, rgba(159, 138, 194, 0.55), transparent 35%),
    linear-gradient(130deg, #c8155a 0%, #e92269 52%, #ef5e58 100%);
  color: white;
  box-shadow: 0 34px 80px rgba(181, 23, 84, 0.23);
}

.contact-card::before {
  position: absolute;
  top: -80px;
  left: 38%;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.contact-copy,
.contact-actions {
  position: relative;
  z-index: 2;
}

.contact-copy .section-label,
.contact-copy > p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-copy h2 {
  margin-bottom: 22px;
  color: white;
}

.contact-copy > p {
  max-width: 660px;
  margin-bottom: 0;
  font-size: 16px;
}

.contact-actions {
  display: flex;
  align-items: stretch;
  gap: 18px;
  flex-direction: column;
}

.button-light {
  width: 100%;
  min-height: 62px;
  background: white;
  color: var(--pink-deep);
  box-shadow: 0 20px 40px rgba(94, 17, 49, 0.18);
}

.email-link {
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  text-align: center;
  word-break: break-word;
}

.contact-butterfly {
  position: absolute;
  top: 50px;
  right: 90px;
  width: 100px;
  height: 78px;
  opacity: 0.24;
  transform: rotate(10deg);
}

.contact-butterfly span {
  position: absolute;
  top: 0;
  width: 54px;
  height: 67px;
  border: 3px solid white;
  border-radius: 65% 35% 60% 40%;
}

.contact-butterfly span:first-child {
  left: 0;
  transform: rotate(-26deg);
}

.contact-butterfly span:nth-child(2) {
  right: 0;
  transform: scaleX(-1) rotate(-26deg);
}

.contact-butterfly i {
  position: absolute;
  top: 22px;
  left: 48px;
  width: 4px;
  height: 54px;
  border-radius: 999px;
  background: white;
}

.site-footer {
  padding: 54px 0 30px;
  border-top: 1px solid var(--line);
  background: #fffaf5;
}

.footer-main {
  display: grid;
  padding-bottom: 36px;
  align-items: center;
  grid-template-columns: 240px 1fr auto;
  gap: 42px;
}

.footer-brand {
  width: 230px;
}

.footer-main p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.footer-main > a:last-child {
  color: var(--pink-deep);
  font-size: 14px;
  font-weight: 700;
}

.footer-legal {
  display: flex;
  padding-top: 24px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  border-top: 1px solid var(--line);
  color: #8d828f;
  font-size: 11px;
}

.footer-legal p {
  max-width: 730px;
  margin: 0;
}

@keyframes orb-drift-one {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(28px, 18px, 0) scale(1.08); }
}

@keyframes orb-drift-two {
  from { transform: translate3d(0, 0, 0) rotate(0deg); }
  to { transform: translate3d(-34px, -24px, 0) rotate(18deg); }
}

@keyframes portrait-glow {
  from { opacity: 0.36; transform: scale(0.98); }
  to { opacity: 0.52; transform: scale(1.025); }
}

.reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(28px) scale(0.992);
  transition:
    opacity 820ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 820ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-delay {
  transition-delay: 120ms;
}

.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

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

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
    gap: 50px;
  }

  .hero-visual {
    width: min(100%, 445px);
  }

  .portrait-card {
    height: 515px;
  }

  .portrait-detail {
    padding: 12px;
  }

  .portrait-detail-icon {
    width: 38px;
    height: 38px;
  }

  .portrait-years {
    font-size: 24px;
  }

  .about-grid {
    gap: 70px;
  }

  .about-visual {
    min-height: 620px;
  }

  .contact-card {
    padding: 56px;
  }
}

@media (max-width: 900px) {
  :root {
    --page: min(100% - 32px, 720px);
  }

  .section-space {
    padding-block: 100px;
  }

  .menu-button {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 96px;
    right: 14px;
    left: 14px;
    display: flex;
    padding: 28px;
    align-items: stretch;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.86);
    border-radius: 24px;
    background: rgba(255, 253, 251, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-14px);
    visibility: hidden;
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    flex-direction: column;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

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

  .main-nav > a {
    padding: 14px 10px;
  }

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

  .nav-cta {
    margin-top: 10px;
    text-align: center;
  }

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

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

  .hero {
    min-height: auto;
    padding-top: 150px;
  }

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

  .hero-copy {
    text-align: center;
  }

  .eyebrow,
  .hero-actions {
    justify-content: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-visual {
    width: min(88%, 470px);
    margin-inline: auto;
    justify-self: center;
  }

  .portrait-card {
    height: 575px;
  }

  .hero-trust {
    margin-top: 60px;
    flex-wrap: wrap;
  }

  .intro-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    gap: 14px;
  }

  .service-featured,
  .service-pink,
  .service-lilac,
  .service-terminal,
  .service-sun,
  .service-flow {
    grid-column: span 12;
  }

  .service-featured {
    min-height: 370px;
  }

  .about-visual {
    width: min(100%, 540px);
    min-height: 700px;
    margin-inline: auto;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li {
    display: grid;
    min-height: auto;
    grid-template-columns: 60px 1fr;
    gap: 22px;
  }

  .process-number {
    margin-bottom: 0;
  }

  .contact-card {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 600px) {
  :root {
    --page: calc(100% - 24px);
    --radius-lg: 28px;
  }

  .section-space {
    padding-block: 80px;
  }

  .site-header {
    top: 8px;
  }

  .nav-shell {
    width: calc(100% - 16px);
    min-height: 66px;
    padding-left: 12px;
    border-radius: 19px;
  }

  .brand {
    width: 164px;
  }

  .menu-button {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .main-nav {
    top: 82px;
    right: 8px;
    left: 8px;
  }

  .hero {
    padding-top: 126px;
  }

  h1 {
    font-size: clamp(45px, 13vw, 62px);
  }

  .hero-lead {
    font-size: 17px;
  }

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

  .button {
    width: 100%;
  }

  .hero-visual {
    width: 100%;
  }

  .portrait-card {
    height: 510px;
    border-width: 6px;
    border-radius: 180px 180px 30px 30px;
  }

  .portrait-caption {
    right: 24px;
    bottom: 24px;
    left: 24px;
  }

  .portrait-caption strong {
    font-size: 27px;
  }

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

  .portrait-detail {
    min-height: 84px;
    padding: 14px 16px;
  }

  .portrait-detail-copy strong {
    font-size: 13px;
  }

  .portrait-detail-copy small {
    font-size: 10.5px;
  }

  .hero-trust {
    margin-top: 44px;
    padding: 20px 16px;
    gap: 15px;
    border-radius: 18px 18px 0 0;
    font-size: 11px;
  }

  .hero-trust i {
    display: none;
  }

  .intro-copy h2,
  .section-heading h2,
  .about-copy h2,
  .contact-copy h2 {
    font-size: clamp(38px, 11vw, 50px);
  }

  .intro-copy p,
  .section-heading > p:last-child,
  .contact-copy > p {
    font-size: 17px;
  }

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

  .service-card,
  .service-featured {
    min-height: 330px;
    padding: 28px;
  }

  .service-featured {
    display: block;
  }

  .service-featured .service-icon,
  .service-icon {
    margin-bottom: 38px;
  }

  .service-featured h3 {
    font-size: 31px;
  }

  .about-visual {
    min-height: 540px;
  }

  .about-photo {
    inset: 0 12px 34px 0;
    border-radius: 30px 100px 30px 30px;
  }

  .about-badge {
    right: -4px;
    width: 145px;
    height: 145px;
    padding: 18px;
    border-width: 7px;
    font-size: 11px;
  }

  .about-badge svg {
    width: 25px;
  }

  .credentials,
  .credential-list {
    grid-template-columns: 1fr;
  }

  .process-list li {
    padding: 24px;
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }

  .process-number {
    width: 44px;
    height: 44px;
  }

  .contact-section {
    padding-block: 72px;
  }

  .contact-card {
    min-height: 560px;
    padding: 38px 26px;
    align-items: end;
  }

  .contact-butterfly {
    top: 40px;
    right: 38px;
  }

  .footer-main {
    text-align: center;
  }

  .footer-brand {
    margin-inline: auto;
  }

  .footer-legal {
    align-items: center;
    text-align: center;
    flex-direction: column;
  }
}

@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;
  }

  .reveal {
    opacity: 1;
    filter: none;
    transform: none;
  }

}
