@charset "UTF-8";
.hero-image-wrap {
  margin: 0 24px;
  border-radius: var(--radius-card);
  overflow: hidden;
  height: 700px;
  position: relative;
  margin-top: 80px;
}
@media (max-width: 767px) {
  .hero-image-wrap {
    margin: 24px 12px 0;
    height: 240px;
  }
}
.hero-image-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  border: 0;
}

.layout-section.bg_transparent p {
  color: var(--grey-dark);
}

section.bg_transparent {
  background: transparent;
  box-shadow: none;
}
section.bg_transparent + section.bg_transparent {
  padding-top: 0;
}

/*.home{
  section.bg_transparent{
    .display-2{
      color: #000;
    }
  }
}*/
.layout-section.bg_transparent + .stats-section {
  padding-top: 0;
}

/* ─── Our services ────────────────────────────────────────── */
.services-section {
  padding: var(--pad-y) var(--pad-x);
}

.services-heading {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 48px;
  line-height: 58px;
  letter-spacing: -0.96px;
  color: var(--primary);
  text-align: center;
}

.services-subheading {
  font-size: 20px;
  line-height: 28px;
  color: #434343;
  text-align: center;
  margin-top: 16px;
  margin-bottom: 64px;
}

.services-grid {
  display: flex;
  gap: 24px;
}

.svc-tile {
  flex: 1;
  position: relative;
  background: #FAF7F4;
  border: 1px solid transparent;
  border-radius: var(--radius-card);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 340px;
}

.svc-tile-top {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.svc-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.svc-icon svg,
.svc-icon img {
  width: auto;
  height: 32px;
}

.svc-name {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -0.4px;
  color: var(--primary);
}

.svc-desc {
  font-size: 16px;
  line-height: 24px;
  color: #434343;
  margin-top: 24px;
  flex-grow: 1;
}

.svc-tile .btn {
  margin-top: 24px;
  align-self: flex-start;
}

/* The tile itself is the <a> when it has a button — the button inside is only a
   styled span, and draggable="false" keeps the copy selectable. */
a.svc-tile {
  color: inherit;
  text-decoration: none;
}

/* Hovering anywhere on the tile plays the button's hover effect. */
.svc-tile:hover .btn {
  opacity: .82;
}

.svc-tile:hover .btn svg {
  transform: rotate(45deg);
}

.svc-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

/* ─── Animations ── */
.panel-animate {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: var(--anim-delay, 0s);
}

.panel-animate.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Article banner (same proportions as profile-banner) ── */
.article-banner {
  padding: var(--pad-y) var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
}

.article-banner-left {
  flex: 0 0 528px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.article-banner-body {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.btn-back-article {
  position: absolute;
  top: var(--pad-y);
  left: var(--pad-x);
  background: var(--white);
  color: var(--primary);
}

.btn-back-article:hover svg {
  transform: translateX(-3px);
}

.article-category {
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: var(--radius-pill);
  background: var(--white);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: var(--primary);
  align-self: flex-start;
}

.article-headline {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 48px;
  line-height: 58px;
  letter-spacing: -0.96px;
  color: var(--primary);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.article-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.article-author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--secondary);
  object-fit: cover;
  flex-shrink: 0;
}

.article-author-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
}

.article-meta-sep {
  width: 1px;
  height: 14px;
  background: var(--border-light);
}

.article-date,
.article-readtime {
  font-size: 14px;
  color: #5d5d5d;
}

.article-banner-right {
  flex: 0 0 753px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.article-hero {
  width: 100%;
  aspect-ratio: 381/254;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: linear-gradient(135deg, #d4c5bc 0%, #bfad9e 100%);
  position: relative;
}

.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-hero .article-category {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
}

/* ─── Article body ── */
.article-body-section {
  padding: 0 var(--pad-x) 80px;
}

.article-col {
  max-width: 740px;
  margin: 0 auto;
}

.article-intro {
  font-size: 20px;
  line-height: 32px;
  color: #434343;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-light);
}
.article-text * + h3{
  margin-top: 24px;
}
.article-text p {
  font-size: 16px;
  line-height: 28px;
  color: #434343;
}

.article-text p + p {
  margin-top: 24px;
}

/* The global reset strips list padding, and outside markers then hang to the
   left of the column — past the heading. Custom markers sit exactly on the
   column edge instead: the indent lives on the li, so left:0 lands on the
   list's own left edge and the copy hangs beside the marker. */
.article-text ul,
.article-text ol {
  list-style: none;
  margin: 24px 0;
  padding-left: 0;
}

.article-text ol { counter-reset: verve-ol; }

.article-text li {
  position: relative;
  padding-left: 1.4em;
  font-size: 16px;
  line-height: 28px;
  color: #434343;
}

.article-text li + li { margin-top: 8px; }

.article-text ul > li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
}

.article-text ol > li {
  counter-increment: verve-ol;
}

.article-text ol > li::before {
  content: counter(verve-ol) '.';
  position: absolute;
  left: 0;
  color: var(--primary);
}

.article-pull-quote {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 30px;
  line-height: 38px;
  letter-spacing: -0.6px;
  color: var(--primary);
  padding: 40px 0;
  margin: 40px 0;
  border-top: 2px solid var(--primary);
  border-bottom: 1px solid var(--border-light);
}

.article-subheading {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 28px;
  line-height: 35px;
  letter-spacing: -0.28px;
  color: var(--primary);
  margin: 48px 0 20px;
}

.article-image-wrap {
  border-radius: var(--radius-card);
  overflow: hidden;
  margin: 48px 0 12px;
  aspect-ratio: 16/9;
}

.article-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-caption {
  font-size: 13px;
  color: #888;
  text-align: center;
  margin-bottom: 48px;
}

/* ─── Author bio ── */
.author-bio {
  border-top: 1px solid var(--border-light);
  margin-top: 64px;
  padding-top: 40px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.author-bio-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--secondary);
  flex-shrink: 0;
  overflow: hidden;
}

.author-bio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.author-bio-name {
  font-weight: 500;
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 4px;
}

.author-bio-role {
  font-size: 14px;
  color: #5d5d5d;
  margin-bottom: 12px;
}

.author-bio-desc {
  font-size: 14px;
  line-height: 22px;
  color: #434343;
}

.author-bio-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  background: transparent;
  border: 1px solid var(--primary);
  border-radius: var(--radius-pill);
  padding: 10px 16px;
  transition: opacity 0.18s;
}

.author-bio-link:hover {
  opacity: 0.7;
}

.author-bio-link svg {
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.author-bio-link:hover svg {
  transform: rotate(45deg);
}

.header-section {
  padding: 120px 60px 64px;
  background: var(--bg-page);
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  padding: 80px var(--pad-x);
}

.featured-content + .article-img {
  order: 2;
}

.stats-row {
  width: 100%;
}

.contact-section.ready {
  min-height: calc(100vh - 88px);
  transition: 0.3s ease;
}
.contact-section .wpcf7-not-valid-tip {
  color: #fff;
  font-size: 13px;
  text-align: center;
}
.contact-section {
  /* CF7's own response box draws a yellow/blue border box — on the dark form we
     want plain centred white text. Each state is listed so these beat the
     plugin's equally specific .wpcf7 form.invalid rules. */
}
.contact-section .wpcf7 form .wpcf7-response-output,
.contact-section .wpcf7 form.invalid .wpcf7-response-output,
.contact-section .wpcf7 form.unaccepted .wpcf7-response-output,
.contact-section .wpcf7 form.failed .wpcf7-response-output,
.contact-section .wpcf7 form.spam .wpcf7-response-output,
.contact-section .wpcf7 form.sent .wpcf7-response-output {
  border: 0;
  margin: 16px 0 0;
  padding: 0;
  color: #fff;
  font-size: 13px;
  text-align: center;
}

/* ── Off-market page: what is a sale (centred intro) ── */
.offm-what-section {
  background: #F0EDE9;
  box-shadow: 0 0 0 100vmax #F0EDE9;
  clip-path: inset(0 -100vmax);
  padding: var(--pad-y) var(--pad-x);
  text-align: center;
}

.offm-what-intro {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.offm-what-section .section-heading {
  white-space: nowrap;
}

.offm-what-body {
  font-size: 16px;
  line-height: 26px;
  color: var(--grey-dark);
}

.offm-what-section .faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 48px;
  align-items: self-start;
}

.btn[href="#hide"] {
  display: none;
}

.offm-what-section .faq-question {
  font-size: 20px;
  line-height: 26px;
  color: var(--black);
  flex: 1;
}

.offm-what-section .faq-plus {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  position: relative;
}

.offm-what-section .faq-plus::before,
.faq-plus::after {
  content: "";
  position: absolute;
  background: var(--primary);
  border-radius: 2px;
}

.offm-what-section .faq-plus::before {
  width: 2px;
  height: 16px;
  top: 0;
  left: 7px;
  transition: transform 0.2s;
}

.offm-what-section .faq-plus::after {
  width: 16px;
  height: 2px;
  top: 7px;
  left: 0;
}

.offm-what-section .faq-item {
  border-top: 1px solid var(--border-light);
}

.offm-what-section .faq-item.open .faq-plus::before {
  transform: rotate(90deg);
}

.offm-what-section .faq-answer {
  font-size: 16px;
  line-height: 24px;
  color: #434343;
  padding-bottom: 24px;
  display: none;
  max-width: 620px;
}

.offm-what-section .faq-item.open .faq-answer {
  display: block;
}

.offm-what-section .faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.spf-answer-item {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  animation: spf-answer-in 0.25s cubic-bezier(0.22, 1, 0.36, 1) both;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.spf-answer-item:last-child {
  border-bottom: none;
}

.spf-answer-label {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.spf-answer-value {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 20px;
  font-weight: 300;
  color: var(--white);
  text-align: right;
}

@keyframes spf-answer-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.spf-prev-btn {
  justify-self: end;
  margin-right: 72px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.15s;
  visibility: hidden;
  opacity: 0.9;
}

.spf-prev-btn:hover {
  opacity: 1;
}

.spf-prev-btn.visible {
  visibility: visible;
}

.spf-step-label {
  font-size: 12px;
  position: static;
  transform: translateX(0);
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.spf-question {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 36px;
  line-height: 45px;
  letter-spacing: -0.72px;
  color: var(--white);
  margin-bottom: 36px;
  text-align: center;
}

.spf-hint {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  margin-top: -20px;
  margin-bottom: 28px;
}

.spf-area-label {
  grid-column: 1/-1;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  padding-top: 8px;
}

.spf-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 32px;
}

.spf-options--1col {
  grid-template-columns: 1fr;
}

.spf-options--3col {
  grid-template-columns: 1fr 1fr 1fr;
}

.spf-options--5col {
  grid-template-columns: repeat(5, 1fr);
}

.spf-options--5col .spf-option {
  white-space: nowrap;
}

.spf-suburb-search-wrap {
  position: relative;
  max-width: 540px;
  margin: 0 auto;
}

.spf-search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 2px;
  margin-bottom: 8px;
  transition: border-color 0.15s;
}

.spf-search-field:focus-within {
  border-color: rgba(255, 255, 255, 0.7);
}

.spf-search-icon {
  color: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

.spf-search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: var(--white);
  padding: 12px 0;
}

.spf-search-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.spf-search-dropdown {
  display: none;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 16px;
  max-height: 220px;
  overflow-y: auto;
}

.spf-search-dropdown.visible {
  display: flex;
}

.spf-search-result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.12s;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--white);
}

.spf-search-result:hover {
  background: rgba(255, 255, 255, 0.08);
}

.spf-search-result.is-selected {
  background: rgba(255, 255, 255, 0.12);
}

.spf-search-result.is-selected::after {
  content: "✓";
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.spf-result-area {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.spf-search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}

.spf-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  animation: spf-answer-in 0.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.spf-tag-remove {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0;
  font-size: 16px;
  line-height: 1;
  transition: color 0.12s;
}

.spf-tag-remove:hover {
  color: var(--white);
}

.spf-preset-wrap {
  margin-top: 24px;
  margin-bottom: 20px;
}

.spf-preset-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 10px;
}

.spf-preset-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  /* Capped at two rows: chip height (20px line + 16px padding + 2px border)
     twice, plus the row gap. Anything past that is clipped — every suburb is
     still reachable through the search field above. */
  max-height: calc(38px * 2 + 8px);
  overflow: hidden;
}

.spf-preset-option {
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: var(--white);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, transform 0.1s;
}

.spf-preset-option:hover {
  border-color: rgba(255, 255, 255, 0.7);
}

.spf-preset-option:active {
  transform: scale(0.98);
}

.spf-preset-option.selected {
  background: var(--white);
  border-color: var(--white);
  color: var(--primary);
}

.spf-option {
  padding: 16px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  text-align: center;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, transform 0.1s;
}

.spf-option:hover {
  border-color: rgba(255, 255, 255, 0.7);
}

.spf-option:active {
  transform: scale(0.98);
}

.spf-option.selected {
  background: var(--white);
  border-color: var(--white);
  color: var(--primary);
}

.spf-select-wrap {
  position: relative;
  margin-bottom: 48px;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}

.spf-select {
  width: 100%;
  padding: 16px 44px 16px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--white);
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.15s;
}

.spf-select:focus {
  border-color: rgba(255, 255, 255, 0.7);
}

.spf-select option,
.spf-select optgroup {
  background: #402020;
  color: var(--white);
}

.spf-select-arrow {
  color: rgba(255, 255, 255, 0.5);
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.spf-input-select-wrap {
  position: relative;
}

.spf-input-select {
  width: 100%;
  padding: 15px 24px 15px 0;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  cursor: pointer;
  transition: border-color 0.15s;
}

.spf-input-select:focus {
  border-bottom-color: rgba(255, 255, 255, 0.7);
}

.spf-input-select.has-value {
  color: var(--white);
}

.spf-input-select option,
.spf-input-select optgroup {
  background: #402020;
  color: var(--white);
}

.spf-input-select-arrow {
  color: rgba(255, 255, 255, 0.5);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.spf-inputs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 48px;
}

.spf-input {
  width: 100%;
  padding: 15px 0;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--white);
  text-align: center;
  outline: none;
  transition: border-color 0.15s;
}

.spf-input:focus {
  border-bottom-color: rgba(255, 255, 255, 0.7);
}

.spf-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.spf-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.spf-btn-back {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  opacity: 0.45;
  transition: opacity 0.15s;
}

.spf-btn-back:hover {
  opacity: 1;
}

.spf-btn-back.hidden {
  visibility: hidden;
}

.spf-btn-next {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 22px;
  background: var(--white);
  color: var(--primary);
  border: 1px solid var(--white);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity 0.18s;
}

.spf-btn-next:hover {
  opacity: 0.82;
}

.spf-btn-next svg {
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.spf-btn-next:hover svg {
  transform: rotate(45deg);
}

.spf-btn-next.disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.spf-btn-next.disabled:hover {
  opacity: 0.35;
}

.spf-btn-next.disabled:hover svg {
  transform: none;
}

.spf-step {
  display: none;
  animation: spf-in 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.spf-step.active {
  display: block;
}

@keyframes spf-in {
  from {
    opacity: 0;
    transform: translateX(12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.spf-step.going-back {
  animation: spf-in-back 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes spf-in-back {
  from {
    opacity: 0;
    transform: translateX(-12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.spf-thankyou {
  display: none;
  text-align: center;
  padding: 20px 0 40px;
  animation: spf-in 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.spf-thankyou.active {
  display: block;
}

.spf-thankyou-icon {
  color: var(--white);
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.spf-thankyou-icon svg {
  width: 26px;
  height: 26px;
}

.spf-thankyou h2 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 36px;
  line-height: 45px;
  letter-spacing: -0.72px;
  color: var(--white);
  margin-bottom: 16px;
}

.spf-thankyou p {
  font-size: 16px;
  line-height: 24px;
  color: var(--white);
  max-width: 380px;
  margin: 0 auto 36px;
}

.spf-thankyou-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-radius: 4px;
  font-size: 16px;
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  transition: background 0.15s;
}

.spf-thankyou-back:hover {
  background: rgba(255, 255, 255, 0.2);
}

.spf-answers-list {
  position: absolute !important;
  bottom: 36px;
  left: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  pointer-events: none;
  background: #F0EDE9;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 16px 20px;
  min-width: 220px;
}
/* The answers panel is the one light box on the dark form, so its rows carry the
   site's body-text colours rather than the form's white-on-maroon ones. */
.spf-answers-list .spf-answer-item { border-bottom-color: var(--border-light); }
.spf-answers-list .spf-answer-label { color: var(--grey-mid); }
.spf-answers-list .spf-answer-value { color: var(--grey-dark); }

.page-id-621 .contact-section {
  box-shadow: none;
  clip-path: none;
  z-index: 2;
}
/* On the thank-you screen the panel is a summary of what was sent, so it sits
   under the message instead of pinned to the corner. !important beats the
   positioning rules above, which are themselves !important. */
/* The page-specific rule below is equally specific and comes later, so the
   summary state has to out-specify it explicitly. */
.spf-answers-list.is-summary,
.page-id-621 .spf-answers-list.is-summary {
  position: static !important;
  margin: 32px auto 0;
  max-width: 320px;
  text-align: left;
}

.page-id-621 .spf-answers-list {
  position: fixed !important;
  top: auto;
  bottom: 36px;
  background: #F0EDE9;
}

.spf-bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 20px 40px 36px;
}

.align_center {
  align-items: center;
}

.mar_b40 {
  margin-bottom: 40px;
}

.pos_relative {
  position: relative;
}

.hero-heading {
  font-weight: 400;
}

@media (min-width: 768px) {
  .hero-heading {
    font-family: var(--font-heading);
    font-size: 54px;
    line-height: 65px;
    letter-spacing: -1.08px;
  }
  .heading-1 {
    font-family: var(--font-heading);
    font-size: 48px;
    line-height: 58px;
    letter-spacing: -0.96px;
    font-weight: 400;
    color: var(--primary);
  }
}
@media (max-width: 991px) {
  .spf-answers-list {
    bottom: auto;
    top: 20px;
    right: 20px;
    left: 20px;
  }
}
@media (max-width: 900px) {
  .offm-what-section .faq-list {
    grid-template-columns: 1fr;
  }
  .offm-what-section .col + .col .faq-item:first-child {
    border-top: none;
  }
}
/* ─── 404 (7 Sep package) ─────────────────────────────────
   Scoped to body.error404 — WordPress adds that class, so the dark treatment
   never leaks onto other pages. Flex column keeps the footer at the bottom on
   short screens. */
body.error404 {
  background: var(--primary);
  color: var(--white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.error404 .page-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px 120px;
  text-align: center;
}

.nf-card { width: 100%; max-width: 640px; }

.nf-heading {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 180px;
  line-height: 180px;
  letter-spacing: -3.6px;
  color: var(--white);
  margin-bottom: 16px;
}

.nf-subheading {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 28px;
  line-height: 34px;
  color: var(--white);
  margin-bottom: 40px;
}

.nf-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  /* This file is enqueued last, so its plain rules beat the mobile media
     queries in blocks-part-*.css — anything sized here needs its own mobile
     size here too, or it stays desktop-large on phones. */
  body.error404 .page-body { padding: 40px 16px 80px; }
  .nf-heading { font-size: 96px; line-height: 96px; letter-spacing: -1.92px; }
  .nf-subheading { font-size: 22px; line-height: 28px; }

  .services-heading { font-size: 32px; line-height: 40px; }
  .svc-name { font-size: 24px; line-height: 30px; }
  .spf-question,
  .spf-thankyou h2 { font-size: 28px; line-height: 34px; }

  .article-banner {
    flex-direction: column;
    gap: 32px;
    padding: 40px 20px;
  }
  .article-banner-left {
    flex: unset;
    width: 100%;
  }
  .article-banner-body {
    margin-top: 64px;
  }
  .article-banner-right {
    flex: unset;
    width: 100%;
  }
  .article-headline {
    font-size: 32px;
    line-height: 38px;
  }
  .article-body-section {
    padding: 0 20px 60px;
  }
  .article-intro {
    font-size: 17px;
    line-height: 28px;
  }
  .article-pull-quote {
    font-size: 22px;
    line-height: 30px;
  }
  .author-bio {
    flex-direction: column;
    gap: 16px;
  }
}

/*# sourceMappingURL=style-st.css.map */
