/*
Theme Name: Stephen Porter
Theme URI: https://thefreewebsiteguys.com
Author: The Free Website Guys
Author URI: https://thefreewebsiteguys.com
Description: WordPress theme replica of the Stephen Porter Lovable frontend.
Version: 1.5.0
Requires at least: 6.4
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: stephen-porter
*/

:root {
  --sp-color-background: #faf8f5;
  --sp-color-background-rgb: 250 248 245;
  --sp-color-foreground: #262626;
  --sp-color-foreground-rgb: 38 38 38;
  --sp-color-primary: #2f5050;
  --sp-color-primary-rgb: 47 80 80;
  --sp-color-primary-foreground: #faf8f5;
  --sp-color-primary-foreground-rgb: 250 248 245;
  --sp-color-secondary: #e9e6e2;
  --sp-color-secondary-rgb: 233 230 226;
  --sp-color-secondary-foreground: #333333;
  --sp-color-secondary-foreground-rgb: 51 51 51;
  --sp-color-muted: #e9e6e2;
  --sp-color-muted-rgb: 233 230 226;
  --sp-color-muted-foreground: #666666;
  --sp-color-muted-foreground-rgb: 102 102 102;
  --sp-color-border: #ddd9d5;
  --sp-color-border-rgb: 221 217 213;
  --sp-color-teal-light: #466d6d;
  --sp-color-teal-light-rgb: 70 109 109;
  --sp-color-taupe: #967c69;
  --sp-color-taupe-rgb: 150 124 105;
  --sp-color-taupe-light: #b2a499;
  --sp-color-taupe-light-rgb: 178 164 153;
  --sp-color-cream: #f8f6f2;
  --sp-color-cream-rgb: 248 246 242;
  --sp-color-overlay: #000000;
  --sp-color-overlay-rgb: 0 0 0;
  --sp-radius: 4px;
  --sp-transition: 300ms ease;
  --sp-container-wide: 1280px;
  --sp-container-narrow: 896px;
  --sp-header-height: 112px;
  /* Aligns mobile panel with header row (toggle + inner padding); avoids full-bleed past the icon. */
  --sp-mobile-menu-inset-inline-end: 28px;
}

html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--sp-color-background);
  color: var(--sp-color-foreground);
  font-family: "Inter", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.sp-font-serif,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Magnat Head", "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
}

.sp-site {
  min-height: 100vh;
  background: var(--sp-color-background);
}

.sp-container-wide,
.sp-container-narrow {
  margin: 0 auto;
  width: 100%;
}

.sp-container-wide {
  max-width: var(--sp-container-wide);
}

.sp-container-narrow {
  max-width: var(--sp-container-narrow);
}

.sp-section-padding {
  padding: 80px 24px;
}

.sp-page-main {
  display: block;
}

.sp-link:focus-visible,
.sp-button:focus-visible,
.sp-nav-toggle:focus-visible,
.sp-scroll-indicator:focus-visible {
  outline: 2px solid var(--sp-color-primary);
  outline-offset: 4px;
}

.sp-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  padding: 24px 0;
  transition: background-color 500ms ease, box-shadow 500ms ease, padding 500ms ease, backdrop-filter 500ms ease;
}

/* Sit below the WordPress toolbar (front, Customizer preview when logged in). */
.admin-bar .sp-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .sp-header {
    top: 46px;
  }
}

.sp-header.is-scrolled,
.sp-header.is-mobile-open {
  padding: 16px 0;
}

.sp-header.is-scrolled {
  background: rgb(var(--sp-color-background-rgb) / 0.95);
  box-shadow: 0 1px 10px rgb(var(--sp-color-foreground-rgb) / 0.06);
  backdrop-filter: blur(4px);
}

.sp-header.is-mobile-open {
  background: var(--sp-color-background);
}

.sp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 24px;
}

.sp-header__inner.is-pre-scroll {
  justify-content: space-between;
}

.sp-brand {
  color: var(--sp-color-foreground);
  font-size: 1.5rem;
  line-height: 2rem;
  transition: opacity var(--sp-transition);
}

.sp-nav-desktop {
  display: none;
  align-items: center;
  gap: 32px;
}

.sp-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.sp-nav-link {
  color: var(--sp-color-muted-foreground);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color var(--sp-transition), background-color var(--sp-transition), border-color var(--sp-transition);
}

.sp-nav-link:hover {
  color: var(--sp-color-primary);
}

.sp-nav-cta,
.sp-jazz__cta,
.sp-contact__social-link,
.sp-property__instagram-link,
.sp-hero__secondary-button,
.sp-hero__primary-button {
  transition: color var(--sp-transition), background-color var(--sp-transition), border-color var(--sp-transition), opacity var(--sp-transition);
}

.sp-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 20px;
  background: var(--sp-color-primary);
  color: var(--sp-color-primary-foreground);
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.sp-nav-cta:hover,
.sp-jazz__cta:hover {
  background: var(--sp-color-teal-light);
}

.sp-nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--sp-color-foreground);
}

.sp-nav-toggle .sp-icon {
  width: 24px;
  height: 24px;
}

@media (max-width: 767.98px) {
  .sp-header__inner {
    padding-right: 32px;
  }

  .sp-header:not(.is-scrolled):not(.is-mobile-open) .sp-nav-toggle {
    color: #fff;
  }
}

.sp-mobile-menu {
  position: absolute;
  top: 100%;
  inset-inline-start: 0;
  inset-inline-end: var(--sp-mobile-menu-inset-inline-end);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  border-bottom: 1px solid var(--sp-color-border);
  background: var(--sp-color-background);
  transition: max-height var(--sp-transition), opacity var(--sp-transition);
}

.sp-mobile-menu.is-open {
  max-height: 320px;
  opacity: 1;
}

.sp-mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
}

.sp-mobile-menu__link {
  color: var(--sp-color-foreground);
  font-size: 1.125rem;
  line-height: 1.75rem;
  transition: color var(--sp-transition);
}

.sp-mobile-menu__link:hover {
  color: var(--sp-color-primary);
}

.sp-mobile-menu__cta {
  box-sizing: border-box;
  display: flex;
  width: 100%;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding: 12px 20px;
  min-height: 48px;
  font-family: "Inter", Arial, sans-serif;
  text-align: center;
}

.sp-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 100vh;
}

.sp-hero__background,
.sp-hero__overlay {
  position: absolute;
  inset: 0;
}

.sp-hero__background {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.sp-hero__overlay {
  background: var(--sp-color-overlay);
  opacity: 0.5;
}

.sp-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  padding: 0 24px;
  text-align: center;
}

.sp-hero__inner {
  max-width: 1024px;
  margin: 0 auto;
}

.sp-hero__pretitle,
.sp-section-eyebrow,
.sp-contact__social-heading,
.sp-stat__label {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}

.sp-section-eyebrow {
  font-size: 0.75rem;
  line-height: 1rem;
  letter-spacing: 0.3em;
}

.sp-hero__pretitle {
  margin-bottom: 24px;
  color: rgb(var(--sp-color-primary-foreground-rgb) / 0.7);
  font-size: 0.875rem;
  letter-spacing: 0.3em;
}

.sp-hero__title {
  margin: 0 0 24px;
  color: var(--sp-color-primary-foreground);
  font-size: 3.75rem;
  line-height: 1;
}

.sp-hero__separator {
  width: 96px;
  height: 1px;
  margin: 0 auto 24px;
  background: rgb(var(--sp-color-primary-foreground-rgb) / 0.4);
}

.sp-hero__subtitle {
  margin: 0 0 48px;
  color: rgb(var(--sp-color-primary-foreground-rgb) / 0.85);
  font-size: 1.5rem;
  line-height: 2rem;
  font-style: italic;
}

.sp-hero__dot {
  display: inline-block;
  margin: 0 12px;
  color: rgb(var(--sp-color-primary-foreground-rgb) / 0.5);
  font-size: 1.875rem;
  line-height: 1;
  vertical-align: middle;
}

.sp-hero__description {
  max-width: 672px;
  margin: 0 auto 64px;
  color: rgb(var(--sp-color-primary-foreground-rgb) / 0.7);
  font-size: 1.125rem;
  line-height: 1.625;
}

.sp-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.sp-hero__primary-button,
.sp-hero__secondary-button,
.sp-jazz__cta,
.sp-property__haus-link,
.sp-property__instagram-link,
.sp-contact__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sp-hero__primary-button,
.sp-hero__secondary-button {
  min-height: 48px;
  padding: 12px 32px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sp-hero__primary-button {
  background: var(--sp-color-primary-foreground);
  color: #000;
}

.sp-hero__primary-button:hover {
  background: rgb(var(--sp-color-primary-foreground-rgb) / 0.9);
}

.sp-hero__secondary-button {
  border: 1px solid rgb(var(--sp-color-primary-foreground-rgb) / 0.4);
  color: var(--sp-color-primary-foreground);
}

.sp-hero__secondary-button:hover {
  background: rgb(var(--sp-color-primary-foreground-rgb) / 0.1);
}

.sp-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  z-index: 1;
  color: rgb(var(--sp-color-primary-foreground-rgb) / 0.5);
  transform: translateX(-50%);
  transition: color var(--sp-transition);
}

.sp-scroll-indicator:hover {
  color: var(--sp-color-primary-foreground);
}

.sp-scroll-indicator .sp-icon {
  width: 32px;
  height: 32px;
}

.sp-about,
.sp-contact {
  background: var(--sp-color-cream);
}

.sp-about__grid,
.sp-property__cta-grid,
.sp-jazz__grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

.sp-about__image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--sp-color-muted);
}

.sp-about__image,
.sp-property__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sp-about__image {
  object-position: top;
}

.sp-section-eyebrow {
  margin-bottom: 16px;
  color: var(--sp-color-primary);
}

.sp-section-title {
  margin: 0 0 32px;
  color: var(--sp-color-foreground);
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.sp-about__text-group,
.sp-property__intro,
.sp-jazz__intro,
.sp-contact__intro,
.sp-property__cta-text {
  color: var(--sp-color-muted-foreground);
  font-size: 1.125rem;
  line-height: 1.625;
}

.sp-about__text-group p,
.sp-property__intro,
.sp-jazz__intro,
.sp-contact__intro,
.sp-property__cta-text {
  margin: 0;
}

.sp-about__text-group {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sp-about__quote {
  margin: 40px 0 0;
  padding-left: 24px;
  border-left: 2px solid var(--sp-color-taupe);
}

.sp-about__quote p {
  margin: 0;
  color: var(--sp-color-foreground);
  font-size: 1.5rem;
  line-height: 2rem;
  font-style: italic;
}

.sp-about__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--sp-color-border);
}

.sp-stat__value {
  margin: 0;
  color: var(--sp-color-primary);
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.sp-stat__label {
  margin-top: 4px;
  color: var(--sp-color-muted-foreground);
  font-size: 0.75rem;
  line-height: 1rem;
  letter-spacing: 0.1em;
}

.sp-property {
  background: var(--sp-color-primary);
  color: var(--sp-color-primary-foreground);
}

.sp-property .sp-section-eyebrow {
  color: var(--sp-color-taupe-light);
}

.sp-property .sp-section-title,
.sp-property__cta-title,
.sp-property__service-title {
  color: var(--sp-color-primary-foreground);
}

.sp-property__header {
  max-width: 768px;
  margin: 0 auto 64px;
  text-align: center;
}

.sp-property__intro {
  color: rgb(var(--sp-color-primary-foreground-rgb) / 0.7);
}

.sp-property__services {
  display: grid;
  gap: 32px;
  margin-bottom: 64px;
}

.sp-property__service {
  padding: 32px;
  border: 1px solid rgb(var(--sp-color-primary-foreground-rgb) / 0.15);
  text-align: center;
  transition: border-color 500ms ease, transform 500ms ease;
}

.sp-property__service:hover {
  border-color: rgb(var(--sp-color-primary-foreground-rgb) / 0.3);
}

.sp-property__service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--sp-color-taupe-light);
}

.sp-property__service-icon .sp-icon {
  width: 40px;
  height: 40px;
}

.sp-property__service-title {
  margin: 0 0 16px;
  font-size: 1.5rem;
  line-height: 2rem;
}

.sp-property__service-description {
  margin: 0;
  color: rgb(var(--sp-color-primary-foreground-rgb) / 0.6);
  font-size: 0.875rem;
  line-height: 1.625;
}

.sp-property__cta-banner {
  padding: 32px;
  border: 1px solid rgb(var(--sp-color-primary-foreground-rgb) / 0.1);
}

.sp-property__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.sp-property__cta-title {
  margin: 0 0 24px;
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.sp-property__cta-text {
  margin-bottom: 32px;
  color: rgb(var(--sp-color-primary-foreground-rgb) / 0.7);
}

.sp-property__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sp-property__haus-link {
  gap: 12px;
  min-height: 48px;
  padding: 12px 24px;
  background: var(--sp-color-taupe);
}

.sp-property__haus-link:hover {
  background: var(--sp-color-taupe-light);
}

.sp-property__haus-logo {
  height: 20px;
  width: auto;
}

.sp-property__haus-link .sp-icon,
.sp-property__instagram-link .sp-icon,
.sp-jazz__cta .sp-icon,
.sp-contact__social-link .sp-icon {
  width: 16px;
  height: 16px;
}

.sp-property__instagram-link,
.sp-jazz__cta {
  gap: 8px;
  min-height: 48px;
  padding: 12px 24px;
  border: 1px solid rgb(var(--sp-color-primary-foreground-rgb) / 0.5);
  color: var(--sp-color-primary-foreground);
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.sp-property__instagram-link:hover {
  background: var(--sp-color-primary-foreground);
  color: var(--sp-color-primary);
}

.sp-jazz {
  background: var(--sp-color-background);
}

.sp-jazz__intro {
  margin-bottom: 32px;
}

.sp-jazz__highlights {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.sp-jazz__highlight {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.sp-jazz__highlight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  background: var(--sp-color-cream);
  color: var(--sp-color-primary);
}

.sp-jazz__highlight-icon .sp-icon {
  width: 20px;
  height: 20px;
}

.sp-jazz__highlight-title {
  margin: 0 0 4px;
  color: var(--sp-color-foreground);
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.sp-jazz__highlight-description {
  margin: 0;
  color: var(--sp-color-muted-foreground);
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.sp-jazz__cta {
  background: var(--sp-color-primary);
  color: var(--sp-color-primary-foreground);
}

.sp-jazz__media {
  display: flex;
  justify-content: center;
}

.sp-jazz__video-wrap {
  width: 100%;
  max-width: 384px;
  overflow: hidden;
}

.sp-jazz__video {
  width: 100%;
  background: var(--sp-color-muted);
}

.sp-contact__header {
  margin-bottom: 64px;
  text-align: center;
}

.sp-contact__intro {
  max-width: 576px;
  margin: 0 auto;
}

.sp-contact__cards {
  display: grid;
  gap: 32px;
  margin-bottom: 64px;
}

.sp-contact__card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  border: 1px solid var(--sp-color-border);
  background: var(--sp-color-background);
  transition: border-color var(--sp-transition);
}

.sp-contact__card:hover {
  border-color: var(--sp-color-primary);
}

.sp-contact__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  background: var(--sp-color-primary);
  color: var(--sp-color-primary-foreground);
  transition: background-color var(--sp-transition);
}

.sp-contact__card:hover .sp-contact__card-icon {
  background: var(--sp-color-teal-light);
}

.sp-contact__card-icon .sp-icon {
  width: 24px;
  height: 24px;
}

.sp-contact__card-label {
  margin: 0 0 4px;
  color: var(--sp-color-muted-foreground);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.75rem;
  line-height: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sp-contact__card-value {
  margin: 0;
  color: var(--sp-color-foreground);
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.sp-contact__social-heading {
  margin-bottom: 24px;
  color: var(--sp-color-muted-foreground);
  font-size: 0.75rem;
  line-height: 1rem;
  letter-spacing: 0.1em;
  text-align: center;
}

.sp-contact__social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.sp-contact__social-link {
  gap: 8px;
  min-height: 42px;
  padding: 10px 20px;
  border: 1px solid var(--sp-color-border);
  background: transparent;
  color: var(--sp-color-foreground);
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.sp-contact__social-link:hover {
  border-color: var(--sp-color-primary);
  background: var(--sp-color-primary);
  color: var(--sp-color-primary-foreground);
}

.sp-footer {
  padding: 48px 24px;
  background: var(--sp-color-primary);
  color: var(--sp-color-primary-foreground);
}

.sp-footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.sp-footer__brand {
  text-align: center;
}

.sp-footer__brand-title {
  margin: 0;
  font-size: 1.5rem;
  line-height: 2rem;
}

.sp-footer__brand-subtitle,
.sp-footer__copyright,
.sp-footer__note,
.sp-footer__credit {
  margin: 0;
  color: rgb(var(--sp-color-primary-foreground-rgb) / 0.5);
}

.sp-footer__brand-subtitle,
.sp-footer__copyright {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.sp-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.sp-footer__nav-link {
  color: rgb(var(--sp-color-primary-foreground-rgb) / 0.7);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.sp-footer__nav-link:hover {
  color: var(--sp-color-taupe-light);
}

.sp-footer__credit:hover {
  color: var(--sp-color-taupe-light);
}

.sp-footer__copyright {
  text-align: center;
}

.sp-footer__separator {
  width: 100%;
  height: 1px;
  margin: 32px 0;
  background: rgb(var(--sp-color-primary-foreground-rgb) / 0.1);
}

.sp-footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.sp-footer__note,
.sp-footer__credit {
  font-size: 0.75rem;
  line-height: 1rem;
  text-align: center;
}

.sp-icon {
  display: inline-block;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  vertical-align: middle;
}

.sp-hero [data-animate],
.sp-observe {
  will-change: opacity, transform;
}

.js-enabled .sp-hero [data-animate="fade-up"] {
  opacity: 0;
  animation: sp-fade-up 0.8s ease-out forwards;
}

.sp-animate-ready {
  opacity: 1;
  transform: translate(0, 0);
}

.js-enabled .sp-observe[data-animation="left"] {
  opacity: 0;
  transform: translateX(-48px);
}

.js-enabled .sp-observe[data-animation="right"] {
  opacity: 0;
  transform: translateX(48px);
}

.js-enabled .sp-observe[data-animation="up"] {
  opacity: 0;
  transform: translateY(32px);
}

.js-enabled .sp-observe.is-visible {
  opacity: 1;
  transform: translate(0, 0);
  transition: opacity 1000ms ease, transform 1000ms ease;
}

.sp-animate-float {
  animation: sp-slow-float 3s ease-in-out infinite;
}

@keyframes sp-fade-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sp-slow-float {
  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, 10px);
  }
}

@media (min-width: 768px) {
  .sp-header__inner.is-pre-scroll {
    justify-content: flex-end;
  }

  .sp-brand.is-hidden-desktop {
    display: none;
  }

  .sp-nav-desktop {
    display: flex;
  }

  .sp-nav-toggle,
  .sp-mobile-menu {
    display: none;
  }

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

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

  .sp-hero__title {
    font-size: 6rem;
  }

  .sp-hero__subtitle {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .sp-hero__dot {
    font-size: 2.25rem;
  }

  .sp-hero__description {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .sp-section-title {
    font-size: 3rem;
    line-height: 1;
  }

  .sp-property__cta-title {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .sp-section-padding {
    padding: 128px 96px;
  }

  .sp-about__grid,
  .sp-property__cta-grid,
  .sp-jazz__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 80px;
  }

  .sp-jazz__content {
    order: 1;
  }

  .sp-jazz__media {
    order: 2;
  }

  .sp-footer__top {
    flex-direction: row;
  }

  .sp-footer__brand {
    text-align: left;
  }

  .sp-footer__copyright {
    text-align: right;
  }

  .sp-hero__title {
    font-size: 8rem;
  }

  .sp-hero__subtitle {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .sp-hero__dot {
    font-size: 3rem;
  }

  .sp-section-title {
    font-size: 3.75rem;
    line-height: 1;
  }
}

@media (max-width: 1023.98px) {
  .sp-jazz__content {
    order: 2;
  }

  .sp-jazz__media {
    order: 1;
  }
}

@media (max-width: 767.98px) {
  .sp-section-padding {
    padding-right: 24px;
    padding-left: 24px;
  }

  .sp-about__stats {
    gap: 16px;
  }

  .sp-property__cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
