/* sage path xeriscaping example styles */
.sx-page{
  --sx-ink: #2b261f;
  --sx-ink-soft: #645b50;
  --sx-paper: #fcf7ef;
  --sx-wash: #efe4d4;
  --sx-sand: #d8c39c;
  --sx-clay: #c47a55;
  --sx-sage: #87986f;
  --sx-teal: #66857c;
  --sx-sun: #e3ba6a;
  --sx-line: rgba(43, 38, 31, 0.12);
  --sx-shadow: 0 22px 60px rgba(43, 38, 31, 0.12);
  color: var(--sx-ink);
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(227, 186, 106, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(135, 152, 111, 0.08), transparent 24%),
    var(--sx-paper);
}

.sx-page::before{
  content: none;
}

.sx-header,
.sx-brand,
.sx-nav,
.sx-call,
.sx-button{
  display: flex;
  align-items: center;
}

.sx-header{
  position: sticky;
  top: 0;
  z-index: 5;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(20px, 5vw, 56px);
  background: rgba(252, 247, 239, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--sx-line);
}

.sx-brand{
  gap: 12px;
  color: var(--sx-ink);
  font-family: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  text-decoration: none;
}

.sx-brand-mark{
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--sx-paper);
  background:
    linear-gradient(140deg, var(--sx-teal), var(--sx-sage));
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(252, 247, 239, 0.34);
}

.sx-nav{
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.sx-nav a,
.sx-call{
  padding: 10px 14px;
  color: var(--sx-ink);
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
}

.sx-nav a:hover,
.sx-call:hover{
  border-color: var(--sx-line);
  background: rgba(255, 255, 255, 0.6);
}

.sx-call{
  border-color: var(--sx-line);
}

.sx-hero,
.sx-section{
  padding: clamp(38px, 6vw, 76px) clamp(20px, 5vw, 56px);
}

.sx-hero{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  padding-top: clamp(48px, 7vw, 90px);
}

.sx-kicker{
  margin: 0 0 16px;
  color: var(--sx-clay);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sx-hero h1,
.sx-heading h2,
.sx-card h3,
.sx-project-card h3,
.sx-contact h2{
  font-family: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
}

.sx-hero h1{
  max-width: 11ch;
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 5.7rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.sx-hero-copy > p:not(.sx-kicker),
.sx-intro > p,
.sx-card p,
.sx-project-card p,
.sx-contact p,
.sx-strip span,
.sx-meta-list li,
.sx-scene-note span{
  color: var(--sx-ink-soft);
}

.sx-hero-copy > p:not(.sx-kicker){
  max-width: 34rem;
  margin: 20px 0 0;
  font-size: 1.1rem;
}

.sx-actions,
.sx-mini-list,
.sx-service-grid,
.sx-project-grid,
.sx-approach-grid,
.sx-contact-list{
  display: grid;
}

.sx-actions{
  grid-auto-flow: column;
  width: max-content;
  gap: 12px;
  margin-top: 28px;
}

.sx-button{
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  color: var(--sx-ink);
  text-decoration: none;
  border: 1px solid var(--sx-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  transition: background-color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.sx-button:hover{
  transform: translateY(-1px);
  border-color: rgba(43, 38, 31, 0.2);
}

.sx-button-primary{
  color: var(--sx-paper);
  background: var(--sx-ink);
  border-color: var(--sx-ink);
}

.sx-button-primary:hover{
  background: var(--sx-teal);
  border-color: var(--sx-teal);
}

.sx-mini-list{
  grid-template-columns: repeat(3, max-content);
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.sx-mini-list li{
  padding: 10px 14px;
  color: var(--sx-ink);
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid var(--sx-line);
  border-radius: 999px;
}

.sx-hero-media{
  min-width: 0;
}

.sx-scene{
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid var(--sx-line);
  border-radius: 32px;
  background:
    linear-gradient(180deg, #f7e9c8 0%, #f3debb 34%, #e8d6b4 34%, #e8d6b4 100%);
  box-shadow: var(--sx-shadow);
}

.sx-scene-sun,
.sx-scene-mesa,
.sx-scene-house,
.sx-scene-door,
.sx-scene-window,
.sx-scene-yard,
.sx-scene-path,
.sx-scene-plant{
  position: absolute;
  display: block;
}

.sx-scene-sun{
  top: 46px;
  right: 54px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(227, 186, 106, 0.92);
}

.sx-scene-mesa{
  left: -4%;
  right: -4%;
  bottom: 43%;
  height: 120px;
  background:
    linear-gradient(180deg, rgba(196, 122, 85, 0.16), rgba(196, 122, 85, 0.22)),
    linear-gradient(90deg, #dba886 0%, #c6805c 35%, #d9a77d 70%, #cb8661 100%);
  clip-path: polygon(0 100%, 8% 58%, 19% 68%, 30% 32%, 43% 57%, 55% 22%, 70% 60%, 83% 38%, 100% 68%, 100% 100%);
}

.sx-scene-house{
  left: 18%;
  bottom: 28%;
  width: 34%;
  height: 27%;
  background: #f8f0e2;
  border-radius: 22px 22px 14px 14px;
  box-shadow: inset 0 -14px 0 rgba(216, 195, 156, 0.7);
}

.sx-scene-house::before{
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: -18%;
  height: 24%;
  background: var(--sx-clay);
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
  border-radius: 12px 12px 0 0;
}

.sx-scene-door{
  left: 29%;
  bottom: 28%;
  width: 7%;
  height: 14%;
  background: var(--sx-teal);
  border-radius: 10px 10px 0 0;
}

.sx-scene-window{
  bottom: 37%;
  width: 7%;
  height: 8%;
  background: rgba(102, 133, 124, 0.26);
  border-radius: 8px;
}

.sx-scene-window-a{
  left: 23%;
}

.sx-scene-window-b{
  left: 39%;
}

.sx-scene-yard{
  left: 8%;
  right: 8%;
  bottom: 10%;
  height: 26%;
  border-radius: 28px;
  background:
    radial-gradient(circle at 12px 12px, rgba(216, 195, 156, 0.72) 0 2px, transparent 2px) 0 0 / 24px 24px,
    linear-gradient(180deg, #cdb483 0%, #bfa173 100%);
}

.sx-scene-path{
  left: 31%;
  bottom: 10%;
  width: 17%;
  height: 23%;
  background: #efe3ce;
  clip-path: polygon(40% 0, 72% 0, 100% 100%, 0 100%);
  border-radius: 12px;
}

.sx-scene-plant{
  bottom: 17%;
  width: 58px;
  height: 82px;
  background: linear-gradient(180deg, var(--sx-sage), #6e7e58);
  clip-path: polygon(50% 0, 65% 28%, 100% 18%, 78% 52%, 92% 100%, 50% 72%, 8% 100%, 22% 52%, 0 18%, 35% 28%);
}

.sx-scene-plant-a{
  left: 15%;
}

.sx-scene-plant-b{
  left: 56%;
  height: 68px;
}

.sx-scene-plant-c{
  right: 12%;
  height: 94px;
}

.sx-scene-note{
  position: absolute;
  right: 24px;
  bottom: 24px;
  max-width: 240px;
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  background: rgba(252, 247, 239, 0.88);
  border: 1px solid rgba(43, 38, 31, 0.08);
  border-radius: 20px;
  backdrop-filter: blur(12px);
}

.sx-scene-note strong{
  color: var(--sx-ink);
}

.sx-strip{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0 clamp(20px, 5vw, 56px) clamp(20px, 5vw, 56px);
}

.sx-strip article,
.sx-card,
.sx-project-card,
.sx-contact-card{
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--sx-line);
  border-radius: 24px;
  box-shadow: var(--sx-shadow);
}

.sx-strip article{
  padding: 22px;
}

.sx-strip strong,
.sx-card h3,
.sx-project-card h3,
.sx-contact-list span,
.sx-heading h2{
  color: var(--sx-ink);
}

.sx-strip strong{
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.sx-intro{
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: end;
}

.sx-heading h2{
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.sx-intro > p{
  margin: 0;
  max-width: 40rem;
  font-size: 1.06rem;
}

.sx-service-grid,
.sx-project-grid{
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

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

.sx-card,
.sx-project-card{
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
}

.sx-card h3,
.sx-project-card h3{
  margin: 0;
  font-size: 1.35rem;
}

.sx-card p,
.sx-project-card p,
.sx-contact p{
  margin: 0;
}

.sx-project-visual{
  position: relative;
  min-height: 190px;
  overflow: hidden;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(227, 186, 106, 0.28), rgba(216, 195, 156, 0.58));
}

.sx-project-visual::before,
.sx-project-visual::after,
.sx-project-stone,
.sx-project-plant{
  position: absolute;
  display: block;
}

.sx-project-visual::before{
  content: "";
  inset: 58% 6% 10% 6%;
  border-radius: 22px;
  background:
    radial-gradient(circle at 10px 10px, rgba(252, 247, 239, 0.35) 0 2px, transparent 2px) 0 0 / 22px 22px,
    linear-gradient(180deg, #cfb489 0%, #bc9b69 100%);
}

.sx-project-visual::after{
  content: "";
  width: 40%;
  height: 72%;
  right: 10%;
  top: 18%;
  border-radius: 22px;
  background: rgba(252, 247, 239, 0.6);
}

.sx-project-entry::after{
  width: 34%;
  right: 12%;
}

.sx-project-sideyard::after{
  width: 20%;
  height: 86%;
  left: 40%;
  right: auto;
  top: 8%;
}

.sx-project-patio::after{
  inset: 18% 20% 40% 20%;
  width: auto;
  height: auto;
  border-radius: 18px;
}

.sx-project-stone{
  border-radius: 999px;
  background: #8d6f4e;
}

.sx-project-stone-a{
  width: 34px;
  height: 20px;
  left: 18%;
  top: 28%;
}

.sx-project-stone-b{
  width: 20px;
  height: 20px;
  left: 26%;
  top: 18%;
}

.sx-project-stone-c{
  width: 28px;
  height: 18px;
  left: 18%;
  top: 36%;
}

.sx-project-stone-d{
  width: 24px;
  height: 24px;
  right: 20%;
  top: 42%;
}

.sx-project-stone-e{
  width: 24px;
  height: 16px;
  left: 24%;
  top: 62%;
}

.sx-project-stone-f{
  width: 30px;
  height: 20px;
  right: 18%;
  top: 64%;
}

.sx-project-plant{
  width: 42px;
  height: 56px;
  background: linear-gradient(180deg, var(--sx-sage), #6d7e57);
  clip-path: polygon(50% 0, 64% 26%, 100% 18%, 78% 56%, 90% 100%, 50% 70%, 10% 100%, 22% 56%, 0 18%, 36% 26%);
}

.sx-project-plant-a{
  left: 12%;
  bottom: 20%;
}

.sx-project-plant-b{
  right: 14%;
  bottom: 18%;
}

.sx-project-plant-c{
  left: 12%;
  bottom: 24%;
  height: 68px;
}

.sx-project-plant-d{
  right: 12%;
  bottom: 24%;
  height: 48px;
}

.sx-project-plant-e{
  left: 14%;
  bottom: 20%;
}

.sx-project-plant-f{
  right: 16%;
  bottom: 14%;
  height: 72px;
}

.sx-meta-list{
  display: flex;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  align-items: flex-start;
  flex-direction: column;
}

.sx-approach-grid{
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.sx-contact{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: 24px;
  align-items: start;
}

.sx-contact-card{
  display: grid;
  gap: 20px;
  padding: 24px;
}

.sx-contact-list{
  align-items: start;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sx-contact-list li{
  display: grid;
  gap: 6px;
}

.sx-contact-list a,
.sx-contact-list strong{
  color: var(--sx-ink);
  text-decoration: none;
}

.sx-contact-list a:hover{
  color: var(--sx-clay);
}

.sx-footer{
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(20px, 5vw, 56px) 44px;
  color: var(--sx-ink-soft);
}

.sx-footer p{
  margin: 0;
}

.sx-footer a{
  color: var(--sx-ink);
  text-decoration: none;
}

.sx-footer a:hover{
  color: var(--sx-clay);
}

.sx-footer .tp-signature-mark{
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(43, 38, 31, 0.1);
}


@media (max-width: 1080px) {
.sx-hero,
.sx-intro,
.sx-contact,
.sx-service-grid,
.sx-project-grid,
.sx-approach-grid,
.sx-strip{
    grid-template-columns: 1fr 1fr;
  }
.sx-hero,
.sx-intro,
.sx-contact{
    grid-template-columns: 1fr;
  }
.sx-service-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.sx-project-grid,
.sx-approach-grid,
.sx-strip{
    grid-template-columns: 1fr;
  }
}


@media (max-width: 780px) {
.sx-header,
.sx-nav{
    flex-wrap: wrap;
  }
.sx-header{
    justify-content: center;
  }
.sx-actions,
.sx-mini-list{
    grid-auto-flow: row;
    width: 100%;
  }
.sx-mini-list,
.sx-service-grid{
    grid-template-columns: 1fr;
  }
.sx-scene{
    min-height: 380px;
  }
.sx-hero h1{
    max-width: 100%;
  }
.sx-footer{
    flex-direction: column;
  }
}

.sx-page{
  background:
    linear-gradient(180deg, rgba(135, 152, 111, 0.06), transparent 220px),
    var(--sx-paper);
}

.sx-header{
  position: sticky;
  top: 0;
  padding: 14px clamp(20px, 5vw, 40px);
  background: rgba(252, 247, 239, 0.94);
  box-shadow: none;
  border-bottom: 1px solid var(--sx-line);
}

.sx-main{
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 40px) clamp(20px, 5vw, 40px) 56px;
}

.sx-overview,
.sx-key-grid,
.sx-steps,
.sx-contact-grid{
  display: grid;
}

.sx-overview{
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 18px;
  align-items: start;
}

.sx-panel{
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.sx-intro-card,
.sx-summary-card,
.sx-compact-card,
.sx-job-item,
.sx-step,
.sx-contact-grid > .sx-panel{
  padding: 20px 0;
}

.sx-intro-card h1{
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.sx-lead{
  margin: 14px 0 0;
  color: var(--sx-ink);
  font-size: 1.08rem;
  font-weight: 700;
}

.sx-copy{
  margin: 12px 0 0;
  max-width: 44rem;
  color: var(--sx-ink-soft);
}

.sx-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.sx-summary-card h2,
.sx-section-head h2,
.sx-compact-card h3,
.sx-job-copy h3,
.sx-step h3,
.sx-contact-grid h3{
  margin: 0;
  color: var(--sx-ink);
  font-family: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
}

.sx-summary-card h2,
.sx-section-head h2{
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  line-height: 1.08;
}

.sx-check-list,
.sx-inline-meta,
.sx-note-list{
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.sx-check-list{
  display: grid;
  gap: 10px;
}

.sx-check-list li,
.sx-inline-meta li,
.sx-note-list li{
  color: var(--sx-ink-soft);
}

.sx-check-list li{
  padding-left: 18px;
  position: relative;
}

.sx-check-list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sx-clay);
}

.sx-yard-card{
  position: relative;
  min-height: 200px;
  margin-top: 20px;
  overflow: hidden;
  border-radius: 0;
  background:
    linear-gradient(180deg, #f2e4c6 0%, #f2e4c6 40%, #dec395 40%, #ceb07b 100%);
  border: 0;
}

.sx-yard-house,
.sx-yard-path,
.sx-yard-bed,
.sx-yard-plant{
  position: absolute;
  display: block;
}

.sx-yard-house{
  left: 18px;
  top: 26px;
  width: 108px;
  height: 72px;
  border-radius: 0;
  background: #f8f0e2;
  box-shadow: inset 0 -10px 0 rgba(216, 195, 156, 0.64);
}

.sx-yard-house::before{
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: -16px;
  height: 22px;
  background: var(--sx-clay);
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}

.sx-yard-path{
  left: 62px;
  bottom: 0;
  width: 42px;
  height: 96px;
  background: #efe4d1;
  clip-path: polygon(28% 0, 76% 0, 100% 100%, 0 100%);
}

.sx-yard-bed{
  bottom: 18px;
  height: 72px;
  border-radius: 999px;
  background: rgba(126, 145, 102, 0.32);
}

.sx-yard-bed-a{
  left: 18px;
  width: 86px;
}

.sx-yard-bed-b{
  right: 16px;
  width: 120px;
}

.sx-yard-plant{
  width: 30px;
  height: 44px;
  background: linear-gradient(180deg, var(--sx-sage), #667754);
  clip-path: polygon(50% 0, 65% 28%, 100% 20%, 74% 52%, 88% 100%, 50% 72%, 12% 100%, 26% 52%, 0 20%, 35% 28%);
}

.sx-yard-plant-a{
  left: 24px;
  bottom: 46px;
}

.sx-yard-plant-b{
  left: 104px;
  bottom: 32px;
}

.sx-yard-plant-c{
  right: 28px;
  bottom: 44px;
  height: 52px;
}

.sx-section{
  padding: 18px 0 0;
}

.sx-section-head{
  margin-bottom: 14px;
}

.sx-section-head .sx-kicker{
  margin-bottom: 10px;
}

.sx-key-grid{
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px;
  border-top: 1px solid var(--sx-line);
}

.sx-compact-card{
  display: grid;
  gap: 8px;
  border-bottom: 1px solid var(--sx-line);
}

.sx-compact-card h3{
  font-size: 1.15rem;
}

.sx-compact-card p,
.sx-job-copy p,
.sx-step p{
  margin: 0;
  color: var(--sx-ink-soft);
}

.sx-job-list{
  display: grid;
  gap: 0;
  border-top: 1px solid var(--sx-line);
}

.sx-job-item{
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--sx-line);
}

.sx-job-visual{
  min-height: 120px;
  border-radius: 0;
  border: 0;
  background-color: #e7d3ad;
  background-repeat: no-repeat;
}

.sx-job-visual-a{
  background:
    linear-gradient(180deg, transparent 0 48%, #b89862 48% 100%),
    linear-gradient(120deg, transparent 0 42%, #ede3d0 42% 58%, transparent 58%),
    radial-gradient(circle at 28% 68%, #73835d 0 18px, transparent 19px),
    radial-gradient(circle at 74% 66%, #73835d 0 14px, transparent 15px),
    #e7d3ad;
}

.sx-job-visual-b{
  background:
    linear-gradient(180deg, transparent 0 44%, #bea06d 44% 100%),
    linear-gradient(90deg, transparent 0 44%, #e7ddc9 44% 56%, transparent 56%),
    radial-gradient(circle at 22% 64%, #73835d 0 12px, transparent 13px),
    radial-gradient(circle at 78% 58%, #73835d 0 18px, transparent 19px),
    #e7d3ad;
}

.sx-job-visual-c{
  background:
    linear-gradient(180deg, transparent 0 50%, #b69763 50% 100%),
    linear-gradient(0deg, transparent 0 28%, #efe5d1 28% 58%, transparent 58%),
    radial-gradient(circle at 24% 74%, #73835d 0 14px, transparent 15px),
    radial-gradient(circle at 74% 74%, #73835d 0 16px, transparent 17px),
    #e7d3ad;
}

.sx-job-copy{
  display: grid;
  gap: 10px;
}

.sx-job-copy h3{
  font-size: 1.22rem;
}

.sx-inline-meta{
  display: grid;
  gap: 6px;
}

.sx-inline-meta strong,
.sx-note-list strong{
  color: var(--sx-ink);
}

.sx-steps{
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 24px;
  border-top: 1px solid var(--sx-line);
}

.sx-step{
  display: grid;
  gap: 10px;
  border-bottom: 1px solid var(--sx-line);
}

.sx-step span{
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--sx-paper);
  background: var(--sx-ink);
  border-radius: 50%;
  font-weight: 800;
}

.sx-step h3{
  font-size: 1.08rem;
}

.sx-contact-grid{
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.sx-note-list{
  display: grid;
  gap: 14px;
}

.sx-summary-card,
.sx-contact-grid > .sx-panel{
  padding: 18px;
  background: rgba(255, 255, 255, 0.34);
}

.sx-brand-mark,
.sx-button,
.sx-nav a,
.sx-call,
.sx-job-visual,
.sx-yard-card{
  border-radius: 0;
}

.sx-brand-mark{
  box-shadow: none;
}

.sx-nav{
  gap: 18px;
}

.sx-nav a,
.sx-call{
  padding: 4px 0;
  border: 0;
  background: transparent;
}

.sx-nav a:hover,
.sx-call:hover{
  border-color: transparent;
  background: transparent;
  color: var(--sx-clay);
}

.sx-button{
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
}

.sx-button-primary{
  padding: 10px 14px;
  color: var(--sx-paper);
  background: var(--sx-ink);
}

.sx-button:not(.sx-button-primary){
  color: var(--sx-ink-soft);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.sx-button:hover{
  transform: none;
  border-color: transparent;
}

.sx-button-primary:hover{
  background: var(--sx-teal);
  border-color: transparent;
}

.sx-step span{
  border-radius: 0;
}

.sx-note-list a,
.sx-note-list span{
  display: block;
  margin-top: 4px;
  color: var(--sx-ink-soft);
  text-decoration: none;
}

.sx-note-list a:hover{
  color: var(--sx-clay);
}

.sx-footer{
  max-width: 1120px;
  margin: 0 auto;
  padding: 8px clamp(20px, 5vw, 40px) 42px;
}


@media (max-width: 980px) {
.sx-overview,
.sx-contact-grid,
.sx-key-grid,
.sx-steps{
    grid-template-columns: 1fr;
  }
.sx-job-item{
    grid-template-columns: 1fr;
  }
}


@media (max-width: 720px) {
.sx-main{
    padding-top: 20px;
  }
.sx-header{
    position: static;
    justify-content: center;
  }
.sx-nav{
    justify-content: flex-start;
  }
}


@media (max-width: 780px) {
.sx-footer{
    flex-direction: column;
    align-items: flex-start;
  }
}
