@charset "UTF-8";
/*
Theme Name: AdellaDigital
Theme URI: https://adelladigital.com
Author: Adella Digital
Author URI: https://adelladigital.com
Description: A custom theme for Adella Digital, designed for professional digital services and modern web experiences.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: adelladigital
Tags: business, corporate, digital-agency, one-column, custom-colors, custom-menu, custom-logo, featured-images, accessibility-ready
*/
:root {
  --color-dark: #261D1D;
  --color-light: #FBFAFA;
  --color-matterhorn: #514747;
  --color-punch: #FF472E;
  --color-punch-a: #FF6952;
  --color-punch-b: #E92B13;
  --color-punch-c: #C91501;
  --color-linen: #FBF3EA;
  --color-linen-a: #E4DBD0;
  --color-linen-b: #C2B7AA;
  --color-linen-c: #A29486;
  --font-heading: Work Sans, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  --font-body: Helvetica Neue, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
  --font-mono: DM Mono, Courier New, monospace;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0;
  vertical-align: middle;
  color: var(--color-dark);
}

strong,
b {
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0;
}

a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  line-height: 23px;
  letter-spacing: 0;
  vertical-align: middle;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
}

p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0;
  vertical-align: middle;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-matterhorn);
}

h1 {
  font-weight: 500;
  font-size: 80px;
  line-height: 66px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

h2 {
  font-weight: 500;
  font-size: 46px;
  line-height: 54px;
}

h3 {
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
}

h4 {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
}

h5 {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
}

.super-text {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.btn-cta {
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-header {
  position: relative;
  z-index: 1000;
  background-color: #ffffff;
  border-bottom: 1px solid #e8e8e8;
}
.site-header .header-container {
  max-width: 1248px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  height: 70px;
}
@media (min-width: 768px) {
  .site-header .header-container {
    padding: 0 60px;
  }
}
.site-header .site-branding {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.site-header .site-branding .custom-logo-link {
  display: flex;
  align-items: center;
  padding: 0;
}
.site-header .site-branding .custom-logo-link img {
  height: 28px;
  width: auto;
  object-fit: contain;
}
.site-header .main-navigation {
  display: flex;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.site-header .main-navigation .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 40px;
}
.site-header .main-navigation .menu-item a {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 20px;
  line-height: 70px;
  color: var(--color-dark);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.site-header .main-navigation .menu-item a:hover {
  color: var(--color-punch);
}
.site-header .main-navigation .menu-item a .menu-number {
  display: none;
}
.site-header .header-cta {
  margin-left: auto;
  flex-shrink: 0;
}
.site-header .header-cta .btn-outline {
  display: inline-block;
  padding: 12px 36px;
  border: 1px solid var(--color-dark);
  border-radius: 50px;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-dark);
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.site-header .header-cta .btn-outline:hover {
  background-color: var(--color-dark);
  color: #ffffff;
}
.site-header .menu-toggle {
  display: none;
  align-items: center;
  background: none;
  border: none;
  padding: 5px;
  cursor: pointer;
  z-index: 999;
  margin-left: auto;
}
.site-header .menu-toggle .dots-menu {
  width: 35px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.site-header .menu-toggle .dots-menu span, .site-header .menu-toggle .dots-menu::before, .site-header .menu-toggle .dots-menu::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--color-punch);
}
.site-header .menu-close {
  display: none;
  position: absolute;
  top: 26px;
  right: 30px;
  background: transparent;
  border: 2px solid var(--color-matterhorn);
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.site-header .menu-close:hover {
  background-color: var(--color-matterhorn);
}
.site-header .menu-close:hover::before, .site-header .menu-close:hover::after {
  background-color: var(--color-light);
}
.site-header .menu-close::before, .site-header .menu-close::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: var(--color-matterhorn);
  transition: all 0.3s ease;
}
.site-header .menu-close::before {
  transform: rotate(45deg);
}
.site-header .menu-close::after {
  transform: rotate(-45deg);
}
.site-header .menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(38, 29, 29, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
}
.site-header .menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 1023px) {
  .site-header .menu-toggle {
    display: flex;
  }
  .site-header .header-cta {
    display: none;
  }
  .site-header .main-navigation {
    position: fixed;
    top: 0;
    right: -100%;
    left: auto;
    transform: none;
    width: 100%;
    max-width: 90%;
    height: 100vh;
    background-color: var(--color-light);
    padding: 100px 40px 40px;
    transition: right 0.3s ease, visibility 0s 0.3s;
    overflow-y: auto;
    z-index: 1001;
    visibility: hidden;
    box-sizing: border-box;
  }
}
@media (max-width: 1023px) and (min-width: 768px) {
  .site-header .main-navigation {
    max-width: 430px;
  }
}
@media (max-width: 1023px) {
  .site-header .main-navigation.is-open {
    right: 0;
    visibility: visible;
    transition: right 0.3s ease;
  }
  .site-header .main-navigation .menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .site-header .main-navigation .menu-item {
    margin: 0 0 30px 0;
  }
  .site-header .main-navigation .menu-item a {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    color: var(--color-matterhorn);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .site-header .main-navigation .menu-item a .menu-number {
    display: inline;
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--color-punch);
    min-width: 25px;
  }
  .site-header .menu-close {
    display: flex;
  }
}
.site-footer {
  background-color: #ffffff;
  padding: 60px 20px 40px;
}
@media (min-width: 768px) {
  .site-footer {
    padding: 80px 40px 50px;
  }
}

.footer-container {
  max-width: 1248px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
  }
}

.footer-logo {
  text-align: center;
}
@media (min-width: 1024px) {
  .footer-logo {
    text-align: left;
  }
}
.footer-logo .custom-logo-link {
  display: inline-block;
  text-decoration: none;
}
.footer-logo .custom-logo-link img {
  max-width: 294px;
  max-height: none;
  width: 100%;
  height: auto;
  object-fit: contain;
}
@media (min-width: 1024px) {
  .footer-logo .custom-logo-link img {
    max-width: 294px;
  }
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}
@media (min-width: 1024px) {
  .footer-content {
    align-items: flex-start;
    text-align: left;
  }
}

.footer-navigation .footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.footer-navigation .footer-menu li {
  margin: 0;
  padding: 0;
}
.footer-navigation .footer-menu a {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: var(--color-matterhorn);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-navigation .footer-menu a:hover {
  color: var(--color-punch);
}
.footer-navigation .footer-menu .current-menu-item a,
.footer-navigation .footer-menu .current_page_item a {
  color: var(--color-punch);
  font-weight: 500;
}

.footer-contact {
  margin-top: 8px;
}
.footer-contact p {
  margin: 0;
  font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: var(--color-dark);
}
.footer-contact .footer-contact-title {
  font-weight: 500;
}
.footer-contact .footer-contact-email a {
  color: var(--color-punch);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.footer-contact .footer-contact-email a:hover {
  opacity: 0.8;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  justify-content: center;
}
@media (min-width: 1024px) {
  .footer-social {
    justify-content: flex-start;
  }
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.footer-social a:hover {
  opacity: 0.7;
}
.footer-social a img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.footer-copyright {
  margin-top: 8px;
}
.footer-copyright p {
  margin: 0;
  font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  color: var(--color-matterhorn);
}

.footer-empty {
  display: none;
}
@media (min-width: 1024px) {
  .footer-empty {
    display: block;
  }
}

.custom-logo-link,
.site-logo {
  display: inline-block;
}
.custom-logo-link img,
.site-logo img {
  height: auto;
  max-height: 60px;
  width: auto;
  max-width: 100%;
  display: block;
}

.logo-light-bg .custom-logo,
.logo-light-bg .site-logo img {
  filter: none;
}

.site-header .custom-logo-link {
  padding: 0;
}
.site-header .custom-logo-link img {
  width: 118px;
  height: 30px;
  object-fit: contain;
}

.btn,
.cta {
  font-family: "DM Mono", "Courier New", monospace;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  border-radius: 20px;
  height: 44px;
  padding: 0 40px;
  border: 1px solid;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.btn-primary,
.wp-block-button.is-style-outline .wp-block-button__link {
  background-color: transparent;
  border-color: #514747;
  color: #514747;
}
.btn-primary:hover,
.wp-block-button.is-style-outline .wp-block-button__link:hover {
  background-color: #514747;
  color: #FBFAFA;
}

.btn-primary-flip {
  background-color: transparent;
  border-color: #FBFAFA;
  color: #FBFAFA;
}
.btn-primary-flip:hover {
  background-color: #FBFAFA;
  color: #261D1D;
}

.btn-secondary,
.wp-block-button.is-style-fill .wp-block-button__link,
.wp-block-button__link {
  background-color: #FF472E;
  border-color: #FF472E;
  color: #FBFAFA;
}
.btn-secondary:hover,
.wp-block-button.is-style-fill .wp-block-button__link:hover,
.wp-block-button__link:hover {
  background-color: #E92B13;
  border-color: #E92B13;
}

.btn-dropdown,
select.btn {
  background-color: transparent;
  border-color: #514747;
  color: #514747;
  padding: 10px 15px;
  text-align: left;
  width: 100%;
  max-width: 266px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.btn-dropdown::after,
select.btn::after {
  content: "▼";
  margin-left: 10px;
  font-size: 12px;
}

.btn-toggle,
.btn-accordion {
  width: 133px;
  height: 44px;
  border-radius: 40px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  transition: all 0.3s ease;
}
.btn-toggle.plus, .btn-toggle[aria-expanded=false],
.btn-accordion.plus,
.btn-accordion[aria-expanded=false] {
  background-color: #FF472E;
  color: #FBFAFA;
}
.btn-toggle.plus::before, .btn-toggle[aria-expanded=false]::before,
.btn-accordion.plus::before,
.btn-accordion[aria-expanded=false]::before {
  content: "+";
}
.btn-toggle.plus:hover, .btn-toggle[aria-expanded=false]:hover,
.btn-accordion.plus:hover,
.btn-accordion[aria-expanded=false]:hover {
  background-color: #E92B13;
}
.btn-toggle.minus, .btn-toggle[aria-expanded=true],
.btn-accordion.minus,
.btn-accordion[aria-expanded=true] {
  background-color: #514747;
  color: #FBFAFA;
}
.btn-toggle.minus::before, .btn-toggle[aria-expanded=true]::before,
.btn-accordion.minus::before,
.btn-accordion[aria-expanded=true]::before {
  content: "−";
}
.btn-toggle.minus:hover, .btn-toggle[aria-expanded=true]:hover,
.btn-accordion.minus:hover,
.btn-accordion[aria-expanded=true]:hover {
  opacity: 0.9;
}

.btn-large {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  width: auto;
  min-width: 256px;
  height: 65px;
  border-radius: 40px;
  padding: 0 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  background-color: #FBF3EA;
  border-color: #FBF3EA;
  color: #FF472E;
}
.btn-large:hover {
  background-color: #E4DBD0;
  border-color: #E4DBD0;
}

.icon-hamburger,
.hamburger-menu {
  width: 30px;
  height: 20px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
}
.icon-hamburger span,
.hamburger-menu span {
  display: block;
  width: 100%;
  height: 4px;
  background-color: #514747;
  transition: all 0.3s ease;
}
.icon-hamburger::before, .icon-hamburger::after,
.hamburger-menu::before,
.hamburger-menu::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background-color: #514747;
  transition: all 0.3s ease;
}

.icon-dots,
.dots-menu {
  width: 43px;
  height: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.icon-dots::before, .icon-dots::after,
.dots-menu::before,
.dots-menu::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #FF472E;
}
.icon-dots span,
.dots-menu span {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #FF472E;
}

.mobile-menu-toggle {
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
}
.mobile-menu-toggle .icon-hamburger,
.mobile-menu-toggle .hamburger-menu {
  margin: 0;
}

.error-404 {
  background-color: #514747;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 140px 20px 80px;
}
@media (min-width: 768px) {
  .error-404 {
    padding: 160px 40px 100px;
  }
}

.error-404__container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.error-404__code {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 120px;
  line-height: 1;
  color: #FF472E;
  margin: 0 0 24px 0;
}
@media (min-width: 768px) {
  .error-404__code {
    font-size: 180px;
  }
}
@media (min-width: 1024px) {
  .error-404__code {
    font-size: 240px;
  }
}

.error-404__title {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FBFAFA;
  margin: 0 0 24px 0;
}
@media (min-width: 768px) {
  .error-404__title {
    font-size: 48px;
  }
}
@media (min-width: 1024px) {
  .error-404__title {
    font-size: 64px;
  }
}

.error-404__description {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #FBFAFA;
  margin: 0 0 48px 0;
}
@media (min-width: 768px) {
  .error-404__description {
    font-size: 18px;
  }
}

.error-404__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* =========================================================
   AdellaInsight (v2) — scoped base
   Ported verbatim from the static assets/adellainsight/styles.css,
   scoped under .v2-site so it cannot collide with the existing
   Adella Digital theme styles (body/a/h1/.btn/.site-footer).
   ========================================================= */
html {
  scroll-behavior: smooth;
}

.v2-site {
  /* ---------- DESIGN TOKENS ---------- */
  --white: #ffffff;
  --paper: #FBF3EA; /* Linen light — primary page background */
  --espresso: #261d1d; /* Matterhorn darkest — text / dark sections */
  --muted: #514747; /* Matterhorn primary — secondary text */
  --red: #ff472e; /* Punch — brand red / accent / CTA fill */
  --red-ink: #E92B13; /* Punch deep — hover/pressed */
  --line: #DAD0C4; /* hairline on linen */
  --maxw: 1160px; /* content container width */
  --linen: #E4DBD0; /* Linen-A — alt section tone */
  --linen-primary: #FBF3EA;
  --punch: #FF472E;
  --punch-bright: #FF6952;
  --matterhorn: #514747;
  /* ---------- BASE ---------- */
  box-sizing: border-box;
  font-family: "Work Sans", system-ui, sans-serif;
  color: var(--espresso);
  background: var(--white);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.v2-site * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.v2-site a {
  color: inherit;
}
.v2-site .wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}
.v2-site {
  /* ---------- TYPOGRAPHY ---------- */
}
.v2-site h1, .v2-site h2, .v2-site h3, .v2-site h4, .v2-site h5, .v2-site h6 {
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-transform: none;
}
.v2-site h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}
.v2-site h2 {
  font-size: clamp(2rem, 4.4vw, 3.25rem);
}
.v2-site .dot {
  color: var(--red);
}
.v2-site .eyebrow {
  font-size: 0.8125rem;
  letter-spacing: 0.09em;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 18px;
}
.v2-site .lede {
  font-size: clamp(1.0625rem, 1.6vw, 1.3rem);
  color: var(--muted);
  max-width: 34ch;
  line-height: 1.55;
}
.v2-site .lede.wide {
  max-width: 50ch;
}
.v2-site .micro {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 14px;
}
.v2-site {
  /* ---------- BUTTONS (CTAs render in DM Mono ALL CAPS per brand) ---------- */
}
.v2-site .btn {
  display: inline-block;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  padding: 14px 26px;
  border-radius: 4px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.v2-site .btn-red, .v2-site .btn-ghost {
  font-family: "DM Mono", ui-monospace, monospace;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.82rem;
  font-weight: 500;
}
.v2-site .btn-red {
  background: var(--red);
  color: #fff;
}
.v2-site .btn-red:hover {
  background: var(--red-ink);
}
.v2-site .btn-ghost {
  background: transparent;
  color: var(--espresso);
  border-color: var(--espresso);
}
.v2-site .btn-ghost:hover {
  background: var(--espresso);
  color: #fff;
}
.v2-site .door {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
}
.v2-site .door:hover {
  color: var(--espresso);
  border-color: var(--espresso);
}
.v2-site .door .arw {
  color: var(--red);
}
.v2-site {
  /* ---------- SHARED SECTION CHROME ---------- */
}
.v2-site section {
  padding: clamp(72px, 10vw, 128px) 0;
}
.v2-site .paper {
  background: var(--paper);
}
.v2-site .rule {
  border: none;
  border-top: 1px solid var(--line);
}
.v2-site {
  /* ---------- NAV ---------- */
}
.v2-site nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.v2-site .navin {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
.v2-site .navlinks {
  display: flex;
  align-items: center;
  gap: 30px;
}
.v2-site .navlinks a {
  text-decoration: none;
  font-size: 0.95rem;
  color: var(--espresso);
}
.v2-site .navlinks a:hover {
  color: var(--red-ink);
}
.v2-site .navlinks a.muted {
  color: var(--muted);
}
.v2-site {
  /* ---------- BRAND LOCKUP (nav + footer) ---------- */
}
.v2-site .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.v2-site .brand-lockup {
  height: 26px;
  width: auto;
  display: block;
}
.v2-site .brandmark {
  height: 26px;
}
.v2-site .brandtext {
  font-weight: 500;
  font-size: 1.18rem;
  letter-spacing: -0.01em;
  color: var(--espresso);
}
.v2-site .brandsub {
  color: var(--muted);
  font-weight: 400;
}
.v2-site .flame {
  width: 16px;
  height: 20px;
  background: var(--red);
  clip-path: polygon(50% 0, 80% 38%, 68% 42%, 90% 70%, 70% 70%, 75% 100%, 25% 100%, 30% 70%, 10% 70%, 32% 42%, 20% 38%);
}
.v2-site {
  /* ---------- FOOTER ---------- */
}
.v2-site .site-footer {
  border-top: 1px solid var(--line);
  padding: 54px 0 30px;
  margin-top: 0;
}
.v2-site .foot-cols {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.v2-site .foot-brand .brandline {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: 1.1rem;
}
.v2-site .foot-brand p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 12px;
  max-width: 30ch;
}
.v2-site .foot-col h4 {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 14px;
}
.v2-site .foot-col a {
  display: block;
  text-decoration: none;
  color: var(--espresso);
  font-size: 0.95rem;
  margin-bottom: 10px;
}
.v2-site .foot-col a:hover {
  color: var(--red-ink);
}
.v2-site .foot-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid var(--line);
  margin-top: 42px;
  padding-top: 22px;
  color: var(--muted);
  font-size: 0.85rem;
}
.v2-site .footin {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 0.875rem;
}
.v2-site {
  /* ---------- SCROLL REVEAL (shared animation) ---------- */
}
.v2-site .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.v2-site .reveal.in {
  opacity: 1;
  transform: none;
}
.v2-site {
  /* ---------- FOCUS ---------- */
}
.v2-site a:focus-visible, .v2-site .btn:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

/* ---------- RESPONSIVE (shared) ---------- */
@media (max-width: 820px) {
  .v2-site .navlinks a:not(.btn) {
    display: none;
  }
}
@media (max-width: 760px) {
  .v2-site .foot-cols {
    grid-template-columns: 1fr 1fr;
  }
  .v2-site .foot-brand {
    grid-column: 1/-1;
  }
  .v2-site .navlinks {
    gap: 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .v2-site .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* =========================================================
   AdellaInsight (v2) — homepage / shared section archetypes
   hero, two-column split, figure slot, "turn" band, calc teaser,
   dark close band. Scoped under .v2-site. Ported from index.html.
   ========================================================= */
.v2-site {
  /* ---------- HERO (centered, SVG bg + radial scrim) ---------- */
}
.v2-site .hero {
  padding-top: clamp(72px, 10vw, 120px);
  padding-bottom: clamp(64px, 8vw, 104px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.v2-site .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #FBF3EA;
}
.v2-site .hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.62;
}
.v2-site .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 56% 64% at 50% 46%, #FBF3EA 0%, rgba(250, 248, 245, 0.86) 40%, rgba(250, 248, 245, 0.4) 72%, rgba(250, 248, 245, 0.1) 100%);
}
.v2-site .hero .wrap {
  position: relative;
  z-index: 1;
}
.v2-site .hero-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.v2-site .hero h1 {
  max-width: 18ch;
  margin: 0 auto;
  font-size: clamp(2.6rem, 6.5vw, 4.75rem);
}
.v2-site .hero .lede {
  margin: 24px auto 0;
  max-width: 58ch;
}
.v2-site .hero-cta {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
}
.v2-site .hero-door {
  margin-top: 26px;
}
.v2-site {
  /* interior hero variant: lower-opacity bg + slightly different scrim */
}
.v2-site .hero--interior .hero-bg img {
  opacity: 0.5;
}
.v2-site .hero--interior .hero-bg::after {
  background: radial-gradient(ellipse 58% 66% at 50% 48%, #FBF3EA 0%, rgba(250, 248, 245, 0.86) 40%, rgba(250, 248, 245, 0.4) 72%, rgba(250, 248, 245, 0.1) 100%);
}
.v2-site {
  /* ---------- TWO-COLUMN SPLIT ---------- */
}
.v2-site .split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.v2-site .copy h2 {
  margin-bottom: 18px;
}
.v2-site {
  /* ---------- FIGURE SLOT (product mockup) ---------- */
}
.v2-site .figslot {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.v2-site .figslot img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  background: #fff;
}
.v2-site .figslot figcaption {
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
  padding: 0 6px 2px;
}
.v2-site {
  /* ---------- STYLED PLACEHOLDER (no real screenshot) ---------- */
}
.v2-site .shot {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px;
  color: var(--muted);
  min-height: 300px;
}
.v2-site .shot .sid {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 10px;
}
.v2-site .shot .sname {
  font-size: 1.05rem;
  color: var(--espresso);
  font-weight: 500;
  max-width: 30ch;
}
.v2-site .shot .snote {
  font-size: 0.85rem;
  margin-top: 8px;
  max-width: 38ch;
}
.v2-site .shot.tall {
  min-height: 420px;
}
.v2-site {
  /* ---------- CENTERED STATEMENT BAND ("turn") ---------- */
}
.v2-site .turn {
  text-align: center;
}
.v2-site .turn h2 {
  max-width: 24ch;
  margin: 0 auto;
}
.v2-site .turn .lede {
  margin: 22px auto 0;
  text-align: center;
  max-width: 44ch;
}
.v2-site {
  /* ---------- CALC TEASER (homepage CTA to agencies calculator) ----------
     Renamed from static .calc to .calc-teaser to avoid colliding with the
     interactive .calc calculator grid on the agencies page. */
}
.v2-site .calc-teaser {
  text-align: center;
}
.v2-site .calc-teaser h2 {
  max-width: 20ch;
  margin: 0 auto 18px;
}
.v2-site .calc-teaser .lede {
  margin: 0 auto 28px;
  text-align: center;
  max-width: 44ch;
}
.v2-site {
  /* ---------- DARK CLOSE BAND ---------- */
}
.v2-site .close {
  text-align: center;
  background: var(--espresso);
  color: #fff;
}
.v2-site .close h2 {
  color: #fff;
  max-width: 18ch;
  margin: 0 auto;
}
.v2-site .close .lede {
  color: #bdb4ad;
  margin: 20px auto 0;
  text-align: center;
  max-width: 44ch;
}
.v2-site .close .eyebrow {
  color: #bdb4ad;
}
.v2-site .close .hero-cta {
  justify-content: center;
  margin-top: 32px;
}
.v2-site .close .micro {
  color: #bdb4ad;
}
.v2-site .close .btn-ghost {
  color: #fff;
  border-color: #fff;
}
.v2-site .close .btn-ghost:hover {
  background: #fff;
  color: var(--espresso);
}
.v2-site .close .door {
  color: #bdb4ad;
  border-color: rgba(255, 255, 255, 0.25);
}
.v2-site .close .door:hover {
  color: #fff;
  border-color: #fff;
}
.v2-site .close .door .arw {
  color: var(--red);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 820px) {
  .v2-site .split {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .v2-site .hero-bg img {
    opacity: 0.3;
  }
}
/* =========================================================
   AdellaInsight (v2) — shared block components used across
   interior pages (narrow text, stats grid, …). Scoped to .v2-site.
   ========================================================= */
.v2-site {
  /* ---------- NARROW TEXT COLUMN ---------- */
}
.v2-site .narrow {
  max-width: 720px;
}
.v2-site p.body {
  font-size: 1.06rem;
  color: var(--espresso);
  margin-bottom: 18px;
}
.v2-site p.body.m {
  color: var(--muted);
}
.v2-site {
  /* ---------- STATS GRID ---------- */
}
.v2-site .stats-head {
  margin: 0 auto 36px;
  text-align: center;
}
.v2-site .two {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 8px;
}
.v2-site .stat {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  background: var(--white);
}
.v2-site .stat .n {
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.v2-site .stat .l {
  font-size: 0.92rem;
  color: var(--muted);
  margin-top: 4px;
}
.v2-site {
  /* ---------- PILLARS ---------- */
}
.v2-site .pillars-head {
  margin: 0 auto 36px;
  text-align: center;
}
.v2-site .pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 8px;
}
.v2-site .pillar {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 26px 24px;
  background: var(--white);
}
.v2-site .pillar h3 {
  margin-bottom: 8px;
}
.v2-site .pillar p {
  font-size: 0.97rem;
  color: var(--muted);
}
.v2-site .pillar .k {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 12px;
}
.v2-site {
  /* ---------- LEAD CLAIM ---------- */
}
.v2-site .lead-claim {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  padding: clamp(26px, 4vw, 40px);
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.v2-site .lead-claim .badge {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 14px;
}
.v2-site {
  /* ---------- STANDARDS PILLS ---------- */
}
.v2-site .stds {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 22px;
}
.v2-site .std {
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  font-weight: 600;
  color: var(--espresso);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
}
.v2-site .std .d {
  color: var(--red);
}
.v2-site {
  /* ---------- FAQ (static show-all) ---------- */
}
.v2-site .faq {
  max-width: 780px;
  margin: 0 auto;
}
.v2-site .faq .item {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.v2-site .faq .item:last-child {
  border-bottom: 1px solid var(--line);
}
.v2-site .faq .q {
  font-weight: 600;
  margin-bottom: 7px;
}
.v2-site .faq .a {
  color: var(--muted);
  font-size: 0.97rem;
}
.v2-site .faq .a a {
  color: var(--red-ink);
}
.v2-site .confirm {
  color: var(--red-ink);
  font-weight: 500;
}

@media (max-width: 760px) {
  .v2-site .two {
    grid-template-columns: 1fr;
  }
  .v2-site .pillars {
    grid-template-columns: 1fr;
  }
}
/* =========================================================
   AdellaInsight (v2) — pricing-page block components.
   wedge, tiers, add-ons, comparison, trial split, enterprise.
   Scoped under .v2-site, ported from pricing.html.
   ========================================================= */
.v2-site {
  /* wedge pill (hero) */
}
.v2-site .wedge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 40px;
  padding: 7px 16px;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 26px;
}
.v2-site .wedge b {
  color: var(--espresso);
  font-weight: 600;
}
.v2-site {
  /* tiers */
}
.v2-site .tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 8px;
}
.v2-site .tier {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 26px 24px;
  background: var(--white);
  display: flex;
  flex-direction: column;
}
.v2-site .tier.feat {
  border: 2px solid var(--red);
}
.v2-site .tier .pop {
  align-self: flex-start;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--red-ink);
  background: #fdece9;
  border-radius: 4px;
  padding: 3px 9px;
  margin-bottom: 14px;
}
.v2-site .tier .tname {
  font-size: 1.05rem;
  font-weight: 600;
}
.v2-site .tier .tband {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 2px;
}
.v2-site .tier .price {
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 18px 0 2px;
}
.v2-site .tier .per {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 20px;
}
.v2-site .tier ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 0.95rem;
  color: var(--espresso);
  flex: 1;
}
.v2-site .tier li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
}
.v2-site .tier li .ic {
  color: var(--red);
  font-weight: 700;
  flex: none;
  line-height: 1.5;
}
.v2-site .tier li.off {
  color: var(--muted);
}
.v2-site .tier li.off .ic {
  color: var(--line);
}
.v2-site .tier .btn {
  margin-top: 24px;
  text-align: center;
}
.v2-site .anchor-note {
  text-align: center;
  max-width: 62ch;
  margin: 26px auto 0;
  font-size: 0.95rem;
  color: var(--muted);
}
.v2-site {
  /* add-ons */
}
.v2-site .addon {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 8px;
}
.v2-site .addon .card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  background: var(--white);
}
.v2-site .addon .ch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.v2-site .addon .tag {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 2px 8px;
}
.v2-site .addon h3 {
  margin-bottom: 6px;
}
.v2-site .addon p {
  font-size: 0.95rem;
  color: var(--muted);
}
.v2-site {
  /* comparison */
}
.v2-site .cmp {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 8px;
}
.v2-site .cmp .card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  background: var(--white);
}
.v2-site .cmp .card.us {
  border: 2px solid var(--red);
  background: var(--white);
}
.v2-site .cmp .who {
  font-weight: 600;
  margin-bottom: 4px;
}
.v2-site .cmp .basis {
  font-size: 0.8rem;
  color: var(--red-ink);
  margin-bottom: 14px;
}
.v2-site .cmp .basis.them {
  color: var(--muted);
}
.v2-site .cmp ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 0.92rem;
  color: var(--muted);
}
.v2-site .cmp li {
  line-height: 1.45;
}
.v2-site {
  /* trial split */
}
.v2-site .trial {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.v2-site .trial .pts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 18px;
}
.v2-site .trial .pts li {
  display: flex;
  gap: 10px;
  font-size: 1rem;
}
.v2-site .trial .pts .ic {
  color: var(--red);
  font-weight: 700;
}
.v2-site {
  /* enterprise */
}
.v2-site .ent {
  text-align: center;
  max-width: 60ch;
  margin: 0 auto;
}

@media (max-width: 860px) {
  .v2-site .tiers, .v2-site .cmp {
    grid-template-columns: 1fr;
  }
  .v2-site .addon {
    grid-template-columns: 1fr;
  }
  .v2-site .trial {
    grid-template-columns: 1fr;
  }
}
/* =========================================================
   AdellaInsight (v2) — agencies page: ROI calculator widget,
   objections grid, roadmap tag. Scoped under .v2-site.
   ========================================================= */
.v2-site .rtag {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-left: 10px;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 2px 7px;
  vertical-align: middle;
  white-space: nowrap;
}
.v2-site {
  /* ---- calculator ---- */
}
.v2-site .calc-head {
  text-align: center;
  max-width: 40ch;
  margin: 0 auto 46px;
}
.v2-site .calc {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
}
.v2-site .calc-inputs {
  padding: clamp(24px, 3vw, 38px);
  border-right: 1px solid var(--line);
}
.v2-site .calc-results {
  padding: clamp(24px, 3vw, 38px);
  background: var(--paper);
}
.v2-site .calc-inputs h3, .v2-site .calc-results h3 {
  font-size: 0.8125rem;
  letter-spacing: 0.09em;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 20px;
}
.v2-site .calc .field {
  margin-bottom: 16px;
}
.v2-site .calc .field label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.v2-site .calc .field input {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--espresso);
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--white);
}
.v2-site .calc .field input:focus {
  outline: 2px solid var(--red);
  outline-offset: 1px;
  border-color: var(--red);
}
.v2-site .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.v2-site details.assume {
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.v2-site details.assume summary {
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
  list-style: none;
}
.v2-site details.assume summary::-webkit-details-marker {
  display: none;
}
.v2-site details.assume summary::before {
  content: "+ ";
  color: var(--red);
  font-weight: 700;
}
.v2-site details.assume[open] summary::before {
  content: "– ";
}
.v2-site .assume-grid {
  margin-top: 14px;
}
.v2-site .assume-grid .field label {
  font-size: 0.82rem;
  color: var(--muted);
}
.v2-site .assume-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.5;
}
.v2-site .tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 26px;
}
.v2-site .tab {
  flex: 1;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 10px 6px 12px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}
.v2-site .tab:hover {
  color: var(--espresso);
}
.v2-site .tab.active {
  color: var(--espresso);
  border-bottom-color: var(--red);
}
.v2-site .tab:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}
.v2-site .panel {
  display: none;
}
.v2-site .panel.active {
  display: block;
}
.v2-site .metric {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.v2-site .metric:first-child {
  border-top: none;
  padding-top: 0;
}
.v2-site .metric .big {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.v2-site .metric .lab {
  font-size: 0.92rem;
  color: var(--muted);
  margin-top: 4px;
}
.v2-site .howfig {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  line-height: 1.5;
}
.v2-site .panel-cta {
  margin-top: 24px;
}
.v2-site {
  /* ---- objections ---- */
}
.v2-site .obj {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 12px;
}
.v2-site .obj .q {
  font-weight: 600;
  margin-bottom: 8px;
}
.v2-site .obj .a {
  color: var(--muted);
  font-size: 0.96rem;
}

@media (max-width: 860px) {
  .v2-site .calc {
    grid-template-columns: 1fr;
  }
  .v2-site .calc-inputs {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .v2-site .obj {
    grid-template-columns: 1fr;
  }
}
/* =========================================================
   AdellaInsight (v2) — contact page (form + direct routes).
   Scoped under .v2-site, ported from contact.html.
   ========================================================= */
.v2-site .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.v2-site .eyebrow2 {
  font-size: 0.8125rem;
  letter-spacing: 0.09em;
  color: var(--muted);
  font-weight: 500;
  margin: 0 0 16px;
}
.v2-site .formcard {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: clamp(24px, 3vw, 34px);
  background: var(--white);
}
.v2-site .routes {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}
.v2-site .route {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px 20px;
}
.v2-site .route .t {
  font-weight: 600;
}
.v2-site .route .d {
  font-size: 0.95rem;
  color: var(--muted);
  margin-top: 3px;
}
.v2-site .route a {
  color: var(--red-ink);
  text-decoration: none;
}
.v2-site .note {
  font-size: 0.85rem;
  color: var(--red-ink);
  margin-top: 18px;
}
.v2-site {
  /* native form fields (fallback if a non-Jotform form is used) */
}
.v2-site .field {
  margin-bottom: 16px;
}
.v2-site .field label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.v2-site .field input, .v2-site .field select, .v2-site .field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--espresso);
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}
.v2-site .field textarea {
  min-height: 120px;
  resize: vertical;
}
.v2-site .field input:focus, .v2-site .field select:focus, .v2-site .field textarea:focus {
  outline: 2px solid var(--red);
  outline-offset: 1px;
  border-color: var(--red);
}

@media (max-width: 760px) {
  .v2-site .grid {
    grid-template-columns: 1fr;
  }
}
/* =========================================================
   AdellaInsight (v2) — legal document (.doc) pages.
   Ported from the static privacy/terms/cookie/data-processing
   inline styles, scoped under .v2-site .doc.
   ========================================================= */
.v2-site section.legal {
  padding: 40px 0 70px;
}
.v2-site .doc {
  max-width: 760px;
  margin: 0 auto;
}
.v2-site .doc h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.v2-site .doc h2 {
  font-size: 1.3rem;
  font-weight: 500;
  margin: 34px 0 10px;
  letter-spacing: -0.01em;
}
.v2-site .doc h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 20px 0 8px;
}
.v2-site .doc p, .v2-site .doc li {
  color: var(--espresso);
  margin-bottom: 12px;
}
.v2-site .doc .muted {
  color: var(--muted);
}
.v2-site .doc ul {
  padding-left: 22px;
  margin-bottom: 12px;
}
.v2-site .doc a {
  color: var(--red-ink);
}

/* =========================================================
   AdellaInsight (v2) — per-page typographic overrides.
   Each static page hand-tuned its heading clamps / section
   rhythm; reproduced here under a body.v2-page-{slug} scope.
   ========================================================= */
/* ---------- ABOUT ---------- */
body.v2-page-about .v2-site section {
  padding: clamp(56px, 7vw, 96px) 0;
}
body.v2-page-about .v2-site h1 {
  font-size: clamp(2.3rem, 5vw, 3.7rem);
}
body.v2-page-about .v2-site h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
}
body.v2-page-about .v2-site h3 {
  font-size: 1.1rem;
}
body.v2-page-about .v2-site .hero {
  padding-top: clamp(52px, 6vw, 84px);
}
body.v2-page-about .v2-site .hero .lede {
  max-width: 54ch;
}
body.v2-page-about .v2-site .close h2 {
  max-width: 22ch;
}

/* ---------- SECURITY ---------- */
body.v2-page-security .v2-site section {
  padding: clamp(56px, 7vw, 96px) 0;
}
body.v2-page-security .v2-site h1 {
  font-size: clamp(2.3rem, 5vw, 3.6rem);
}
body.v2-page-security .v2-site h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
}
body.v2-page-security .v2-site h3 {
  font-size: 1.1rem;
}
body.v2-page-security .v2-site .narrow {
  max-width: 780px;
}
body.v2-page-security .v2-site .hero {
  padding-top: clamp(52px, 6vw, 84px);
}
body.v2-page-security .v2-site .hero .lede {
  max-width: 52ch;
}
body.v2-page-security .v2-site .close h2 {
  max-width: 22ch;
}

/* ---------- PRICING ---------- */
body.v2-page-pricing .v2-site section {
  padding: clamp(56px, 7vw, 96px) 0;
}
body.v2-page-pricing .v2-site h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.9rem);
}
body.v2-page-pricing .v2-site h2 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
}
body.v2-page-pricing .v2-site h3 {
  font-size: 1.15rem;
}
body.v2-page-pricing .v2-site .hero {
  padding-top: clamp(52px, 6vw, 84px);
  padding-bottom: clamp(40px, 5vw, 64px);
}
body.v2-page-pricing .v2-site .hero .lede {
  max-width: 50ch;
}
body.v2-page-pricing .v2-site .close h2 {
  max-width: 20ch;
}

/* ---------- CONTACT ---------- */
body.v2-page-contact-us .v2-site section {
  padding: clamp(56px, 7vw, 90px) 0;
}
body.v2-page-contact-us .v2-site h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.3rem);
}

/* ---------- AGENCIES ---------- */
body.v2-page-agencies .v2-site section {
  padding: clamp(64px, 8vw, 110px) 0;
}
body.v2-page-agencies .v2-site h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
}
body.v2-page-agencies .v2-site h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
}
body.v2-page-agencies .v2-site .hero {
  padding-top: clamp(56px, 7vw, 92px);
}
body.v2-page-agencies .v2-site .hero .lede {
  max-width: 54ch;
}
body.v2-page-agencies .v2-site .close h2 {
  max-width: 20ch;
}
body.v2-page-agencies .v2-site .shot {
  min-height: 280px;
}

/* Add your custom styles below */
