/*
Theme Name: Kevin Tash Theme
Theme URI: https://example.com/
Author: Converted by ChatGPT
Author URI: https://example.com/
Description: Custom WordPress theme converted from provided index.html (single-page homepage).
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kevin-tash
Tags: custom, one-page, responsive
*/

/* NOTE:
   This theme is intentionally minimal and focused on the homepage layout.
   Put your local images in: /wp-content/themes/kevin-tash/assets/
*/

:root {
  --teal: #0c8f92;
  --teal-dark: #06353b;
  --ink: #0f1b24;
  --muted: #5f6b78;
  --bg: #f7fbfb;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

body {
  font-family: "Satoshi", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: #ffffff;
  color: var(--ink);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%
}

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

/* ===== Top Announcement + Nav ===== */
.top-announcement {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  color: #fff;
  font-size: 14px;
  letter-spacing: .04em;
  text-align: center;
  padding: 0 1rem;
}

.main-nav {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #f2f2f2;
}

.main-nav-inner {
  width: min(1280px, 92vw);
  margin: 0 auto;
  height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-weight: 800;
  color: #0f1722;
}

.brand-dot {
  width: .72rem;
  height: .72rem;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 16px rgba(12, 143, 146, .5);
}

.nav-menu {
  display: flex;
  justify-content: center;
  gap: 36px;
  font-weight: 600;
  color: #1a2b33;
  font-size: .95rem;
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .2rem 0
}

.nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width .25s ease;
}

.nav-item:hover {
  color: var(--teal)
}

.nav-item:hover::after {
  width: 100%
}

.nav-caret {
  font-size: .7rem;
  opacity: .7
}

.nav-cta {
  background: var(--teal);
  color: #fff;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .85rem;
  box-shadow: 0 10px 18px rgba(12, 143, 146, .2);
  transition: transform .2s ease, background .2s ease;
}

.nav-cta:hover {
  background: #0a7e81;
  transform: translateY(-2px)
}

/* ===== Hero ===== */
.hero-wrap {
  padding: 0 0 0rem;
  background: #fff
}

.hero-inner {
  width: min(1280px, 92vw);
  margin: 0 auto;
  padding: 8px 0 0
}

.hero-shell {
  position: relative;
  border-radius: 28px;
  padding: clamp(70px, 8vw, 90px);
  background: linear-gradient(145deg, #041a1d 0%, #052a30 52%, #06353b 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .06) 0 2px, transparent 2px 16px),
    radial-gradient(circle at 80% 10%, rgba(12, 143, 146, .32), transparent 55%),
    radial-gradient(circle at 10% 80%, rgba(12, 143, 146, .18), transparent 50%);
  opacity: .45;
  pointer-events: none;
}

.hero-shell::after {
  content: "";
  position: absolute;
  left: 6%;
  top: 22%;
  width: 46%;
  height: 48%;
  background: radial-gradient(circle, rgba(12, 143, 146, .55) 0%, rgba(12, 143, 146, .12) 45%, transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .55);
  background: rgba(4, 20, 24, .45);
  color: rgba(255, 255, 255, .92);
  border-radius: 999px;
  padding: .35rem .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2.4rem, 5.3vw, 3.6rem);
  line-height: 1.22;
  font-weight: 500;
  letter-spacing: -.02em;
  color: #fff;
  margin: 0 0 .6rem;
  max-width: 20ch;
}

.hero-sub {
  color: rgba(255, 255, 255, .9);
  max-width: 52ch;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  margin: .6rem 0;
}

.hero-actions {
  display: flex;
  gap: .8rem;
  margin-top: 1.2rem;
  flex-wrap: wrap
}

.hero-btn {
  background: var(--teal);
  color: #fff;
  border-radius: 16px;
  padding: .75rem 1.8rem;
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: 0 14px 26px rgba(12, 143, 146, .35);
}

.pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px 10px 10px;
  border-radius: 14px;
  background: rgba(7, 16, 24, 0.9);
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 700;
  font-size: .85rem;
  box-shadow: 0 16px 30px rgba(0, 0, 0, .32);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pill-btn .pill-avatar {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #f5d27c, #caa24e);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex: 0 0 auto;
}

.pill-btn .pill-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.pill-btn:hover {
  transform: translateY(-2px)
}

.hero-btn-ghost {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .55);
  color: #fff;
  padding: .75rem 1.8rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 700;
  font-size: .85rem;
  background: transparent;
}

.hero-panel {
  display: grid;
  gap: 1rem;
  align-content: start
}

.hero-profile-card {
  position: relative;
  min-height: 420px;
  border-radius: 24px;
  overflow: hidden;
}

.hero-profile-card img {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: saturate(.95)
}

.hero-slider {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  height: 100%;
  width: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04) translateY(8px);
  transition: opacity .9s ease, transform 1.4s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
}


/* ===== What I Do (accordion) ===== */
.whatido {
  background: var(--bg);
  padding: 80px 0;
  position: relative
}

.whatido-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px 24px;
  position: relative;
  overflow: hidden
}

.whatido::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(12, 143, 146, .08), transparent 45%),
    repeating-linear-gradient(135deg, rgba(12, 143, 146, .04) 0 1px, transparent 1px 14px);
  pointer-events: none;
}

.whatido-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch
}

.whatido-image {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  height: 100%;
  border: 1px solid rgba(12, 143, 146, .12)
}

.whatido-image-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity .6s ease, transform 1.2s ease;
  filter: saturate(.92) contrast(1.05)
}

.whatido-image-layer.active {
  opacity: 1;
  transform: scale(1)
}

.whatido-right {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1
}

.whatido-pill {
  display: inline-block;
  border: 1px solid var(--teal);
  color: var(--teal);
  background: #e9f7f7;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  width: 124px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 18px
}

.whatido-title {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 14px;
  color: #0f1b24
}

.whatido-accordion {
  border-top: 1px solid #e3eaee
}

.whatido-item {
  border-bottom: 1px solid #e3eaee
}

.whatido-header {
  display: grid;
  grid-template-columns: 52px 1fr 22px;
  gap: 20px;
  align-items: center;
  padding: 18px 0;
  cursor: pointer
}

.whatido-tile {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #c6d0d7, #9aa3ad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 18px rgba(10, 28, 36, .12);
  transition: .3s
}

.whatido-title-sm {
  font-size: 21px;
  font-weight: 700;
  color: #3b4752;
  transition: .3s
}

.whatido-chevron {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid #e3eaee;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7785;
  transition: .3s
}

.whatido-chevron i {
  font-size: 11px;
  line-height: 1
}

.whatido-item.active .whatido-tile {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark))
}

.whatido-item.active .whatido-title-sm {
  color: var(--ink)
}

.whatido-item.active .whatido-chevron {
  transform: rotate(180deg);
  border-color: rgba(12, 143, 146, .5);
  color: var(--teal)
}

.whatido-panel {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-5px);
  transition: max-height .4s ease, opacity .3s ease, transform .3s ease
}

.whatido-item.active .whatido-panel {
  opacity: 1;
  transform: translateY(0)
}

.whatido-panel-inner {
  padding: 0 0 18px 72px
}

.whatido-panel-inner p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 8px
}

.whatido-progress {
  height: 4px;
  background: #edf2f4;
  border-radius: 999px;
  overflow: hidden;
  margin: 12px 0 20px 72px;
  max-width: 240px
}

.whatido-progress-bar {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--teal), #4bd5d8);
  transform: scaleX(0);
  transform-origin: left
}

.whatido-item.active .whatido-progress-bar {
  animation: whatido-progress 6s linear forwards
}

@keyframes whatido-progress {
  from {
    transform: scaleX(0)
  }

  to {
    transform: scaleX(1)
  }
}

.whatido-closing {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid #e3eaee;
  color: #0f1b24
}

.whatido-closing p {
  margin-bottom: 6px;
  font-size: 15px;
  color: var(--muted)
}

.whatido-closing strong {
  font-size: 16px;
  font-weight: 800
}

/* ===== Services ===== */
.services-section {
  padding: 64px 20px 80px
}

.services-container {
  max-width: 1200px;
  margin: 0 auto
}

.services-header {
  text-align: center;
  padding-bottom: 18px
}

.services-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border: 1px solid #d9b46a;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  background: #fff;
  text-transform: uppercase
}

.services-title {
  margin: 18px auto 0;
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1.05;
  font-size: 56px;
  max-width: 980px
}

.services-sub {
  margin: 18px auto 0;
  max-width: 760px;
  font-size: 18px;
  line-height: 1.55;
  color: #6b7280;
  font-weight: 500
}

.services-rule {
  width: 100%;
  max-width: 920px;
  height: 1px;
  background: #e9e9e9;
  margin: 26px auto 0
}

.services-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
  height: 640px
}

.svc-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  cursor: pointer;
  background: #111;
  outline: none;
  transform: translateZ(0);
  min-height: 260px;
  user-select: none;
  height: 100%
}

.svc-card:focus-visible {
  box-shadow: 0 0 0 4px rgba(217, 180, 106, .35)
}

.svc-card--tall {
  grid-row: 1 / span 2;
  grid-column: 1
}

.svc-card--mTop {
  grid-row: 1;
  grid-column: 2
}

.svc-card--mBot {
  grid-row: 2;
  grid-column: 2
}

.svc-card--rTop {
  grid-row: 1;
  grid-column: 3
}

.svc-card--rBot {
  grid-row: 2;
  grid-column: 3
}

.svc-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 800ms ease, filter 800ms ease;
  filter: saturate(1.02) contrast(1.02)
}

.svc-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, .06) 0%, rgba(0, 0, 0, .04) 45%, rgba(0, 0, 0, .26) 72%, rgba(0, 0, 0, .62) 100%);
  pointer-events: none
}

.svc-plus {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .22);
  border: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(10px);
  transition: transform 240ms ease, background 240ms ease;
  z-index: 3
}

.svc-plus svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  stroke-width: 2.4;
  stroke-linecap: round;
  transition: transform 240ms ease
}

.svc-glass {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
  z-index: 2;
  transition: transform 240ms ease, background 240ms ease
}

.svc-name {
  margin: 0;
  color: rgba(255, 255, 255, .94);
  font-size: 28px;
  font-weight: 650;
  letter-spacing: -.02em;
  line-height: 1.12;
  text-shadow: 0 1px 18px rgba(0, 0, 0, .35)
}

.svc-card:hover .svc-bg {
  transform: scale(1.06);
  filter: saturate(1.06) contrast(1.06)
}

.svc-card:hover .svc-plus {
  transform: scale(1.06);
  background: rgba(255, 255, 255, .28)
}

.svc-card:hover .svc-glass {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .16)
}

.svc-card.is-active .svc-plus {
  background: rgba(255, 255, 255, .30);
  transform: scale(1.06)
}

.svc-card.is-active .svc-plus svg {
  transform: rotate(45deg)
}

.svc-card.is-active .svc-glass {
  background: rgba(255, 255, 255, .18)
}

/* ===== CTA Banner ===== */
.cta-banner {
  padding: 26px 20px 0px
}

.cta-banner .banner {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  min-height: 520px;
  background: linear-gradient(145deg, #041a1d 0%, #052a30 52%, #06353b 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08)
}

.cta-banner .banner::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .06) 0 2px, rgba(255, 255, 255, 0) 2px 16px), radial-gradient(circle at 80% 10%, rgba(12, 143, 146, .32), rgba(12, 143, 146, 0) 55%), radial-gradient(circle at 10% 80%, rgba(12, 143, 146, .18), rgba(12, 143, 146, 0) 50%), linear-gradient(145deg, #041a1d 0%, #052a30 52%, #06353b 100%);
  filter: blur(.2px) saturate(1.05);
  transform: scale(1.02)
}

.cta-banner .bannerInner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  grid-template-columns: 1.2fr .9fr;
  align-items: center;
  gap: 32px;
  padding: 70px 64px
}

.cta-banner .chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(217, 180, 106, .65);
  color: rgba(255, 255, 255, .92);
  border-radius: 12px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .01em;
  background: rgba(0, 0, 0, .18);
  backdrop-filter: blur(6px);
  width: fit-content
}

.cta-banner .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(217, 180, 106, .95);
  box-shadow: 0 0 0 3px rgba(217, 180, 106, .18)
}

.cta-banner h1 {
  margin: 18px 0 0;
  color: #fff;
  font-size: 64px;
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1.02;
  max-width: 16ch
}

.cta-banner .desc {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
  line-height: 1.55;
  max-width: 62ch
}

.cta-banner .ctaRow {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 14px
}

.cta-banner .btn {
  appearance: none;
  border: 0;
  background: #0b0d1a;
  color: #fff;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(0, 0, 0, .28);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease
}

.cta-banner .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, .34);
  background: #0a0c18
}

.cta-banner .figure {
  position: relative;
  height: 100%;
  min-height: 380px
}

.cta-banner .person {
  position: absolute;
  right: 0;
  bottom: -6px;
  width: min(410px, 100%);
  height: 350px;
  border-radius: 18px;
  object-fit: cover;
  object-position: center
}

.cta-banner .signature {
  position: absolute;
  right: 42%;
  bottom: 72px;
  width: min(360px, 70%);
  opacity: .95;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, .35));
  transform: rotate(-6deg);
  pointer-events: none
}

.cta-banner .signature path {
  stroke: rgba(217, 180, 106, .95);
  stroke-width: 3.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round
}

/* ===== Testimonials ===== */
.testimonials {
  padding: 78px 20px 86px;
  position: relative;
  overflow: hidden;
  background: #fff
}

.testimonials::before {
  content: "";
  position: absolute;
  inset: -200px -120px auto -120px;
  height: 520px;
  background: radial-gradient(420px 240px at 20% 35%, rgba(217, 180, 106, .14), rgba(217, 180, 106, 0) 70%), radial-gradient(520px 320px at 70% 25%, rgba(120, 140, 255, .10), rgba(120, 140, 255, 0) 72%), radial-gradient(480px 280px at 55% 65%, rgba(111, 72, 255, .08), rgba(111, 72, 255, 0) 70%);
  pointer-events: none;
  z-index: 0
}

.testimonials .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.testimonials .kicker {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #5b6475;
  margin-bottom: 14px
}

.testimonials h2 {
  margin: 0 auto;
  text-align: center;
  font-size: 60px;
  line-height: 1.05;
  letter-spacing: -.04em;
  font-weight: 650;
  max-width: 980px
}

.testimonials .sub {
  margin: 18px auto 0;
  text-align: center;
  max-width: 900px;
  color: #5b6475;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 500
}

.ratingRow {
  margin: 22px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap
}

.ratingPill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid #e9e9ee;
  border-radius: 999px;
  background: rgba(255, 255, 255, .75);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 24px rgba(16, 24, 40, .06)
}

.ratingNum {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -.02em
}

.ratingLabel {
  color: #5b6475;
  font-weight: 600;
  font-size: 14px
}

.stars {
  display: inline-flex;
  gap: 2px
}

.stars svg {
  width: 16px;
  height: 16px;
  fill: rgba(217, 180, 106, .95);
  filter: drop-shadow(0 2px 6px rgba(217, 180, 106, .18))
}

.marqueeWrap {
  margin-top: 44px;
  border-top: 1px solid rgba(0, 0, 0, .06);
  padding-top: 34px
}

.row {
  position: relative;
  overflow: hidden;
  padding: 14px 0
}

.row::before,
.row::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none
}

.row::before {
  left: 0;
  background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0))
}

.row::after {
  right: 0;
  background: linear-gradient(to left, #fff, rgba(255, 255, 255, 0))
}

.track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
  animation: scroll-left var(--dur, 70s) linear infinite
}

.row.reverse .track {
  animation-name: scroll-right
}

.row:hover .track {
  animation-play-state: paused
}

@keyframes scroll-left {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(calc(-1 * var(--shift)))
  }
}

@keyframes scroll-right {
  from {
    transform: translateX(calc(-1 * var(--shift)))
  }

  to {
    transform: translateX(0)
  }
}

.tCard {
  width: 360px;
  max-width: 84vw;
  background: linear-gradient(180deg, rgba(255, 255, 255, .78), rgba(255, 255, 255, .58));
  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(16, 24, 40, .08);
  padding: 26px 26px 20px;
  position: relative;
  overflow: hidden
}

.tCard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(500px 240px at 20% 15%, rgba(255, 255, 255, .85), rgba(255, 255, 255, 0) 55%), radial-gradient(420px 220px at 90% 40%, rgba(217, 180, 106, .10), rgba(217, 180, 106, 0) 62%);
  opacity: .8;
  pointer-events: none
}

.quote {
  position: relative;
  z-index: 1;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 650;
  letter-spacing: -.01em;
  color: #101827;
  margin: 0 0 18px;
  min-height: 84px
}

.meta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(15, 23, 42, .10), rgba(15, 23, 42, .04));
  border: 1px solid rgba(15, 23, 42, .10);
  overflow: hidden;
  flex: 0 0 auto
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.who {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0
}

.name {
  font-weight: 800;
  letter-spacing: -.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.role {
  font-size: 13px;
  color: #5b6475;
  font-weight: 650;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.starsSmall {
  margin-left: auto;
  display: inline-flex;
  gap: 2px;
  flex: 0 0 auto;
  opacity: .95
}

.starsSmall svg {
  width: 14px;
  height: 14px;
  fill: rgba(217, 180, 106, .95)
}

/* CTA after testimonials */
.ctaSection {
  position: relative;
  width: 100%;
  padding: 110px 20px;
  overflow: hidden;
  background: linear-gradient(170deg, #fdfefe 0%, #f6fcfc 56%, #eef9f9 100%);
  color: var(--ink);
}

.ctaSection::before {
  content: "";
  position: absolute;
  inset: -200px;
  background:
    repeating-linear-gradient(90deg, rgba(12, 143, 146, .04) 0 2px, rgba(12, 143, 146, 0) 2px 18px),
    radial-gradient(circle at 82% 12%, rgba(12, 143, 146, .10), rgba(12, 143, 146, 0) 52%),
    radial-gradient(circle at 12% 84%, rgba(12, 143, 146, .07), rgba(12, 143, 146, 0) 48%);
  pointer-events: none;
  filter: blur(.2px);
  transform: scale(1.02);
}

.ctaContainer {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.ctaInner {
  text-align: center;
  max-width: 900px;
  margin: 0 auto
}

.ctaKicker {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #0a6f72;
  margin-bottom: 24px
}

.ctaTitle {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -.03em;
  margin: 0 0 40px;
  color: #102229
}

.ctaSection .pill-btn {
  background: #0c8f92;
  color: #fff;
  border: 1px solid rgba(12, 143, 146, .4);
  box-shadow: 0 18px 34px rgba(12, 143, 146, .22);
}

.ctaSection .pill-btn .pill-avatar {
  background: linear-gradient(135deg, #d9f2f2, #a8dede);
}

.ctaSection .pill-btn:hover {
  background: #0a7e81;
}

.ctaButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 34px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  color: #0b0d1a;
  background: #fff;
  transition: all .25s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .35)
}

.ctaButton:hover {
  transform: translateY(-3px);
  background: #f3f4f8;
  box-shadow: 0 28px 60px rgba(0, 0, 0, .45)
}

/* Footer */
.site-footer {
  background: linear-gradient(145deg, #041a1d 0%, #052a30 52%, #06353b 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: -120px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .05) 0 2px, rgba(255, 255, 255, 0) 2px 16px),
    radial-gradient(circle at 80% 18%, rgba(12, 143, 146, .35), transparent 55%),
    radial-gradient(circle at 12% 80%, rgba(12, 143, 146, .20), transparent 50%);
  pointer-events: none;
}

.site-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 20px 26px;
  position: relative;
  z-index: 1
}

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

.site-footer-kicker {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .72);
  font-weight: 700
}

.site-footer-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  line-height: 1.15;
  font-weight: 600;
  margin: 8px 0 10px
}

.site-footer-text {
  max-width: 52ch;
  color: rgba(255, 255, 255, .8)
}

.site-footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 12px;
  background: #0c8f92;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .82rem;
  font-weight: 700;
  white-space: nowrap;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr .8fr;
  gap: 28px;
}

.site-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.site-footer-heading {
  font-size: .9rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .74);
  margin-bottom: 10px;
}

.site-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px
}

.site-footer-links a {
  color: rgba(255, 255, 255, .92)
}

.site-footer-links a:hover {
  color: #a0f1f2
}

.site-footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, .9)
}

.site-footer-contact strong {
  color: #fff;
  font-weight: 700
}

.site-footer-contact a {
  color: rgba(255, 255, 255, .95)
}

.site-footer-contact a:hover {
  color: #a0f1f2
}

.site-footer-bottom {
  margin-top: 34px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: rgba(255, 255, 255, .74);
  font-size: .92rem;
}

.site-footer-bottom a {
  color: rgba(255, 255, 255, .92)
}

/* Calendly modal */
.calendly-open {
  overflow: hidden
}

.calendly-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.calendly-modal.is-open {
  display: flex
}

.calendly-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 15, 22, .7);
  backdrop-filter: blur(3px);
}

.calendly-modal-panel {
  position: relative;
  width: min(980px, 94vw);
  height: min(84vh, 760px);
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .45);
  z-index: 1;
}

.calendly-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: #0c8f92;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.calendly-modal-frame {
  width: 100%;
  height: 100%;
  padding-top: 0;
}

.calendly-modal-frame iframe {
  width: 100%;
  height: 100%;
}

/* Responsive */
@media (max-width:1100px) {
  .hero-grid {
    grid-template-columns: 1fr
  }

  .main-nav-inner {
    grid-template-columns: auto auto;
    gap: 1rem
  }

  .nav-menu {
    display: none
  }

  .services-title {
    font-size: 46px
  }

  .services-grid {
    height: auto;
    grid-template-columns: 1fr 1fr
  }

  .svc-card--tall {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 360px
  }

  .svc-card {
    min-height: 280px
  }

  .site-footer-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width:900px) {
  .whatido-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .whatido-image {
    height: 420px
  }

  .whatido-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 70px 24px;
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 30px 70px rgba(10, 28, 36, .08);
    position: relative;
    overflow: hidden
  }

  .site-footer-top {
    flex-direction: column;
    align-items: flex-start
  }

  .site-footer-grid {
    grid-template-columns: 1fr
  }

  .calendly-modal-panel {
    height: min(88vh, 720px)
  }
}

@media (max-width:720px) {
  .services-grid {
    grid-template-columns: 1fr
  }

  .svc-card {
    min-height: 300px
  }

  .cta-banner .bannerInner {
    grid-template-columns: 1fr;
    padding: 56px 42px
  }

  .cta-banner .figure {
    min-height: 320px;
    margin-top: 10px
  }

  .cta-banner h1 {
    font-size: 52px
  }

  .testimonials h2 {
    font-size: 44px
  }

  .site-footer-bottom {
    flex-direction: column;
    align-items: flex-start
  }

  .calendly-modal-panel {
    width: 96vw;
    height: 90vh;
    border-radius: 12px;
  }
}

@media (max-width:560px) {
  .cta-banner .banner {
    min-height: 560px
  }

  .cta-banner .bannerInner {
    padding: 44px 18px
  }

  .cta-banner h1 {
    font-size: 40px
  }

  .cta-banner .desc {
    font-size: 16px
  }

  .cta-banner .ctaRow {
    flex-direction: column;
    align-items: stretch
  }

  .cta-banner .btn {
    width: 100%
  }

  .services-title {
    font-size: 34px
  }

  .testimonials h2 {
    font-size: 34px
  }

  .tCard {
    width: 320px;
    padding: 22px
  }
}

/* Responsive hardening for homepage */
@media (max-width:1024px) {
  .top-announcement {
    height: auto;
    min-height: 40px;
    line-height: 1.4;
    padding: 8px 14px;
  }

  .main-nav-inner {
    height: auto;
    min-height: 74px;
    padding: 10px 0;
  }

  .nav-cta {
    padding: 11px 14px;
    font-size: .76rem;
  }

  .hero-shell {
    padding: 56px 32px;
    border-radius: 22px;
  }

  .hero-title {
    font-size: clamp(2rem, 4.2vw, 2.8rem);
  }

  .hero-sub {
    max-width: 60ch;
  }

  .hero-profile-card,
  .hero-slider,
  .hero-slide img {
    min-height: 360px;
  }

  .whatido {
    padding: 64px 0;
  }

  .whatido-title {
    font-size: 34px;
  }

  .whatido-grid {
    gap: 32px;
  }

  .services-section {
    padding: 56px 16px 64px;
  }

  .services-title {
    font-size: 42px;
  }

  .services-sub {
    font-size: 16px;
  }

  .cta-banner .bannerInner {
    gap: 24px;
    padding: 46px 34px;
  }

  .cta-banner h1 {
    font-size: 44px;
  }

  .cta-banner .desc {
    font-size: 17px;
  }

  .testimonials {
    padding: 64px 16px 70px;
  }

  .testimonials h2 {
    font-size: 48px;
  }

  .ctaSection {
    padding: 84px 16px;
  }

  .ctaTitle {
    font-size: 44px;
  }
}

@media (max-width:767px) {
  body {
    overflow-x: hidden;
  }

  .main-nav-inner {
    width: min(1280px, 94vw);
    grid-template-columns: 1fr auto;
    gap: .75rem;
  }

  .brand {
    font-size: 1rem;
  }

  .nav-cta {
    font-size: .7rem;
    letter-spacing: .03em;
    padding: 10px 12px;
    border-radius: 10px;
  }

  .hero-inner {
    width: min(1280px, 94vw);
  }

  .hero-shell {
    padding: 34px 18px;
    border-radius: 18px;
  }

  .hero-grid {
    gap: 18px;
  }

  .hero-title {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
    line-height: 1.18;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .hero-actions {
    gap: 10px;
  }

  .pill-btn,
  .hero-btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .hero-profile-card,
  .hero-slider,
  .hero-slide img {
    min-height: 300px;
  }

  .whatido {
    padding: 48px 0;
  }

  .whatido-inner {
    padding: 18px 14px;
    border-radius: 18px;
  }

  .whatido-title {
    font-size: 28px;
  }

  .whatido-header {
    grid-template-columns: 44px 1fr 20px;
    gap: 12px;
  }

  .whatido-panel-inner {
    padding: 0 0 16px 56px;
  }

  .whatido-progress {
    margin: 10px 0 16px 56px;
  }

  .services-title {
    font-size: 34px;
  }

  .svc-name {
    font-size: 22px;
  }

  .svc-plus {
    width: 42px;
    height: 42px;
  }

  .cta-banner {
    padding: 18px 14px 0;
  }

  .cta-banner .banner {
    border-radius: 18px;
    min-height: auto;
  }

  .cta-banner .bannerInner {
    grid-template-columns: 1fr;
    padding: 32px 18px;
  }

  .cta-banner h1 {
    font-size: 34px;
    max-width: 18ch;
  }

  .cta-banner .desc {
    font-size: 15px;
  }

  .cta-banner .figure {
    min-height: 240px;
  }

  .cta-banner .person {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .cta-banner .signature {
    right: 48%;
    bottom: 16px;
    width: min(260px, 72%);
  }

  .testimonials h2 {
    font-size: 34px;
  }

  .testimonials .sub {
    font-size: 16px;
  }

  .ratingRow {
    gap: 10px;
  }

  .ratingPill {
    padding: 8px 12px;
  }

  .marqueeWrap {
    margin-top: 28px;
    padding-top: 22px;
  }

  .tCard {
    width: 86vw;
    padding: 18px;
  }

  .quote {
    font-size: 16px;
    min-height: 0;
  }

  .ctaTitle {
    font-size: 32px;
    margin-bottom: 28px;
  }

  .site-footer-inner {
    padding: 56px 16px 20px;
  }
}