.site-page {
  --site-inline: clamp(1rem, 4vw, 4rem);
  --site-section: clamp(3.5rem, 7vw, 6.5rem);
  --site-gap: clamp(1.25rem, 3vw, 2.5rem);
  --site-card-gap: clamp(1rem, 2vw, 1.5rem);
  --site-radius-small: 1.25rem;
  --site-radius-card: 2rem;
  --site-radius-panel: clamp(2rem, 5vw, 4rem);
  --site-shadow: 0 1rem 2.5rem rgba(58, 90, 64, 0.1);
}

.site-page main {
  padding-top: clamp(6.25rem, 9vw, 7.5rem);
  overflow-x: clip;
}

.site-page .live-page-content {
  display: flow-root;
}

.site-page .content-section {
  position: relative;
  margin: clamp(0.65rem, 1.2vw, 1.1rem);
  padding: var(--site-section) var(--site-inline);
  overflow: clip;
  color: var(--ink);
  background: var(--light);
  border: 0;
  border-radius: var(--site-radius-panel);
}

.site-page .content-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 82rem);
  margin-inline: auto;
}

.site-page .content-inner .content-inner {
  width: 100%;
}

.site-page :is(.content-grid, .card-grid) {
  display: grid;
  gap: var(--site-gap);
  align-items: start;
}

.site-page :is(.content-item, .content-card, .media-card, .faq-item) {
  min-width: 0;
}

.site-page main :is(h1, h2, h3, h4, h5, h6) {
  max-width: 24ch;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  overflow-wrap: anywhere;
  text-transform: lowercase;
}

.site-page main h1 {
  font-size: clamp(2.35rem, 5vw, 4rem);
  line-height: 1.02;
}

.site-page main h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.06;
}

.site-page main h3 {
  font-size: clamp(1.55rem, 2.6vw, 2.125rem);
  line-height: 1.1;
}

.site-page main :is(p, li) {
  max-width: 65ch;
}

.site-page main p {
  margin-bottom: 1.25rem;
}

.site-page main :is(ul, ol) {
  display: grid;
  gap: 0.65rem;
  max-width: 65ch;
  margin: 1.25rem 0 0;
  padding-left: 1.3rem;
}

.site-page .content-card,
.site-page .media-card,
.site-page .faq-item {
  padding: clamp(1.25rem, 2.5vw, 2rem);
  color: var(--ink);
  background: var(--mint);
  border: 0;
  border-radius: var(--site-radius-card);
  box-shadow: var(--site-shadow);
}

.site-page .content-card:nth-child(even),
.site-page .media-card:nth-child(even),
.site-page .faq-item:nth-child(even) {
  background: var(--teal);
}

.site-page figure,
.site-page blockquote {
  margin: 0;
}

.site-page .page-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  margin-top: 1rem;
  padding: 0.7rem 1.15rem;
  color: var(--light);
  font-family: var(--font-body);
  font-size: 0.96rem;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  background: var(--green);
  border: 0;
  border-radius: var(--radius-pill);
  box-shadow: 0 0.35rem 0 rgba(132, 189, 182, 0.5);
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.site-page .page-button:hover {
  color: var(--ink);
  background: var(--teal);
  box-shadow: 0 0.18rem 0 rgba(58, 90, 64, 0.5);
  transform: translateY(0.17rem);
}

.site-page .page-button-secondary {
  color: var(--green);
  background: var(--mint);
  box-shadow: 0 0.35rem 0 rgba(58, 90, 64, 0.35);
}

.site-page .page-button-large {
  min-height: 4.25rem;
  padding-inline: clamp(1.5rem, 4vw, 3rem);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
}

.site-page .cta-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 0.25rem;
}

.site-page .image-placeholder {
  position: relative;
  display: grid;
  width: 100%;
  overflow: hidden;
  place-items: center;
  color: var(--green);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: none;
  background-color: var(--teal);
  background-image:
    radial-gradient(circle at 18% 22%, rgba(236, 238, 238, 0.52) 0 0.35rem, transparent 0.4rem),
    linear-gradient(135deg, transparent 0 42%, rgba(179, 232, 195, 0.45) 42% 58%, transparent 58% 100%);
  border: 0;
  border-radius: var(--site-radius-card);
}

.site-page .image-placeholder > span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  padding: 0.55rem 0.8rem;
  background: var(--light);
  border-radius: var(--radius-pill);
}

.site-page .placeholder-4-3 {
  aspect-ratio: 4 / 3;
}

.site-page .placeholder-16-10 {
  aspect-ratio: 16 / 10;
}

.site-page .placeholder-4-5 {
  aspect-ratio: 4 / 5;
}

.site-page .placeholder-1-1 {
  aspect-ratio: 1 / 1;
}

.site-page .section-title {
  padding-block: clamp(2.75rem, 5vw, 4.5rem);
  text-align: center;
  background: var(--teal);
}

.site-page .section-title :is(h1, h2, h3, p) {
  margin-inline: auto;
}

.site-page .contact-section {
  background: var(--mint);
}

.site-page .contact-section > .content-inner > .content-grid {
  align-items: center;
}

.site-page .contact-copy .deferred-form-button {
  margin-top: 0.25rem;
}

.site-page .contact-section .content-item:last-child {
  padding: 1.25rem;
  color: var(--light);
  background: var(--green);
  border-radius: var(--site-radius-small);
}

.site-page .contact-section .content-item:last-child a {
  text-underline-offset: 0.25em;
}

.site-page:is(.page-home, .page-create-a-site, .page-website-design) .section-1 {
  display: grid;
  gap: var(--site-gap);
  align-items: center;
  min-height: 0;
  color: var(--light);
  background: var(--green);
}

.site-page:is(.page-home, .page-create-a-site, .page-website-design) .section-1 > div:not(.content-inner) {
  display: none;
}

.site-page:is(.page-home, .page-create-a-site, .page-website-design) .section-1 > span:first-child {
  display: block;
  order: 2;
  width: 100%;
}

.site-page:is(.page-home, .page-create-a-site, .page-website-design) .section-1 .content-inner {
  order: 1;
  width: 100%;
}

.site-page:is(.page-home, .page-create-a-site, .page-website-design) .section-1 h1 {
  max-width: 14ch;
}

.page-home .section-2 {
  background: var(--light);
}

.page-home .section-2 > .content-inner > div > div {
  display: grid;
  gap: var(--site-gap);
}

.page-home .section-2 .content-card {
  display: grid;
  gap: var(--site-card-gap);
  align-content: start;
  background: var(--mint);
}

.page-home .section-2 .content-card:nth-child(2) {
  background: var(--teal);
}

.page-home .section-2 .content-card > span:first-child {
  display: block;
}

.page-home .section-2 .content-card .content-grid {
  gap: 0.75rem;
}

.page-home .section-2 .content-card .page-button {
  margin-top: 0.25rem;
}

.page-home .section-2 .content-card:nth-child(2) .content-grid > .content-item:first-child {
  order: 2;
}

.page-home .section-2 .content-card:nth-child(2) .content-grid > .content-item:last-child {
  order: 1;
}

.page-home .section-3,
.page-home .section-4 {
  color: var(--ink);
  background: var(--teal);
}

.page-home .section-3 {
  margin-bottom: 0;
  padding-bottom: 1rem;
  border-radius: var(--site-radius-panel) var(--site-radius-panel) 0 0;
}

.page-home .section-4 {
  margin-top: 0;
  padding-top: 1rem;
  border-radius: 0 0 var(--site-radius-panel) var(--site-radius-panel);
}

.page-home .section-4 .content-grid {
  align-items: center;
}

.page-home .section-4 .placeholder-4-5 {
  max-width: 21rem;
  margin-inline: auto;
}

.page-home .section-5 {
  background: var(--light);
}

.page-home .section-5 .card-grid {
  align-items: stretch;
}

.page-home .section-5 .content-card {
  height: 100%;
  background: var(--mint);
}

.page-home .section-5 .content-card:nth-child(even) {
  background: var(--teal);
}

.page-home .section-5 blockquote {
  display: grid;
  gap: 1rem;
}

.page-home .section-5 .placeholder-1-1 {
  width: 5rem;
  flex: 0 0 5rem;
}

.page-home .section-6 {
  background: var(--light);
  box-shadow: var(--site-shadow);
}

.page-home .section-6 > .content-inner > .content-grid {
  align-items: center;
}

.page-home .section-6 .content-card {
  display: grid;
  min-height: 12rem;
  place-items: center;
  text-align: center;
  background: var(--green);
  box-shadow: none;
}

.page-home .section-6 .content-card h3 {
  margin: 0;
}

.page-home .section-6 .content-card .page-button {
  color: var(--light);
  background: transparent;
  box-shadow: none;
}

.page-home .section-8 {
  background: var(--teal);
}

.site-page .faq-item {
  margin-bottom: 1rem;
  padding: clamp(1.1rem, 2vw, 1.6rem);
}

.site-page .faq-item h3 {
  max-width: none;
  margin: 1.5rem 0 0.5rem;
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: 750;
  line-height: 1.35;
  text-transform: none;
}

.site-page .faq-item > h3:first-child {
  margin-top: 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.6vw, 2.25rem);
  font-weight: 400;
  text-transform: lowercase;
}

.site-page .faq-item p {
  margin-bottom: 0.85rem;
}

.page-create-a-site :is(.section-2, .section-4, .section-6, .section-8, .section-10) {
  padding-bottom: 1.5rem;
  background: var(--teal);
  border-radius: var(--site-radius-panel) var(--site-radius-panel) 0 0;
}

.page-create-a-site :is(.section-3, .section-5, .section-7, .section-9, .section-11) {
  margin-top: 0;
  padding-top: 1.5rem;
  border-radius: 0 0 var(--site-radius-panel) var(--site-radius-panel);
}

.page-create-a-site :is(.section-3, .section-5) .content-grid {
  align-items: center;
}

.page-create-a-site :is(.section-3, .section-5) .placeholder-4-3 {
  max-width: 28rem;
  margin-inline: auto;
}

.page-create-a-site .section-11 {
  background: var(--teal);
}

.page-create-a-site .section-11 .media-card {
  margin-bottom: var(--site-gap);
  background: var(--light);
  box-shadow: 0 1rem 2rem rgba(58, 90, 64, 0.14);
}

.page-create-a-site .section-11 .media-card:nth-child(even) {
  background: var(--mint);
}

.page-create-a-site .section-11 .media-card > .content-grid {
  align-items: center;
}

.page-create-a-site .section-13 {
  text-align: center;
  background: var(--light);
}

.page-create-a-site .section-13 :is(h2, p) {
  margin-inline: auto;
}

.page-create-a-site .section-13 .card-grid {
  margin-top: 2rem;
  text-align: left;
}

.page-create-a-site .section-13 > .content-inner > .content-grid {
  align-items: stretch;
  margin-top: 2rem;
  text-align: left;
}

.page-create-a-site .section-13 .content-card {
  height: 100%;
  background: var(--mint);
}

.page-create-a-site .section-14 {
  background: var(--green);
  color: var(--light);
}

.page-create-a-site .section-15 {
  background: var(--teal);
}

.page-create-a-site .section-15 .faq-item {
  min-height: 0;
}

.page-website-design .section-3,
.page-website-design .section-5,
.page-website-design .section-8,
.page-website-design .section-12 {
  background: var(--teal);
}

.page-website-design .section-4 .card-grid {
  align-items: stretch;
}

.page-website-design .section-4 .card-grid > .content-card {
  display: flex;
  height: 100%;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.page-website-design .section-4 .card-grid > .content-card > .content-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: var(--mint);
}

.page-website-design .section-4 .card-grid > .content-card:nth-child(even) > .content-card {
  background: var(--teal);
}

.page-website-design .section-4 :is(h2, h3) {
  font-size: clamp(1.55rem, 2.6vw, 2.125rem);
}

.page-website-design .section-5 {
  margin-bottom: 0;
  padding-bottom: 1rem;
  border-radius: var(--site-radius-panel) var(--site-radius-panel) 0 0;
}

.page-website-design .section-6 {
  margin-top: 0;
  padding-top: 1rem;
  background: var(--teal);
  border-radius: 0 0 var(--site-radius-panel) var(--site-radius-panel);
}

.page-website-design .section-6 .content-grid,
.page-website-design .section-6 .content-item {
  width: min(100%, 68rem);
  margin-inline: auto;
}

.page-website-design .section-7 {
  background: var(--mint);
}

.page-website-design :is(.section-9, .section-13) > .content-inner > div > div {
  display: grid;
  gap: var(--site-gap);
}

.page-website-design :is(.section-9, .section-13) .content-card {
  height: 100%;
  background: var(--mint);
}

.page-website-design :is(.section-9, .section-13) .content-card:nth-child(even) {
  background: var(--teal);
}

.page-website-design .section-10 {
  display: grid;
  gap: var(--site-gap);
  align-items: center;
  color: var(--light);
  background: var(--green);
}

.page-website-design .section-10 > div:not(.content-inner) {
  display: none;
}

.page-website-design .section-10 > span:first-child {
  display: block;
}

.page-website-design .section-11 .content-grid {
  grid-template-columns: 1fr;
}

.page-website-design .section-14 {
  background: var(--teal);
}

.page-about .section-1 {
  min-height: 0;
  text-align: center;
  background: var(--teal);
}

.page-about .section-1 h1 {
  margin-inline: auto;
}

.page-about .section-2 .content-grid {
  align-items: center;
}

.page-about .section-2 .placeholder-4-5 {
  max-width: 21rem;
  margin-inline: auto;
}

.page-about .section-3 {
  background: var(--mint);
}

.page-about .section-3 .content-item {
  width: min(100%, 68rem);
  margin-inline: auto;
}

.page-about .section-4 .card-grid {
  align-items: stretch;
}

.page-about .section-4 .content-card {
  height: 100%;
  background: var(--mint);
}

.page-about .section-4 .content-card:nth-child(even) {
  background: var(--teal);
}

.page-about .section-4 blockquote {
  display: grid;
  gap: 1rem;
}

.page-about .section-4 .placeholder-1-1 {
  width: 5.5rem;
  flex: 0 0 5.5rem;
}

.page-about .section-5 {
  background: var(--teal);
}

.page-faq .section-1,
.page-privacy .section-1,
.page-terms-conditions .section-1 {
  min-height: 0;
  color: var(--ink);
  background: var(--teal);
}

.page-faq .section-2 {
  padding-inline: clamp(0.85rem, 3vw, 2.5rem);
  background: var(--light);
}

.page-faq .faq-accordion {
  display: grid;
  gap: clamp(2.25rem, 5vw, 4rem);
  width: min(100%, 68rem);
  margin-inline: auto;
}

.page-faq .accordion-group-title {
  max-width: none;
  margin-bottom: 1.25rem;
}

.page-faq .accordion-items {
  display: grid;
  gap: 0.65rem;
}

.page-faq .accordion-item {
  overflow: hidden;
  background: var(--mint);
  border-radius: var(--site-radius-small);
}

.page-faq .accordion-item:nth-child(even) {
  background: var(--teal);
}

.page-faq .accordion-item h3 {
  max-width: none;
  margin: 0;
}

.page-faq .accordion-trigger {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1.4rem;
  gap: 1rem;
  align-items: center;
  width: 100%;
  padding: 1rem 1.15rem;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 750;
  line-height: 1.35;
  text-align: left;
  text-transform: none;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.page-faq .accordion-icon {
  position: relative;
  width: 1.2rem;
  height: 1.2rem;
}

.page-faq .accordion-icon::before,
.page-faq .accordion-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 2px;
  background: var(--green);
  border-radius: 1rem;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.page-faq .accordion-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.page-faq .accordion-trigger[aria-expanded="true"] .accordion-icon::after {
  transform: translate(-50%, -50%) rotate(0);
}

.page-faq .accordion-panel {
  padding: 0 1.15rem 1.1rem;
}

.page-faq .accordion-panel p:last-child {
  margin-bottom: 0;
}

.page-faq .section-3 {
  background: var(--green);
}

.page-faq .section-3 .content-card {
  display: grid;
  gap: var(--site-gap);
  align-items: center;
  color: var(--ink);
  background: var(--mint);
}

.page-faq .section-3 .placeholder-4-5 {
  max-width: 18rem;
  margin-inline: auto;
}

.page-privacy .section-2,
.page-terms-conditions .section-2 {
  background: var(--light);
}

.page-privacy .section-2 .content-inner,
.page-terms-conditions .section-2 .content-inner {
  width: min(100%, 68ch);
}

.page-privacy .section-2 :is(p, li),
.page-terms-conditions .section-2 :is(p, li) {
  max-width: none;
}

.page-privacy .section-2 strong,
.page-terms-conditions .section-2 strong {
  color: var(--green);
}

html:not(.js) .site-page main {
  padding-top: 0;
}

html:not(.js) .page-faq .accordion-panel[hidden] {
  display: block !important;
}

@media (min-width: 48rem) {
  .site-page :is(.section-text, .section-text-image, .section-shape-image, .section-image-text-overlap) .content-grid,
  .site-page .contact-section > .content-inner > .content-grid,
  .page-home .section-4 .content-grid,
  .page-about .section-2 .content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-page .card-grid,
  .page-home .section-2 > .content-inner > div > div,
  .page-create-a-site .section-13 > .content-inner > .content-grid,
  .page-website-design :is(.section-9, .section-13) > .content-inner > div > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-home .section-6 > .content-inner > .content-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(15rem, 0.6fr);
  }

  .page-home .section-6 .content-item:nth-child(2) {
    grid-column: 1;
    grid-row: 1;
  }

  .page-home .section-6 .content-item:first-child {
    grid-column: 2;
    grid-row: 1;
  }

  .page-create-a-site .section-11 .media-card > .content-grid {
    grid-template-columns: minmax(13rem, 0.8fr) minmax(0, 1.2fr);
  }

  .page-faq .section-3 .content-card {
    grid-template-columns: minmax(12rem, 0.65fr) minmax(0, 1.35fr);
  }
}

@media (min-width: 64rem) {
  .site-page:is(.page-home, .page-create-a-site, .page-website-design) .section-1 {
    grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.75fr);
  }

  .site-page:is(.page-home, .page-create-a-site, .page-website-design) .section-1 > span:first-child {
    grid-column: 2;
    grid-row: 1;
  }

  .site-page:is(.page-home, .page-create-a-site, .page-website-design) .section-1 > .content-inner {
    grid-column: 1;
    grid-row: 1;
  }

  .page-home .section-5 .card-grid,
  .page-create-a-site .section-13 > .content-inner > .content-grid,
  .page-website-design .section-4 .card-grid,
  .page-website-design :is(.section-9, .section-13) > .content-inner > div > div {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-about .section-4 .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-create-a-site .section-11 {
    overflow: visible;
  }

  .page-create-a-site .section-11 .media-card {
    position: sticky;
    top: 7.25rem;
    z-index: 1;
    min-height: 22rem;
    margin-bottom: clamp(2rem, 6vh, 4rem);
  }

  .page-create-a-site .section-11 .media-card:last-child {
    margin-bottom: 0;
  }

  .page-website-design .section-10 {
    grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1.2fr);
  }

  .page-website-design .section-10 > span:first-child {
    grid-column: 1;
    grid-row: 1;
  }

  .page-website-design .section-10 > .content-inner {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
  }
}

@media (max-width: 47.99rem) {
  .site-page main h1 {
    font-size: clamp(2.15rem, 10vw, 2.375rem);
  }

  .site-page main h2 {
    font-size: clamp(1.75rem, 8vw, 1.875rem);
  }

  .site-page main h3 {
    font-size: clamp(1.4rem, 6.5vw, 1.55rem);
  }

  .site-page .content-section {
    padding-inline: clamp(1rem, 5vw, 1.35rem);
  }

  .site-page .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .site-page .cta-actions .page-button {
    width: 100%;
  }

  .page-create-a-site .section-11 .media-card {
    position: static;
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-page .page-button,
  .page-faq .accordion-icon::before,
  .page-faq .accordion-icon::after {
    transition: none;
  }
}
