:root {
  --paper: #fbf8f3;
  --surface: #fffdf9;
  --shell: #f1ebe3;
  --ink: #211c17;
  --muted: #6d6258;
  --taupe: #9a8778;
  --taupe-dark: #65574c;
  --sage: #687a68;
  --clay: #b36a4e;
  --blue: #415f6e;
  --border: rgba(33, 28, 23, 0.14);
  --shadow: 0 24px 70px rgba(33, 28, 23, 0.13);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--border);
  background: rgba(251, 248, 243, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner,
.hero-inner,
.section,
.band-inner,
.designer-callout,
.join-inner,
.footer-inner,
.search-section {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(101, 87, 76, 0.16);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(33, 28, 23, 0.12);
  object-fit: cover;
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-name {
  font-size: 1.15rem;
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1;
}

.brand-kicker {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.16em;
  line-height: 1.1;
  text-transform: uppercase;
}

.desktop-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.desktop-nav a {
  color: rgba(33, 28, 23, 0.72);
  font-size: 0.93rem;
  font-weight: 650;
}

.desktop-nav a:hover {
  color: var(--ink);
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 760;
  line-height: 1;
  padding: 0 20px;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-dark {
  background: var(--ink);
  color: #fffaf1;
  box-shadow: 0 12px 28px rgba(33, 28, 23, 0.18);
}

.button-dark:hover {
  background: #3b3129;
}

.button-ghost {
  color: var(--ink);
}

.button-ghost:hover,
.button-outline:hover {
  border-color: rgba(33, 28, 23, 0.24);
  background: rgba(255, 255, 255, 0.8);
}

.button-outline {
  border-color: rgba(33, 28, 23, 0.17);
  background: rgba(255, 253, 249, 0.76);
}

.button-large {
  min-height: 52px;
  padding-inline: 25px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
}

.menu-button span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 99px;
  background: var(--ink);
  transition:
    transform 160ms ease,
    opacity 160ms ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateX(5px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateX(-5px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 44px;
}

.hero::before {
  position: absolute;
  inset: 11% auto auto 45%;
  width: min(540px, 70vw);
  height: min(540px, 70vw);
  border-radius: 50%;
  background:
    radial-gradient(circle at 28% 28%, rgba(179, 106, 78, 0.22), transparent 50%),
    radial-gradient(circle at 68% 48%, rgba(104, 122, 104, 0.18), transparent 55%);
  content: "";
  filter: blur(14px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: clamp(40px, 6vw, 74px);
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--taupe-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: rgba(255, 250, 241, 0.64);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.55vw, 5rem);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 0.95;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.25rem, 4.7vw, 4.65rem);
  font-weight: 740;
  letter-spacing: 0;
  line-height: 1;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.12;
}

.hero-lede,
.section-heading p,
.band p,
.designer-callout p,
.join-inner p {
  color: rgba(33, 28, 23, 0.68);
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  line-height: 1.72;
}

.hero-lede {
  max-width: 680px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 28px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin: 0;
  padding: 0;
  color: rgba(33, 28, 23, 0.7);
  font-size: 0.93rem;
  list-style: none;
}

.trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.trust-list li::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sage);
  content: "";
}

.hero-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--shell);
  box-shadow: var(--shadow);
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.preview-panel {
  position: absolute;
  right: 18px;
  left: 18px;
  border: 1px solid rgba(33, 28, 23, 0.1);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.94);
  box-shadow: 0 18px 45px rgba(33, 28, 23, 0.16);
  backdrop-filter: blur(16px);
}

.preview-search {
  top: 18px;
  padding: 16px;
}

.preview-search-row {
  display: flex;
  min-height: 50px;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--paper);
  color: rgba(33, 28, 23, 0.58);
  font-weight: 650;
  padding: 0 14px;
}

.preview-search-row img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  object-fit: cover;
}

.style-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.style-pill {
  border: 1px solid rgba(33, 28, 23, 0.1);
  border-radius: 999px;
  background: rgba(241, 235, 227, 0.9);
  color: var(--ink);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 760;
  padding: 8px 11px;
}

.style-pill.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: #fffaf1;
}

.preview-match {
  bottom: 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 16px;
}

.preview-match .button {
  grid-column: 1 / -1;
  width: 100%;
}

.match-label {
  margin-bottom: 4px;
  font-weight: 820;
}

.match-meta {
  margin-bottom: 0;
  color: rgba(33, 28, 23, 0.58);
  font-size: 0.86rem;
}

.rating {
  border-radius: 999px;
  background: #e8f0e5;
  color: #354636;
  font-weight: 820;
  padding: 8px 12px;
}

.search-section {
  padding: 22px 0 50px;
}

.search-tool {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr auto;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 50px rgba(33, 28, 23, 0.07);
  padding: 12px;
}

.search-tool label {
  display: grid;
  gap: 6px;
  border-radius: 8px;
  background: var(--paper);
  color: rgba(33, 28, 23, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 12px 14px;
  text-transform: uppercase;
}

.search-tool select,
.search-tool input,
.join-form input {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 650;
  outline: none;
}

.search-tool .button {
  min-height: 100%;
  border-radius: 8px;
  padding-inline: 32px;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 18px;
  margin: 0;
  color: var(--sage);
  font-size: 0.9rem;
  font-weight: 760;
}

.section {
  padding: 82px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 18px;
}

.section-heading-row {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
}

.section-heading-row > div {
  max-width: 760px;
}

.centered {
  margin-inline: auto;
  text-align: center;
}

.step-grid,
.designer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.step-card,
.designer-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 40px rgba(33, 28, 23, 0.06);
}

.step-card {
  padding: 28px;
}

.step-number {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
  border-radius: 999px;
  background: var(--shell);
  color: var(--taupe-dark);
  font-weight: 850;
}

.step-card p,
.designer-card p {
  color: rgba(33, 28, 23, 0.62);
  line-height: 1.65;
}

.band {
  background: var(--ink);
  color: #fffaf1;
  padding: 86px 0;
}

.band-inner {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

.band h2 {
  max-width: 620px;
}

.band p {
  color: rgba(255, 250, 241, 0.68);
  max-width: 500px;
  margin-top: 20px;
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.use-case-grid span {
  display: flex;
  min-height: 72px;
  align-items: center;
  border: 1px solid rgba(255, 250, 241, 0.13);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.07);
  color: rgba(255, 250, 241, 0.9);
  font-weight: 760;
  padding: 18px;
}

.designer-card {
  overflow: hidden;
}

.designer-card > img {
  width: 100%;
  height: 265px;
  object-fit: cover;
  transition: transform 380ms ease;
}

.designer-card:hover > img {
  transform: scale(1.035);
}

.designer-card-body {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.designer-card-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.designer-card h3,
.designer-card p {
  margin-bottom: 0;
}

.designer-card-head span {
  flex: none;
  border-radius: 999px;
  background: #e8f0e5;
  color: #394a39;
  font-size: 0.75rem;
  font-weight: 820;
  padding: 7px 10px;
}

.designer-card strong {
  font-size: 0.94rem;
}

.designer-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 55px rgba(33, 28, 23, 0.08);
}

.designer-callout-copy {
  padding: clamp(32px, 5vw, 54px);
}

.designer-callout p {
  margin-top: 20px;
}

.designer-callout ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 30px;
  padding: 0;
  color: rgba(33, 28, 23, 0.72);
  list-style: none;
}

.designer-callout li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 690;
}

.designer-callout li::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--clay);
  content: "";
}

.designer-callout > img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}

.cities-section {
  padding-top: 110px;
  text-align: center;
}

.city-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.city-list span {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: 0 10px 25px rgba(33, 28, 23, 0.06);
  font-weight: 740;
  padding: 14px 20px;
}

.join-section {
  padding: 44px 0 92px;
}

.join-inner {
  max-width: 900px;
  border: 1px solid rgba(33, 28, 23, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(154, 135, 120, 0.94), rgba(104, 122, 104, 0.68)),
    var(--taupe);
  box-shadow: var(--shadow);
  color: #fffaf1;
  padding: clamp(34px, 6vw, 62px);
  text-align: center;
}

.join-logo {
  width: 76px;
  height: 76px;
  margin: 0 auto 22px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(33, 28, 23, 0.2);
  object-fit: cover;
}

.join-inner h2 {
  max-width: 760px;
  margin-inline: auto;
}

.join-inner p {
  color: rgba(255, 250, 241, 0.82);
  max-width: 650px;
  margin: 20px auto 0;
}

.join-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  max-width: 640px;
  margin: 32px auto 0;
  border-radius: 8px;
  background: var(--surface);
  padding: 10px;
}

.join-form input {
  min-height: 52px;
  border-radius: 8px;
  background: var(--paper);
  padding: 0 16px;
}

.join-form .button {
  border-radius: 8px;
  padding-inline: 26px;
}

.join-form .form-status {
  color: #fffaf1;
}

.small-note {
  font-size: 0.9rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 26px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: rgba(33, 28, 23, 0.58);
  font-size: 0.92rem;
}

.brand-small .brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.footer-inner p {
  margin-bottom: 0;
}

.footer-inner nav {
  display: flex;
  gap: 18px;
}

.footer-inner a:hover {
  color: var(--ink);
}

.sr-only {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .menu-button span {
    transform-origin: center;
  }

  .mobile-nav {
    display: grid;
    max-height: 0;
    overflow: hidden;
    border-top: 0 solid transparent;
    transition: max-height 180ms ease;
  }

  body.menu-open .mobile-nav {
    max-height: 340px;
    border-top: 1px solid var(--border);
  }

  .mobile-nav a {
    min-height: 56px;
    border-bottom: 1px solid var(--border);
    background: var(--paper);
    font-weight: 760;
    padding: 18px 20px;
  }

  .hero-inner,
  .band-inner,
  .designer-callout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-visual,
  .hero-image {
    min-height: 520px;
  }

  .search-tool {
    grid-template-columns: 1fr 1fr;
  }

  .search-tool label:first-child {
    grid-column: 1 / -1;
  }

  .step-grid,
  .designer-grid {
    grid-template-columns: 1fr;
  }

  .designer-card {
    display: grid;
    grid-template-columns: 0.82fr 1fr;
  }

  .designer-card > img {
    height: 100%;
    min-height: 270px;
  }

  .designer-callout > img {
    min-height: 360px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .header-inner,
  .hero-inner,
  .section,
  .band-inner,
  .designer-callout,
  .join-inner,
  .footer-inner,
  .search-section {
    width: min(100% - 28px, var(--max));
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .brand-kicker {
    max-width: 135px;
    font-size: 0.64rem;
  }

  .hero {
    padding-top: 42px;
  }

  h1 {
    font-size: clamp(2.85rem, 16vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2.05rem, 11vw, 3.4rem);
  }

  .hero-actions,
  .button-large {
    width: 100%;
  }

  .hero-visual,
  .hero-image {
    min-height: 540px;
  }

  .preview-panel {
    right: 12px;
    left: 12px;
  }

  .preview-search-row {
    align-items: flex-start;
    min-height: auto;
    padding-block: 12px;
  }

  .style-pills {
    max-height: 90px;
    overflow: hidden;
  }

  .search-tool,
  .join-form {
    grid-template-columns: 1fr;
  }

  .search-tool label,
  .search-tool label:first-child,
  .search-tool .button,
  .join-form .button {
    grid-column: 1 / -1;
    min-height: 54px;
  }

  .section {
    padding: 62px 0;
  }

  .section-heading-row {
    display: grid;
    align-items: start;
  }

  .use-case-grid {
    grid-template-columns: 1fr;
  }

  .designer-card {
    display: block;
  }

  .designer-card > img {
    height: 260px;
    min-height: 0;
  }

  .designer-card-head {
    display: grid;
  }

  .designer-card-head span {
    width: fit-content;
  }

  .designer-callout-copy {
    padding: 28px;
  }

  .designer-callout > img {
    min-height: 300px;
  }

  .city-list {
    justify-content: flex-start;
  }

  .join-section {
    padding-bottom: 64px;
  }
}
