/* PXRITY unified light/base stylesheet */
:root {
  --bg: #f5f5f7;
  --bg2: #ffffff;
  --card: #ffffff;
  --card-border: #e5e7eb;

  --purple: #5e2bff;
  --purple-light: #7a4dff;
  --purple-glow: #a855f7;

  --text: #111111;
  --text-secondary: #6b7280;

  --border: #e5e7eb;

  --shadow: 0 10px 35px rgba(94, 43, 255, 0.12);
  --transition: 0.25s ease;

  --font-display: "Barlow Condensed", Arial, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
}
html {
  scroll-behavior: smooth;
}
* {
  box-sizing: border-box;
}

/* ===== index.html ===== */
body.home-page {
  --bg: #f5f5f7;
  --bg2: #ffffff;
  --card: #ffffff;
  --card-border: #e5e7eb;

  --purple: #5e2bff;
  --purple-light: #7a4dff;
  --purple-glow: #a855f7;

  --text: #111111;
  --text-secondary: #6b7280;

  --border: #e5e7eb;

  --shadow: 0 10px 35px rgba(94, 43, 255, 0.12);
  --transition: 0.25s ease;

  --font-display: "Barlow Condensed", Arial, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
}
body.home-page,
body.home-page * {
  box-sizing: border-box;
}
body.home-page {
  margin: 0;
  min-height: 100vh;

  display: flex;
  flex-direction: column;

  overflow-x: hidden;

  background: var(--bg);
  color: var(--text);

  font-family: var(--font-body);
  text-align: center;
}
body.home-page button,
body.home-page input {
  font: inherit;
}
body.home-page button {
  cursor: pointer;
}
body.home-page a {
  color: var(--purple);
  text-decoration: none;
  transition: var(--transition);
}
body.home-page a:hover {
  color: var(--purple-light);
}
/* HEADER */
body.home-page header {
  position: sticky;
  top: 0;
  z-index: 1000;

  display: flex;
  align-items: center;
  justify-content: center;

  height: clamp(60px, 8vw, 70px);

  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--border);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
body.home-page .menu-btn {
  position: absolute;
  left: 20px;

  border: 0;
  background: transparent;

  color: var(--text);
  font-size: clamp(26px, 5vw, 32px);

  transition: var(--transition);
}
body.home-page .menu-btn:hover {
  color: var(--purple);
  transform: scale(1.08);
}
body.home-page .header-brand {
  color: var(--text);

  font-family: var(--font-display);
  font-size: 1.55rem;
  font-style: italic;
  font-weight: 800;
  letter-spacing: 2px;
}
body.home-page .header-brand:hover {
  color: var(--purple);
}
body.home-page .dropdown-content {
  display: none;

  position: absolute;
  top: clamp(60px, 8vw, 70px);
  left: 15px;

  width: min(90vw, 250px);

  overflow: hidden;

  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);

  text-align: left;
}
body.home-page .dropdown-content.open {
  display: block;
}
body.home-page .dropdown-content > a,
body.home-page .dropdown-expand {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 15px 18px;

  border: 0;
  background: transparent;

  color: var(--text);

  text-align: left;

  transition: var(--transition);
}
body.home-page .dropdown-content > a:hover,
body.home-page .dropdown-content > a.active,
body.home-page .dropdown-expand:hover {
  padding-left: 24px;

  background: var(--purple);
  color: #fff;
}
body.home-page .dropdown-parent {
  border-bottom: 1px solid var(--border);
}
body.home-page .submenu-arrow {
  width: 18px;
  height: 18px;

  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;

  transition: transform 0.22s ease;
}
body.home-page .dropdown-parent.open .submenu-arrow {
  transform: rotate(90deg);
}
body.home-page .submenu {
  max-height: 0;

  overflow: hidden;

  margin-left: 18px;

  border-left: 2px solid var(--purple);

  transition: max-height 0.28s ease;
}
body.home-page .dropdown-parent.open .submenu {
  max-height: 320px;
}
body.home-page .submenu a {
  display: block;

  padding: 12px 18px 12px 20px;

  color: var(--text-secondary);

  font-size: 0.92rem;

  transition: var(--transition);
}
body.home-page .submenu a:hover,
body.home-page .submenu a.active {
  padding-left: 26px;

  background: rgba(94, 43, 255, 0.08);
  color: var(--purple);
}
body.home-page .toggle-switch-container {
  display: flex;
  align-items: center;

  padding: 13px 18px;
}
body.home-page .toggle-label {
  color: var(--text);
  font-size: 15px;
}
body.home-page .switch {
  position: relative;

  display: inline-block;

  width: 50px;
  height: 26px;

  margin-left: auto;
}
body.home-page .switch input {
  width: 0;
  height: 0;

  opacity: 0;
}
body.home-page .slider {
  position: absolute;
  inset: 0;

  border-radius: 30px;

  background: #d1d5db;

  transition: 0.3s;
}
body.home-page .slider:before {
  position: absolute;
  bottom: 3px;
  left: 3px;

  width: 20px;
  height: 20px;

  content: "";

  border-radius: 50%;

  background: #fff;

  transition: 0.3s;
}
body.home-page input:checked + .slider {
  background: var(--purple);
}
body.home-page input:checked + .slider:before {
  transform: translateX(24px);
}
/* HERO */
body.home-page .hero {
  position: relative;

  display: grid;
  place-items: center;

  min-height: 680px;

  padding: clamp(70px, 12vw, 140px) 20px;

  overflow: hidden;
}
body.home-page .hero-glow {
  position: absolute;

  width: min(720px, 90vw);
  height: min(720px, 90vw);

  border-radius: 50%;

  background: radial-gradient(circle, rgba(94, 43, 255, 0.12), transparent 65%);

  pointer-events: none;
}
body.home-page .hero-inner {
  position: relative;
  z-index: 1;

  max-width: 780px;

  margin: 0 auto;
}
body.home-page .PxrityBigLink {
  color: var(--text);
}
body.home-page .Pxrity {
  margin: 0;

  color: var(--text);

  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 6rem);
  font-style: italic;
  font-weight: 800;
  letter-spacing: clamp(1px, 0.6vw, 4px);

  transition: var(--transition);
}
body.home-page .Pxrity:hover {
  color: var(--purple);

  text-shadow: 0 0 12px rgba(94, 43, 255, 0.25);
}
body.home-page .tagline {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;

  gap: 0.5em;

  margin: 0.55em 0 0;

  color: var(--text-secondary);

  font-family: var(--font-display);
  font-size: clamp(0.85rem, 2.6vw, 1.15rem);
  font-weight: 700;
  letter-spacing: clamp(2px, 1vw, 6px);
  text-transform: uppercase;
}
body.home-page .tagline .dot {
  color: var(--purple);
  font-style: normal;
}
body.home-page .hero-sub {
  max-width: 590px;

  margin: 1.6em auto 0;

  color: var(--text-secondary);

  font-size: clamp(0.95rem, 2vw, 1.06rem);
  line-height: 1.75;
}
body.home-page .hero-cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;

  gap: 14px;

  margin-top: 2.2em;
}
body.home-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 48px;

  padding: 0.85em 1.6em;

  border: 1px solid transparent;
  border-radius: 999px;

  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;

  transition: var(--transition);
}
body.home-page .btn-primary {
  background: var(--purple);
  color: #fff;
}
body.home-page .btn-primary:hover {
  background: var(--purple-light);
  color: #fff;

  box-shadow: 0 0 25px rgba(94, 43, 255, 0.25);

  transform: translateY(-2px);
}
body.home-page .btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
body.home-page .btn-ghost:hover {
  border-color: var(--purple);
  color: var(--purple);

  transform: translateY(-2px);
}
/* SHARED */
body.home-page .section-head {
  max-width: 720px;

  margin: 0 auto clamp(34px, 6vw, 56px);
}
body.home-page .eyebrow {
  display: inline-block;

  margin-bottom: 0.7em;

  color: var(--purple);

  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}
body.home-page .section-head h2,
body.home-page .contact-band h2 {
  margin: 0;

  color: var(--text);

  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.8vw, 2.8rem);
  font-weight: 700;
}
body.home-page .section-head p {
  margin: 1rem auto 0;

  color: var(--text-secondary);

  line-height: 1.7;
}
/* SERVICES */
body.home-page .services {
  max-width: 1180px;

  margin: 0 auto;

  padding: clamp(70px, 10vw, 120px) 20px;

  opacity: 0;
  transform: translateY(16px);

  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
body.home-page .services.in-view {
  opacity: 1;
  transform: none;
}
body.home-page .pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 20px;

  text-align: left;
}
body.home-page .pillar {
  min-height: 100%;

  padding: clamp(22px, 3.5vw, 32px);

  border: 1px solid var(--card-border);
  border-radius: 18px;

  background: var(--card);

  box-shadow: 0 4px 18px rgba(17, 17, 17, 0.04);

  opacity: 0;
  transform: translateY(16px);

  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    border-color var(--transition);
}
body.home-page .pillar.in-view {
  opacity: 1;
  transform: none;
}
body.home-page .pillar:hover {
  border-color: rgba(94, 43, 255, 0.4);
  transform: translateY(-4px);
}
body.home-page .pillar-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1.4rem;
}
body.home-page .pillar-icon svg {
  width: 100%;
  height: 100%;

  fill: none;
  stroke: var(--purple);
  stroke-width: 2.5;
  stroke-linejoin: round;
}
body.home-page .pillar-icon .pillar-glyph {
  stroke: var(--purple-glow);
  stroke-linecap: round;
}
body.home-page .pillar-icon .pillar-glyph-fill {
  fill: var(--purple-glow);
  stroke: none;
}
body.home-page .pillar-index {
  display: block;

  margin-bottom: 0.4em;

  color: var(--purple);

  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
body.home-page .pillar h3 {
  margin: 0 0 0.5em;

  color: var(--text);

  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.8vw, 1.5rem);
}
body.home-page .pillar p {
  margin: 0;

  color: var(--text-secondary);

  font-size: 0.95rem;
  line-height: 1.65;
}
body.home-page .pillar-link {
  display: inline-block;

  margin-top: 1.25rem;

  font-size: 0.9rem;
  font-weight: 700;
}
body.home-page .services-all {
  margin-top: 36px;
}
/* WHY */
body.home-page .why {
  max-width: 1180px;

  margin: 0 auto;

  padding: clamp(70px, 10vw, 120px) 20px;

  opacity: 0;
  transform: translateY(16px);

  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
body.home-page .why.in-view {
  opacity: 1;
  transform: none;
}
body.home-page .why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 18px;

  text-align: left;
}
body.home-page .why-card {
  padding: 26px;

  border: 1px solid var(--card-border);
  border-radius: 18px;

  background: var(--card);

  opacity: 0;
  transform: translateY(16px);

  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    border-color var(--transition);
}
body.home-page .why-card.in-view {
  opacity: 1;
  transform: none;
}
body.home-page .why-card:hover {
  border-color: rgba(94, 43, 255, 0.4);
}
body.home-page .why-card > span {
  display: block;

  margin-bottom: 24px;

  color: var(--purple);

  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
}
body.home-page .why-card h3 {
  margin: 0 0 0.55em;

  color: var(--text);

  font-family: var(--font-display);
  font-size: 1.4rem;
}
body.home-page .why-card p {
  margin: 0;

  color: var(--text-secondary);

  font-size: 0.95rem;
  line-height: 1.7;
}
/* ABOUT */
body.home-page .about {
  padding: clamp(60px, 10vw, 110px) 20px;

  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);

  background: var(--bg2);

  opacity: 0;
  transform: translateY(16px);

  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
body.home-page .about.in-view {
  opacity: 1;
  transform: none;
}
body.home-page .about-inner {
  max-width: 650px;

  margin: 0 auto;
}
body.home-page .about-lead {
  margin: 0.15em 0 0.6em;

  color: var(--text);

  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  font-style: italic;
  font-weight: 700;
}
body.home-page .about p:not(.about-lead) {
  color: var(--text-secondary);

  line-height: 1.8;
}
body.home-page .text-link {
  display: inline-block;

  margin-top: 1rem;

  font-weight: 700;
}
/* CONTACT */
body.home-page .contact-band {
  padding: clamp(70px, 10vw, 120px) 20px;

  opacity: 0;
  transform: translateY(16px);

  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
body.home-page .contact-band.in-view {
  opacity: 1;
  transform: none;
}
body.home-page .contact-band p {
  max-width: 620px;

  margin: 1rem auto 0;

  color: var(--text-secondary);

  line-height: 1.75;
}
/* FOOTER */
body.home-page footer {
  margin-top: auto;

  padding: 44px 20px;

  border-top: 1px solid var(--border);

  background: rgba(255, 255, 255, 0.78);
  color: var(--text-secondary);
}
body.home-page .footer-brand {
  margin: 0;

  color: var(--text);

  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  font-weight: 800;
}
body.home-page .footer-tagline {
  margin: 0.35rem 0 0;
}
body.home-page .social-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;

  gap: 18px;

  margin: 22px 0;
}
body.home-page .social-buttons a {
  font-weight: 600;
}
/* RESPONSIVE */
@media (max-width: 1050px) {
  body.home-page .pillars {
    grid-template-columns: repeat(2, 1fr);
  }
  body.home-page .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  body.home-page .hero {
    min-height: 600px;
  }
  body.home-page .pillars,
  body.home-page .why-grid {
    grid-template-columns: 1fr;
  }
  body.home-page .dropdown-content {
    left: 10px;
    width: min(calc(100vw - 20px), 250px);
  }
}
@media (max-width: 420px) {
  body.home-page .menu-btn {
    left: 10px;
  }
  body.home-page .Pxrity {
    letter-spacing: 1px;
  }
}
/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  body.home-page,
  body.home-page * {
    animation: none !important;
    transition: none !important;
  }
  body.home-page .services,
  body.home-page .pillar,
  body.home-page .why,
  body.home-page .why-card,
  body.home-page .about,
  body.home-page .contact-band {
    opacity: 1 !important;
    transform: none !important;
  }
}
/* FOCUS */
body.home-page a:focus-visible,
body.home-page button:focus-visible,
body.home-page input:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 3px;
}

/* ===== services.html ===== */
body.services-page {
  --bg: #f5f5f7;
  --bg2: #ffffff;
  --card: #ffffff;
  --card-border: #e5e7eb;
  --purple: #5e2bff;
  --purple-light: #7a4dff;
  --purple-glow: #a855f7;
  --text: #111111;
  --text-secondary: #6b7280;
  --border: #e5e7eb;
  --shadow: 0 10px 35px rgba(94, 43, 255, 0.12);
  --transition: 0.25s ease;
  --font-display: "Barlow Condensed", Arial, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
}
body.services-page,
body.services-page * {
  box-sizing: border-box;
}
body.services-page {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  text-align: center;
}
body.services-page button,
body.services-page input {
  font: inherit;
}
body.services-page button {
  cursor: pointer;
}
body.services-page a {
  color: var(--purple);
  text-decoration: none;
  transition: var(--transition);
}
body.services-page a:hover {
  color: var(--purple-light);
}
body.services-page header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(60px, 8vw, 70px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
body.services-page .menu-btn {
  position: absolute;
  left: 20px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: clamp(26px, 5vw, 32px);
  transition: var(--transition);
}
body.services-page .menu-btn:hover {
  color: var(--purple);
  transform: scale(1.08);
}
body.services-page .header-brand {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-style: italic;
  font-weight: 800;
  letter-spacing: 2px;
}
body.services-page .header-brand:hover {
  color: var(--purple);
}
body.services-page .dropdown-content {
  display: none;
  position: absolute;
  top: clamp(60px, 8vw, 70px);
  left: 15px;
  width: min(90vw, 250px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  text-align: left;
}
body.services-page .dropdown-content.open {
  display: block;
}
body.services-page .dropdown-content > a,
body.services-page .dropdown-expand {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  transition: var(--transition);
}
body.services-page .dropdown-content > a:hover,
body.services-page .dropdown-content > a.active,
body.services-page .dropdown-expand:hover {
  padding-left: 24px;
  background: var(--purple);
  color: #fff;
}
body.services-page .dropdown-parent {
  border-bottom: 1px solid var(--border);
}
body.services-page .submenu-arrow {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.22s ease;
}
body.services-page .dropdown-parent.open .submenu-arrow {
  transform: rotate(90deg);
}
body.services-page .submenu {
  max-height: 0;
  overflow: hidden;
  margin-left: 18px;
  border-left: 2px solid var(--purple);
  transition: max-height 0.28s ease;
}
body.services-page .dropdown-parent.open .submenu {
  max-height: 320px;
}
body.services-page .submenu a {
  display: block;
  padding: 12px 18px 12px 20px;
  color: var(--text-secondary);
  font-size: 0.92rem;
  transition: var(--transition);
}
body.services-page .submenu a:hover,
body.services-page .submenu a.active {
  padding-left: 26px;
  background: rgba(94, 43, 255, 0.08);
  color: var(--purple);
}
body.services-page .toggle-switch-container {
  display: flex;
  align-items: center;
  padding: 13px 18px;
}
body.services-page .toggle-label {
  color: var(--text);
  font-size: 15px;
}
body.services-page .switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
  margin-left: auto;
}
body.services-page .switch input {
  width: 0;
  height: 0;
  opacity: 0;
}
body.services-page .slider {
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background: #d1d5db;
  transition: 0.3s;
}
body.services-page .slider:before {
  position: absolute;
  left: 3px;
  bottom: 3px;
  width: 20px;
  height: 20px;
  content: "";
  border-radius: 50%;
  background: #fff;
  transition: 0.3s;
}
body.services-page input:checked + .slider {
  background: var(--purple);
}
body.services-page input:checked + .slider:before {
  transform: translateX(24px);
}
body.services-page .hero {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  padding: 90px 20px;
  overflow: hidden;
}
body.services-page .hero-glow {
  position: absolute;
  width: min(720px, 90vw);
  height: min(720px, 90vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 43, 255, 0.12), transparent 65%);
}
body.services-page .hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}
body.services-page .eyebrow {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--purple);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}
body.services-page .hero .eyebrow {
  margin-bottom: 0.3rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
}
body.services-page .hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 9vw, 7rem);
  font-style: italic;
  font-weight: 800;
  line-height: 0.95;
}
body.services-page .hero-lead {
  max-width: 620px;
  margin: 1.5rem auto 0;
  color: var(--text-secondary);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.75;
}
body.services-page .hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 2rem;
}
body.services-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition: var(--transition);
}
body.services-page .btn-primary {
  background: var(--purple);
  color: #fff;
}
body.services-page .btn-primary:hover {
  background: var(--purple-light);
  color: #fff;
  box-shadow: 0 0 25px rgba(94, 43, 255, 0.25);
  transform: translateY(-2px);
}
body.services-page .btn-ghost {
  border-color: var(--border);
  background: transparent;
  color: var(--text);
}
body.services-page .btn-ghost:hover {
  border-color: var(--purple);
  color: var(--purple);
  transform: translateY(-2px);
}
body.services-page .section-head {
  max-width: 740px;
  margin: 0 auto clamp(34px, 6vw, 58px);
}
body.services-page .section-head h2,
body.services-page .contact-band h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1;
}
body.services-page .section-head p {
  margin: 1rem auto 0;
  color: var(--text-secondary);
  line-height: 1.75;
}
body.services-page .services-showroom,
body.services-page .approach,
body.services-page .faq-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(70px, 10vw, 120px) 20px;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
body.services-page .services-showroom.in-view,
body.services-page .approach.in-view,
body.services-page .faq-section.in-view {
  opacity: 1;
  transform: none;
}
body.services-page .service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  text-align: left;
}
body.services-page .service-card {
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  background: var(--card);
  box-shadow: 0 6px 24px rgba(17, 17, 17, 0.04);
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    border-color 0.25s ease;
}
body.services-page .service-card.in-view {
  opacity: 1;
  transform: none;
}
body.services-page .service-card:hover {
  border-color: rgba(94, 43, 255, 0.45);
  transform: translateY(-4px);
}
body.services-page .service-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1.5rem;
}
body.services-page .service-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
body.services-page .icon-shell {
  stroke: var(--purple);
  stroke-width: 2.5;
}
body.services-page .icon-glyph {
  fill: none;
  stroke: var(--purple-glow);
  stroke-width: 2.2;
}
body.services-page .icon-fill {
  fill: var(--purple-glow);
  stroke: none;
}
body.services-page .service-kicker {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--purple);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
body.services-page .service-card h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.25rem);
}
body.services-page .service-card p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.7;
}
body.services-page .service-card ul {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--text-secondary);
}
body.services-page .service-card li {
  margin: 0.55rem 0;
}
body.services-page .service-card li::before {
  content: "✓";
  margin-right: 0.7rem;
  color: var(--purple);
  font-weight: 800;
}
body.services-page .service-link {
  display: inline-block;
  margin-top: 1.4rem;
  font-weight: 700;
}
body.services-page .approach {
  max-width: none;
  background: var(--bg2);
  border-block: 1px solid var(--border);
}
body.services-page .approach .section-head {
  max-width: 1180px;
}
body.services-page .approach-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: left;
}
body.services-page .approach-grid article {
  padding: 26px;
  border: 1px solid var(--card-border);
  border-radius: 18px;
  background: var(--card);
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    border-color 0.25s ease;
}
body.services-page .approach-grid article.in-view {
  opacity: 1;
  transform: none;
}
body.services-page .approach-grid article:hover {
  border-color: rgba(94, 43, 255, 0.45);
}
body.services-page .approach-grid article > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
}
body.services-page .approach-grid h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
}
body.services-page .approach-grid p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.7;
}
body.services-page .faq-list {
  max-width: 850px;
  margin: 0 auto;
}
body.services-page .faq-list details {
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  border-radius: 14px;
  background: var(--card);
}
body.services-page .faq-list summary {
  padding: 20px;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}
body.services-page .faq-list summary::-webkit-details-marker {
  display: none;
}
body.services-page .faq-list summary::after {
  content: "+";
  float: right;
  color: var(--purple);
  font-size: 1.4rem;
}
body.services-page .faq-list details[open] summary::after {
  content: "–";
}
body.services-page .faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--text-secondary);
  line-height: 1.75;
}
body.services-page .contact-band {
  padding: clamp(80px, 10vw, 130px) 20px;
  background:
    radial-gradient(circle at center, rgba(94, 43, 255, 0.12), transparent 48%),
    var(--bg);
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
body.services-page .contact-band.in-view {
  opacity: 1;
  transform: none;
}
body.services-page .contact-band p {
  max-width: 620px;
  margin: 1rem auto 0;
  color: var(--text-secondary);
  line-height: 1.75;
}
body.services-page footer {
  padding: 44px 20px;
  border-top: 1px solid var(--border);
  background: var(--bg2);
  color: var(--text-secondary);
}
body.services-page .footer-brand {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  font-weight: 800;
}
body.services-page .footer-tagline {
  margin: 0.35rem 0 0;
}
body.services-page .social-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 22px 0;
}
body.services-page .social-buttons a {
  font-weight: 600;
}
@media (max-width: 900px) {
  body.services-page .approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 720px) {
  body.services-page .service-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  body.services-page .hero {
    min-height: 560px;
  }
  body.services-page .approach-grid {
    grid-template-columns: 1fr;
  }
  body.services-page .dropdown-content {
    left: 10px;
    width: min(calc(100vw - 20px), 250px);
  }
}
@media (max-width: 420px) {
  body.services-page .menu-btn {
    left: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  body.services-page,
  body.services-page * {
    animation: none !important;
    transition: none !important;
  }
  body.services-page .services-showroom,
  body.services-page .service-card,
  body.services-page .approach,
  body.services-page .approach-grid article,
  body.services-page .faq-section,
  body.services-page .contact-band {
    opacity: 1 !important;
    transform: none !important;
  }
}
body.services-page a:focus-visible,
body.services-page button:focus-visible,
body.services-page input:focus-visible,
body.services-page summary:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 3px;
}

/* ===== contact.html ===== */
body.contact-page {
  --bg: #f5f5f7;
  --bg2: #ffffff;
  --card: #ffffff;
  --card-border: #e5e7eb;
  --purple: #5e2bff;
  --purple-light: #7a4dff;
  --purple-glow: #a855f7;
  --text: #111111;
  --text-secondary: #6b7280;
  --border: #e5e7eb;
  --shadow: 0 10px 35px rgba(94, 43, 255, 0.12);
  --transition: 0.25s ease;
  --font-display: "Barlow Condensed", Arial, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
}
body.contact-page,
body.contact-page * {
  box-sizing: border-box;
}
body.contact-page {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  text-align: center;
}
body.contact-page button,
body.contact-page input {
  font: inherit;
}
body.contact-page button {
  cursor: pointer;
}
body.contact-page a {
  color: var(--purple);
  text-decoration: none;
  transition: var(--transition);
}
body.contact-page a:hover {
  color: var(--purple-light);
}
body.contact-page header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(60px, 8vw, 70px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
body.contact-page .menu-btn {
  position: absolute;
  left: 20px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: clamp(26px, 5vw, 32px);
  transition: var(--transition);
}
body.contact-page .menu-btn:hover {
  color: var(--purple);
  transform: scale(1.08);
}
body.contact-page .header-brand {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-style: italic;
  font-weight: 800;
  letter-spacing: 2px;
}
body.contact-page .header-brand:hover {
  color: var(--purple);
}
body.contact-page .dropdown-content {
  display: none;
  position: absolute;
  top: clamp(60px, 8vw, 70px);
  left: 15px;
  width: min(90vw, 250px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  text-align: left;
}
body.contact-page .dropdown-content.open {
  display: block;
}
body.contact-page .dropdown-content > a,
body.contact-page .dropdown-expand {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  transition: var(--transition);
}
body.contact-page .dropdown-content > a:hover,
body.contact-page .dropdown-content > a.active,
body.contact-page .dropdown-expand:hover {
  padding-left: 24px;
  background: var(--purple);
  color: #fff;
}
body.contact-page .dropdown-parent {
  border-bottom: 1px solid var(--border);
}
body.contact-page .submenu-arrow {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.22s ease;
}
body.contact-page .dropdown-parent.open .submenu-arrow {
  transform: rotate(90deg);
}
body.contact-page .submenu {
  max-height: 0;
  overflow: hidden;
  margin-left: 18px;
  border-left: 2px solid var(--purple);
  transition: max-height 0.28s ease;
}
body.contact-page .dropdown-parent.open .submenu {
  max-height: 320px;
}
body.contact-page .submenu a {
  display: block;
  padding: 12px 18px 12px 20px;
  color: var(--text-secondary);
  font-size: 0.92rem;
  transition: var(--transition);
}
body.contact-page .submenu a:hover,
body.contact-page .submenu a.active {
  padding-left: 26px;
  background: rgba(94, 43, 255, 0.08);
  color: var(--purple);
}
body.contact-page .toggle-switch-container {
  display: flex;
  align-items: center;
  padding: 13px 18px;
}
body.contact-page .toggle-label {
  color: var(--text);
  font-size: 15px;
}
body.contact-page .switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
  margin-left: auto;
}
body.contact-page .switch input {
  width: 0;
  height: 0;
  opacity: 0;
}
body.contact-page .slider {
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background: #d1d5db;
  transition: 0.3s;
}
body.contact-page .slider:before {
  position: absolute;
  left: 3px;
  bottom: 3px;
  width: 20px;
  height: 20px;
  content: "";
  border-radius: 50%;
  background: #fff;
  transition: 0.3s;
}
body.contact-page input:checked + .slider {
  background: var(--purple);
}
body.contact-page input:checked + .slider:before {
  transform: translateX(24px);
}
body.contact-page .hero {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
  padding: 80px 20px;
  overflow: hidden;
}
body.contact-page .hero-glow {
  position: absolute;
  width: min(680px, 90vw);
  height: min(680px, 90vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 43, 255, 0.12), transparent 65%);
}
body.contact-page .hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
body.contact-page .eyebrow {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--purple);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}
body.contact-page .hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 7.5rem);
  font-style: italic;
  font-weight: 800;
  line-height: 0.95;
}
body.contact-page .hero-lead {
  max-width: 620px;
  margin: 1.5rem auto 0;
  color: var(--text-secondary);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.75;
}
body.contact-page .section-head {
  max-width: 740px;
  margin: 0 auto clamp(34px, 6vw, 58px);
}
body.contact-page .section-head h2,
body.contact-page .coverage h2,
body.contact-page .contact-band h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1;
}
body.contact-page .section-head p {
  margin: 1rem auto 0;
  color: var(--text-secondary);
  line-height: 1.75;
}
body.contact-page .contact-options,
body.contact-page .quote-guide,
body.contact-page .faq-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(70px, 10vw, 120px) 20px;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
body.contact-page .contact-options.in-view,
body.contact-page .quote-guide.in-view,
body.contact-page .faq-section.in-view {
  opacity: 1;
  transform: none;
}
body.contact-page .contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  text-align: left;
}
body.contact-page .contact-card {
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  background: var(--card);
  box-shadow: 0 6px 24px rgba(17, 17, 17, 0.04);
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    border-color 0.25s ease;
}
body.contact-page .contact-card.in-view {
  opacity: 1;
  transform: none;
}
body.contact-page .contact-card:hover {
  border-color: rgba(94, 43, 255, 0.45);
  transform: translateY(-4px);
}
body.contact-page .primary-card {
  background:
    linear-gradient(145deg, rgba(94, 43, 255, 0.1), transparent 55%),
    var(--card);
}
body.contact-page .contact-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1.5rem;
}
body.contact-page .contact-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--purple);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
body.contact-page .contact-icon .icon-fill {
  fill: var(--purple-glow);
  stroke: none;
}
body.contact-page .contact-kicker {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--purple);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
body.contact-page .contact-card h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.25rem);
}
body.contact-page .contact-card p {
  margin: 0 0 1.5rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
body.contact-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition: var(--transition);
}
body.contact-page .btn-primary {
  background: var(--purple);
  color: #fff;
}
body.contact-page .btn-primary:hover {
  background: var(--purple-light);
  color: #fff;
  box-shadow: 0 0 25px rgba(94, 43, 255, 0.25);
  transform: translateY(-2px);
}
body.contact-page .btn-ghost {
  border-color: var(--border);
  background: transparent;
  color: var(--text);
}
body.contact-page .btn-ghost:hover {
  border-color: var(--purple);
  color: var(--purple);
  transform: translateY(-2px);
}
body.contact-page .quote-guide {
  max-width: none;
  background: var(--bg2);
  border-block: 1px solid var(--border);
}
body.contact-page .quote-guide .section-head {
  max-width: 1180px;
}
body.contact-page .guide-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: left;
}
body.contact-page .guide-grid article {
  padding: 26px;
  border: 1px solid var(--card-border);
  border-radius: 18px;
  background: var(--card);
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    border-color 0.25s ease;
}
body.contact-page .guide-grid article.in-view {
  opacity: 1;
  transform: none;
}
body.contact-page .guide-grid article:hover {
  border-color: rgba(94, 43, 255, 0.45);
}
body.contact-page .guide-grid article > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
}
body.contact-page .guide-grid h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
}
body.contact-page .guide-grid p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.7;
}
body.contact-page .coverage {
  padding: clamp(75px, 10vw, 120px) 20px;
  background:
    radial-gradient(circle at center, rgba(94, 43, 255, 0.1), transparent 50%),
    var(--bg);
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
body.contact-page .coverage.in-view {
  opacity: 1;
  transform: none;
}
body.contact-page .coverage-inner {
  max-width: 680px;
  margin: 0 auto;
}
body.contact-page .coverage p {
  color: var(--text-secondary);
  line-height: 1.75;
}
body.contact-page .text-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 700;
}
body.contact-page .faq-list {
  max-width: 850px;
  margin: 0 auto;
}
body.contact-page .faq-list details {
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  border-radius: 14px;
  background: var(--card);
}
body.contact-page .faq-list summary {
  padding: 20px;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}
body.contact-page .faq-list summary::-webkit-details-marker {
  display: none;
}
body.contact-page .faq-list summary::after {
  content: "+";
  float: right;
  color: var(--purple);
  font-size: 1.4rem;
}
body.contact-page .faq-list details[open] summary::after {
  content: "–";
}
body.contact-page .faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--text-secondary);
  line-height: 1.75;
}
body.contact-page .contact-band {
  padding: clamp(80px, 10vw, 130px) 20px;
  background:
    radial-gradient(circle at center, rgba(94, 43, 255, 0.12), transparent 48%),
    var(--bg);
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
body.contact-page .contact-band.in-view {
  opacity: 1;
  transform: none;
}
body.contact-page .contact-band p {
  max-width: 620px;
  margin: 1rem auto 0;
  color: var(--text-secondary);
  line-height: 1.75;
}
body.contact-page .hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 2rem;
}
body.contact-page footer {
  padding: 44px 20px;
  border-top: 1px solid var(--border);
  background: var(--bg2);
  color: var(--text-secondary);
}
body.contact-page .footer-brand {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  font-weight: 800;
}
body.contact-page .footer-tagline {
  margin: 0.35rem 0 0;
}
body.contact-page .social-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 22px 0;
}
body.contact-page .social-buttons a {
  font-weight: 600;
}
@media (max-width: 900px) {
  body.contact-page .guide-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 720px) {
  body.contact-page .contact-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  body.contact-page .hero {
    min-height: 500px;
  }
  body.contact-page .guide-grid {
    grid-template-columns: 1fr;
  }
  body.contact-page .dropdown-content {
    left: 10px;
    width: min(calc(100vw - 20px), 250px);
  }
}
@media (max-width: 420px) {
  body.contact-page .menu-btn {
    left: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  body.contact-page,
  body.contact-page * {
    animation: none !important;
    transition: none !important;
  }
  body.contact-page .contact-options,
  body.contact-page .contact-card,
  body.contact-page .quote-guide,
  body.contact-page .guide-grid article,
  body.contact-page .coverage,
  body.contact-page .faq-section,
  body.contact-page .contact-band {
    opacity: 1 !important;
    transform: none !important;
  }
}
body.contact-page a:focus-visible,
body.contact-page button:focus-visible,
body.contact-page input:focus-visible,
body.contact-page summary:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 3px;
}

/* ===== about.html ===== */
body.about-page {
  --bg: #f5f5f7;
  --bg2: #ffffff;
  --card: #ffffff;
  --card-border: #e5e7eb;
  --purple: #5e2bff;
  --purple-light: #7a4dff;
  --purple-glow: #a855f7;
  --text: #111111;
  --text-secondary: #6b7280;
  --border: #e5e7eb;
  --shadow: 0 10px 35px rgba(94, 43, 255, 0.12);
  --transition: 0.25s ease;
  --font-display: "Barlow Condensed", Arial, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
}
body.about-page,
body.about-page * {
  box-sizing: border-box;
}
body.about-page {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  text-align: center;
}
body.about-page button,
body.about-page input {
  font: inherit;
}
body.about-page button {
  cursor: pointer;
}
body.about-page a {
  color: var(--purple);
  text-decoration: none;
  transition: var(--transition);
}
body.about-page a:hover {
  color: var(--purple-light);
}
body.about-page header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(60px, 8vw, 70px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
body.about-page .menu-btn {
  position: absolute;
  left: 20px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: clamp(26px, 5vw, 32px);
  transition: var(--transition);
}
body.about-page .menu-btn:hover {
  color: var(--purple);
  transform: scale(1.08);
}
body.about-page .header-brand {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-style: italic;
  font-weight: 800;
  letter-spacing: 2px;
}
body.about-page .header-brand:hover {
  color: var(--purple);
}
body.about-page .dropdown-content {
  display: none;
  position: absolute;
  top: clamp(60px, 8vw, 70px);
  left: 15px;
  width: min(90vw, 250px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  text-align: left;
}
body.about-page .dropdown-content.open {
  display: block;
}
body.about-page .dropdown-content > a,
body.about-page .dropdown-expand {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  transition: var(--transition);
}
body.about-page .dropdown-content > a:hover,
body.about-page .dropdown-content > a.active,
body.about-page .dropdown-expand:hover {
  padding-left: 24px;
  background: var(--purple);
  color: #fff;
}
body.about-page .dropdown-parent {
  border-bottom: 1px solid var(--border);
}
body.about-page .submenu-arrow {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.22s ease;
}
body.about-page .dropdown-parent.open .submenu-arrow {
  transform: rotate(90deg);
}
body.about-page .submenu {
  max-height: 0;
  overflow: hidden;
  margin-left: 18px;
  border-left: 2px solid var(--purple);
  transition: max-height 0.28s ease;
}
body.about-page .dropdown-parent.open .submenu {
  max-height: 320px;
}
body.about-page .submenu a {
  display: block;
  padding: 12px 18px 12px 20px;
  color: var(--text-secondary);
  font-size: 0.92rem;
  transition: var(--transition);
}
body.about-page .submenu a:hover,
body.about-page .submenu a.active {
  padding-left: 26px;
  background: rgba(94, 43, 255, 0.08);
  color: var(--purple);
}
body.about-page .toggle-switch-container {
  display: flex;
  align-items: center;
  padding: 13px 18px;
}
body.about-page .toggle-label {
  color: var(--text);
  font-size: 15px;
}
body.about-page .switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
  margin-left: auto;
}
body.about-page .switch input {
  width: 0;
  height: 0;
  opacity: 0;
}
body.about-page .slider {
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background: #d1d5db;
  transition: 0.3s;
}
body.about-page .slider:before {
  position: absolute;
  left: 3px;
  bottom: 3px;
  width: 20px;
  height: 20px;
  content: "";
  border-radius: 50%;
  background: #fff;
  transition: 0.3s;
}
body.about-page input:checked + .slider {
  background: var(--purple);
}
body.about-page input:checked + .slider:before {
  transform: translateX(24px);
}
body.about-page .hero {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  padding: 80px 20px;
  overflow: hidden;
}
body.about-page .hero-glow {
  position: absolute;
  width: min(680px, 90vw);
  height: min(680px, 90vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 43, 255, 0.12), transparent 65%);
}
body.about-page .hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
body.about-page .eyebrow {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--purple);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}
body.about-page .hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 7.5rem);
  font-style: italic;
  font-weight: 800;
  line-height: 0.95;
}
body.about-page .hero-lead {
  max-width: 620px;
  margin: 1.5rem auto 0;
  color: var(--text-secondary);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.75;
}
body.about-page .section-head {
  max-width: 760px;
  margin: 0 auto clamp(34px, 6vw, 58px);
}
body.about-page .section-head h2,
body.about-page .contact-band h2,
body.about-page .intro-inner h2,
body.about-page .mission-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1;
}
body.about-page .intro-section,
body.about-page .mission-section,
body.about-page .approach-section,
body.about-page .story-section,
body.about-page .future-section,
body.about-page .principles-section {
  padding: clamp(75px, 10vw, 125px) 20px;
}
body.about-page .intro-inner {
  max-width: 840px;
  margin: 0 auto;
}
body.about-page .intro-inner h2 {
  margin-bottom: 1.4rem;
}
body.about-page .intro-inner p {
  max-width: 760px;
  margin: 1rem auto 0;
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.85;
}
body.about-page .mission-section,
body.about-page .story-section,
body.about-page .principles-section {
  background: var(--bg2);
  border-block: 1px solid var(--border);
}
body.about-page .mission-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: start;
  text-align: left;
}
body.about-page .mission-copy p {
  margin: 0 0 1.2rem;
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.85;
}
body.about-page .approach-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: left;
}
body.about-page .approach-grid article,
body.about-page .principles-grid article,
body.about-page .future-grid article,
body.about-page .ibiza-card {
  border: 1px solid var(--card-border);
  border-radius: 18px;
  background: var(--card);
  box-shadow: 0 6px 24px rgba(17, 17, 17, 0.04);
}
body.about-page .approach-grid article {
  padding: 26px;
}
body.about-page .approach-grid article > span,
body.about-page .timeline article > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
}
body.about-page .approach-grid h3,
body.about-page .timeline h3,
body.about-page .ibiza-card h3,
body.about-page .future-grid h3,
body.about-page .principles-grid h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
}
body.about-page .approach-grid p,
body.about-page .timeline p,
body.about-page .ibiza-card p,
body.about-page .principles-grid p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.75;
}
body.about-page .story-layout {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
  text-align: left;
}
body.about-page .timeline {
  display: grid;
  gap: 14px;
}
body.about-page .timeline article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  background: var(--card);
}
body.about-page .timeline article > span {
  width: 38px;
  height: 38px;
  margin: 0;
}
body.about-page .ibiza-card {
  position: sticky;
  top: 100px;
  padding: 30px;
}
body.about-page .ibiza-card p + p {
  margin-top: 1rem;
}
body.about-page .future-grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  text-align: left;
}
body.about-page .future-grid article {
  padding: 30px;
}
body.about-page .future-label {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--purple);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
body.about-page .future-grid ul {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--text-secondary);
}
body.about-page .future-grid li {
  margin: 0.7rem 0;
}
body.about-page .future-grid li::before {
  content: "✓";
  margin-right: 0.75rem;
  color: var(--purple);
  font-weight: 800;
}
body.about-page .principles-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  text-align: left;
}
body.about-page .principles-grid article {
  min-height: 190px;
  padding: 24px;
}
body.about-page .contact-band {
  padding: clamp(80px, 10vw, 130px) 20px;
  background:
    radial-gradient(circle at center, rgba(94, 43, 255, 0.12), transparent 48%),
    var(--bg);
}
body.about-page .contact-band p {
  max-width: 620px;
  margin: 1rem auto 0;
  color: var(--text-secondary);
  line-height: 1.75;
}
body.about-page .hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 2rem;
}
body.about-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition: var(--transition);
}
body.about-page .btn-primary {
  background: var(--purple);
  color: #fff;
}
body.about-page .btn-primary:hover {
  background: var(--purple-light);
  color: #fff;
  box-shadow: 0 0 25px rgba(94, 43, 255, 0.25);
  transform: translateY(-2px);
}
body.about-page .btn-ghost {
  border-color: var(--border);
  background: transparent;
  color: var(--text);
}
body.about-page .btn-ghost:hover {
  border-color: var(--purple);
  color: var(--purple);
  transform: translateY(-2px);
}
body.about-page footer {
  padding: 44px 20px;
  border-top: 1px solid var(--border);
  background: var(--bg2);
  color: var(--text-secondary);
}
body.about-page .footer-brand {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  font-weight: 800;
}
body.about-page .footer-tagline {
  margin: 0.35rem 0 0;
}
body.about-page .social-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 22px 0;
}
body.about-page .social-buttons a {
  font-weight: 600;
}
body.about-page .reveal,
body.about-page .reveal-card {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    border-color 0.25s ease;
}
body.about-page .reveal.in-view,
body.about-page .reveal-card.in-view {
  opacity: 1;
  transform: none;
}
body.about-page .approach-grid article:hover,
body.about-page .timeline article:hover,
body.about-page .ibiza-card:hover,
body.about-page .future-grid article:hover,
body.about-page .principles-grid article:hover {
  border-color: rgba(94, 43, 255, 0.45);
}
@media (max-width: 1050px) {
  body.about-page .approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  body.about-page .principles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  body.about-page .mission-grid,
  body.about-page .story-layout {
    grid-template-columns: 1fr;
  }
  body.about-page .ibiza-card {
    position: static;
  }
}
@media (max-width: 720px) {
  body.about-page .future-grid {
    grid-template-columns: 1fr;
  }
  body.about-page .principles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  body.about-page .hero {
    min-height: 520px;
  }
  body.about-page .approach-grid,
  body.about-page .principles-grid {
    grid-template-columns: 1fr;
  }
  body.about-page .dropdown-content {
    left: 10px;
    width: min(calc(100vw - 20px), 250px);
  }
}
@media (max-width: 420px) {
  body.about-page .menu-btn {
    left: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  body.about-page,
  body.about-page * {
    animation: none !important;
    transition: none !important;
  }
  body.about-page .reveal,
  body.about-page .reveal-card {
    opacity: 1 !important;
    transform: none !important;
  }
}
body.about-page a:focus-visible,
body.about-page button:focus-visible,
body.about-page input:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 3px;
}

/* ===== ambients.html ===== */
/* Shared hero-label standard */
body.services-page .hero .eyebrow,
body.contact-page .hero .eyebrow,
body.about-page .hero .eyebrow {
  font-size: 1rem;
  letter-spacing: 4px;
  line-height: 1;
  margin-bottom: 1rem;
}

/* =========================
   LEGAL PAGES + COOKIE CONSENT
   ========================= */
body.legal-page .hero {
  min-height: 430px;
  padding: 70px 20px;
}
body.legal-page .hero h1 {
  font-size: clamp(3.4rem, 9vw, 6.6rem);
}
.legal-content {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(55px, 8vw, 100px) 20px;
  text-align: left;
}
.legal-updated {
  margin: 0 0 2.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.legal-content h2 {
  margin: 2.7rem 0 0.8rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.3rem);
  line-height: 1.05;
}
.legal-content h3 {
  margin: 1.8rem 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
}
.legal-content p,
.legal-content li {
  color: var(--text-secondary);
  line-height: 1.8;
}
.legal-content ul,
.legal-content ol {
  padding-left: 1.35rem;
}
.legal-content a {
  font-weight: 700;
}
.legal-note {
  margin: 2rem 0;
  padding: 18px 20px;
  border: 1px solid var(--card-border);
  border-left: 3px solid var(--purple);
  border-radius: 12px;
  background: var(--card);
}
.legal-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 20px 0 0;
  font-size: 0.86rem;
}
.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 3000;
  width: min(430px, calc(100vw - 36px));
  padding: 20px;
  border: 1px solid var(--card-border);
  border-radius: 18px;
  background: var(--card);
  box-shadow: var(--shadow);
  text-align: left;
}
.cookie-banner[hidden] {
  display: none;
}
.cookie-banner h2 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
}
.cookie-banner p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.cookie-actions button {
  min-height: 42px;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-weight: 700;
}
.cookie-accept {
  background: var(--purple);
  border-color: var(--purple) !important;
  color: #fff;
}
.cookie-reject {
  background: transparent;
  color: var(--text);
}
.cookie-settings-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.82rem;
  font-weight: 700;
}
@media (max-width: 520px) {
  .cookie-banner {
    right: 10px;
    bottom: 10px;
    width: calc(100vw - 20px);
  }
  .cookie-actions button {
    flex: 1;
  }
}
