@import './fonts.css';
@import './tokens.css';

/* ─── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--t-base);
  font-weight: var(--w-normal);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bone);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.nav-open { overflow: hidden; }
main#main-content { position: relative; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ─── Accessibility ────────────────────────────────────────── */
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
  top: var(--s-3);
  left: var(--s-4);
  z-index: 9999;
  background: var(--sage-deep);
  color: var(--white);
  border-radius: var(--r-sm);
  font-size: var(--t-sm);
  font-weight: var(--w-semi);
  text-decoration: none;
}
.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  white-space: normal;
  padding: var(--s-2) var(--s-4);
}

:focus-visible {
  outline: 3px solid var(--sage-deep);
  outline-offset: 3px;
  border-radius: 2px;
}
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--sage-deep);
  outline-offset: 0;
  border-color: var(--sage-deep);
}

/* ─── Layout ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: min(92%, 1200px);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ─── Animation system: JS-gated so content is visible without JS ─── */
.js [data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--d-slow) var(--ease-out),
              transform var(--d-slow) var(--ease-out);
}
.js [data-animate="left"]  { transform: translateX(-28px); }
.js [data-animate="right"] { transform: translateX(28px); }
.js [data-animate="scale"] { transform: scale(0.96); }
.js [data-animate].in-view { opacity: 1; transform: none; }

.js .hero-h1 .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}
.js .hero-h1.revealed .word { opacity: 1; transform: none; }

/* ─── Typography utilities ─────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--t-xs);
  font-weight: var(--w-semi);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
}
.eyebrow svg { flex-shrink: 0; }
.eyebrow.on-dark { color: var(--rose); }

.section-label {
  font-size: var(--t-xs);
  font-weight: var(--w-semi);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: var(--s-4);
}
.section-label.on-dark { color: var(--rose-soft); }

.serif { font-family: var(--font-display); font-weight: var(--w-medium); letter-spacing: -0.01em; }

/* ─── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--t-sm);
  font-weight: var(--w-semi);
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  transition: background var(--d-base) var(--ease),
              color var(--d-base) var(--ease),
              border-color var(--d-base) var(--ease),
              transform var(--d-fast) var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--sage);
  color: var(--white);
}
.btn-primary:hover { background: var(--sage-deep); }
.btn-ghost {
  background: transparent;
  color: var(--sage-deep);
  border: 1.5px solid var(--sage);
}
.btn-ghost:hover { background: rgba(91,138,124,0.08); }
.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.36);
}
.btn-ghost-light:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }
.btn-rose {
  background: var(--rose);
  color: var(--ink);
}
.btn-rose:hover { background: var(--rose-deep); color: var(--white); }
.btn-arrow::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 1px;
  background: currentColor;
  transition: width var(--d-base) var(--ease);
}
.btn-arrow:hover::after { width: 24px; }

/* ─── Header ───────────────────────────────────────────────── */
.vy-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 var(--gutter);
  transition: background var(--d-base) var(--ease),
              box-shadow var(--d-base) var(--ease),
              transform var(--d-base) var(--ease);
}
.vy-header.scrolled,
body.nav-open .vy-header {
  background: rgba(251,250,247,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line-soft);
}
body.nav-open .vy-header { transform: none !important; }
.vy-header.hidden { transform: translateY(-100%); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: var(--max-w);
  margin-inline: auto;
}
.vy-logo {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  flex-shrink: 0;
}
.vy-logo-mark {
  width: 52px;
  height: 44px;
  flex-shrink: 0;
  border-radius: var(--r-pill);
  background: var(--sage);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: var(--w-bold);
  font-size: 15px;
  letter-spacing: 0.01em;
}
.vy-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.vy-logo-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: var(--w-bold);
  color: var(--ink);
  letter-spacing: 0.005em;
}
.vy-logo-title {
  font-size: 10px;
  font-weight: var(--w-semi);
  color: var(--ink-mute);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Desktop nav */
.vy-nav {
  display: flex;
  align-items: center;
  gap: var(--s-8);
}
.vy-nav a,
.vy-nav .nav-has-dropdown {
  font-size: var(--t-sm);
  font-weight: var(--w-medium);
  color: var(--ink-soft);
  transition: color var(--d-base) var(--ease);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  line-height: 1;
}
.vy-nav .nav-has-dropdown > span:first-child { pointer-events: none; }
.vy-nav a:hover,
.vy-nav .nav-has-dropdown:hover { color: var(--sage-deep); }

/* Dropdown */
.nav-has-dropdown { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  min-width: 240px;
  padding: var(--s-3) 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--d-base) var(--ease), transform var(--d-base) var(--ease);
  box-shadow: 0 12px 40px rgba(46,58,54,0.08);
}
.nav-dropdown.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: var(--s-3) var(--s-6);
  font-size: var(--t-sm);
  font-weight: var(--w-medium);
  color: var(--ink-soft) !important;
  transition: color var(--d-base) var(--ease), background var(--d-base) var(--ease);
}
.nav-dropdown a:hover {
  color: var(--sage-deep) !important;
  background: var(--cream);
}
.nav-caret {
  width: 10px;
  height: 10px;
  opacity: 0.6;
  transition: transform var(--d-base) var(--ease);
}
.nav-has-dropdown:hover .nav-caret { transform: rotate(180deg); }

.header-cta { flex-shrink: 0; }

/* Hamburger */
.vy-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px;
  cursor: pointer;
}
.vy-hamburger span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  transition: transform var(--d-base) var(--ease), opacity var(--d-base) var(--ease), width var(--d-base) var(--ease);
}
.vy-hamburger span:nth-child(3) { width: 70%; }
.vy-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.vy-hamburger.open span:nth-child(2) { opacity: 0; }
.vy-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px,-4px); width: 100%; }

/* Mobile nav overlay */
.vy-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: var(--s-6);
  padding: 96px var(--s-6) var(--s-12);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--d-base) var(--ease);
}
.vy-mobile-nav.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.vy-mobile-nav a {
  font-size: var(--t-2xl);
  font-family: var(--font-display);
  font-weight: var(--w-semi);
  color: var(--ink);
  letter-spacing: -0.01em;
}
.vy-mobile-nav a:hover { color: var(--sage); }
.mobile-service-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-3);
}
.mobile-service-links a {
  font-size: var(--t-base) !important;
  font-family: var(--font-body) !important;
  font-weight: var(--w-medium) !important;
  color: var(--ink-soft) !important;
}

/* ─── Hero ─────────────────────────────────────────────────── */
.vy-home-sec-hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: center;
  background: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
  opacity: 0.55;
}
.hero-orb-1 {
  width: 520px; height: 520px;
  top: -120px; right: -80px;
  background: var(--rose-soft);
  animation: orb-drift 22s ease-in-out infinite;
}
.hero-orb-2 {
  width: 380px; height: 380px;
  bottom: -100px; left: -60px;
  background: var(--sage-soft);
  animation: orb-drift 28s ease-in-out infinite reverse;
  opacity: 0.45;
}
.hero-orb-3 {
  width: 240px; height: 240px;
  top: 40%; left: 38%;
  background: var(--cream-deep);
  animation: orb-drift 34s ease-in-out infinite 4s;
  opacity: 0.7;
}
@keyframes orb-drift {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%       { transform: translate(20px,-18px) scale(1.04); }
  66%       { transform: translate(-14px,12px) scale(0.98); }
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 168px 0 120px;
  width: 100%;
}
.hero-content { max-width: 920px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  margin-bottom: var(--s-8);
}
.hero-eyebrow-text {
  font-size: var(--t-xs);
  font-weight: var(--w-semi);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-deep);
}
.hero-eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--sage);
  opacity: 0.6;
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6.5vw, 4.75rem);
  font-weight: var(--w-medium);
  line-height: 1.05;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin-bottom: var(--s-6);
}
.hero-h1 .accent { color: var(--sage-deep); font-style: italic; }
.hero-sub {
  font-size: clamp(var(--t-base), 1.4vw, var(--t-lg));
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 620px;
  margin-bottom: var(--s-10);
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--s-6);
  margin-top: var(--s-12);
  flex-wrap: wrap;
  font-size: var(--t-sm);
  color: var(--ink-mute);
}
.hero-trust-item { display: flex; align-items: center; gap: var(--s-2); }
.hero-trust-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sage);
}

/* ─── Promise strip ────────────────────────────────────────── */
.vy-home-sec-promise {
  background: var(--white);
  padding: var(--s-12) 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-8);
}
.promise-item {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  padding-left: var(--s-4);
  border-left: 2px solid var(--rose);
}
.promise-item-title {
  font-size: var(--t-sm);
  font-weight: var(--w-bold);
  letter-spacing: 0.02em;
  color: var(--ink);
}
.promise-item-desc {
  font-size: var(--t-sm);
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ─── About ────────────────────────────────────────────────── */
.vy-home-sec-about {
  padding: var(--s-30) 0;
  background: var(--bone);
  position: relative;
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.about-image-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.about-image-wrap::before {
  content: '';
  position: absolute;
  top: -22px;
  left: -22px;
  right: 22px;
  bottom: 22px;
  border: 1px solid var(--rose-soft);
  border-radius: var(--r-lg);
  pointer-events: none;
  z-index: 0;
}
.about-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-content { display: flex; flex-direction: column; gap: var(--s-6); }
.about-h2 {
  font-family: var(--font-display);
  font-size: clamp(var(--t-2xl), 4vw, var(--t-4xl));
  font-weight: var(--w-medium);
  letter-spacing: -0.012em;
  line-height: 1.1;
  color: var(--ink);
}
.about-h2 em { color: var(--sage-deep); font-style: italic; }
.about-body {
  font-size: var(--t-lg);
  line-height: 1.75;
  color: var(--ink-soft);
}
.about-credentials {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  padding: var(--s-6);
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-left: 3px solid var(--sage);
  border-radius: var(--r-md);
  margin-top: var(--s-2);
}
.about-credentials-row {
  display: flex;
  gap: var(--s-3);
  font-size: var(--t-sm);
  color: var(--ink-soft);
  align-items: baseline;
}
.about-credentials-row strong {
  font-weight: var(--w-bold);
  color: var(--ink);
  min-width: 110px;
  letter-spacing: 0.02em;
}

/* ─── Services header ──────────────────────────────────────── */
.vy-home-sec-services-hdr {
  padding: var(--s-25) 0 var(--s-12);
  background: var(--cream);
  text-align: center;
}
.services-hdr-h2 {
  font-family: var(--font-display);
  font-size: clamp(var(--t-2xl), 4.5vw, var(--t-5xl));
  font-weight: var(--w-medium);
  letter-spacing: -0.014em;
  line-height: 1.08;
  color: var(--ink);
  max-width: 760px;
  margin-inline: auto;
  margin-top: var(--s-4);
  margin-bottom: var(--s-6);
}
.services-hdr-sub {
  font-size: var(--t-lg);
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 600px;
  margin-inline: auto;
}

/* ─── Services grid ────────────────────────────────────────── */
.vy-home-sec-services {
  padding: var(--s-12) 0 var(--s-30);
  background: var(--cream);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: var(--s-8);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  transition: border-color var(--d-base) var(--ease), transform var(--d-base) var(--ease), box-shadow var(--d-base) var(--ease);
  text-decoration: none;
  color: inherit;
}
.service-card:hover {
  border-color: var(--sage-soft);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(46,58,54,0.07);
}
.service-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: var(--cream);
  color: var(--sage-deep);
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
}
.service-card-icon svg { width: 26px; height: 26px; }
.service-card-title {
  font-family: var(--font-display);
  font-size: var(--t-xl);
  font-weight: var(--w-semi);
  letter-spacing: -0.005em;
  color: var(--ink);
  line-height: 1.2;
}
.service-card-desc {
  font-size: var(--t-sm);
  color: var(--ink-soft);
  line-height: 1.65;
  flex: 1;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--t-xs);
  font-weight: var(--w-semi);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-top: var(--s-2);
  transition: gap var(--d-base) var(--ease);
}
.service-card:hover .service-card-link { gap: var(--s-3); }

/* ─── Why choose ───────────────────────────────────────────── */
.vy-home-sec-why {
  padding: var(--s-30) 0;
  background: var(--white);
}
.why-header { margin-bottom: var(--s-16); max-width: 700px; }
.why-h2 {
  font-family: var(--font-display);
  font-size: clamp(var(--t-2xl), 4vw, var(--t-4xl));
  font-weight: var(--w-medium);
  letter-spacing: -0.012em;
  line-height: 1.1;
  color: var(--ink);
  margin-top: var(--s-4);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}
.why-card {
  padding: var(--s-8);
  background: var(--cream);
  border-radius: var(--r-lg);
  border: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  transition: background var(--d-base) var(--ease), transform var(--d-base) var(--ease);
}
.why-card:hover {
  background: var(--white);
  transform: translateY(-3px);
}
.why-card-num {
  font-family: var(--font-display);
  font-size: var(--t-2xl);
  font-style: italic;
  color: var(--rose-deep);
  font-weight: var(--w-medium);
  line-height: 1;
}
.why-card-title {
  font-family: var(--font-display);
  font-size: var(--t-lg);
  font-weight: var(--w-semi);
  color: var(--ink);
  letter-spacing: -0.005em;
}
.why-card-desc {
  font-size: var(--t-sm);
  line-height: 1.7;
  color: var(--ink-soft);
}

/* ─── Approach ─────────────────────────────────────────────── */
.vy-home-sec-approach {
  padding: var(--s-30) 0;
  background: var(--sage);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.approach-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.approach-h2 {
  font-family: var(--font-display);
  font-size: clamp(var(--t-2xl), 4vw, var(--t-4xl));
  font-weight: var(--w-medium);
  letter-spacing: -0.012em;
  line-height: 1.1;
  color: var(--white);
  margin-top: var(--s-4);
}
.approach-h2 em { color: var(--rose-soft); font-style: italic; }
.approach-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
}
.approach-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-5);
  padding-bottom: var(--s-6);
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.approach-item:last-child { border-bottom: none; padding-bottom: 0; }
.approach-item-num {
  font-family: var(--font-display);
  font-size: var(--t-2xl);
  font-style: italic;
  color: var(--rose-soft);
  font-weight: var(--w-medium);
  line-height: 1;
  min-width: 44px;
}
.approach-item-title {
  font-family: var(--font-display);
  font-size: var(--t-xl);
  font-weight: var(--w-semi);
  color: var(--white);
  margin-bottom: var(--s-2);
  letter-spacing: -0.005em;
}
.approach-item-desc {
  font-size: var(--t-base);
  line-height: 1.7;
  color: rgba(255,255,255,0.86);
}

/* ─── Featured quote ────────────────────────────────────────── */
.vy-home-sec-quote {
  padding: var(--s-25) 0;
  background: var(--cream);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.quote-wrap {
  max-width: 880px;
  margin-inline: auto;
  text-align: center;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 96px;
  color: var(--rose-deep);
  line-height: 0.6;
  margin-bottom: var(--s-6);
  opacity: 0.4;
}
.quote-text {
  font-family: var(--font-display);
  font-size: clamp(var(--t-xl), 2.6vw, var(--t-3xl));
  font-weight: var(--w-medium);
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: var(--s-8);
  letter-spacing: -0.005em;
}
.quote-attr {
  font-size: var(--t-sm);
  color: var(--ink-soft);
  letter-spacing: 0.06em;
}
.quote-attr strong {
  display: block;
  font-family: var(--font-body);
  font-weight: var(--w-bold);
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}

/* ─── Pricing / Engagement ─────────────────────────────────── */
.vy-home-sec-engagement {
  padding: var(--s-30) 0;
  background: var(--bone);
}
.engagement-header {
  max-width: 680px;
  margin-bottom: var(--s-16);
}
.engagement-h2 {
  font-family: var(--font-display);
  font-size: clamp(var(--t-2xl), 4vw, var(--t-4xl));
  font-weight: var(--w-medium);
  letter-spacing: -0.012em;
  line-height: 1.1;
  color: var(--ink);
  margin-top: var(--s-4);
}
.engagement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
}
.engagement-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: var(--s-10);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  transition: box-shadow var(--d-base) var(--ease), border-color var(--d-base) var(--ease);
}
.engagement-card:hover {
  box-shadow: 0 12px 40px rgba(46,58,54,0.07);
  border-color: var(--sage-soft);
}
.engagement-card.featured { border-color: var(--sage); border-width: 2px; }
.engagement-badge {
  display: inline-block;
  font-size: var(--t-xs);
  font-weight: var(--w-semi);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  align-self: flex-start;
}
.badge-free { color: var(--sage-deep); background: rgba(91,138,124,0.12); }
.badge-paid { color: var(--rose-deep); background: rgba(212,165,165,0.18); }
.engagement-price {
  display: flex;
  align-items: baseline;
  gap: var(--s-2);
}
.price-amount {
  font-family: var(--font-display);
  font-size: clamp(var(--t-3xl), 4vw, var(--t-5xl));
  font-weight: var(--w-medium);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}
.price-suffix {
  font-size: var(--t-sm);
  color: var(--ink-mute);
}
.engagement-title {
  font-family: var(--font-display);
  font-size: var(--t-xl);
  font-weight: var(--w-semi);
  color: var(--ink);
  letter-spacing: -0.005em;
}
.engagement-desc {
  font-size: var(--t-sm);
  line-height: 1.7;
  color: var(--ink-soft);
}
.engagement-features { display: flex; flex-direction: column; gap: var(--s-3); }
.engagement-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  font-size: var(--t-sm);
  color: var(--ink-soft);
  line-height: 1.55;
}
.feature-check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--sage);
}

/* ─── FAQ ──────────────────────────────────────────────────── */
.vy-home-sec-faq {
  padding: var(--s-30) 0;
  background: var(--white);
}
.faq-header { margin-bottom: var(--s-12); max-width: 600px; }
.faq-h2 {
  font-family: var(--font-display);
  font-size: clamp(var(--t-2xl), 4vw, var(--t-4xl));
  font-weight: var(--w-medium);
  letter-spacing: -0.012em;
  line-height: 1.1;
  color: var(--ink);
  margin-top: var(--s-4);
}
.faq-list { max-width: 860px; display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-6);
  padding: var(--s-6) 0;
  font-family: var(--font-display);
  font-size: var(--t-lg);
  font-weight: var(--w-semi);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: color var(--d-base) var(--ease);
  letter-spacing: -0.005em;
}
.faq-q:hover { color: var(--sage-deep); }
.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--ink-mute);
  transition: transform var(--d-base) var(--ease);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--sage); }
.faq-item.open .faq-q { color: var(--sage-deep); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--d-slow) var(--ease-out);
}
.faq-a-inner {
  padding-bottom: var(--s-6);
  font-size: var(--t-base);
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 720px;
}

/* ─── CTA section ──────────────────────────────────────────── */
.vy-home-sec-cta {
  padding: 96px 0;
  background: var(--bone);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.cta-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.5;
}
.cta-orb-1 {
  width: 420px; height: 420px;
  top: -140px; left: 14%;
  background: rgba(91, 138, 124, 0.10);
  opacity: 1;
}
.cta-orb-2 {
  width: 300px; height: 300px;
  bottom: -100px; right: 16%;
  background: rgba(91, 138, 124, 0.08);
  opacity: 1;
}
.cta-h2 {
  font-family: var(--font-display);
  font-size: clamp(var(--t-2xl), 4.5vw, var(--t-4xl));
  font-weight: var(--w-medium);
  letter-spacing: -0.014em;
  line-height: 1.1;
  color: var(--ink);
  max-width: 620px;
  margin-inline: auto;
  margin-top: var(--s-4);
  margin-bottom: var(--s-5);
  position: relative;
}
.cta-h2 em {
  font-style: italic;
  color: var(--ink);
  border-bottom: 2px solid var(--rose-deep);
  padding-bottom: 2px;
}
.cta-sub {
  font-size: var(--t-lg);
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 540px;
  margin-inline: auto;
  margin-bottom: var(--s-10);
  position: relative;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-4);
  flex-wrap: wrap;
  position: relative;
}

/* ─── Footer ───────────────────────────────────────────────── */
.vy-footer {
  background: var(--footer-bg);
  padding: var(--s-20) 0 var(--s-10);
  color: rgba(255,255,255,0.78);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--s-12);
  margin-bottom: var(--s-16);
}
.footer-brand { display: flex; flex-direction: column; gap: var(--s-4); }
.footer-brand .vy-logo-name { color: var(--white); }
.footer-brand .vy-logo-title { color: rgba(255,255,255,0.55); }
.footer-tagline {
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.66);
  line-height: 1.7;
  max-width: 280px;
}
.footer-col-title {
  font-size: var(--t-xs);
  font-weight: var(--w-semi);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-soft);
  margin-bottom: var(--s-5);
}
.footer-links { display: flex; flex-direction: column; gap: var(--s-3); }
.footer-links a, .footer-links li {
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.74);
  transition: color var(--d-base) var(--ease);
  line-height: 1.5;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding-top: var(--s-8);
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}
.footer-copy {
  font-size: var(--t-xs);
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}
.footer-legal {
  display: flex;
  gap: var(--s-6);
}
.footer-legal a {
  font-size: var(--t-xs);
  color: rgba(255,255,255,0.5);
  transition: color var(--d-base) var(--ease);
}
.footer-legal a:hover { color: var(--white); }
.footer-disclaimer {
  font-size: var(--t-xs);
  color: rgba(255,255,255,0.44);
  line-height: 1.6;
  max-width: 720px;
  margin-top: var(--s-6);
  padding-top: var(--s-6);
  border-top: 1px dashed rgba(255,255,255,0.14);
}

/* ─── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .promise-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-6); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: var(--s-10); }
}

@media (max-width: 768px) {
  :root { --gutter: 22px; }
  .vy-nav, .header-cta { display: none; }
  .vy-hamburger { display: flex; }

  .hero-h1 { font-size: 2.5rem; }
  .hero-inner { padding: 130px 0 80px; }

  .about-grid { grid-template-columns: 1fr; gap: var(--s-12); }
  .about-image-wrap { max-width: 460px; }
  .about-credentials-row { flex-direction: column; gap: var(--s-1); }
  .about-credentials-row strong { min-width: unset; }

  .approach-grid { grid-template-columns: 1fr; gap: var(--s-12); }

  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .engagement-grid { grid-template-columns: 1fr; }
  .promise-grid { grid-template-columns: 1fr; gap: var(--s-5); }
  .footer-top { grid-template-columns: 1fr; gap: var(--s-10); }

  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .faq-list { max-width: 100%; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { justify-content: center; }
}
