:root {
  --paper: #f3efe6;
  --sand: #e7e0d2;
  --ink: #161411;
  --muted: #6b675e;
  --pine: #234740;
  --night: #12110f;
  --font-sans: "Figtree", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Fraunces", ui-serif, Georgia, "Times New Roman", serif;
  --text-kicker: 0.75rem;
  --text-hero: clamp(3.25rem, 1.1rem + 8.5vw, 7.75rem);
  --text-display: clamp(2rem, 1.1rem + 3.2vw, 3.75rem);
  --text-title: clamp(1.35rem, 1.1rem + 1vw, 1.75rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 72rem;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body.s5280 {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  margin: 0;
}

body.s5280 .site-header,
body.s5280 header.site-header {
  /* neutralize Hello defaults when our header prints */
}

.s5280 h1,
.s5280 h2,
.s5280 h3,
.font-display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-wrap: balance;
  font-optical-sizing: auto;
}

.s5280 a {
  color: inherit;
}

.s5280 img {
  max-width: 100%;
  height: auto;
}

.s5280-wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

@media (min-width: 640px) {
  .s5280-wrap {
    width: min(100% - 4rem, var(--max));
  }
}

.s5280-kicker {
  font-size: var(--text-kicker);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  margin: 0;
}

.s5280-hero-title {
  font-size: var(--text-hero);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin: 1.5rem 0 0;
}

.s5280-display {
  font-size: var(--text-display);
  margin: 1rem 0 0;
}

.s5280-title {
  font-size: var(--text-title);
}

.s5280-muted {
  color: var(--muted);
}

.s5280-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 3.5rem;
  padding: 0 1.75rem;
  border-radius: 0.75rem;
  background: var(--pine);
  color: var(--paper) !important;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none !important;
  border: 0;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: background-color 150ms, transform 150ms;
}

.s5280-btn:hover {
  background: color-mix(in oklab, var(--pine) 90%, black);
}

.s5280-btn:active {
  transform: scale(0.96);
}

.s5280-btn--outline {
  background: transparent;
  color: var(--ink) !important;
  box-shadow: inset 0 0 0 1px color-mix(in oklab, var(--ink) 18%, transparent);
}

.s5280-btn--outline:hover {
  background: color-mix(in oklab, var(--ink) 5%, transparent);
}

.s5280-btn--paper {
  background: var(--paper);
  color: var(--ink) !important;
}

.s5280-btn--paper:hover {
  background: var(--sand);
}

.s5280-btn--sm {
  height: 2.25rem;
  padding: 0 0.9rem;
  font-size: 0.875rem;
  border-radius: 0.5rem;
}

/* Header */
.s5280-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in oklab, var(--paper) 85%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid color-mix(in oklab, var(--ink) 8%, transparent);
}

.s5280-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

@media (min-width: 640px) {
  .s5280-header__bar {
    height: 4.5rem;
    width: min(100% - 4rem, var(--max));
  }
}

.s5280-logo img {
  height: 2.75rem;
  width: auto;
  display: block;
}

@media (min-width: 640px) {
  .s5280-logo img {
    height: 3rem;
  }
}

.s5280-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .s5280-nav {
    display: flex;
  }
}

.s5280-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
}

.s5280-nav a:hover,
.s5280-nav a[aria-current="page"] {
  color: var(--ink);
}

.s5280-menu-toggle {
  display: flex;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--ink);
}

@media (min-width: 1024px) {
  .s5280-menu-toggle {
    display: none;
  }
}

.s5280-mobile {
  display: none;
  border-top: 1px solid color-mix(in oklab, var(--ink) 8%, transparent);
  background: var(--paper);
}

.s5280-header.is-open .s5280-mobile {
  display: block;
}

.s5280-mobile nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.25rem 1.25rem;
  width: min(100% - 0rem, var(--max));
  margin-inline: auto;
}

.s5280-mobile a {
  min-height: 2.75rem;
  display: flex;
  align-items: center;
  font-weight: 500;
  text-decoration: none;
}

/* Footer */
.s5280-footer {
  background: var(--night);
  color: var(--paper);
}

.s5280-footer__grid {
  display: grid;
  gap: 2.5rem;
  padding: 4rem 0;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

@media (min-width: 768px) {
  .s5280-footer__grid {
    grid-template-columns: 1fr 1fr 1fr;
    width: min(100% - 4rem, var(--max));
  }
}

.s5280-footer p,
.s5280-footer a {
  color: color-mix(in oklab, var(--paper) 70%, transparent);
  font-size: 0.875rem;
  line-height: 1.6;
}

.s5280-footer a:hover {
  color: var(--paper);
}

.s5280-footer__phone {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--paper) !important;
  text-decoration: none;
  display: block;
  margin-top: 0.75rem;
}

.s5280-footer__bar {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px solid color-mix(in oklab, var(--paper) 10%, transparent);
  padding: 1.5rem 0;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  font-size: 0.75rem;
  color: color-mix(in oklab, var(--paper) 40%, transparent);
}

@media (min-width: 640px) {
  .s5280-footer__bar {
    flex-direction: row;
    justify-content: space-between;
    width: min(100% - 4rem, var(--max));
  }
}

.s5280-footer__bar a {
  color: inherit;
  margin-left: 1rem;
  text-decoration: none;
}

/* Home sections */
.s5280-section {
  padding: 4rem 0;
}

@media (min-width: 640px) {
  .s5280-section {
    padding: 6rem 0;
  }
}

.s5280-hero {
  padding: 3rem 0 4rem;
}

.s5280-lede {
  max-width: 36rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--muted);
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .s5280-lede {
    font-size: 1.25rem;
  }
}

.s5280-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .s5280-actions {
    flex-direction: row;
    align-items: center;
  }
}

.s5280-offer {
  border-top: 1px solid color-mix(in oklab, var(--ink) 8%, transparent);
}

.s5280-cards {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
}

@media (min-width: 1024px) {
  .s5280-cards {
    grid-template-columns: 1fr 1fr;
  }
}

.s5280-card {
  border-radius: 1rem;
  padding: 1.75rem;
}

@media (min-width: 640px) {
  .s5280-card {
    padding: 2.5rem;
  }
}

.s5280-card--night {
  background: var(--night);
  color: var(--paper);
}

.s5280-card--night .s5280-kicker,
.s5280-card--night p,
.s5280-card--night li {
  color: color-mix(in oklab, var(--paper) 75%, transparent);
}

.s5280-card--sand {
  background: var(--sand);
}

.s5280-price {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  line-height: 0.92;
  margin: 1.25rem 0 0;
  color: inherit;
}

.s5280-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.s5280-list li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.875rem;
  margin: 0.75rem 0;
}

.s5280-check {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.s5280-figure img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

@media (min-width: 640px) {
  .s5280-figure .s5280-wrap {
    overflow: hidden;
    border-radius: 1rem;
  }
}

.s5280-caption {
  width: min(100% - 2.5rem, var(--max));
  margin: 1rem auto 0;
  font-size: 0.875rem;
  color: var(--muted);
}

.s5280-included {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .s5280-included {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }
}

.s5280-mini {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .s5280-mini {
    grid-template-columns: 1fr 1fr;
  }
}

.s5280-mini article {
  background: var(--sand);
  border-radius: 0.75rem;
  padding: 1.25rem;
}

.s5280-split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .s5280-split {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.s5280-split img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 1rem;
  display: block;
}

.s5280-band {
  background: var(--night);
  color: var(--paper);
}

.s5280-band .s5280-kicker {
  color: color-mix(in oklab, var(--paper) 45%, transparent);
}

.s5280-steps {
  display: grid;
  gap: 2rem;
  margin: 3rem 0 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 640px) {
  .s5280-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .s5280-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.s5280-steps .n {
  font-family: var(--font-display);
  font-size: 1.875rem;
  color: color-mix(in oklab, var(--paper) 35%, transparent);
  margin: 0;
}

.s5280-traffic {
  text-align: center;
}

.s5280-traffic h2 {
  max-width: 40rem;
  margin-inline: auto;
}

.s5280-traffic .italic {
  font-style: italic;
  color: var(--sand);
}

.s5280-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  padding: 0;
  list-style: none;
}

.s5280-pills a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 13rem;
  height: 3rem;
  padding: 0 1.5rem;
  border-radius: 999px;
  border: 1px solid color-mix(in oklab, var(--paper) 15%, transparent);
  color: var(--paper);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
}

.s5280-pills a:hover {
  background: color-mix(in oklab, var(--paper) 8%, transparent);
}

.s5280-faq details {
  border-top: 1px solid color-mix(in oklab, var(--ink) 8%, transparent);
  padding: 1.25rem 0;
}

.s5280-faq details:last-child {
  border-bottom: 1px solid color-mix(in oklab, var(--ink) 8%, transparent);
}

.s5280-faq summary {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-weight: 500;
  list-style: none;
}

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

.s5280-faq .plus {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--sand);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.s5280-faq details[open] .plus {
  transform: rotate(45deg);
}

.s5280-start {
  background: var(--sand);
}

.s5280-form {
  background: var(--paper);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 0 0 1px color-mix(in oklab, var(--ink) 8%, transparent);
}

@media (min-width: 640px) {
  .s5280-form {
    padding: 2rem;
  }
}

.s5280-form label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.s5280-form input,
.s5280-form textarea,
.s5280-form select {
  width: 100%;
  margin-bottom: 1rem;
  background: var(--paper);
  border: 0;
  box-shadow: inset 0 0 0 1px color-mix(in oklab, var(--ink) 14%, transparent);
  border-radius: 0.5rem;
  padding: 0.75rem 0.9rem;
  font: inherit;
  color: var(--ink);
}

.s5280-form input:focus,
.s5280-form textarea:focus {
  outline: none;
  box-shadow: inset 0 0 0 2px var(--pine);
}

.s5280-form textarea {
  min-height: 8rem;
  resize: vertical;
}

.s5280-notice {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background: var(--sand);
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

/* Work */
.s5280-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 2.5rem 0 2rem;
}

.s5280-filters a {
  height: 2.75rem;
  padding: 0 1.25rem;
  border-radius: 999px;
  background: var(--sand);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
}

.s5280-filters a.is-active,
.s5280-filters a[aria-current="page"] {
  background: var(--ink);
  color: var(--paper);
}

.s5280-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .s5280-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .s5280-grid--3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .s5280-grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.s5280-work-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 0.75rem;
  background: var(--sand);
  text-decoration: none;
  margin: 0;
}

.s5280-work-card a {
  color: inherit;
  text-decoration: none;
}

.s5280-work-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 500ms var(--ease);
}

.s5280-work-card:hover img {
  transform: scale(1.05);
}

.s5280-work-card figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 3rem 1rem 1rem;
  background: linear-gradient(to top, rgb(18 17 15 / 0.8), transparent);
  color: var(--paper);
}

.s5280-work-card h3 {
  margin: 0;
  font-size: 1.125rem;
}

.s5280-work-card p {
  margin: 0.25rem 0 0;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--paper) 70%, transparent);
}

/* Single work — Elementor-style split */
.s5280-project {
  display: grid;
}

@media (min-width: 1024px) {
  .s5280-project {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.s5280-project__shots {
  background: var(--sand);
}

@media (min-width: 1024px) {
  .s5280-project__shots {
    order: 1;
  }
  .s5280-project__info {
    order: 2;
    position: sticky;
    top: 4.5rem;
    align-self: start;
  }
}

.s5280-project__shots img {
  width: 100%;
  display: block;
}

.s5280-project__info {
  padding: 2.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .s5280-project__info {
    padding: 4rem 3rem;
  }
}

.s5280-project__nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid color-mix(in oklab, var(--ink) 8%, transparent);
  padding-top: 1.5rem;
}

.s5280-project__nav a {
  text-decoration: none;
  min-width: 0;
}

/* Blog */
.s5280-article {
  width: min(100% - 2.5rem, 48rem);
  margin-inline: auto;
  padding: 4rem 0 2rem;
}

.s5280-article__hero {
  width: min(100% - 2.5rem, 64rem);
  margin: 2.5rem auto 0;
}

.s5280-article__hero img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 1rem;
  display: block;
}

.post-body {
  width: min(100% - 2.5rem, 48rem);
  margin: 3rem auto 2rem;
  font-size: 1.0625rem;
  line-height: 1.7;
}

.post-body p {
  margin: 0 0 1.15em;
}

.post-body h2,
.post-body h3,
.post-body h4 {
  font-family: var(--font-display);
  font-weight: 500;
  margin: 1.6em 0 0.5em;
}

.post-body ul,
.post-body ol {
  margin: 0 0 1.15em;
  padding-left: 1.35rem;
}

.post-body a {
  text-underline-offset: 3px;
}

.post-body img {
  width: 100%;
  border-radius: 0.75rem;
  margin: 1.5em 0;
}

.s5280-blog-card {
  text-decoration: none;
}

.s5280-blog-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 0.75rem;
  display: block;
}

.s5280-cta {
  background: var(--night);
  color: var(--paper);
  border-radius: 1rem;
  padding: 2.5rem 1.5rem;
  margin-top: 3rem;
}

.s5280-skip {
  position: absolute;
  left: -999px;
}

.s5280-skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 50;
  background: var(--pine);
  color: var(--paper);
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
}

/* Elementor canvas: kill Hello’s default content width fights */
.elementor-kit-5280 .elementor-section.elementor-section-boxed > .elementor-container,
.elementor-kit-5280 .e-con {
  --content-width: 72rem;
}

body.s5280.elementor-page {
  background: var(--paper);
}

::selection {
  background: var(--pine);
  color: var(--paper);
}
