@font-face {
  font-family: Geist;
  src: url("/fonts/geist-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
.design-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px 24px;
  margin-top: 36px;
}
.design-tile img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.5;
  object-fit: cover;
  border-radius: 7px;
}
.design-tile h3 {
  font-size: 20px;
  margin: 12px 0 4px;
  font-weight: 550;
}
.design-tile p {
  color: var(--muted);
  font-size: 14px;
}
.more-work {
  margin-top: 48px;
}
.delivery-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.delivery-steps article {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.delivery-steps span {
  color: var(--accent);
  font-size: 13px;
}
.delivery-steps h3 {
  font-size: 24px;
  letter-spacing: -0.6px;
  margin: 16px 0;
}
.delivery-steps p,
.faq p {
  color: var(--muted);
}
.faq {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px 48px;
}
.faq h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .design-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 16px;
  }
  .delivery-steps,
  .faq {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 440px) {
  .design-grid {
    grid-template-columns: 1fr;
  }
}
:root {
  color-scheme: light;
  --bg: #f4f6f3;
  --panel: #e9eee8;
  --ink: #1c2b25;
  --muted: #536259;
  --accent: #28694e;
  --line: #cbd4ca;
  --error: #a42b2b;
  --button-ink: #f4f6f3;
}
@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --bg: #14221c;
    --panel: #1e3026;
    --ink: #edf1e9;
    --muted: #acbcae;
    --accent: #9acbab;
    --line: #3b5141;
    --error: #ffb3ac;
    --button-ink: #14221c;
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}
body {
  background: var(--bg);
  color: var(--ink);
  font:
    15px/1.65 Geist,
    system-ui,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button,
input,
textarea {
  font: inherit;
}
button,
a {
  touch-action: manipulation;
}
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 5px;
}
::selection {
  background: var(--accent);
  color: var(--button-ink);
}
.wrap {
  max-width: 1440px;
  margin: auto;
  padding: 0 5%;
}
.skip-link {
  position: fixed;
  left: 10px;
  top: 10px;
  transform: translateY(-200%);
  z-index: 10;
  padding: 12px;
  background: var(--bg);
}
.skip-link:focus {
  transform: none;
}
header {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}
.wordmark {
  font-size: 23px;
  letter-spacing: -0.8px;
  font-weight: 500;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.wordmark b {
  font-weight: 600;
}
header nav {
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: 13px;
}
nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 23px;
  background: var(--accent);
  color: var(--button-ink);
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 550;
  min-height: 48px;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform 0.2s,
    opacity 0.2s;
}
.button:hover {
  opacity: 0.87;
  transform: translateY(-2px);
}
.button:disabled {
  opacity: 0.6;
  cursor: wait;
  transform: none;
}
.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.text-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 65px 0 60px;
}
.intro {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 28px;
}
h1 {
  font-size: clamp(3rem, 5.6vw, 5.3rem);
  line-height: 1.07;
  letter-spacing: -0.065em;
  font-weight: 550;
}
h1 span {
  color: var(--accent);
}
.lede {
  max-width: 39ch;
  font-size: 17px;
  line-height: 1.7;
  margin-top: 28px;
  color: var(--muted);
}
.actions {
  display: flex;
  gap: 26px;
  align-items: center;
  margin-top: 30px;
}
.hero figure img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
}
.hero figcaption {
  font-size: 11px;
  color: var(--muted);
  margin-top: 13px;
}
.credibility {
  display: grid;
  grid-template-columns: 1fr 1.5fr auto;
  gap: 30px;
  align-items: center;
  padding: 27px 0;
  border-block: 1px solid var(--line);
  font-size: 13px;
}
.credibility span {
  font-size: 11px;
  color: var(--muted);
}
.credibility a {
  font-size: 12px;
  padding: 12px 0;
}
.credibility strong {
  font-weight: 550;
}
.section {
  padding: 75px 0 0;
}
.section-heading {
  max-width: 680px;
  margin-bottom: 35px;
}
h2 {
  font-size: clamp(2.1rem, 3.8vw, 3.5rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.055em;
}
.section-heading > p:last-child {
  font-size: 15px;
  color: var(--muted);
  margin-top: 19px;
  max-width: 58ch;
}
.eyebrow {
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 17px;
}
.offers {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 22px;
}
.offer {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
}
.primary-offer {
  background: var(--panel);
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  border-color: var(--accent);
}
.offer-label {
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 18px;
}
.primary-offer h3 {
  font-size: 35px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -1.5px;
}
.offer h3 {
  font-weight: 550;
}
.offer-description {
  font-size: 14px;
  color: var(--muted);
  margin-top: 12px;
  max-width: 40ch;
}
.price {
  font-size: 34px;
  letter-spacing: -1.3px;
  line-height: 1.3;
  margin: 12px 0;
  font-weight: 500;
}
.price span {
  font-size: 13px;
  letter-spacing: 0;
  margin-left: 5px;
  color: var(--muted);
}
.offer ul {
  list-style: disc;
  padding-left: 17px;
  font-size: 13px;
  color: var(--muted);
  margin: 22px 0;
}
.offer li + li {
  margin-top: 9px;
}
.other-offers {
  display: grid;
  gap: 22px;
}
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px 25px;
}
.work-piece:first-child {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  column-gap: 40px;
  align-items: start;
}
.work-piece:first-child > a {
  grid-row: span 2;
}
.work-piece:first-child h3 {
  align-self: end;
  padding-top: 50px;
  font-size: 30px;
}
.work-piece:first-child > p {
  margin-top: 12px;
}
.work-piece img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.44;
  object-fit: cover;
  border-radius: 7px;
  transition: opacity 0.25s;
}
.work-piece > a:hover img {
  opacity: 0.88;
}
.work-piece h3 {
  font-size: 21px;
  font-weight: 550;
  letter-spacing: -0.7px;
  margin-top: 16px;
}
.work-piece h3 a {
  display: inline-block;
  min-height: 44px;
}
.work-piece p {
  font-size: 14px;
  color: var(--muted);
  max-width: 48ch;
  margin-top: 4px;
}
.collection {
  border-bottom: 1px solid var(--line);
  margin-top: 26px;
}
.collection summary {
  cursor: pointer;
  padding: 22px 0;
  font-size: 15px;
  font-weight: 500;
}
.collection summary span {
  font-size: 12px;
  color: var(--muted);
  margin-left: 12px;
}
.catalogue {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 35px;
  padding-bottom: 26px;
}
.catalogue-item {
  padding: 16px 0;
}
.catalogue-item h3 {
  font-size: 17px;
  font-weight: 550;
}
.catalogue-item p {
  font-size: 13px;
  color: var(--muted);
  margin: 10px 0;
}
.catalogue-item > span {
  font-size: 11px;
  color: var(--accent);
}
.catalogue-item:hover h3 {
  color: var(--accent);
}
.facetworks-preview {
  display: block;
  background: var(--panel);
  padding: 35px;
  border-radius: 8px;
  overflow: hidden;
}
.facetworks-preview img {
  width: 100%;
  max-height: 510px;
  object-fit: cover;
  object-position: top;
  border-radius: 5px;
}
.design-caption {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 30px;
  margin-top: 22px;
}
.design-caption p {
  font-size: 13px;
  color: var(--muted);
}
.custom-note {
  margin-top: 20px;
  color: var(--muted);
  font-size: 13px;
}
.website-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 8px 0 28px;
}
.website-list a {
  font-size: 14px;
  min-height: 44px;
}
.website-list span {
  display: block;
  font-size: 11px;
  color: var(--muted);
}
.compact-section .collection {
  margin-top: 0;
}
.suite {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 35px;
}
.suite > a {
  display: flex;
  align-items: start;
  gap: 18px;
  padding: 15px 0;
}
.suite img {
  border-radius: 8px;
  flex: none;
}
.suite h3 {
  font-size: 16px;
  font-weight: 550;
}
.suite p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 7px;
}
.contribution-wall {
  display: block;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
}
.contribution-wall img {
  width: 100%;
  height: auto;
}
.contribution-wall span {
  display: inline-block;
  margin-top: 20px;
  font-size: 12px;
  color: var(--muted);
}
.starter {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 45px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 40px;
}
.starter > div:last-child {
  justify-self: end;
}
.starter h2 {
  font-size: 30px;
}
.starter p:not(.price):not(.eyebrow) {
  font-size: 14px;
  color: var(--muted);
  margin-top: 18px;
  max-width: 55ch;
}
.starter ul {
  margin-top: 20px;
  padding-left: 17px;
  font-size: 13px;
  color: var(--muted);
}
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  padding-top: 90px;
}
.contact-section > div > p:not(.eyebrow) {
  font-size: 15px;
  color: var(--muted);
  margin-top: 24px;
  max-width: 37ch;
}
.contact-section > div > .privacy-note {
  margin-top: 12px;
  font-size: 12px;
}
.email-link {
  display: inline-block;
  margin-top: 28px;
  font-size: 14px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 9px;
}
.contact-section > div > .reply-note {
  font-size: 12px;
  margin-top: 9px;
}
form {
  display: grid;
  gap: 10px;
  align-content: start;
}
form label {
  font-size: 13px;
  margin-top: 10px;
}
form label span {
  color: var(--muted);
}
input,
textarea {
  width: 100%;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 14px;
  color: var(--ink);
  font-size: 14px;
}
input::placeholder,
textarea::placeholder {
  color: var(--muted);
}
textarea {
  min-height: 140px;
  resize: vertical;
}
form button {
  justify-self: start;
  margin-top: 12px;
}
#msg {
  min-height: 24px;
  font-size: 13px;
  color: var(--muted);
}
#msg[data-state="error"] {
  color: var(--error);
}
#msg[data-state="success"] {
  color: var(--accent);
}
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  margin-top: 75px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
}
footer nav {
  display: flex;
  gap: 25px;
}
@media (max-width: 1000px) {
  .hero {
    gap: 30px;
  }
  .hero figure img {
    height: 355px;
  }
  .offers {
    grid-template-columns: 1fr 1fr;
  }
  .primary-offer {
    padding: 28px;
  }
  .work-piece:first-child {
    gap: 25px;
  }
  .contact-section {
    gap: 35px;
  }
}
@media (max-width: 767px) {
  .wrap {
    padding: 0 22px;
  }
  header {
    height: auto;
    min-height: 76px;
    flex-wrap: wrap;
    padding: 16px 0;
    gap: 10px;
  }
  header nav {
    width: 100%;
    justify-content: space-between;
    gap: 15px;
    font-size: 12px;
  }
  header nav .button {
    padding: 10px 14px;
    font-size: 11px;
    min-height: 42px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 0;
  }
  .hero h1 {
    font-size: clamp(2.8rem, 9.4vw, 4rem);
  }
  .intro {
    margin-bottom: 20px;
    font-size: 11px;
  }
  .lede {
    font-size: 15px;
    margin-top: 22px;
  }
  .actions {
    gap: 24px;
    margin-top: 25px;
  }
  .hero figure img {
    height: 270px;
  }
  .hero figcaption {
    font-size: 10px;
  }
  .credibility {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px 0;
  }
  .credibility a {
    padding: 5px 0;
  }
  .section {
    padding-top: 48px;
  }
  .section-heading {
    margin-bottom: 27px;
  }
  .offers {
    grid-template-columns: 1fr;
  }
  .primary-offer {
    padding: 27px;
  }
  .offer {
    padding: 25px;
  }
  .work-grid {
    grid-template-columns: 1fr;
  }
  .work-piece:first-child {
    grid-column: auto;
    display: block;
  }
  .work-piece:first-child h3 {
    font-size: 21px;
    padding-top: 0;
  }
  .catalogue {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .facetworks-preview {
    padding: 12px;
  }
  .facetworks-preview img {
    max-height: 350px;
  }
  .design-caption {
    flex-direction: column;
    gap: 10px;
  }
  .website-list {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .suite {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .contribution-wall {
    padding: 17px 10px;
  }
  .starter {
    grid-template-columns: 1fr;
    padding: 25px;
    gap: 22px;
  }
  .starter > div:last-child {
    justify-self: start;
  }
  .contact-section {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-top: 55px;
  }
  .contact-section > div > .email-link {
    font-size: 13px;
  }
  .contact-section form {
    margin-top: 4px;
  }
  footer {
    margin-top: 45px;
    align-items: start;
    flex-direction: column;
    gap: 12px;
  }
  footer nav {
    gap: 24px;
    flex-wrap: wrap;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .hero > div {
    animation: arrive 0.6s both;
  }
  .hero figure {
    animation: arrive 0.8s both;
  }
  @keyframes arrive {
    from {
      opacity: 0;
      transform: translateY(12px);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
