/*
Theme Name: Hello Elementor Child
Theme URI: https://www.constructsupport.com.au
Description: ConstructSupport Australia child theme for Hello Elementor
Author: ConstructSupport Australia
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
*/

:root {
  --csa-orange: #f35412;
  --csa-orange-dark: #d4470e;
  --csa-ink: #0d1225;
  --csa-charcoal: #353233;
  --csa-slate: #11151a;
  --csa-muted: #758696;
  --csa-lime: #c6fb50;
  --csa-light: #e1e4ed;
  --csa-bg: #f7f8fb;
  --csa-white: #ffffff;
  --csa-radius: 16px;
  --csa-shadow: 0 12px 40px rgba(13, 18, 37, 0.12);
  --csa-font: "Montserrat", system-ui, -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--csa-font);
  color: var(--csa-charcoal);
  background: var(--csa-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}

img,
video {
  max-width: 100%;
  height: auto;
}

iframe {
  max-width: 100%;
}

.elementor-widget-html,
.elementor-widget-container {
  max-width: 100%;
  overflow: visible;
}

.csa-wrap {
  width: min(80rem, calc(100% - 48px));
  margin-inline: auto;
  max-width: 100%;
}

.csa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  text-decoration: none !important;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  border: 2px solid transparent;
}

.csa-btn:hover {
  transform: translateY(-1px);
}

.csa-btn--primary {
  background: var(--csa-orange);
  color: var(--csa-white) !important;
  box-shadow: 0 8px 24px rgba(243, 84, 18, 0.35);
}

.csa-btn--primary:hover {
  background: var(--csa-orange-dark);
}

.csa-btn--white {
  background: var(--csa-white);
  color: var(--csa-orange) !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  border-radius: 999px;
  padding: 15px 30px;
  font-size: 15px;
  font-weight: 700;
}

.csa-btn--white:hover {
  background: #fff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.csa-btn--header {
  background: var(--csa-white);
  color: var(--csa-orange) !important;
  box-shadow: none;
  border: 0;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.csa-btn--header:hover {
  background: var(--csa-orange);
  color: var(--csa-white) !important;
  transform: none;
}

html.csa-nav-lock,
html.csa-nav-lock body {
  overflow: hidden;
}

.csa-accent {
  color: var(--csa-orange);
}

.csa-btn--ghost {
  background: transparent;
  color: var(--csa-white) !important;
  border-color: rgba(255, 255, 255, 0.55);
}

.csa-btn--ghost-dark {
  background: transparent;
  color: var(--csa-ink) !important;
  border-color: var(--csa-ink);
}

.csa-btn--lime {
  background: var(--csa-lime);
  color: var(--csa-ink) !important;
}

.csa-kicker {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--csa-orange);
  margin-bottom: 14px;
  background: rgba(243, 84, 18, 0.12);
  padding: 6px 12px;
  border-radius: 999px;
}

.csa-h1,
.csa-h2,
.csa-h3 {
  overflow-wrap: break-word;
  word-break: normal;
}

.csa-h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
}

.csa-h2 {
  font-size: clamp(1.5rem, 3.2vw, 2.5rem);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.csa-h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.3;
}

.csa-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--csa-muted);
  margin: 0 0 24px;
  max-width: 62ch;
}

.csa-section {
  padding: 88px 0;
}

.csa-section--dark {
  background:
    radial-gradient(1200px 420px at 100% -10%, rgba(243, 84, 18, 0.22), transparent 55%),
    var(--csa-ink);
  color: var(--csa-white);
  position: relative;
  overflow: hidden;
}

.csa-section--dark .csa-lead,
.csa-section--dark .csa-muted {
  color: rgba(255, 255, 255, 0.72);
}

.csa-section--tint {
  background: var(--csa-bg);
}

.csa-grid {
  display: grid;
  gap: 24px;
}

.csa-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.csa-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.csa-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.csa-card {
  position: relative;
  background: var(--csa-white);
  border-radius: var(--csa-radius);
  padding: 28px;
  box-shadow: var(--csa-shadow);
  border: 1px solid rgba(13, 18, 37, 0.06);
  height: 100%;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.csa-card:not(.csa-blog-card)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--csa-orange), #ffb347);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.csa-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(13, 18, 37, 0.14);
}

.csa-card:hover::before {
  opacity: 1;
}

.csa-card--dark {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
  color: var(--csa-white);
}

.csa-card p {
  margin: 0;
  color: var(--csa-muted);
  line-height: 1.65;
}

.csa-card--dark p {
  color: rgba(255, 255, 255, 0.72);
}

.csa-hero {
  position: relative;
  min-height: 72vh;
  min-height: 72dvh;
  max-height: 820px;
  display: flex;
  align-items: center;
  color: var(--csa-white);
  background: #0a0c12;
  overflow: hidden;
}

/* Home matches live site: full-viewport team photo, faces in frame */
body.home .csa-hero,
body.front-page .csa-hero {
  min-height: 100vh;
  min-height: 100svh;
  height: 100svh;
  max-height: none;
}

.csa-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 1;
}

body.home .csa-hero__bg,
body.front-page .csa-hero__bg {
  background-position: 50% 58%;
}

.csa-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 10, 16, 0.72) 0%, rgba(8, 10, 16, 0.38) 38%, rgba(8, 10, 16, 0.08) 62%, transparent 100%),
    linear-gradient(180deg, rgba(8, 10, 16, 0.35) 0%, transparent 20%, transparent 78%, rgba(8, 10, 16, 0.28) 100%);
}

body.home .csa-hero__overlay,
body.front-page .csa-hero__overlay {
  background: rgba(0, 0, 0, 0.56);
}

.csa-hero__content {
  position: relative;
  z-index: 1;
  padding: 100px 0 48px;
  width: 100%;
}

.csa-hero--inner {
  min-height: 100vh;
  min-height: 100svh;
  height: auto;
  max-height: none;
  display: flex;
  align-items: center;
}

.csa-hero--inner .csa-hero__bg {
  background-position: 50% 58%;
}

.csa-hero--inner .csa-hero__overlay {
  background: rgba(0, 0, 0, 0.56);
}

.csa-hero--inner .csa-hero__content {
  width: min(80rem, calc(100% - 64px));
  margin-inline: auto;
  padding: 120px 0 64px;
  display: flex;
  align-items: center;
  min-height: 0;
}

.csa-hero__copy {
  max-width: min(720px, 100%);
}

.csa-hero--inner .csa-hero__copy .csa-h1 {
  max-width: min(22ch, 100%);
}

.csa-hero__lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.55;
  margin: 0 0 28px;
  max-width: 58ch;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.35);
}

body.home .csa-hero__content,
body.front-page .csa-hero__content {
  padding: 96px 0 48px;
  display: flex;
  align-items: center;
  min-height: 100%;
}

.csa-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 560px);
  gap: 40px;
  align-items: center;
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

.csa-hero__copy .csa-h1 {
  max-width: min(16ch, 100%);
  margin: 0 0 28px;
  font-size: clamp(2rem, 6vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: #fff;
  overflow-wrap: break-word;
  word-break: normal;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.csa-hero__copy .csa-actions {
  margin-top: 0;
}

.csa-hero__media {
  width: 100%;
  max-width: 560px;
  justify-self: end;
}

.csa-video {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.55);
  background: #000;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.csa-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.csa-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.csa-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #fff !important;
  text-decoration: none !important;
  opacity: 0.92;
}

.csa-icon-link:hover {
  opacity: 1;
  color: var(--csa-lime) !important;
}

.csa-icon-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.csa-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.csa-media {
  width: 100%;
  border-radius: var(--csa-radius);
  object-fit: cover;
  display: block;
  box-shadow: var(--csa-shadow);
}

.csa-stat {
  text-align: center;
  padding: 32px 20px;
}

.csa-stat__num {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: var(--csa-orange);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.04em;
}

.csa-faq details {
  background: var(--csa-white);
  border-radius: 14px;
  padding: 18px 22px;
  margin-bottom: 12px;
  border: 1px solid rgba(13, 18, 37, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  overflow: visible;
}

.csa-faq details[open] {
  border-color: rgba(243, 84, 18, 0.28);
  box-shadow: 0 10px 28px rgba(243, 84, 18, 0.08);
}

.csa-faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  overflow-wrap: break-word;
  word-break: normal;
}

.csa-faq summary::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(243, 84, 18, 0.12);
  color: var(--csa-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  margin-top: 2px;
}

.csa-faq summary::-webkit-details-marker {
  display: none;
}

.csa-faq details[open] summary {
  color: var(--csa-orange);
  margin-bottom: 10px;
}

.csa-faq details[open] summary::after {
  content: "–";
}

.csa-faq p {
  margin: 0;
  color: var(--csa-muted);
  line-height: 1.65;
  overflow-wrap: break-word;
  word-break: normal;
}

.csa-faq-wrap .csa-h2,
.csa-faq-wrap .csa-lead {
  max-width: 46rem;
}

.csa-quote {
  position: relative;
  background: var(--csa-white);
  border-radius: var(--csa-radius);
  padding: 36px 32px 28px 76px;
  box-shadow: var(--csa-shadow);
}

.csa-quote::before {
  content: "“";
  position: absolute;
  left: 22px;
  top: 6px;
  font-size: 72px;
  line-height: 1;
  color: var(--csa-orange);
  opacity: 0.35;
  font-family: Georgia, "Times New Roman", serif;
}

.csa-quote p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 16px;
}

.csa-quote cite {
  font-style: normal;
  font-weight: 700;
  color: var(--csa-orange);
}

/* Header — fixed so it stays above the full-bleed hero */
.csa-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100000;
  background: rgba(13, 16, 22, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.csa-header::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent);
  opacity: 0.6;
}

body.home .csa-header,
body.front-page .csa-header {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
}

body:not(.home):not(.front-page) .csa-header {
  background: rgba(17, 21, 26, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.home .csa-header.is-scrolled,
body.front-page .csa-header.is-scrolled,
body.home .csa-header.is-open,
body.front-page .csa-header.is-open,
.csa-header.is-scrolled {
  background: rgba(17, 21, 26, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.csa-header.is-open::after {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  top: 80px;
  bottom: 0;
  background: rgba(8, 10, 14, 0.55);
  z-index: -1;
}

.csa-header__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 80px;
  flex-wrap: nowrap;
  width: min(80rem, calc(100% - 48px));
  margin-inline: auto;
}

.csa-logo {
  flex-shrink: 0;
}

.csa-logo img {
  height: 46px;
  width: auto;
  display: block;
  max-width: 210px;
  object-fit: contain;
}

body.home .csa-logo img,
body.front-page .csa-logo img {
  height: 46px;
  max-width: 210px;
}

.csa-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
  flex-wrap: nowrap;
  min-width: 0;
}

.csa-nav > a {
  position: relative;
  color: rgba(255, 255, 255, 0.86) !important;
  text-decoration: none !important;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 0;
}

.csa-nav > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--csa-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.csa-nav > a:hover,
.csa-nav > a.is-active {
  color: #fff !important;
}

.csa-nav > a:hover::after,
.csa-nav > a.is-active::after {
  transform: scaleX(1);
}

.csa-nav__panel {
  display: none;
}

.csa-header-phone {
  color: #fff !important;
  text-decoration: none !important;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.csa-header-phone:hover {
  color: var(--csa-orange) !important;
}

.csa-nav-toggle {
  display: none !important;
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  cursor: pointer;
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
}

.csa-nav-toggle:focus,
.csa-nav-toggle:focus-visible {
  outline: none;
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.4);
}

.csa-nav-toggle span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 16px;
  height: 2px;
  margin: -1px 0 0 -8px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.csa-nav-toggle span:nth-child(1) {
  transform: translateY(-5px);
}

.csa-nav-toggle span:nth-child(3) {
  transform: translateY(5px);
}

.csa-header.is-open .csa-nav-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.csa-header.is-open .csa-nav-toggle span:nth-child(2) {
  opacity: 0;
}

.csa-header.is-open .csa-nav-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.csa-header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-shrink: 0;
  margin-left: auto;
}

.csa-header-actions .csa-btn {
  padding: 12px 22px;
  font-size: 13px;
  white-space: nowrap;
}

.csa-header-actions .csa-icon-link {
  display: none !important;
}

@media (min-width: 981px) {
  body.home .csa-header__inner,
  body.front-page .csa-header__inner,
  .csa-header__inner {
    justify-content: flex-start;
  }

  body.home .csa-header-actions,
  body.front-page .csa-header-actions {
    margin-left: auto;
  }

  .csa-nav-toggle,
  body.home .csa-nav-toggle,
  body.front-page .csa-nav-toggle {
    display: none !important;
  }
}

/* Footer */
.csa-footer {
  background: var(--csa-slate);
  color: rgba(255, 255, 255, 0.85);
  padding: 72px 0 28px;
}

.csa-footer a {
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none !important;
}

.csa-footer a:hover {
  color: var(--csa-lime) !important;
}

.csa-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.csa-footer h4 {
  color: #fff;
  margin: 0 0 16px;
  font-size: 16px;
}

.csa-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.csa-footer li {
  margin-bottom: 10px;
}

.csa-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}

.csa-newsletter {
  margin-top: 18px;
}

.csa-newsletter .wpcf7 {
  margin: 0;
}

.csa-newsletter .wpcf7-form {
  margin: 0;
}

.csa-newsletter .wpcf7-form > p {
  margin: 0;
}

.csa-newsletter__bar,
.csa-newsletter .wpcf7-form > p {
  display: flex;
  align-items: stretch;
  gap: 6px;
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 5px 5px 5px 16px;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.csa-newsletter__bar:focus-within,
.csa-newsletter .wpcf7-form > p:focus-within {
  border-color: rgba(243, 84, 18, 0.7);
  box-shadow: 0 0 0 3px rgba(243, 84, 18, 0.18);
}

.csa-newsletter .wpcf7-form-control-wrap {
  flex: 1 1 auto;
  min-width: 0;
  display: block;
}

.csa-newsletter input[type="email"] {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 10px 8px 10px 0;
  border-radius: 0;
  font: inherit;
  font-size: 14px;
  line-height: 1.3;
  outline: none;
  box-shadow: none;
}

.csa-newsletter input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.csa-newsletter .wpcf7-submit {
  flex: 0 0 auto;
  background: var(--csa-orange);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 11px 20px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(243, 84, 18, 0.28);
}

.csa-newsletter .wpcf7-submit:hover {
  background: var(--csa-orange-dark);
}

.csa-newsletter .wpcf7-spinner {
  display: none;
}

.csa-newsletter .wpcf7-not-valid-tip,
.csa-newsletter .wpcf7-response-output {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.4;
}

.csa-form .wpcf7-submit {
  background: var(--csa-orange);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  cursor: pointer;
}

.csa-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.csa-form input[type="text"],
.csa-form input[type="email"],
.csa-form input[type="tel"],
.csa-form textarea {
  width: 100%;
  border: 1px solid #d5dae4;
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 16px;
  font: inherit;
}

.csa-list {
  margin: 0;
  padding-left: 18px;
  color: var(--csa-muted);
  line-height: 1.7;
}

.csa-list li {
  margin-bottom: 8px;
}

.csa-price {
  position: relative;
  border: 1px solid rgba(13, 18, 37, 0.08);
  border-radius: 20px;
  padding: 32px 28px 28px;
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.csa-price--featured {
  border-color: var(--csa-orange);
  box-shadow: 0 20px 50px rgba(243, 84, 18, 0.16);
  transform: translateY(-8px);
  background: linear-gradient(180deg, #fff7f2 0%, #fff 32%);
  padding-top: 40px;
}

.csa-price--featured::before {
  content: "Most popular";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--csa-orange);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.csa-price .csa-btn {
  margin-top: auto;
}

.csa-price .csa-kicker {
  margin-bottom: 8px;
}

.csa-split {
  align-items: center;
}

.csa-figure {
  margin: 0;
}

.csa-figure img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

.csa-figure--inset {
  width: min(1180px, calc(100% - 40px));
  margin: -56px auto 0;
  position: relative;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(13, 18, 37, 0.28);
}

.csa-figure--inset img {
  max-height: 420px;
}

.csa-pullquote {
  margin: 28px 0 0;
  padding: 28px 28px 24px;
  background: var(--csa-bg);
  border-left: 4px solid var(--csa-orange);
  border-radius: 0 16px 16px 0;
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--csa-ink);
}

.csa-pullquote p {
  margin: 0;
}

.csa-pullquote cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-weight: 700;
  color: var(--csa-orange);
  font-size: 0.92rem;
}

.csa-section--dark .csa-pullquote {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.csa-section--dark .csa-pullquote cite {
  color: var(--csa-lime);
}

.csa-checks {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.csa-checks li {
  position: relative;
  padding: 16px 18px 16px 54px;
  margin-bottom: 10px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(13, 18, 37, 0.06);
  font-weight: 600;
  color: var(--csa-ink);
  line-height: 1.45;
  box-shadow: 0 8px 24px rgba(13, 18, 37, 0.05);
}

.csa-checks li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--csa-orange);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  display: grid;
  place-items: center;
  line-height: 1;
}

.csa-photo-pair {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: end;
}

.csa-photo-pair img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--csa-radius);
  box-shadow: var(--csa-shadow);
}

.csa-photo-pair img:last-child {
  height: 340px;
  margin-bottom: 40px;
}

.csa-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 48px);
  align-items: stretch;
}

.csa-editorial--copy-first {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.csa-editorial__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.csa-editorial__media {
  min-height: 32rem;
  height: 100%;
  overflow: hidden;
  border-radius: 0.6rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

img.csa-shot,
.csa-shot {
  width: 100%;
  height: 100%;
  min-height: 32rem;
  max-height: none;
  object-fit: cover;
  object-position: center;
  border-radius: 0.6rem;
  display: block;
}

.csa-editorial__media .csa-shot {
  min-height: 100%;
  border-radius: 0;
  box-shadow: none;
}

.csa-editorial__copy .csa-lead {
  max-width: none;
}

.csa-editorial__copy .csa-h2 {
  margin-top: 0;
}

.csa-editorial .csa-pullquote {
  background: transparent;
  border-left: 3px solid var(--csa-orange);
  border-radius: 0;
  padding: 4px 0 4px 20px;
}

.csa-editorial .csa-checks li,
.csa-benefit-copy .csa-checks li {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 10px 0 10px 40px;
  border-radius: 0;
  margin-bottom: 2px;
}

.csa-editorial .csa-checks li::before,
.csa-benefit-copy .csa-checks li::before {
  left: 0;
  width: 22px;
  height: 22px;
  font-size: 12px;
}

.csa-benefit-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 48px);
  align-items: stretch;
}

.csa-benefit-row .csa-editorial__media {
  min-height: 28rem;
}

.csa-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.csa-gallery .csa-editorial__media {
  min-height: 0;
  aspect-ratio: 1;
  height: auto;
}

.csa-gallery .csa-shot {
  min-height: 0;
  aspect-ratio: 1;
  height: 100%;
}

.csa-benefit-row + .csa-benefit-row {
  margin-top: 56px;
}

.csa-benefit-copy .csa-checks {
  margin-top: 18px;
}

.csa-event-feature {
  text-align: center;
  padding: 56px 40px;
}

.csa-event-feature .csa-lead {
  margin-inline: auto;
  max-width: 62ch;
}

.csa-event-feature .csa-actions {
  justify-content: center;
  margin-top: 24px;
}

.csa-price .csa-checks {
  margin: 8px 0 16px;
}

.csa-price .csa-checks li {
  padding: 10px 12px 10px 44px;
  font-size: 0.9rem;
  box-shadow: none;
  margin-bottom: 6px;
}

.csa-price .csa-checks li::before {
  width: 22px;
  height: 22px;
  left: 12px;
  font-size: 11px;
}

.csa-section[id] {
  scroll-margin-top: 96px;
}

.csa-section--dark .csa-newsletter {
  text-align: left;
}

.csa-note {
  margin: 16px 0 0;
  color: var(--csa-muted);
  line-height: 1.7;
}

.csa-steps {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.csa-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  background: var(--csa-white);
  border: 1px solid rgba(13, 18, 37, 0.06);
  border-left: 4px solid var(--csa-orange);
  border-radius: var(--csa-radius);
  padding: 28px;
  box-shadow: var(--csa-shadow);
}

.csa-step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--csa-orange);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.csa-step h3 {
  margin-top: 0;
}

.csa-step .csa-list {
  margin-top: 12px;
}

.csa-partners {
  margin-top: 28px;
}

.csa-partner {
  text-align: center;
  min-height: 100%;
}

.csa-partner img {
  height: 56px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  margin: 0 auto 16px;
  display: block;
}

.csa-cta-band {
  text-align: left;
}

.csa-cta-band .csa-lead {
  max-width: 70ch;
}

.csa-quote--feature {
  max-width: 820px;
  padding: 40px 36px 32px 80px;
  border-left: 4px solid var(--csa-orange);
}

.csa-section--dark .csa-quote {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
  color: #fff;
}

.csa-section--dark .csa-quote p {
  color: rgba(255, 255, 255, 0.9);
}

.csa-section--dark .csa-quote cite {
  color: var(--csa-lime);
}

.csa-benefit {
  margin-bottom: 0;
}

.csa-benefit + .csa-benefit {
  margin-top: 0;
}

.csa-contact-aside .csa-card {
  margin-bottom: 16px;
}

.csa-contact-aside .csa-card:last-child {
  margin-bottom: 0;
}

.csa-contact {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 28px;
  align-items: start;
  margin-top: 32px;
}

.csa-contact .csa-card,
.csa-contact-aside .csa-card,
.csa-form.csa-card {
  height: auto;
  overflow: visible;
}

.csa-contact-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.csa-contact-aside .csa-card {
  margin-bottom: 0;
}

.csa-contact-card {
  text-decoration: none !important;
  color: inherit;
}

.csa-contact-card .csa-kicker {
  margin-bottom: 10px;
}

.csa-contact-card p {
  margin: 0 0 12px;
  color: var(--csa-muted);
}

.csa-contact-card strong {
  display: block;
  color: var(--csa-orange);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.csa-form .csa-lead {
  max-width: none;
  margin-bottom: 20px;
}

.csa-blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
}

.csa-meta {
  font-size: 13px;
  color: var(--csa-muted);
  margin-bottom: 8px;
}

.csa-stub {
  min-height: 50vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 20px;
  background: var(--csa-bg);
}

.csa-article {
  max-width: 820px;
  margin-inline: auto;
}

.csa-article .csa-h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.csa-article__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  margin: 24px 0 28px;
  display: block;
}

.csa-blog-index {
  padding: 132px 0 48px;
  background: #fff;
}

.csa-blog-index__intro {
  text-align: center;
  max-width: 46rem;
  margin: 0 auto 56px;
}

.csa-blog-index__intro .csa-h1 {
  max-width: min(16ch, 100%);
  margin-left: auto;
  margin-right: auto;
  color: var(--csa-ink);
  overflow-wrap: normal;
  word-break: normal;
}

.csa-blog-index__intro .csa-lead {
  margin: 0 auto;
  max-width: 42rem;
}

.csa-blog-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 2rem;
  align-items: stretch;
}

.csa-blog-featured__side {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.csa-blog-feature {
  display: block;
  text-decoration: none !important;
  color: inherit;
}

.csa-blog-feature__media img {
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.csa-blog-feature--primary .csa-blog-feature__media img {
  aspect-ratio: 3 / 2;
}

.csa-blog-feature--grid .csa-blog-feature__media img {
  aspect-ratio: 16 / 9;
}

.csa-blog-feature__card,
.csa-blog-feature--text {
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  padding: 2rem 1.75rem 1.75rem;
  position: relative;
  z-index: 1;
}

.csa-blog-feature--primary .csa-blog-feature__card {
  width: 95%;
  margin: -12% 0 0 16px;
}

.csa-blog-feature--grid .csa-blog-feature__card {
  width: 95%;
  margin: -12% 0 0 16px;
}

.csa-blog-feature--text {
  border: 1px solid #e1e4ed;
  box-shadow: none;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.csa-blog-feature__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.92rem;
  color: var(--csa-muted);
}

.csa-blog-pill {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(315deg, var(--csa-orange), #ff8a4a);
  color: #fff;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
}

.csa-blog-feature__title {
  margin: 18px 0 0;
  font-size: 1.35rem;
  line-height: 1.3;
  font-weight: 800;
  color: var(--csa-ink);
}

.csa-blog-feature--grid .csa-blog-feature__title {
  font-size: 1.2rem;
}

.csa-blog-feature:hover .csa-blog-feature__title {
  color: var(--csa-orange);
}

.csa-blog-latest__head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 40px;
}

.csa-blog-latest__head .csa-lead {
  margin: 0;
}

.csa-blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px 32px;
}

@media (max-width: 900px) {
  .csa-blog-featured,
  .csa-blog-grid,
  .csa-blog-latest__head {
    grid-template-columns: 1fr;
  }

  .csa-blog-feature--primary .csa-blog-feature__card,
  .csa-blog-feature--grid .csa-blog-feature__card {
    width: auto;
    margin: -10% 12px 0;
  }
}

/* Blog archive */
.archive .page-header,
.blog .page-header {
  display: none;
}

.blog .site-main,
.archive .site-main {
  width: 100%;
  margin: 0;
  display: block;
}

@media (max-width: 1280px) {
  .csa-header-phone--bar {
    display: none;
  }

  .csa-nav {
    gap: 18px;
  }

  .csa-header-actions {
    gap: 14px;
  }
}

@media (max-width: 1100px) {
  .csa-nav {
    gap: 14px;
  }

  .csa-nav > a {
    font-size: 12px;
    letter-spacing: 0.03em;
  }

  .csa-header-actions .csa-header-cta {
    padding: 11px 16px;
    font-size: 12px;
  }

  .csa-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .csa-header,
  body.home .csa-header,
  body.front-page .csa-header,
  body:not(.home):not(.front-page) .csa-header {
    background: rgba(17, 21, 26, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .csa-header.is-open::after {
    top: 72px;
  }

  .csa-header__inner {
    min-height: 72px;
    gap: 12px;
    width: min(80rem, calc(100% - 24px));
  }

  .csa-logo img,
  body.home .csa-logo img,
  body.front-page .csa-logo img {
    height: 38px;
    max-width: min(160px, 42vw);
  }

  .csa-nav {
    display: none;
  }

  .csa-header.is-open .csa-nav {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    max-height: calc(100vh - 72px);
    overflow: auto;
    background: #11151a;
    padding: 12px 24px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    gap: 0;
    z-index: 100001;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  }

  .csa-nav > a {
    font-size: 15px;
    letter-spacing: 0.06em;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .csa-nav > a::after {
    display: none;
  }

  .csa-nav > a.is-active {
    color: var(--csa-orange) !important;
  }

  .csa-nav__panel {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    width: 100%;
    padding-top: 20px;
    margin-top: 8px;
  }

  .csa-nav__panel .csa-header-phone {
    font-size: 15px;
  }

  .csa-nav__panel .csa-btn--header {
    width: 100%;
    justify-content: center;
    padding: 14px 22px;
    font-size: 14px;
    background: var(--csa-orange);
    color: #fff !important;
  }

  .csa-nav-toggle {
    display: inline-flex !important;
  }

  .csa-header-phone--bar,
  .csa-header-cta,
  .csa-header-actions .csa-btn {
    display: none !important;
  }

  .csa-header-actions {
    margin-left: auto;
    gap: 8px;
  }

  body.home .csa-hero,
  body.front-page .csa-hero {
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .csa-hero__grid {
    grid-template-columns: 1fr;
    gap: 28px;
    width: min(1240px, calc(100% - 32px));
  }

  .csa-hero__content,
  body.home .csa-hero__content,
  body.front-page .csa-hero__content {
    padding: 96px 0 36px;
    display: block;
    min-height: 0;
  }

  .csa-hero__copy .csa-h1 {
    max-width: 100%;
    font-size: clamp(1.85rem, 8.4vw, 2.6rem);
  }

  .csa-hero__media {
    max-width: min(100%, 440px);
    justify-self: stretch;
    margin-inline: 0;
  }

  .csa-hero--inner .csa-hero__content {
    width: min(80rem, calc(100% - 40px));
    padding: 110px 0 48px;
    display: flex;
    align-items: center;
    min-height: 0;
  }

  .csa-hero--inner .csa-hero__copy .csa-h1 {
    max-width: 100%;
    font-size: clamp(1.85rem, 8.4vw, 2.6rem);
  }

  .csa-hero__lead {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .csa-price--featured {
    transform: none;
  }

  .csa-step {
    grid-template-columns: 1fr;
  }

  .csa-section {
    padding: 56px 0;
  }

  .csa-wrap {
    width: min(1180px, calc(100% - 28px));
  }

  .csa-quote,
  .csa-quote--feature {
    padding: 28px 20px 22px 56px;
  }

  .csa-quote::before {
    left: 14px;
    font-size: 52px;
  }

  .csa-btn,
  .csa-btn--white {
    padding: 12px 20px;
    font-size: 14px;
  }
}

@media (max-width: 900px) {
  .csa-photo-pair,
  .csa-benefit-row,
  .csa-editorial,
  .csa-editorial--copy-first,
  .csa-contact {
    grid-template-columns: 1fr;
  }

  .csa-editorial__media,
  img.csa-shot,
  .csa-shot {
    min-height: 16rem;
    max-height: none;
    height: 16rem;
  }

  .csa-gallery .csa-editorial__media,
  .csa-gallery .csa-shot {
    height: auto;
    min-height: 0;
  }

  .csa-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .csa-photo-pair img,
  .csa-photo-pair img:last-child {
    height: 260px;
    margin-bottom: 0;
  }

  .csa-figure--inset {
    width: calc(100% - 24px);
    margin-top: -32px;
    border-radius: 14px;
  }

  .csa-figure--inset img {
    max-height: 220px;
  }

  .csa-benefit-row + .csa-benefit-row {
    margin-top: 36px;
  }

  .csa-event-feature {
    padding: 36px 20px;
  }
}

@media (max-width: 760px) {
  .csa-grid--4,
  .csa-grid--3,
  .csa-grid--2,
  .csa-footer__grid {
    grid-template-columns: 1fr;
  }

  .csa-split {
    align-items: start;
  }

  .csa-media {
    max-height: 280px;
  }

  .csa-card {
    padding: 22px;
  }

  .csa-header-actions .csa-icon-link {
    display: none !important;
  }
}

@media (max-width: 640px) {
  .csa-hero__content,
  body.home .csa-hero__content,
  body.front-page .csa-hero__content {
    padding: 88px 0 32px;
  }

  .csa-hero--inner .csa-hero__content {
    padding: 96px 0 40px;
    width: min(80rem, calc(100% - 28px));
  }

  .csa-section {
    padding: 48px 0;
  }

  .csa-newsletter__bar,
  .csa-newsletter .wpcf7-form > p {
    flex-wrap: wrap;
    border-radius: 22px;
    padding: 6px;
  }

  .csa-newsletter .wpcf7-form-control-wrap,
  .csa-newsletter input[type="email"],
  .csa-newsletter .wpcf7-submit {
    width: 100%;
    flex: 1 1 100%;
  }

  .csa-newsletter input[type="email"] {
    padding: 12px 14px;
  }
}
