:root {
  --ink: #151312;
  --muted: #66605a;
  --paper: #f7f7f4;
  --white: #ffffff;
  --line: #ded8d1;
  --rust: #a94f2b;
  --wine: #6f2632;
  --teal: #27656a;
  --amber: #c99a4e;
  --shadow: 0 20px 50px rgba(21, 19, 18, 0.14);
  --radius: 6px;
  --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;
  line-height: 1.55;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

[id] {
  scroll-margin-top: 86px;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 8px clamp(18px, 4vw, 54px);
  background: rgba(247, 247, 244, 0.92);
  border-bottom: 1px solid rgba(222, 216, 209, 0.85);
  backdrop-filter: blur(16px);
}

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

.brand-logo {
  width: 132px;
  max-width: 36vw;
  height: auto;
  flex: 0 0 auto;
}

.brand-copy {
  display: block;
  padding-left: 11px;
  border-left: 1px solid var(--line);
}

.brand-copy small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.2;
  text-transform: uppercase;
}

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

.main-nav a {
  color: #312c28;
  font-size: 13px;
  font-weight: 650;
}

.main-nav a:hover,
.site-footer a:hover {
  color: var(--rust);
}

.language-toggle,
.quote-link,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: var(--radius);
  border: 1px solid var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
}

.language-toggle {
  background: transparent;
  color: var(--ink);
}

.quote-link,
.primary-button {
  background: var(--ink);
  color: var(--white);
}

.secondary-button {
  background: transparent;
  color: var(--ink);
}

.section-band,
.section-wrap {
  padding: clamp(54px, 7vw, 98px) clamp(18px, 4vw, 54px);
}

.section-wrap {
  max-width: var(--max);
  margin: 0 auto;
}

.section-band {
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2,
.custom-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.03;
  letter-spacing: 0;
}

.section-heading p:last-child,
.contact-copy p {
  color: var(--muted);
  font-size: 17px;
}

.section-label {
  margin: 0 0 14px;
  color: var(--rust);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero {
  min-height: calc(100vh - 68px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding-top: clamp(42px, 5vw, 70px);
  padding-bottom: clamp(42px, 5vw, 70px);
  background:
    linear-gradient(120deg, rgba(247, 247, 244, 0.98) 0%, rgba(247, 247, 244, 0.95) 43%, rgba(39, 101, 106, 0.1) 100%),
    var(--paper);
}

.hero-copy {
  max-width: 670px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 0.97;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 590px;
  margin: 20px 0 0;
  color: #3c3732;
  font-size: clamp(17px, 1.7vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0 0;
}

.proof-strip div {
  border-left: 2px solid var(--rust);
  padding-left: 14px;
}

.proof-strip dt {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 850;
  line-height: 1;
}

.proof-strip dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.hero-media {
  align-self: stretch;
  min-height: 460px;
  box-shadow: var(--shadow);
}

.hero-media img {
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  font-size: 18px;
}

.intro-grid p {
  margin: 0;
}

.story {
  background: var(--white);
}

.story-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.story-copy {
  max-width: 720px;
}

.story-copy h2 {
  margin: 0 0 22px;
  font-size: clamp(32px, 4.4vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.story-copy p:not(.section-label) {
  margin: 0 0 18px;
  color: #3c3732;
  font-size: clamp(16px, 1.45vw, 19px);
}

.story-copy p:last-child {
  margin-bottom: 0;
}

.story-beliefs {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.belief-label {
  margin: 0 0 10px;
  color: var(--rust);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.story-beliefs h3 {
  max-width: 650px;
  margin: 0 0 18px;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.12;
  letter-spacing: 0;
}

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

.belief-grid div {
  min-width: 0;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.belief-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 13px;
  line-height: 1.25;
  text-transform: uppercase;
}

.belief-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.story-media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.story-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 18px;
  margin-top: 22px;
  border-top: 1px solid var(--line);
}

.story-points div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.story-points span {
  display: block;
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.25;
  text-transform: uppercase;
}

.story-points strong {
  display: block;
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.2;
}

.buyer-fit {
  background: var(--paper);
}

.buyer-grid,
.sourcing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.buyer-grid article,
.sourcing-grid div {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.buyer-grid span,
.sourcing-grid span,
.model-steps span {
  display: block;
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
}

.model-steps span {
  grid-row: 1 / 3;
}

.buyer-grid h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.15;
}

.buyer-grid p,
.sourcing-grid p,
.model-steps p,
.proof-placeholders p {
  margin: 0;
  color: var(--muted);
}

.sourcing {
  background: linear-gradient(145deg, #ffffff 0%, #f5f5f1 100%);
}

.sourcing-grid div {
  background: rgba(255, 255, 255, 0.86);
}

.sourcing-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 1.2;
}

.factory-model {
  background: #171514;
  color: var(--white);
}

.factory-model .section-heading p:last-child,
.model-steps p,
.proof-placeholders p {
  color: rgba(255, 255, 255, 0.68);
}

.model-layout {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.model-steps {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.model-steps div {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.model-steps strong {
  display: block;
  grid-column: 2;
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.15;
}

.model-steps p {
  grid-column: 2;
}

.proof-placeholders {
  display: grid;
  gap: 12px;
}

.proof-placeholders div {
  padding: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.proof-placeholders strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 15px;
  line-height: 1.25;
}

.products {
  background: var(--white);
}

.product-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.product-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(118px, 0.75fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 4px;
  height: clamp(248px, 31vw, 360px);
  background: var(--line);
}

.product-gallery img {
  width: 100%;
  height: 100%;
  min-width: 0;
  object-fit: cover;
}

.product-gallery img:first-child {
  grid-row: 1 / 3;
}

.product-copy {
  flex: 1;
  padding: 20px;
}

.product-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.25;
  text-transform: uppercase;
}

.product-card h3,
.craft-layout h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.product-card p,
.craft-layout p,
.timeline p,
.faq-grid p,
.service-list p {
  margin: 0;
  color: var(--muted);
}

.custom {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.custom-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.service-list div,
.timeline div {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.service-list span,
.payment-item span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
}

.craft {
  background: #171514;
  color: var(--white);
}

.craft .section-heading p:last-child,
.craft-layout p {
  color: rgba(255, 255, 255, 0.68);
}

.craft-layout {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
}

.craft-layout article {
  min-width: 0;
}

.craft-layout img {
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 18px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.timeline div {
  display: block;
  padding: 22px 0;
}

.timeline strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
}

.payment {
  background: linear-gradient(145deg, #ffffff 0%, #f3f7f7 100%);
}

.payment-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.payment-item {
  display: grid;
  gap: 12px;
  min-height: 176px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.payment-item strong {
  font-size: 20px;
}

.payment-item small {
  color: var(--muted);
}

.payment-item:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
  transition: 160ms ease;
}

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

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin-top: 12px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background:
    linear-gradient(rgba(21, 19, 18, 0.86), rgba(21, 19, 18, 0.82)),
    url("assets/bifold-wallet.jpg") center / cover;
  color: var(--white);
}

.contact-copy {
  max-width: 580px;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.contact-methods a {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
}

.inquiry-checklist {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.inquiry-checklist strong {
  display: block;
  margin-bottom: 12px;
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.inquiry-checklist ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.74);
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
}

.inquiry-form label {
  display: grid;
  gap: 7px;
}

.inquiry-form span {
  color: #312c28;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid #d7d0c9;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 12px 13px;
  font-size: 14px;
}

.inquiry-form textarea {
  resize: vertical;
}

.inquiry-form .form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.inquiry-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.full {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-note[data-state="success"] {
  color: #176b55;
}

.form-note[data-state="error"] {
  color: #a1392d;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 4vw, 54px);
  color: var(--muted);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .hero,
  .custom,
  .story-grid,
  .model-layout,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media,
  .hero-media img {
    min-height: 380px;
  }

  .buyer-grid,
  .sourcing-grid,
  .product-grid,
  .payment-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .craft-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-logo {
    width: 124px;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .quote-link,
  .language-toggle {
    flex: 1;
  }

  .section-band,
  .section-wrap {
    padding: 44px 18px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .proof-strip,
  .intro-grid,
  .story-points,
  .belief-grid,
  .buyer-grid,
  .sourcing-grid,
  .product-grid,
  .payment-grid,
  .timeline,
  .faq-grid,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .model-steps div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .model-steps span,
  .model-steps strong,
  .model-steps p {
    grid-column: auto;
    grid-row: auto;
  }

  .hero-media,
  .hero-media img {
    min-height: 300px;
  }

  .section-heading {
    text-align: left;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
