:root {
  --canvas: #ffffff;
  --canvas-soft: #f5f5f5;
  --ink: #2b2b2b;
  --heading: #2b2b2b;
  --cyan: #00f6f6;
  --cyan-hover: #00d4d4;
  --red: #eb4f4e;
  --button: #00f6f6;
  --button-hover: #00d4d4;
  --surface-dark: #2b2b2b;
  --surface-dark-card: #363636;
  --surface-light: #ffffff;
  --border: rgba(43, 43, 43, 0.13);
  --muted: rgba(43, 43, 43, 0.72);
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.10);
  --shadow-strong: 0 30px 64px rgba(0, 0, 0, 0.15);
  --radius: 22px;
  --page: min(1140px, calc(100% - 48px));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--canvas);
  scroll-behavior: smooth;
}

* { box-sizing: border-box; }

html { background: var(--canvas); }

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
}

a { color: inherit; }

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

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

.section { position: relative; padding: clamp(5rem, 10vw, 8.5rem) 0; }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(43, 43, 43, 0.09);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.06); }

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

.brand {
  position: relative;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand::after {
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 2px;
  background: var(--cyan);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.brand:hover::after,
.brand:focus-visible::after { transform: scaleX(1); transform-origin: left; }

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.linkedin-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  font-size: 0.95rem;
  text-decoration: none;
}

.linkedin-link svg { width: 18px; height: 18px; flex-shrink: 0; }

.linkedin-link::after {
  position: absolute;
  right: 0;
  bottom: -0.32rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 160ms ease;
}

.linkedin-link:hover::after,
.linkedin-link:focus-visible::after { transform: scaleX(1); transform-origin: left; }

/* ── Buttons ── */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 49px;
  padding: 0.8rem 1.28rem;
  overflow: hidden;
  border: 2px solid var(--cyan);
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 8px 24px rgba(0, 246, 246, 0.22);
  color: #2b2b2b;
  cursor: pointer;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button::after {
  display: inline-block;
  width: 0;
  margin-left: 0;
  content: "→";
  opacity: 0;
  transform: translateX(-6px);
  transition: width 180ms ease, margin-left 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--cyan-hover);
  border-color: var(--cyan-hover);
  box-shadow: 0 14px 30px rgba(0, 246, 246, 0.35);
  transform: translateY(-3px);
}

.button:hover::after,
.button:focus-visible::after {
  width: 1em;
  margin-left: 0.48rem;
  opacity: 1;
  transform: translateX(0);
}

.button:active { box-shadow: 0 6px 12px rgba(0, 246, 246, 0.2); transform: translateY(0); }

.button:focus-visible,
.linkedin-link:focus-visible,
.brand:focus-visible,
.carousel-control:focus-visible {
  outline: 3px solid rgba(0, 246, 246, 0.5);
  outline-offset: 4px;
}

.button--small { min-height: 42px; padding-inline: 1rem; font-size: 0.87rem; }

.button--small:hover::after,
.button--small:focus-visible::after { display: none; }

.button--outline {
  background: transparent;
  box-shadow: none;
  color: var(--ink);
  border-color: var(--ink);
}

.button--outline:hover,
.button--outline:focus-visible {
  background: var(--cyan);
  border-color: var(--cyan);
  color: #2b2b2b;
}

/* ── Hero ── */
.hero {
  isolation: isolate;
  background: var(--canvas);
  padding-top: clamp(6rem, 14vw, 11rem);
  padding-bottom: clamp(6rem, 12vw, 9.5rem);
}

.hero-inner{
    position: relative;
    z-index: 1;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    width: 100%;
    max-width: 1000px;

    margin: 20;          /* remove auto centering */
    padding-left: 300;    /* start from the page container */

    text-align: left;
}

.hero-orb {
  position: absolute;
  z-index: -1;
  display: block;
  border: 1px solid rgba(0, 246, 246, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb--one {
  top: 12%;
  right: min(7vw, 9rem);
  width: clamp(180px, 23vw, 310px);
  aspect-ratio: 1;
  box-shadow: inset 0 0 0 24px rgba(0, 246, 246, 0.04);
  animation: drift 10s ease-in-out infinite;
}

.hero-orb--two {
  bottom: 12%;
  left: min(9vw, 11rem);
  width: clamp(85px, 11vw, 150px);
  aspect-ratio: 1;
  border-color: rgba(235, 79, 78, 0.16);
  box-shadow: inset 0 0 0 16px rgba(235, 79, 78, 0.03);
  animation: drift 11s ease-in-out infinite reverse;
}

/* Hero single-line intro */
.hero-intro-line{
    width:100%;
    max-width:900px;

    margin:0;

    text-align:left;
    text-wrap:balance;

    font-size:clamp(1.7rem,3.8vw,2.9rem);
    line-height:1.35;
    font-weight:400;   /* Normal weight */
}

.hero-intro-line .highlight-red {
  color: var(--red);
}

.hero-intro-line .hero-emphasis {
  font-weight: 800;
  /* color: var(--ink); */
}

.header-action-button {
  min-height: 40px;
  padding-inline: 0.95rem;
}

.header-action-button::after {
  display: none;
}

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

.section-title {
  margin-bottom: clamp(2.25rem, 4vw, 3.8rem);
  color: var(--ink);
  font-size: clamp(2.1rem, 4.3vw, 4.15rem);
  font-weight: 750;
  letter-spacing: -0.055em;
  line-height: 1;
}

.section-title--light { color: #ffffff; }

/* ── Services (dark section) ── */
.services {
  isolation: isolate;
  overflow: hidden;
  background: var(--surface-dark);
  color: #ffffff;
}

.services-glow {
  position: absolute;
  z-index: -1;
  top: -14rem;
  right: -10rem;
  width: min(52vw, 720px);
  aspect-ratio: 1;
  border: 1px solid rgba(0, 246, 246, 0.10);
  border-radius: 50%;
  box-shadow: inset 0 0 0 58px rgba(0, 246, 246, 0.03);
  pointer-events: none;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.6rem);
}

.service-card {
  padding: clamp(1.8rem, 3vw, 2.3rem) clamp(1.4rem, 2.5vw, 2rem);
  border: 1px solid rgba(0, 246, 246, 0.15);
  border-radius: 18px;
  background: var(--surface-dark-card);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.service-card:hover {
  border-color: rgba(0, 246, 246, 0.45);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  transform: translateY(-7px);
}

.service-card h3 {
  margin-bottom: 1.1rem;
  color: var(--cyan);
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
  font-weight: 700;
}

.service-card ul {
  margin: 0;
  padding-left: 1.2rem;
  color: #ffffff;
  font-size: 0.97rem;
  line-height: 1.75;
}

.service-card li + li { margin-top: 0.4rem; }

/* ── About (light section) ── */
.about { background: var(--canvas); }

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(2.7rem, 7vw, 7rem);
}

.about-copy { position: relative; }

.about-copy::before {
  position: absolute;
  top: 0.35rem;
  left: -1.4rem;
  width: 4px;
  height: clamp(90px, 16vw, 160px);
  border-radius: 999px;
  background: linear-gradient(var(--cyan), transparent);
  content: "";
}

.about-text { max-width: 620px; color: var(--muted); font-size: 1.06rem; line-height: 1.78; }
.about-text p + p { margin-top: 1.1rem; }
.signature { color: var(--ink); font-weight: 700; }
.about-copy .button { margin-top: 1.5rem; }

/* LinkedIn button variant in about section */
.about-copy .button--linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.about-copy .button--linkedin svg { width: 18px; height: 18px; flex-shrink: 0; }

.portrait-wrap {
  position: relative;
  isolation: isolate;
  margin: 0;
  min-height: clamp(410px, 48vw, 650px);
  overflow: hidden;
  border-radius: 38% 38% 6% 6%;
  background: var(--canvas-soft);
  box-shadow: var(--shadow);
  transition: box-shadow 260ms ease, transform 260ms ease;
}

.portrait-wrap::before {
  position: absolute;
  z-index: -1;
  top: 1.4rem;
  right: -1.2rem;
  bottom: -1.2rem;
  left: 1.5rem;
  border: 1px solid rgba(0, 246, 246, 0.42);
  border-radius: 38% 38% 6% 6%;
  content: "";
  transition: transform 260ms ease;
}

.portrait-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(0,0,0,0.08));
  content: "";
  pointer-events: none;
}

.portrait-wrap:hover { box-shadow: var(--shadow-strong); transform: translateY(-6px); }
.portrait-wrap:hover::before { transform: translate(0.45rem, 0.45rem); }

.portrait-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  transition: transform 520ms cubic-bezier(.2,.8,.2,1);
}

.portrait-wrap:hover img { transform: scale(1.035); }

/* ── Testimonials ── */
.testimonials { background: var(--canvas-soft); }
.testimonials-title { text-align: center; }
.testimonial-stage { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; }
.testimonial-viewport { overflow: hidden; padding: 0.5rem; margin: -0.5rem; }
.testimonial-track { display: flex; gap: 20px; transition: transform 350ms ease; }
.testimonial-card {
  display: flex;
  flex: 0 0 calc((100% - 40px) / 3);
  min-height: 380px;
  flex-direction: column;
  padding: 2.1rem 1.75rem 1.7rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface-light);
  box-shadow: 0 10px 24px rgba(0,0,0,0.04);
  text-align: center;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.testimonial-card:hover { border-color: rgba(0, 246, 246, 0.38); box-shadow: var(--shadow); transform: translateY(-7px); }
.testimonial-avatar { width: 68px; height: 68px; margin: 0 auto 1.1rem; overflow: hidden; border: 3px solid rgba(0, 246, 246, 0.2); border-radius: 50%; background: var(--canvas-soft); }
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { margin-bottom: 0.35rem; font-weight: 760; }
.testimonial-role { min-height: 2.8em; margin-bottom: 1.3rem; color: var(--muted); font-size: 0.93rem; line-height: 1.45; }
.testimonial-quote { margin-bottom: 1.45rem; color: var(--muted); font-size: 0.99rem; line-height: 1.7; }
.testimonial-stars { margin-top: auto; color: #f3b829; font-size: 1.2rem; letter-spacing: 0.08em; }
.carousel-control { display: inline-grid; width: 46px; height: 46px; place-items: center; border: 1px solid transparent; border-radius: 50%; background: transparent; color: var(--cyan); cursor: pointer; font-size: 2rem; line-height: 1; transition: background 180ms ease, border-color 180ms ease, transform 180ms ease; }
.carousel-control:hover { border-color: rgba(0, 246, 246, 0.3); background: rgba(0, 246, 246, 0.10); transform: scale(1.08); }

/* ── Booking (light section) ── */
.booking { padding-bottom: clamp(6rem, 11vw, 10rem); background: var(--canvas); }
.booking-inner { max-width: 900px; text-align: center; }

.booking-card {
  position: relative;
  isolation: isolate;
  padding: clamp(3.2rem, 8vw, 6.6rem) clamp(1.2rem, 5vw, 4.5rem);
  overflow: hidden;
  border: 1px solid rgba(0, 246, 246, 0.2);
  border-radius: clamp(26px, 4vw, 46px);
  background: #ffffff;
  box-shadow: 0 20px 42px rgba(0,0,0,0.07);
}

.booking-card .section-title { color: var(--ink); }
.highlight-red { color: var(--red); }

.booking-inner .section-title { margin-bottom: 1.9rem; }
.button--booking { padding-inline: 1.65rem; box-shadow: 0 13px 30px rgba(0, 246, 246, 0.28); }
.booking-note { max-width: 620px; margin: 1.45rem auto 0; color: var(--muted); font-size: 0.9rem; line-height: 1.7; text-wrap: balance; }

.booking-orb {
  position: absolute;
  z-index: -1;
  display: block;
  border: 1px solid rgba(0, 246, 246, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.booking-orb--one { top: -7rem; left: -5rem; width: 15rem; aspect-ratio: 1; box-shadow: inset 0 0 0 26px rgba(0, 246, 246, 0.03); }
.booking-orb--two { right: -3rem; bottom: -5rem; width: 11rem; aspect-ratio: 1; border-color: rgba(235, 79, 78, 0.13); box-shadow: inset 0 0 0 18px rgba(235, 79, 78, 0.025); }

/* ── Contact ── */
.contact { padding-top: 0; padding-bottom: clamp(6rem, 11vw, 9rem); background: var(--canvas); }
.contact-inner { max-width: 760px; text-align: center; }
.contact-card {
  padding: clamp(2.4rem, 5vw, 3.4rem);
  border: 1px solid rgba(0, 246, 246, 0.16);
  border-radius: clamp(22px, 3.5vw, 32px);
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(0,0,0,0.05);
}
.contact-copy {
  max-width: 620px;
  margin: 0 auto 1.5rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}
.contact-email { color: var(--red); text-decoration: none; font-weight: 600; }
.contact-email:hover { text-decoration: underline; }

/* ── Animations ── */
@keyframes drift {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -14px, 0); }
}

/* ── Responsive ── */
@media (max-width: 920px) {
  .service-grid { grid-template-columns: 1fr; max-width: 630px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; }
  .about-copy { max-width: 700px; }
  .about-copy::before { left: -0.85rem; }
  .portrait-wrap { max-width: 560px; width: 100%; min-height: 560px; margin: 0 auto; }
  .testimonial-card { flex-basis: calc((100% - 20px) / 2); }
}

@media (max-width: 620px) {
  :root { --page: min(100% - 32px, 1140px); }
  .header-inner { min-height: 70px; }
  .header-actions { gap: 12px; }
  .linkedin-link span.linkedin-text { display: none; }
  .button--small { min-height: 39px; padding-inline: 0.82rem; font-size: 0.8rem; }
  .button--small::after { display: none; }
  .hero-orb--one { top: 4%; right: -5rem; }
  .hero-orb--two { bottom: 6%; left: -2.5rem; }
  .about-copy::before { display: none; }
  .portrait-wrap { min-height: 470px; border-radius: 34% 34% 5% 5%; }
  .testimonial-stage { grid-template-columns: 1fr; gap: 8px; }
  .testimonial-viewport { order: 1; }
  .carousel-control { position: relative; order: 2; justify-self: center; display: inline-grid; margin: 0 4px; }
  .carousel-control--previous { margin-right: 56px; }
  .carousel-control--next { margin-left: 56px; margin-top: -54px; }
  .testimonial-card { flex-basis: 100%; }
  .booking-card { padding-inline: 1rem; }
}

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

/* ── Calendly Modal ── */
body.booking-open { overflow: hidden; }

.booking-modal[hidden] { display: none; }

.booking-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(12px, 3vw, 36px);
}

.booking-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(5px);
}

.booking-modal__panel {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  min-height: min(780px, calc(100dvh - 24px));
  overflow: hidden;
  border: 1px solid rgba(0, 246, 246, 0.18);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

.booking-modal__close {
  position: absolute;
  z-index: 4;
  top: 12px;
  right: 12px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(43, 43, 43, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 1.9rem;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease;
}

.booking-modal__close:hover,
.booking-modal__close:focus-visible {
  background: var(--canvas-soft);
  transform: scale(1.05);
}

.booking-modal__close:focus-visible {
  outline: 3px solid rgba(0, 246, 246, 0.5);
  outline-offset: 3px;
}

.booking-modal__loading {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: none;
  place-items: center;
  background: rgba(255, 255, 255, 0.93);
}

.booking-modal.is-loading .booking-modal__loading { display: grid; }

.booking-modal__loading span {
  width: 44px;
  aspect-ratio: 1;
  border: 4px solid rgba(0, 246, 246, 0.2);
  border-top-color: var(--cyan);
  border-radius: 50%;
  animation: spin 820ms linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.calendly-inline-widget {
  width: 100%;
  min-width: 320px;
  height: min(780px, calc(100dvh - 24px));
}

@media (max-width: 620px) {
  .booking-modal { padding: 0; }

  .booking-modal__panel {
    width: 100%;
    min-height: 100dvh;
    border-radius: 0;
  }

  .calendly-inline-widget { height: 100dvh; }
}

/* ════════════════════════════════════════════
   ANIMATIONS
   ════════════════════════════════════════════ */

/* ── Header slide down on load ── */
.site-header {
  transform: translateY(-100%);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 180ms ease, background 180ms ease;
}
.site-header.header-slide-in {
  transform: translateY(0);
}

/* ── Hero word-by-word reveal ── */
.word-reveal {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
}

.word-reveal.word-anim {
  animation: wordUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes wordUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Blinking cursor after hero text */
.hero-cursor {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  background: var(--cyan);
  margin-left: 3px;
  vertical-align: middle;
  border-radius: 2px;
  animation: blink 0.8s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ── Scroll reveal base states ── */
.reveal-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Triggered state — element becomes visible */
.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
  opacity: 1;
  transform: translate(0, 0);
}

/* ── Service card: animated left border on hover ── */
.service-card {
  border-left: 3px solid transparent;
  transition: transform 240ms ease, box-shadow 240ms ease,
              border-color 240ms ease, border-left-color 240ms ease;
}

.service-card:hover {
  border-left-color: var(--cyan);
}

/* ── Portrait: subtle float animation ── */
.portrait-wrap img {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ── Booking CTA button pulse ── */
.pulse-btn {
  animation: pulseGlow 2.8s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 13px 30px rgba(0, 246, 246, 0.28); }
  50%       { box-shadow: 0 13px 42px rgba(0, 246, 246, 0.55), 0 0 0 8px rgba(0, 246, 246, 0.08); }
}

/* ── Contact email hover underline slide ── */
.contact-email {
  background-image: linear-gradient(var(--red), var(--red));
  background-size: 0% 2px;
  background-repeat: no-repeat;
  background-position: left bottom;
  transition: background-size 0.3s ease;
}

.contact-email:hover {
  background-size: 100% 2px;
}

/* ── Orbs: keep drifting ── */
.hero-orb--one { animation: drift 10s ease-in-out infinite; }
.hero-orb--two { animation: drift 11s ease-in-out infinite reverse; }

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .word-reveal,
  .reveal-up,
  .reveal-left,
  .reveal-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
  .site-header { transform: none !important; }
  .hero-cursor { animation: none !important; opacity: 0; }
  .pulse-btn { animation: none !important; }
  .portrait-wrap img { animation: none !important; }
}

/* ════════════════════════════════════════════
   EXTENDED ANIMATIONS v2
   ════════════════════════════════════════════ */

/* ── Page load fade-in ── */
body { opacity: 0; transition: opacity 0.5s ease; }
body.page-loaded { opacity: 1; }

/* ── Header slide + compact + hide-on-scroll ── */
.site-header {
  transform: translateY(-100%);
  transition: transform 0.55s cubic-bezier(0.22,1,0.36,1),
              min-height 0.3s ease,
              box-shadow 180ms ease,
              background 180ms ease;
}
.site-header.header-slide-in { transform: translateY(0); }
.site-header.header-compact .header-inner { min-height: 58px; }
.site-header.header-hidden { transform: translateY(-110%); }

/* ── Hero words ── */
.word-reveal {
  display: inline-block;
  opacity: 0;
  transform: translateY(22px);
  filter: blur(4px);
}
.word-reveal.word-anim {
  animation: wordUp 0.6s cubic-bezier(0.22,1,0.36,1) forwards;
}
@keyframes wordUp {
  to { opacity:1; transform:translateY(0); filter:blur(0); }
}

/* Blinking cursor */
.hero-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--cyan);
  margin-left: 4px;
  vertical-align: middle;
  border-radius: 2px;
  animation: blink 0.85s step-end infinite;
}
@keyframes blink {
  0%,100% { opacity:1; }
  50%      { opacity:0; }
}

/* ── Scroll reveal base states ── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1),
              transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-44px);
  transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1),
              transform 0.75s cubic-bezier(0.22,1,0.36,1);
}
.reveal-right {
  opacity: 0;
  transform: translateX(44px);
  transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1),
              transform 0.75s cubic-bezier(0.22,1,0.36,1);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1),
              transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed,
.reveal-scale.revealed {
  opacity: 1;
  transform: translate(0,0) scale(1);
}

/* ── Service card list items — reveal one by one ── */
.service-card li {
  opacity: 0;
  transform: translateX(-14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.service-card li.li-revealed {
  opacity: 1;
  transform: translateX(0);
}

/* ── Service card — cyan sweep shimmer on hover ── */
.service-card {
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(0,246,246,0.07) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  pointer-events: none;
}
.service-card.card-shimmer::after {
  animation: shimmerSweep 0.7s ease forwards;
}
@keyframes shimmerSweep {
  to { transform: translateX(100%); }
}

/* ── Service card left border ── */
.service-card {
  position: relative;
  border-left: 3px solid transparent;
  transition: transform 240ms ease, box-shadow 240ms ease, border-left-color 280ms ease;
}
.service-card:hover { border-left-color: var(--cyan); }

/* ── Section title char-by-char reveal ── */
.char-reveal {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px) rotateX(40deg);
  animation: charIn 0.45s cubic-bezier(0.22,1,0.36,1) forwards;
  animation-delay: calc(var(--ci) * 0.032s);
}
@keyframes charIn {
  to { opacity:1; transform:translateY(0) rotateX(0); }
}

/* Shimmer sweep for titles with highlight spans */
.title-shimmer {
  background: linear-gradient(90deg, var(--ink) 40%, var(--cyan) 50%, var(--ink) 60%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleShimmer 2s linear forwards;
}
@keyframes titleShimmer {
  from { background-position: 100% center; }
  to   { background-position:   0% center; }
}

/* ── Portrait float ── */
.portrait-wrap img {
  animation: float 6s ease-in-out infinite;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}

/* ── About copy — cyan line grows down ── */
.about-copy::before {
  height: 0;
  transition: height 1.1s cubic-bezier(0.22,1,0.36,1) 0.3s;
}
.about-copy.about-line-grow::before {
  height: clamp(90px,16vw,160px);
}

/* ── Booking pulse glow ── */
.pulse-btn {
  animation: pulseGlow 2.8s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%,100% { box-shadow: 0 13px 30px rgba(0,246,246,0.28); }
  50%      { box-shadow: 0 13px 42px rgba(0,246,246,0.55), 0 0 0 8px rgba(0,246,246,0.08); }
}

/* ── Contact email underline slide ── */
.contact-email {
  background-image: linear-gradient(var(--red), var(--red));
  background-size: 0% 2px;
  background-repeat: no-repeat;
  background-position: left bottom;
  transition: background-size 0.35s ease;
}
.contact-email:hover { background-size: 100% 2px; }

/* ── Brand name — rainbow border on hover ── */
.brand:hover::after {
  background: linear-gradient(90deg, var(--cyan), var(--red), var(--cyan));
  background-size: 200% auto;
  animation: brandGradient 1.4s linear infinite;
}
@keyframes brandGradient {
  to { background-position: 200% center; }
}

/* ── Orbs — parallax handled by JS, keep drift too ── */
.hero-orb--one  { animation: drift 10s ease-in-out infinite; }
.hero-orb--two  { animation: drift 11s ease-in-out infinite reverse; }
@keyframes drift {
  0%,100% { transform: translate3d(0,0,0); }
  50%      { transform: translate3d(0,-14px,0); }
}

/* ── Booking orbs rotate ── */
.booking-orb--one { animation: slowSpin 18s linear infinite; }
.booking-orb--two { animation: slowSpin 22s linear infinite reverse; }
@keyframes slowSpin {
  to { transform: rotate(360deg); }
}

/* ── Services glow pulse ── */
.services-glow {
  animation: glowPulse 5s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100% { opacity:0.7; transform:scale(1); }
  50%      { opacity:1;   transform:scale(1.06); }
}

/* ── Scroll-progress bar at top ── */
body::after {
  content: '';
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: calc(var(--scroll-pct, 0) * 100%);
  background: linear-gradient(90deg, var(--cyan), var(--red));
  z-index: 999;
  pointer-events: none;
  transition: width 0.1s linear;
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  body { opacity:1 !important; }
  .word-reveal, .reveal-up, .reveal-left,
  .reveal-right, .reveal-scale {
    opacity:1 !important; transform:none !important;
    transition:none !important; animation:none !important;
  }
  .char-reveal { opacity:1 !important; transform:none !important; animation:none !important; }
  .site-header { transform:none !important; }
  .hero-cursor { animation:none !important; opacity:0; }
  .pulse-btn   { animation:none !important; }
  .portrait-wrap img { animation:none !important; }
  .booking-orb--one,
  .booking-orb--two,
  .services-glow { animation:none !important; }
  body::after { display:none; }
}

/* ── Button ripple ── */
.button { position: relative; overflow: hidden; }
.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transform: scale(0);
  animation: rippleAnim 0.6s linear;
  pointer-events: none;
}
@keyframes rippleAnim {
  to { transform:scale(1); opacity:0; }
}