/*
Theme Name: AudaVita
Theme URI: https://audavita.com
Author: AudaVita
Author URI: https://audavita.com
Description: A boutique revenue management and consultancy theme for AudaVita. Bold typography, clean editorial layout, brand-forward design.
Version: 1.2.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: audavita
Tags: business, corporate, custom-colors, custom-logo, featured-images, full-width-template, one-column, two-columns, blog, portfolio
*/

/* ─── Google Fonts ──────────────────────────────────────── */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Sora:wght@400;700;800&display=swap");

/* ─── CSS Reset & Base ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand-dark:        #171A1F;
  --brand-green:       #E8A92F;
  --brand-orange:      #E8A92F;
  --brand-light-green: #F5F3EE;
  --white:             #ffffff;
  --radius:            0rem;
  color-scheme:        light;

  /* ── Override any WordPress Global Style preset colours ── */
  --wp--preset--color--vivid-purple:     #E8A92F !important;
  --wp--preset--color--vivid-red:        #E8A92F !important;
  --wp--preset--color--vivid-cyan-blue:  #171A1F !important;
  --wp--preset--color--light-green-cyan: #F5F3EE !important;
  --wp--preset--color--luminous-vivid-amber: #E8A92F !important;
  --wp--preset--color--luminous-vivid-orange: #E8A92F !important;
  --wp--preset--color--pale-pink:        #F5F3EE !important;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", sans-serif;
  background: var(--white);
  color: var(--brand-dark);
  cursor: none;
  line-height: 1.6;
}

/* Hide native cursor (including pointer hand) on all interactive elements
     so the custom cursor stays consistent. Pointer events still work. */
  a,
  button,
  [role="button"],
  input,
  textarea,
  select,
  label,
  summary,
  [onclick],
  [tabindex] {
    cursor: none!important;
  }

@media (hover: none) { 
	body,
    a,
    button,
    [role="button"],
    input,
    textarea,
    select,
    label,
    summary,
    [onclick],
    [tabindex] { 
		cursor: auto!important; 
	} 
}

p, span, li, h1, h2, h3, h4, h5, h6, a, button, label, td, th {
  overflow-wrap: anywhere;
  word-break: break-word;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }

/* ─── Typography helpers ────────────────────────────────── */
.font-sora  { font-family: "Sora", sans-serif; }
.font-inter { font-family: "Inter", sans-serif; }

/* ─── Brand Colour helpers ──────────────────────────────── */
.text-brand-dark        { color: var(--brand-dark); }
.text-brand-green       { color: var(--brand-green); }
.text-brand-orange      { color: var(--brand-orange); }
.bg-brand-dark          { background-color: var(--brand-dark); }
.bg-brand-green         { background-color: var(--brand-green); }
.bg-brand-orange        { background-color: var(--brand-orange); }
.bg-brand-light-green   { background-color: var(--brand-light-green); }
.border-brand-dark      { border-color: var(--brand-dark); }

/* ─── Layout ─────────────────────────────────────────────── */
.site-wrapper  { display: flex; flex-direction: column; min-height: 100vh; }
.site-main     { flex: 1; }
.container     { max-width: 1440px; margin-inline: auto; padding-inline: 2rem; }

@media (min-width: 1024px) { .container { padding-inline: 4rem; } }


.section-caption {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(23,26,31,0.3);
}
.section-caption::before {
  content: "";
  width: 48px;
  height: 1px;
  background-color: currentColor;
  flex-shrink: 0;
}

/* ─── Corner Marks ──────────────────────────────────────── */
.corner-mark {
  position: absolute;
  width: 20px;
  height: 20px;
}
.corner-tl { top: 16px;    left: 16px;   border-top: 2px solid var(--brand-dark); border-left: 2px solid var(--brand-dark); }
.corner-tr { top: 16px;    right: 16px;  border-top: 2px solid var(--brand-dark); border-right: 2px solid var(--brand-dark); }
.corner-bl { bottom: 16px; left: 16px;   border-bottom: 2px solid var(--brand-dark); border-left: 2px solid var(--brand-dark); }
.corner-br { bottom: 16px; right: 16px;  border-bottom: 2px solid var(--brand-dark); border-right: 2px solid var(--brand-dark); }

/* ─── Animations ─────────────────────────────────────────── */
@keyframes marquee      { from { transform: translateX(0); }    to { transform: translateX(-50%); } }
@keyframes spin-slow    { from { transform: rotate(0deg); }     to { transform: rotate(360deg); } }
@keyframes pulse-soft {
  0%, 100% { transform: scale(1);    box-shadow: 0 0 0 0   rgba(232,169,47,0.4); }
  50%       { transform: scale(1.04);box-shadow: 0 0 0 12px rgba(232,169,47,0); }
}
@keyframes reveal-up    { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: translateY(0); } }
@keyframes clip-in      { from { clip-path: inset(0 100% 0 0); } to { clip-path: inset(0 0% 0 0); } }
@keyframes line-grow    { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.animate-marquee    { animation: marquee   40s linear       infinite; }
.animate-spin-slow  { animation: spin-slow 20s linear       infinite; }
.animate-pulse-soft { animation: pulse-soft 3s ease-in-out  infinite; }
.animate-reveal-up  { animation: reveal-up 0.7s cubic-bezier(0.22,1,0.36,1) both; }
.animate-clip-in    { animation: clip-in   0.6s cubic-bezier(0.22,1,0.36,1) both; }
.animate-line-grow  { animation: line-grow 0.5s cubic-bezier(0.22,1,0.36,1) both; }

/* ─── NAVBAR ─────────────────────────────────────────────── */
.site-header {
  background: var(--white);
  border-bottom: 4px solid var(--brand-dark);
  position: sticky;
  top: 0;
  z-index: 50;
}
.navbar-inner {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 2rem;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
@media (min-width: 1024px) { .navbar-inner { padding-inline: 4rem; } }

.navbar-logo img   { height: 64px; width: auto; object-fit: contain; }
.navbar-logo a     { display: flex; align-items: center; }

.navbar-links {
  display: none;
  align-items: center;
  gap: 1.75rem;
  flex: 1;
  justify-content: center;
}
@media (min-width: 1280px) { .navbar-links { display: flex; } }

.nav-link {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  color: var(--brand-dark);
  padding-bottom: 4px;
  transition: color 0.2s;
  position: relative;
}
.nav-link:hover              { color: var(--brand-green); }
.nav-link.active             { border-bottom: 2px solid var(--brand-dark); }

/* Dropdown */
.nav-dropdown-wrap           { position: relative; }
.nav-dropdown-toggle {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  color: var(--brand-dark);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  padding-bottom: 4px;
  transition: color 0.2s;
}
.nav-dropdown-toggle:hover   { color: var(--brand-green); }
.nav-dropdown-toggle.active  { border-bottom: 2px solid var(--brand-dark); }

.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 8px;
  z-index: 100;
  min-width: 260px;
}
.nav-dropdown-wrap:hover .nav-dropdown { display: block; }
.nav-dropdown-inner {
  background: var(--white);
  border: 4px solid var(--brand-dark);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--brand-dark);
  border-bottom: 1px solid rgba(23,26,31,0.1);
  transition: background 0.2s, color 0.2s;
}
.nav-dropdown-item:last-child { border-bottom: none; }
.nav-dropdown-item:hover      { background: var(--brand-light-green); color: var(--brand-green); }
.nav-dropdown-item .nav-index {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  color: rgba(23,26,31,0.2);
  transition: color 0.2s;
}
.nav-dropdown-item:hover .nav-index { color: var(--brand-green); }

.navbar-cta {
  display: none;
  align-items: center;
  gap: 12px;
  background: var(--brand-dark);
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 0.875rem;
  padding: 0 2rem;
  height: 44px;
  border: 2px solid var(--brand-dark);
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
  white-space: nowrap;
}
.navbar-cta:hover { background: var(--brand-green); border-color: var(--brand-green); }
@media (min-width: 1280px) { .navbar-cta { display: flex; } }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
@media (min-width: 1280px) { .hamburger { display: none; } }
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brand-dark);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 4px solid var(--brand-dark);
  padding: 1.5rem 2rem;
  flex-direction: column;
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu-link {
  display: block;
  padding: 16px 0;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  color: var(--brand-dark);
  border-bottom: 1px solid rgba(23,26,31,0.1);
  transition: color 0.2s;
}
.mobile-menu-link:hover, .mobile-menu-link.active { color: var(--brand-green); }
.mobile-sub-menu {
  padding-left: 1rem;
  background: var(--brand-light-green);
}
.mobile-sub-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  color: rgba(23,26,31,0.7);
  border-bottom: 1px solid rgba(23,26,31,0.05);
  transition: color 0.2s;
}
.mobile-sub-link:hover { color: var(--brand-green); }
.mobile-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 1.5rem;
  background: var(--brand-dark);
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 0.875rem;
  padding: 16px 2rem;
  transition: background 0.2s;
}
.mobile-cta:hover { background: var(--brand-green); }

/* Easter egg tooltip */
.easter-egg-tip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 12px;
  background: var(--brand-dark);
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  padding: 8px 12px;
  white-space: nowrap;
  z-index: 10;
  display: none;
}
.easter-egg-tip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: var(--brand-dark);
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--brand-dark);
  color: var(--white);
}
.footer-inner {
  max-width: 1440px;
  margin-inline: auto;
  padding: 6rem 2rem 3rem;
}
@media (min-width: 1024px) { .footer-inner { padding: 6rem 4rem 3rem; } }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (min-width: 640px)  { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; gap: 2rem; } }

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}
.footer-brand-icon {
  width: 36px;
  height: 36px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  flex-shrink: 0;
}
.footer-brand-name {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  line-height: 1;
}
.footer-tagline {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-width: 240px;
}

.footer-col-title {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.footer-col ul { display: flex; flex-direction: column; gap: 14px; }
.footer-col a {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.coming-soon-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  padding: 2px 8px;
  border-radius: 999px;
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7) !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}
.footer-copy {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--white); }

/* ─── HERO SECTION ───────────────────────────────────────── */
.hero-section {
  background: var(--white);
  border-bottom: 4px solid var(--brand-dark);
  overflow: visible;
  position: relative;
}
.hero-inner {
  max-width: 1440px;
  margin-inline: auto;
  padding: 4rem 2rem;
}
@media (min-width: 1024px) { .hero-inner { padding: 6rem 4rem 6rem 6rem; } }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }

.hero-label {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(23,26,31,0.4);
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero-label::before { content: ""; width: 48px; height: 1px; background: currentColor; flex-shrink: 0; }

.hero-headline { margin-bottom: 2rem; line-height: 1; }
.hero-headline h1 { line-height: 0.9; }
.hero-line {
  display: block;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.hero-line--sora   { font-family: "Sora", sans-serif;  font-weight: 800; color: var(--brand-dark); }
.hero-line--inter  { font-family: "Inter", sans-serif; font-weight: 900; color: var(--brand-dark); }
.hero-line--green  { color: var(--brand-green) !important; }
.hero-line--orange { color: var(--brand-orange) !important; }

.hero-subtitle {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  max-width: 620px;
}
.hero-subtitle-bar { width: 4px; flex-shrink: 0; background: var(--brand-dark); align-self: stretch; }
.hero-subtitle p {
  font-family: "Sora", sans-serif;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--brand-dark);
}
@media (min-width: 1024px) { .hero-subtitle p { font-size: 1.25rem; } }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: var(--brand-dark);
  color: var(--white);
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 1.125rem;
  padding: 20px 40px;
  border: 4px solid var(--brand-dark);
  transition: background 0.2s, border-color 0.2s;
}
.btn-primary:hover, #highlight-cta { background: var(--brand-green); border-color: var(--brand-green); color: var(--white); }
#highlight-cta:hover { background: var(--brand-dark); color: var(--white); }
.btn-primary .arrow { color: var(--brand-orange); font-weight: 900; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 1.125rem;
  padding: 20px 40px;
  border: 4px solid var(--brand-dark);
  color: var(--brand-dark);
  background: transparent;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--brand-dark); color: var(--white); }

/* Hero image */
.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 430px;
  margin-inline: auto;
  padding-bottom: 32px;
}
@media (min-width: 1024px) { .hero-image-wrap { margin-left: auto; margin-right: 0; } }
.hero-img-shadow {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  background: var(--brand-orange);
  border: 4px solid var(--brand-dark);
}
.hero-img-main {
  position: relative;
  z-index: 10;
  width: 100%;
  aspect-ratio: 0.68;
  object-fit: cover;
  border: 4px solid var(--brand-dark);
}
.hero-boutique-tag {
  position: absolute;
  bottom: -12px;
  left: -12px;
  z-index: 20;
  background: var(--white);
  border: 4px solid var(--brand-dark);
  padding: 24px 32px;
}
.hero-boutique-tag p {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  color: var(--brand-dark);
  font-size: 1.25rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  text-align: center;
}
.hero-rotating-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  z-index: 20;
  animation: spin-slow 20s linear infinite;
  width: 110px;
  height: 110px;
}

/* Vertical label */
.hero-vert-label {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 48px;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(23,26,31,0.1);
}
@media (min-width: 1024px) { .hero-vert-label { display: flex; } }
.hero-vert-label span {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(23,26,31,0.3);
  white-space: nowrap;
  transform: rotate(-90deg);
  user-select: none;
}

/* ─── TICKER SECTION ─────────────────────────────────────── */
.ticker-section {
  background: var(--brand-dark);
  border-bottom: 4px solid var(--brand-dark);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 20px 0;
}
.ticker-track {
  display: flex;
  animation: marquee 40s linear infinite;
  width: max-content;
  white-space: nowrap;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
}
.ticker-text {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 24px;
}
@media (min-width: 1024px) { .ticker-text { font-size: 1.25rem; padding: 0 40px; } }
.ticker-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-orange);
  flex-shrink: 0;
}

/* ─── STATS SECTION ──────────────────────────────────────── */
.stats-section {
  background: var(--white);
  border-bottom: 4px solid var(--brand-dark);
  overflow: hidden;
}
.stats-label-wrap { max-width: 1440px; margin-inline: auto; padding: 3rem 2rem 0; }
@media (min-width: 1024px) { .stats-label-wrap { padding: 3rem 4rem 0; } }
.stats-grid {
  max-width: 1440px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.stat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 2rem 4rem;
  overflow: hidden;
  border-bottom: 4px solid var(--brand-dark);
}
@media (min-width: 768px) {
  .stat-card { border-bottom: none; border-right: 4px solid var(--brand-dark); }
  .stat-card:last-child { border-right: none; }
}
.stat-number-wrap { display: flex; align-items: flex-start; justify-content: center; width: 100%; margin-top: -0.1em; }
.stat-number {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  color: var(--brand-dark);
  line-height: 0.85;
  letter-spacing: -0.06em;
  font-size: clamp(7rem, 16vw, 14rem);
  user-select: none;
}
.stat-suffix {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  color: var(--brand-orange);
  line-height: 1;
  flex-shrink: 0;
  font-size: clamp(2.5rem, 5vw, 5rem);
  letter-spacing: -0.03em;
  margin-top: 0.55em;
}
.stat-divider { width: 100%; max-width: 240px; height: 1px; background: var(--brand-dark); margin: 24px 0; }
.stat-label {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  color: var(--brand-dark);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  max-width: 200px;
  line-height: 1.6;
}
.stat-deco {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  color: rgba(23,26,31,0.05);
  font-size: 5rem;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

/* ─── WHAT WE DO SECTION ─────────────────────────────────── */
.whatwedo-section {
  background: var(--brand-light-green);
  border-bottom: 4px solid var(--brand-dark);
}
.whatwedo-inner {
  max-width: 1440px;
  margin-inline: auto;
  padding: 5rem 2rem;
}
@media (min-width: 1024px) { .whatwedo-inner { padding: 6rem 4rem; } }
.whatwedo-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .whatwedo-layout { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.whatwedo-heading {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  color: var(--brand-dark);
  text-transform: uppercase;
  letter-spacing: -0.05em;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  margin-bottom: 2rem;
}
.whatwedo-body {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  opacity: 0.8;
}
.whatwedo-bar { width: 4px; flex-shrink: 0; background: var(--brand-green); align-self: stretch; }
.whatwedo-body p {
  font-family: "Sora", sans-serif;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--brand-dark);
  max-width: 700px;
}
@media (min-width: 1024px) { .whatwedo-body p { font-size: 1.25rem; } }
.btn-outlined-dark {
  display: inline-flex;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 0.875rem;
  color: var(--brand-dark);
  padding: 12px 40px;
  border: 4px solid var(--brand-dark);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-outlined-dark:hover { background: var(--brand-dark); color: var(--white); }

/* ─── SERVICES SECTION ───────────────────────────────────── */
.services-section {
  background: var(--white);
  border-bottom: 4px solid var(--brand-dark);
}
.services-layout {
  max-width: 1440px;
  margin-inline: auto;
}
/* Mobile */
.services-mobile { display: block; }
@media (min-width: 1024px) { .services-mobile { display: none; } }
.service-card-mobile {
  border-bottom: 4px solid var(--brand-dark);
  padding: 40px 2rem;
}
.service-card-mobile.active { background: var(--brand-dark); color: var(--white); }
.service-card-toggle {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.service-toggle-left { display: flex; align-items: flex-start; gap: 1rem; }
.service-num-mobile  { font-family: "Sora", sans-serif; font-weight: 800; font-size: 0.75rem; margin-top: 4px; color: rgba(23,26,31,0.2); }
.service-num-mobile.active { color: var(--brand-orange); }
.service-title-mobile { font-family: "Sora", sans-serif; font-weight: 800; font-size: 1.25rem; text-transform: uppercase; letter-spacing: -0.02em; color: var(--brand-dark); }
.service-title-mobile.active { color: var(--white); }
.service-toggle-icon { font-size: 1.25rem; font-weight: 700; flex-shrink: 0; color: rgba(23,26,31,0.3); }
.service-toggle-icon.active { color: var(--brand-orange); }
.service-content-mobile { margin-top: 24px; padding-left: 2rem; }
.service-desc-mobile { font-family: "Inter", sans-serif; color: rgba(255,255,255,0.8); font-size: 1rem; line-height: 1.7; margin-bottom: 24px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.service-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-orange);
  border: 1px solid rgba(232,169,47,0.4);
  padding: 4px 8px;
}
.service-link-mobile {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-orange);
}
/* Desktop */
.services-desktop {
  display: none;
  grid-template-columns: 2fr 3fr;
  min-height: 540px;
}
@media (min-width: 1024px) { .services-desktop { display: grid; } }
.services-list {
  border-right: 4px solid var(--brand-dark);
}
.services-list-label {
  padding: 2rem 3rem;
  border-bottom: 2px solid rgba(23,26,31,0.1);
}
.service-list-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 2rem 3rem;
  border-bottom: 2px solid rgba(23,26,31,0.1);
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}
.service-list-btn:last-child { border-bottom: none; }
.service-list-btn:hover { background: var(--brand-light-green); }
.service-list-btn.active { background: var(--brand-dark); }
.service-list-btn .underline-bar {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px; width: 100%;
  background: var(--brand-orange);
  transform: scaleX(0);
  transform-origin: left;
}
.service-list-btn.active .underline-bar { animation: line-grow 0.5s cubic-bezier(0.22,1,0.36,1) both; }
.service-btn-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.service-btn-left  { display: flex; align-items: center; gap: 20px; }
.service-btn-num { font-family: "Sora", sans-serif; font-weight: 800; font-size: 0.75rem; color: rgba(23,26,31,0.2); transition: color 0.2s; word-break: keep-all; overflow-wrap: initial; }
.service-list-btn.active .service-btn-num { color: var(--brand-orange); }
.service-btn-title { font-family: "Sora", sans-serif; font-weight: 800; font-size: 1.25rem; text-transform: uppercase; letter-spacing: -0.02em; color: var(--brand-dark); transition: color 0.2s; }
@media (min-width: 1280px) { .service-btn-title { font-size: 1.5rem; } }
.service-list-btn.active .service-btn-title { color: var(--white); }
.service-btn-icon { font-size: 1.25rem; font-weight: 900; color: rgba(23,26,31,0.2); flex-shrink: 0; transition: color 0.2s; }
.service-list-btn.active .service-btn-icon { color: var(--brand-orange); }

.services-panel { display: flex; flex-direction: column; justify-content: center; padding: 4rem; }
.services-panel-num {
  font-family: "Sora", sans-serif; font-weight: 800; font-size: 0.75rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--brand-orange);
  margin-bottom: 1rem;
}
.services-panel-icon { color: var(--brand-dark); margin-bottom: 2rem; }
.services-panel-title {
  font-family: "Sora", sans-serif; font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  text-transform: uppercase; letter-spacing: -0.03em;
  color: var(--brand-dark); margin-bottom: 1.5rem;
}
.services-panel-desc {
  font-family: "Inter", sans-serif; font-size: 1.125rem;
  line-height: 1.75; color: rgba(23,26,31,0.7); margin-bottom: 2rem;
}
.services-panel-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 2rem; }
.services-panel-tag {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  border: 1px solid rgba(23,26,31,0.15); color: rgba(23,26,31,0.4); padding: 6px 12px;
}
.services-panel-link {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: "Inter", sans-serif; font-weight: 900; font-size: 0.875rem;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--brand-dark);
  transition: color 0.2s;
}
.services-panel-link:hover { color: var(--brand-green); }
.services-panel-link-circle {
  width: 32px; height: 32px; border: 2px solid var(--brand-dark); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; font-size: 0.875rem;
  flex-shrink: 0; transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.services-panel-link:hover .services-panel-link-circle {
  background: var(--brand-green); border-color: var(--brand-green); color: var(--white);
}

/* ─── PROPERTY TYPES ─────────────────────────────────────── */
.proptypes-section {
  background: var(--white);
  border-bottom: 4px solid var(--brand-dark);
}
.proptypes-inner {
  max-width: 1440px;
  margin-inline: auto;
  padding: 5rem 2rem;
}
@media (min-width: 1024px) { .proptypes-inner { padding: 7rem 4rem; } }
.proptypes-label {
  font-family: "Inter", sans-serif; font-weight: 700; font-size: 0.875rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--brand-orange);
  margin-bottom: 20px;
}
.proptypes-layout {
  display: flex; flex-direction: column; gap: 3rem;
}
@media (min-width: 1024px) {
  .proptypes-layout { flex-direction: row; align-items: flex-start; justify-content: space-between; gap: 5rem; }
  .proptypes-left, .proptypes-right { width: 50%; }
}
.proptypes-heading-wrap { display: flex; align-items: flex-start; gap: 24px; margin-bottom: 2rem; }
.proptypes-heading-bar  { width: 4px; flex-shrink: 0; background: var(--brand-green); align-self: stretch; }
.proptypes-heading {
  font-family: "Sora", sans-serif; font-weight: 800; color: var(--brand-dark);
  text-transform: uppercase; letter-spacing: -0.04em; line-height: 1.05;
  font-size: clamp(2rem, 4vw, 3rem);
}
.proptypes-body {
  font-family: "Inter", sans-serif; font-size: 1rem; color: rgba(23,26,31,0.7); line-height: 1.7;
}
@media (min-width: 1024px) { .proptypes-body { font-size: 1.125rem; } }
.proptypes-list { border-top: 2px solid rgba(23,26,31,0.1); }
.proptype-item { display: flex; gap: 20px; padding: 24px 0; border-bottom: 2px solid rgba(23,26,31,0.1); }
.proptype-bullet {
  margin-top: 4px; flex-shrink: 0; width: 20px; height: 20px;
  border: 2px solid var(--brand-orange); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.proptype-bullet-inner { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-orange); }
.proptype-label { font-family: "Sora", sans-serif; font-weight: 700; color: var(--brand-dark); font-size: 1rem; }
.proptype-detail { font-family: "Inter", sans-serif; color: rgba(23,26,31,0.6); font-size: 1rem; }
@media (min-width: 1024px) {
  .proptype-label, .proptype-detail { font-size: 1.125rem; }
}

/* ─── WHY AUDAVITA ───────────────────────────────────────── */
.why-section {
  background: var(--brand-dark);
  border-bottom: 4px solid var(--brand-dark);
}
.why-inner {
  max-width: 1440px;
  margin-inline: auto;
  padding: 5rem 2rem;
}
@media (min-width: 1024px) { .why-inner { padding: 7rem 4rem; } }
.why-label {
  font-family: "Inter", sans-serif; font-weight: 700; font-size: 0.875rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--brand-orange);
  margin-bottom: 20px;
}
.why-grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem;
}
@media (min-width: 1024px) { .why-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.why-heading-wrap { display: flex; align-items: flex-start; gap: 24px; margin-bottom: 2rem; }
.why-heading-bar  { width: 4px; flex-shrink: 0; background: var(--brand-green); align-self: stretch; }
.why-heading {
  font-family: "Sora", sans-serif; font-weight: 800; color: var(--white);
  text-transform: uppercase; letter-spacing: -0.04em; line-height: 1.05;
  font-size: clamp(2rem, 4vw, 3rem);
}
.why-body { display: flex; flex-direction: column; gap: 20px; }
.why-body p { font-family: "Inter", sans-serif; font-size: 1rem; color: rgba(255,255,255,0.7); line-height: 1.7; }
@media (min-width: 1024px) { .why-body p { font-size: 1.125rem; } }
.why-body p.highlight { color: var(--white); font-weight: 600; }
.why-link {
  display: inline-flex; align-items: center; gap: 12px; margin-top: 40px;
  font-family: "Inter", sans-serif; font-weight: 900; font-size: 0.875rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--white);
  border-bottom: 2px solid rgba(255,255,255,0.4); padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.why-link:hover { color: var(--brand-orange); border-color: var(--brand-orange); }
.why-principles-label {
  font-family: "Sora", sans-serif; font-weight: 700; font-size: 0.875rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}
.why-principles { border-top: 1px solid rgba(255,255,255,0.1); }
.principle-item { display: flex; align-items: flex-start; gap: 16px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.principle-num {
  flex-shrink: 0; width: 24px; height: 24px;
  border: 1px solid rgba(232,169,47,0.6);
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.principle-num span { font-family: "Sora", sans-serif; font-weight: 800; color: var(--brand-orange); font-size: 0.75rem; }
.principle-text { font-family: "Inter", sans-serif; color: rgba(255,255,255,0.7); font-size: 0.875rem; line-height: 1.7; }
@media (min-width: 1024px) { .principle-text { font-size: 1rem; } }

/* ─── RESULTS PREVIEW ────────────────────────────────────── */
.results-prev-section {
  background: var(--brand-light-green);
  border-bottom: 4px solid var(--brand-dark);
}
.results-prev-inner {
  max-width: 1440px;
  margin-inline: auto;
  padding: 5rem 2rem;
}
@media (min-width: 1024px) { .results-prev-inner { padding: 7rem 4rem; } }
.results-prev-label {
  font-family: "Inter", sans-serif; font-weight: 700; font-size: 0.875rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--brand-orange);
  margin-bottom: 20px;
}
.results-prev-grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem; margin-bottom: 4rem;
}
@media (min-width: 1024px) { .results-prev-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.results-prev-heading-wrap { display: flex; align-items: flex-start; gap: 24px; margin-bottom: 2rem; }
.results-prev-bar  { width: 4px; flex-shrink: 0; background: var(--brand-green); align-self: stretch; }
.results-prev-heading {
  font-family: "Sora", sans-serif; font-weight: 800; color: var(--brand-dark);
  text-transform: uppercase; letter-spacing: -0.04em; line-height: 1.05;
  font-size: clamp(2rem, 4vw, 3rem);
}
.results-prev-body { font-family: "Inter", sans-serif; font-size: 1rem; color: rgba(23,26,31,0.7); line-height: 1.7; }
@media (min-width: 1024px) { .results-prev-body { font-size: 1.125rem; } }
.results-metrics-label {
  font-family: "Inter", sans-serif; font-weight: 700; font-size: 0.75rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: rgba(23,26,31,0.4); margin-bottom: 1rem;
}
.metrics-chips { display: flex; flex-wrap: wrap; gap: 12px; }
.metric-chip {
  font-family: "Inter", sans-serif; font-weight: 700; font-size: 0.875rem;
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--brand-dark);
  border: 2px solid var(--brand-dark); padding: 8px 16px;
}
.results-case-placeholder {
  border: 4px dashed var(--brand-dark);
  background: rgba(255,255,255,0.6);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}
@media (min-width: 640px) {
  .results-case-placeholder {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.case-placeholder-eyebrow {
  font-family: "Inter", sans-serif; font-weight: 700; font-size: 0.75rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: rgba(23,26,31,0.3); margin-bottom: 12px;
}
.case-placeholder-title {
  font-family: "Sora", sans-serif; font-weight: 700; color: var(--brand-dark);
  font-size: 1.125rem; line-height: 1.4; max-width: 520px;
}
@media (min-width: 1024px) { .case-placeholder-title { font-size: 1.25rem; } }
.btn-dark-cta {
  flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--brand-dark); color: var(--white);
  font-family: "Inter", sans-serif; font-weight: 900; font-size: 0.875rem;
  padding: 16px 2rem; border: 2px solid var(--brand-dark);
  transition: background 0.2s, color 0.2s; white-space: nowrap;
}
.btn-dark-cta:hover { background: transparent; color: var(--brand-dark); }

/* ─── CTA SECTION ────────────────────────────────────────── */
.cta-section {
  background: var(--brand-orange) !important;
  border-bottom: 4px solid var(--brand-dark);
  position: relative;
  overflow: hidden;
}
.cta-bg-icon {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0.1; pointer-events: none; user-select: none;
}
.cta-inner {
  position: relative; z-index: 10;
  max-width: 1440px;
  margin-inline: auto;
  padding: 6rem 2rem 8rem;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
@media (min-width: 1024px) { .cta-inner { padding: 8rem 4rem; } }
.cta-heading {
  font-family: "Sora", sans-serif; font-weight: 800; color: var(--white);
  text-transform: uppercase; letter-spacing: -0.05em; line-height: 1; margin-bottom: 24px;
  font-size: clamp(2.5rem, 7vw, 6rem);
}
.cta-body {
  font-family: "Sora", sans-serif; font-size: 1.125rem; color: rgba(255,255,255,0.8);
  max-width: 600px; line-height: 1.7; margin-bottom: 3rem;
}
@media (min-width: 1024px) { .cta-body { font-size: 1.25rem; } }
.btn-cta-main {
  display: inline-flex; align-items: center; gap: 1rem;
  font-family: "Sora", sans-serif; font-weight: 800;
  color: var(--brand-dark); background: var(--white);
  font-size: 1.25rem; padding: 24px 3rem; border: 4px solid var(--brand-dark);
  transition: background 0.2s, color 0.2s;
}
.btn-cta-main:hover { background: var(--brand-dark); color: var(--white); }
@media (min-width: 1024px) { .btn-cta-main { font-size: 1.5rem; padding: 32px 5rem; } }

/* ─── FLOATING CTA ───────────────────────────────────────── */
.floating-cta {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 50;
  display: none;
}
.floating-cta.visible { display: block; }
.floating-cta-btn {
  display: flex; align-items: center; gap: 12px;
  background: var(--brand-dark); color: var(--white);
  font-family: "Sora", sans-serif; font-weight: 700;
  border: 4px solid var(--brand-orange);
  padding: 14px;
  animation: pulse-soft 3s ease-in-out infinite;
  transition: padding 0.3s;
  overflow: hidden;
}
.floating-cta-btn:hover { padding: 14px 24px; }
.floating-cta-arrow { flex-shrink: 0; color: var(--brand-orange); font-weight: 800; font-size: 1.25rem; line-height: 1; }
.floating-cta-label {
  font-family: "Inter", sans-serif; font-weight: 900; font-size: 0.875rem;
  letter-spacing: 0.05em; text-transform: uppercase; white-space: nowrap;
  max-width: 0; opacity: 0; overflow: hidden;
  transition: max-width 0.3s, opacity 0.3s;
}
.floating-cta-btn:hover .floating-cta-label { max-width: 200px; opacity: 1; }

/* ─── CUSTOM CURSOR ──────────────────────────────────────── */
.custom-cursor {
  pointer-events: none;
  position: fixed;
  z-index: 9999;
  width: 60px;
  height: 60px;
  left: -200px;
  top: -200px;
  transform-origin: center center;
}
.custom-cursor img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
}

/* ─── PAGE HEADERS (shared) ──────────────────────────────── */
.page-header {
  background: var(--brand-light-green) !important;
  border-bottom: 4px solid var(--brand-dark);
}
.page-header-inner {
  max-width: 1440px; margin-inline: auto;
  padding: 5rem 2rem;
}
@media (min-width: 1024px) { .page-header-inner { padding: 7rem 4rem; } }
.page-eyebrow {
  font-family: "Inter", sans-serif; font-weight: 700; font-size: 0.875rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--brand-orange) !important;
  margin-bottom: 16px;
}
.page-title-wrap { display: flex; align-items: flex-start; gap: 24px; margin-bottom: 2rem; }
.page-title-bar  { width: 4px; flex-shrink: 0; background: var(--brand-green) !important; align-self: stretch; }
.page-title {
  font-family: "Sora", sans-serif; font-weight: 800; color: var(--brand-dark);
  text-transform: uppercase; letter-spacing: -0.04em; line-height: 1.05;
  font-size: clamp(2rem, 5vw, 3.5rem);
}
.page-subtitle {
  font-family: "Inter", sans-serif; font-size: 1.125rem; color: rgba(23,26,31,0.7);
  line-height: 1.7; max-width: 720px; padding-left: 28px;
}
@media (min-width: 1024px) { .page-subtitle { font-size: 1.25rem; } }

/* ─── WHAT WE DO PAGE ────────────────────────────────────── */
.service-row {
  border-bottom: 4px solid var(--brand-dark);
  padding: 4rem 2rem;
}
@media (min-width: 1024px) { .service-row { padding: 5rem 4rem; } }
.service-row:nth-child(odd)  { background: var(--white); }
.service-row:nth-child(even) { background: var(--brand-light-green); }
.service-row-grid {
  max-width: 1440px; margin-inline: auto;
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
}
@media (min-width: 1024px) {
  .service-row-grid { grid-template-columns: 1fr 2fr; gap: 5rem; }
}
.service-row-num {
  font-family: "Sora", sans-serif; font-weight: 800; color: rgba(23,26,31,0.1);
  font-size: 4rem; line-height: 1; display: block; margin-bottom: 16px;
}
.service-row-title {
  font-family: "Sora", sans-serif; font-weight: 800; color: var(--brand-dark);
  text-transform: uppercase; font-size: 1.5rem; line-height: 1.2; margin-bottom: 16px;
  letter-spacing: -0.02em;
}
@media (min-width: 1024px) { .service-row-title { font-size: 1.875rem; } }
.service-row-subtypes {
  font-family: "Inter", sans-serif; font-size: 0.875rem;
  color: rgba(23,26,31,0.5); margin-bottom: 24px; line-height: 1.7;
}
.service-row-link {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: "Inter", sans-serif; font-weight: 900; font-size: 0.875rem;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--brand-dark);
  border-bottom: 2px solid var(--brand-dark); padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.service-row-link:hover { color: var(--brand-orange); border-color: var(--brand-orange); }
.service-row-desc {
  font-family: "Inter", sans-serif; font-size: 1.125rem; color: rgba(23,26,31,0.8); line-height: 1.75;
}

/* ─── INSIGHTS PAGE ──────────────────────────────────────── */
.insights-grid {
  max-width: 1440px; margin-inline: auto;
  padding: 4rem 2rem;
  display: grid; grid-template-columns: 1fr; border: 2px solid var(--brand-dark);
}
@media (min-width: 1024px) {
  .insights-grid { grid-template-columns: 1fr 1fr; padding: 4rem; }
}
.insight-card {
  padding: 40px;
  border-color: var(--brand-dark);
}
@media (min-width: 1024px) {
  .insight-card:nth-child(odd)  { border-right: 2px solid var(--brand-dark); }
  .insight-card:nth-child(1),
  .insight-card:nth-child(2)    { border-bottom: 2px solid var(--brand-dark); }
}
@media (max-width: 1023px) {
  .insight-card { border-bottom: 2px solid var(--brand-dark); }
  .insight-card:last-child { border-bottom: none; }
}
.insight-num {
  font-family: "Sora", sans-serif; font-weight: 800;
  color: var(--brand-orange); opacity: 0.3; font-size: 3rem; line-height: 1;
  display: block; margin-bottom: 24px;
}
.insight-title {
  font-family: "Sora", sans-serif; font-weight: 800; color: var(--brand-dark);
  font-size: 1.25rem; line-height: 1.3; margin-bottom: 20px;
  text-transform: uppercase; letter-spacing: -0.02em;
}
@media (min-width: 1024px) { .insight-title { font-size: 1.5rem; } }
.insight-excerpt {
  font-family: "Inter", sans-serif; font-weight: 500;
  color: rgba(23,26,31,0.7); font-size: 1rem; line-height: 1.7; margin-bottom: 2rem;
}
.insight-coming-soon {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "Inter", sans-serif; font-weight: 700; font-size: 0.875rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: rgba(23,26,31,0.4);
  cursor: not-allowed;
}
.insight-icon {
  width: 24px; height: 24px; border: 1px solid rgba(23,26,31,0.2);
  border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 0.75rem;
}

/* ─── WORK WITH US / FORM ────────────────────────────────── */
.contact-form-section {
  max-width: 1440px; margin-inline: auto;
  padding: 4rem 2rem;
}
@media (min-width: 1024px) { .contact-form-section { padding: 6rem 4rem; } }
.contact-grid {
  display: grid; grid-template-columns: 1fr; gap: 4rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 6rem; } }
.form-heading {
  font-family: "Sora", sans-serif; font-weight: 800; color: var(--brand-dark);
  text-transform: uppercase; font-size: 1.5rem; letter-spacing: -0.03em; margin-bottom: 2rem;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-family: "Inter", sans-serif; font-weight: 700; font-size: 0.875rem;
  color: var(--brand-dark); letter-spacing: 0.05em; text-transform: uppercase;
}
.form-group input,
.form-group textarea,
.form-group select {
  font-family: "Inter", sans-serif; font-size: 1rem;
  border: 2px solid var(--brand-dark); padding: 14px 16px;
  background: var(--white); color: var(--brand-dark);
  outline: none; transition: border-color 0.2s;
  border-radius: 0;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--brand-green); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-btn-submit {
  display: inline-flex; align-items: center; gap: 16px;
  background: var(--brand-dark); color: var(--white);
  font-family: "Sora", sans-serif; font-weight: 800; font-size: 1rem;
  padding: 18px 2.5rem; border: 4px solid var(--brand-dark);
  cursor: pointer; transition: background 0.2s, border-color 0.2s;
  letter-spacing: 0.03em;
}
.form-btn-submit:hover { background: var(--brand-green); border-color: var(--brand-green); }
.form-btn-submit .arrow { color: var(--brand-orange); }

.process-steps { display: flex; flex-direction: column; gap: 0; border-top: 2px solid rgba(23,26,31,0.1); }
.process-step {
  display: flex; gap: 20px; padding: 24px 0;
  border-bottom: 2px solid rgba(23,26,31,0.1);
}
.process-step-num {
  flex-shrink: 0; width: 32px; height: 32px; background: var(--brand-dark);
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.process-step-num span {
  font-family: "Sora", sans-serif; font-weight: 800; font-size: 0.875rem; color: var(--white);
}
.process-step-text {
  font-family: "Inter", sans-serif; font-size: 1rem; color: rgba(23,26,31,0.7); line-height: 1.7;
}

/* ─── PLACEHOLDER PAGES ──────────────────────────────────── */
.placeholder-section {
  background: var(--white); min-height: 70vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 6rem 2rem; border-bottom: 4px solid var(--brand-dark);
}
.placeholder-inner { max-width: 640px; text-align: center; }
.placeholder-deco {
  width: 64px; height: 64px;
  border: 4px solid var(--brand-dark);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 2rem;
}
.placeholder-deco svg { color: var(--brand-dark); }
.placeholder-eyebrow {
  font-family: "Inter", sans-serif; font-weight: 700; font-size: 0.875rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--brand-orange); margin-bottom: 1rem;
}
.placeholder-title {
  font-family: "Sora", sans-serif; font-weight: 800; color: var(--brand-dark);
  font-size: clamp(2rem, 5vw, 3rem); text-transform: uppercase; letter-spacing: -0.04em;
  margin-bottom: 1rem;
}
.placeholder-subtitle {
  font-family: "Inter", sans-serif; font-size: 1rem; color: rgba(23,26,31,0.6); line-height: 1.7;
  margin-bottom: 1.5rem;
}
.placeholder-desc {
  font-family: "Inter", sans-serif; font-size: 1rem; color: rgba(23,26,31,0.5); line-height: 1.7;
  margin-bottom: 2.5rem;
}
.placeholder-cta {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--brand-dark); color: var(--white);
  font-family: "Inter", sans-serif; font-weight: 900; font-size: 0.875rem;
  padding: 16px 2.5rem; border: 2px solid var(--brand-dark);
  transition: background 0.2s, color 0.2s;
}
.placeholder-cta:hover { background: transparent; color: var(--brand-dark); }

/* ─── 404 ────────────────────────────────────────────────── */
.notfound-section {
  background: var(--white); min-height: 80vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 6rem 2rem; text-align: center;
}
.notfound-num {
  font-family: "Sora", sans-serif; font-weight: 800; color: rgba(23,26,31,0.07);
  font-size: clamp(8rem, 20vw, 18rem); line-height: 1; letter-spacing: -0.06em;
  user-select: none;
}
.notfound-title {
  font-family: "Sora", sans-serif; font-weight: 800; color: var(--brand-dark);
  font-size: clamp(2rem, 4vw, 3rem); text-transform: uppercase; letter-spacing: -0.04em;
  margin-bottom: 1rem;
}
.notfound-body {
  font-family: "Inter", sans-serif; font-size: 1rem; color: rgba(23,26,31,0.6);
  line-height: 1.7; margin-bottom: 2.5rem; max-width: 480px;
}
.notfound-cta {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--brand-dark); color: var(--white);
  font-family: "Sora", sans-serif; font-weight: 800; font-size: 1rem;
  padding: 18px 2.5rem; border: 4px solid var(--brand-dark);
  transition: background 0.2s;
}
.notfound-cta:hover { background: var(--brand-green); }

/* ─── Responsive grid helpers ────────────────────────────── */
.form-row {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }

/* ─── CUSTOM CURSOR ──────────────────────────────────────── */
.custom-cursor {
  pointer-events: none;
  position: fixed;
  z-index: 9999;
  width: 60px;
  height: 60px;
  left: -200px;
  top: -200px;
  transform-origin: center center;
}
.custom-cursor img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
}

/* ─── PAGE HEADERS (shared) ──────────────────────────────── */
.page-header {
  background: var(--brand-light-green) !important;
  border-bottom: 4px solid var(--brand-dark);
}
.page-header-inner {
  max-width: 1440px; margin-inline: auto;
  padding: 5rem 2rem;
}
@media (min-width: 1024px) { .page-header-inner { padding: 7rem 4rem; } }
.page-eyebrow {
  font-family: "Inter", sans-serif; font-weight: 700; font-size: 0.875rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--brand-orange) !important;
  margin-bottom: 16px;
}
.page-title-wrap { display: flex; align-items: flex-start; gap: 24px; margin-bottom: 2rem; }
.page-title-bar  { width: 4px; flex-shrink: 0; background: var(--brand-green) !important; align-self: stretch; }
.page-title {
  font-family: "Sora", sans-serif; font-weight: 800; color: var(--brand-dark);
  text-transform: uppercase; letter-spacing: -0.04em; line-height: 1.05;
  font-size: clamp(2rem, 5vw, 3.5rem);
}
.page-subtitle {
  font-family: "Inter", sans-serif; font-size: 1.125rem; color: rgba(23,26,31,0.7);
  line-height: 1.7; max-width: 720px; padding-left: 28px;
}
@media (min-width: 1024px) { .page-subtitle { font-size: 1.25rem; } }

/* ─── WHAT WE DO PAGE ────────────────────────────────────── */
.service-row {
  border-bottom: 4px solid var(--brand-dark);
  padding: 4rem 2rem;
}
@media (min-width: 1024px) { .service-row { padding: 5rem 4rem; } }
.service-row:nth-child(odd)  { background: var(--white); }
.service-row:nth-child(even) { background: var(--brand-light-green); }
.service-row-grid {
  max-width: 1440px; margin-inline: auto;
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
}
@media (min-width: 1024px) {
  .service-row-grid { grid-template-columns: 1fr 2fr; gap: 5rem; }
}
.service-row-num {
  font-family: "Sora", sans-serif; font-weight: 800; color: rgba(23,26,31,0.1);
  font-size: 4rem; line-height: 1; display: block; margin-bottom: 16px;
}
.service-row-title {
  font-family: "Sora", sans-serif; font-weight: 800; color: var(--brand-dark);
  text-transform: uppercase; font-size: 1.5rem; line-height: 1.2; margin-bottom: 16px;
  letter-spacing: -0.02em;
}
@media (min-width: 1024px) { .service-row-title { font-size: 1.875rem; } }
.service-row-subtypes {
  font-family: "Inter", sans-serif; font-size: 0.875rem;
  color: rgba(23,26,31,0.5); margin-bottom: 24px; line-height: 1.7;
}
.service-row-link {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: "Inter", sans-serif; font-weight: 900; font-size: 0.875rem;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--brand-dark);
  border-bottom: 2px solid var(--brand-dark); padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.service-row-link:hover { color: var(--brand-orange); border-color: var(--brand-orange); }
.service-row-desc {
  font-family: "Inter", sans-serif; font-size: 1.125rem; color: rgba(23,26,31,0.8); line-height: 1.75;
}

/* ─── INSIGHTS PAGE ──────────────────────────────────────── */
.insights-grid {
  max-width: 1440px; margin-inline: auto;
  padding: 4rem 2rem;
  display: grid; grid-template-columns: 1fr; border: 2px solid var(--brand-dark);
}
@media (min-width: 1024px) {
  .insights-grid { grid-template-columns: 1fr 1fr; padding: 4rem; }
}
.insight-card {
  padding: 40px;
  border-color: var(--brand-dark);
}
@media (min-width: 1024px) {
  .insight-card:nth-child(odd)  { border-right: 2px solid var(--brand-dark); }
  .insight-card:nth-child(1),
  .insight-card:nth-child(2)    { border-bottom: 2px solid var(--brand-dark); }
}
@media (max-width: 1023px) {
  .insight-card { border-bottom: 2px solid var(--brand-dark); }
  .insight-card:last-child { border-bottom: none; }
}
.insight-num {
  font-family: "Sora", sans-serif; font-weight: 800;
  color: var(--brand-orange); opacity: 0.3; font-size: 3rem; line-height: 1;
  display: block; margin-bottom: 24px;
}
.insight-title {
  font-family: "Sora", sans-serif; font-weight: 800; color: var(--brand-dark);
  font-size: 1.25rem; line-height: 1.3; margin-bottom: 20px;
  text-transform: uppercase; letter-spacing: -0.02em;
}
@media (min-width: 1024px) { .insight-title { font-size: 1.5rem; } }
.insight-excerpt {
  font-family: "Inter", sans-serif; font-weight: 500;
  color: rgba(23,26,31,0.7); font-size: 1rem; line-height: 1.7; margin-bottom: 2rem;
}
.insight-coming-soon {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "Inter", sans-serif; font-weight: 700; font-size: 0.875rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: rgba(23,26,31,0.4);
  cursor: not-allowed;
}
.insight-icon {
  width: 24px; height: 24px; border: 1px solid rgba(23,26,31,0.2);
  border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 0.75rem;
}

/* ─── WORK WITH US / FORM ────────────────────────────────── */
.contact-form-section {
  max-width: 1440px; margin-inline: auto;
  padding: 4rem 2rem;
}
@media (min-width: 1024px) { .contact-form-section { padding: 6rem 4rem; } }
.contact-grid {
  display: grid; grid-template-columns: 1fr; gap: 4rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 6rem; } }
.form-heading {
  font-family: "Sora", sans-serif; font-weight: 800; color: var(--brand-dark);
  text-transform: uppercase; font-size: 1.5rem; letter-spacing: -0.03em; margin-bottom: 2rem;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-family: "Inter", sans-serif; font-weight: 700; font-size: 0.875rem;
  color: var(--brand-dark); letter-spacing: 0.05em; text-transform: uppercase;
}
.form-group input,
.form-group textarea,
.form-group select {
  font-family: "Inter", sans-serif; font-size: 1rem;
  border: 2px solid var(--brand-dark); padding: 14px 16px;
  background: var(--white); color: var(--brand-dark);
  outline: none; transition: border-color 0.2s;
  border-radius: 0;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--brand-green); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-btn-submit {
  display: inline-flex; align-items: center; gap: 16px;
  background: var(--brand-dark); color: var(--white);
  font-family: "Sora", sans-serif; font-weight: 800; font-size: 1rem;
  padding: 18px 2.5rem; border: 4px solid var(--brand-dark);
  cursor: pointer; transition: background 0.2s, border-color 0.2s;
  letter-spacing: 0.03em;
}
.form-btn-submit:hover { background: var(--brand-green); border-color: var(--brand-green); }
.form-btn-submit .arrow { color: var(--brand-orange); }

.process-steps { display: flex; flex-direction: column; gap: 0; border-top: 2px solid rgba(23,26,31,0.1); }
.process-step {
  display: flex; gap: 20px; padding: 24px 0;
  border-bottom: 2px solid rgba(23,26,31,0.1);
}
.process-step-num {
  flex-shrink: 0; width: 32px; height: 32px; background: var(--brand-dark);
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.process-step-num span {
  font-family: "Sora", sans-serif; font-weight: 800; font-size: 0.875rem; color: var(--white);
}
.process-step-text {
  font-family: "Inter", sans-serif; font-size: 1rem; color: rgba(23,26,31,0.7); line-height: 1.7;
}

/* ─── PLACEHOLDER PAGES ──────────────────────────────────── */
.placeholder-section {
  background: var(--white); min-height: 70vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 6rem 2rem; border-bottom: 4px solid var(--brand-dark);
}
.placeholder-inner { max-width: 640px; text-align: center; }
.placeholder-deco {
  width: 64px; height: 64px;
  border: 4px solid var(--brand-dark);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 2rem;
}
.placeholder-deco svg { color: var(--brand-dark); }
.placeholder-eyebrow {
  font-family: "Inter", sans-serif; font-weight: 700; font-size: 0.875rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--brand-orange); margin-bottom: 1rem;
}
.placeholder-title {
  font-family: "Sora", sans-serif; font-weight: 800; color: var(--brand-dark);
  font-size: clamp(2rem, 5vw, 3rem); text-transform: uppercase; letter-spacing: -0.04em;
  margin-bottom: 1rem;
}
.placeholder-subtitle {
  font-family: "Inter", sans-serif; font-size: 1rem; color: rgba(23,26,31,0.6); line-height: 1.7;
  margin-bottom: 1.5rem;
}
.placeholder-desc {
  font-family: "Inter", sans-serif; font-size: 1rem; color: rgba(23,26,31,0.5); line-height: 1.7;
  margin-bottom: 2.5rem;
}
.placeholder-cta {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--brand-dark); color: var(--white);
  font-family: "Inter", sans-serif; font-weight: 900; font-size: 0.875rem;
  padding: 16px 2.5rem; border: 2px solid var(--brand-dark);
  transition: background 0.2s, color 0.2s;
}
.placeholder-cta:hover { background: transparent; color: var(--brand-dark); }

/* ─── 404 ────────────────────────────────────────────────── */
.notfound-section {
  background: var(--white); min-height: 80vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 6rem 2rem; text-align: center;
}
.notfound-num {
  font-family: "Sora", sans-serif; font-weight: 800; color: rgba(23,26,31,0.07);
  font-size: clamp(8rem, 20vw, 18rem); line-height: 1; letter-spacing: -0.06em;
  user-select: none;
}
.notfound-title {
  font-family: "Sora", sans-serif; font-weight: 800; color: var(--brand-dark);
  font-size: clamp(2rem, 4vw, 3rem); text-transform: uppercase; letter-spacing: -0.04em;
  margin-bottom: 1rem;
}
.notfound-body {
  font-family: "Inter", sans-serif; font-size: 1rem; color: rgba(23,26,31,0.6);
  line-height: 1.7; margin-bottom: 2.5rem; max-width: 480px;
}
.notfound-cta {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--brand-dark); color: var(--white);
  font-family: "Sora", sans-serif; font-weight: 800; font-size: 1rem;
  padding: 18px 2.5rem; border: 4px solid var(--brand-dark);
  transition: background 0.2s;
}
.notfound-cta:hover { background: var(--brand-green); }

/* ─── Responsive grid helpers ────────────────────────────── */
.form-row {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }

/* ─── WHO WE ARE — Team Section ──────────────────────────── */
.wwa-team-section {
  background: var(--white);
  border-bottom: 4px solid var(--brand-dark);
  padding: 5rem 2rem;
}
@media (min-width: 1024px) { .wwa-team-section { padding: 7rem 4rem; } }

.wwa-team-inner {
  max-width: 1100px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.wwa-member {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .wwa-member { grid-template-columns: 200px 1fr; gap: 4rem; }
}

/* Photo / monogram */
.wwa-member-photo-wrap { display: flex; justify-content: center; }
@media (min-width: 768px) { .wwa-member-photo-wrap { justify-content: flex-start; } }

.wwa-member-photo {
  width: 180px; height: 180px;
  object-fit: cover;
  border: 4px solid var(--brand-dark);
}
.wwa-member-monogram {
  width: 180px; height: 180px;
  background: var(--brand-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: "Sora", sans-serif;
  font-weight: 800; font-size: 3rem;
  color: var(--brand-orange);
  letter-spacing: -0.04em;
  flex-shrink: 0;
}

/* Bio column */
.wwa-member-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.wwa-member-name {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--brand-dark);
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0 0 0.35rem;
}
.wwa-member-role {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-orange);
  margin: 0;
}
.wwa-member-location {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(23,26,31,0.5);
  letter-spacing: 0.05em;
  white-space: nowrap;
  padding-top: 6px;
}
.wwa-member-divider {
  height: 3px;
  background: var(--brand-orange);
  width: 48px;
  margin-bottom: 1.75rem;
}
.wwa-member-lead {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--brand-dark);
  line-height: 1.65;
  margin: 0 0 1.25rem;
}
.wwa-member-body {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: rgba(23,26,31,0.7);
  line-height: 1.8;
  margin: 0 0 1rem;
}
.wwa-member-closing {
  font-style: italic;
  color: rgba(23,26,31,0.55);
}
.wwa-member-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 2rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-dark);
  border-bottom: 2px solid var(--brand-dark);
  padding-bottom: 3px;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
}
.wwa-member-cta:hover { color: var(--brand-orange); border-color: var(--brand-orange); }
