:root {
  --ink: #171717;
  --muted: #5f615d;
  --line: #ded8ce;
  --paper: #fbf8f1;
  --cream: #f1eadf;
  --green: #123c32;
  --rose: #b77c72;
  --gold: #b28a4a;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(22, 23, 21, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--paper);
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0));
}

.site-header.solid {
  color: var(--ink);
  background: rgba(251, 248, 241, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand,
.nav,
.hero-actions,
.site-footer,
.partner-strip {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 700;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--green);
  background: var(--white);
  border-radius: 50%;
}

.solid .brand-mark {
  color: var(--white);
  background: var(--green);
}

.nav {
  gap: clamp(14px, 3vw, 34px);
  font-size: 14px;
}

.menu-toggle {
  display: none;
  min-height: 40px;
  padding: 0 14px;
  color: inherit;
  font: inherit;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.solid .menu-toggle {
  border-color: var(--line);
  background: var(--white);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 4px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
}

.header-cta {
  color: var(--ink);
  background: var(--white);
}

.solid .header-cta {
  color: var(--white);
  background: var(--green);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 20, 18, 0.78) 0%, rgba(17, 20, 18, 0.52) 38%, rgba(17, 20, 18, 0.06) 78%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.2));
}

.hero-content {
  position: relative;
  width: min(680px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 82px);
  padding-top: 84px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  max-width: 640px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.65;
}

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

.button.primary {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.solid .button.secondary,
.inner-page .button.secondary {
  color: var(--green);
  border-color: var(--green);
  background: transparent;
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.icon-arrow,
.icon-send {
  width: 16px;
  height: 16px;
  position: relative;
  flex: 0 0 auto;
}

.icon-arrow::before,
.icon-send::before {
  content: "";
  position: absolute;
  inset: 3px 2px 3px 1px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.icon-send::after {
  content: "";
  position: absolute;
  left: 1px;
  top: 7px;
  width: 13px;
  border-top: 2px solid currentColor;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(92px, 1fr));
  gap: 14px;
  width: min(520px, 100%);
  margin: 42px 0 0;
}

.proof-grid div {
  padding: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.proof-grid dt {
  font-size: 28px;
  font-weight: 800;
}

.proof-grid dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.partner-strip {
  justify-content: center;
  gap: clamp(14px, 4vw, 52px);
  flex-wrap: wrap;
  min-height: 82px;
  padding: 18px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.partner-strip span {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.section {
  padding: clamp(64px, 9vw, 112px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  max-width: 1180px;
  margin: 0 auto 38px;
}

.section-heading.compact {
  display: block;
  max-width: 720px;
  text-align: center;
}

h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p:last-child,
.capability-band p,
.quote-copy p,
.site-footer p {
  color: var(--muted);
  line-height: 1.75;
}

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

.product-card,
.article-grid article {
  min-height: 292px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(45, 39, 30, 0.06);
}

.product-card {
  display: flex;
  flex-direction: column;
}

.product-card h3,
.article-grid h3,
.timeline h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.product-card p,
.article-grid p,
.timeline p {
  color: var(--muted);
  line-height: 1.65;
}

.product-card a,
.article-grid a {
  margin-top: auto;
  color: var(--green);
  font-weight: 800;
}

.product-icon {
  position: relative;
  width: 62px;
  height: 48px;
  margin-bottom: 28px;
}

.product-icon::before,
.product-icon::after {
  content: "";
  position: absolute;
  border: 2px solid var(--green);
  border-radius: 4px;
}

.product-icon::before {
  inset: 8px 3px 3px;
  background: rgba(18, 60, 50, 0.08);
}

.product-icon::after {
  inset: 0 12px 20px;
  background: var(--cream);
}

.product-icon.drawer::after {
  inset: 12px 8px 14px;
  border-color: var(--rose);
}

.product-icon.foldable::after {
  inset: 0 2px 16px 28px;
  border-color: var(--gold);
}

.product-icon.bag::before {
  inset: 7px 10px 0;
}

.product-icon.bag::after {
  inset: 0 22px 28px;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
  background: transparent;
}

.capability-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  color: var(--white);
  background: var(--green);
}

.capability-band .eyebrow {
  color: #d7bd82;
}

.capability-band p {
  color: rgba(255, 255, 255, 0.78);
}

.capability-list {
  display: grid;
  gap: 14px;
}

.capability-list div {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.capability-list strong,
.capability-list span {
  display: block;
}

.capability-list strong {
  margin-bottom: 8px;
}

.capability-list span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 42px auto 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  min-height: 238px;
  padding: 24px;
  border-top: 4px solid var(--gold);
  background: var(--white);
}

.timeline span {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--rose);
  font-weight: 800;
}

.insights {
  background: var(--cream);
}

.article-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.article-grid article {
  min-height: 240px;
}

.article-grid p {
  margin-bottom: 20px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 520px);
  gap: clamp(26px, 6vw, 82px);
  padding: clamp(64px, 9vw, 112px) clamp(18px, 5vw, 72px);
  background: var(--white);
}

.page-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 156px clamp(18px, 5vw, 72px) 72px;
}

.page-hero h1 {
  max-width: 900px;
  color: var(--ink);
}

.page-hero .lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.72;
}

.detail-grid,
.feature-grid,
.process-list,
.blog-list {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  gap: 18px;
}

.detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-card,
.feature-grid article,
.process-list li,
.blog-list article {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(45, 39, 30, 0.06);
}

.detail-card h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 3vw, 42px);
}

.detail-card p,
.feature-grid p,
.process-list p,
.blog-list p {
  color: var(--muted);
  line-height: 1.7;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tag-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  border: 1px solid rgba(18, 60, 50, 0.2);
  border-radius: 999px;
  background: rgba(18, 60, 50, 0.06);
}

.cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: clamp(44px, 7vw, 78px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--green);
}

.cta-band h2 {
  max-width: 820px;
}

.cta-band p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.cta-band .eyebrow {
  color: #d7bd82;
}

.cta-band .button.primary {
  color: var(--green);
  background: var(--white);
  border-color: var(--white);
}

.process-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0;
  list-style: none;
}

.process-list span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--rose);
  font-weight: 800;
}

.blog-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.blog-list span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.blog-list h2 {
  margin-bottom: 14px;
  font-size: clamp(24px, 3vw, 36px);
}

.quote-page {
  padding-top: 42px;
}

.quote-form.expanded {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.quote-copy ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.quote-copy li {
  position: relative;
  padding-left: 28px;
  font-weight: 700;
}

.quote-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(178, 138, 74, 0.38);
  border-color: var(--gold);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-weight: 700;
}

.site-footer {
  justify-content: space-between;
  gap: 22px;
  padding: 34px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: #111412;
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 22px;
}

.editing [contenteditable="true"] {
  outline: 2px dashed rgba(178, 138, 74, 0.42);
  outline-offset: 5px;
  transition: background 0.18s ease, outline-color 0.18s ease;
}

.editing [contenteditable="true"]:hover,
.editing [contenteditable="true"]:focus {
  outline-color: var(--gold);
  background: rgba(255, 255, 255, 0.12);
}

.editing .page-hero [contenteditable="true"]:hover,
.editing .page-hero [contenteditable="true"]:focus,
.editing .detail-card [contenteditable="true"]:hover,
.editing .detail-card [contenteditable="true"]:focus,
.editing .feature-grid [contenteditable="true"]:hover,
.editing .feature-grid [contenteditable="true"]:focus,
.editing .blog-list [contenteditable="true"]:hover,
.editing .blog-list [contenteditable="true"]:focus {
  background: rgba(178, 138, 74, 0.08);
}

.edit-toolbar {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.edit-toolbar strong {
  margin-right: 4px;
}

.edit-toolbar button,
.edit-toolbar a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  color: var(--green);
  font: inherit;
  font-weight: 800;
  border: 1px solid rgba(18, 60, 50, 0.2);
  border-radius: 4px;
  background: var(--paper);
  cursor: pointer;
}

.edit-toolbar.saved::after {
  content: "Saved";
  position: absolute;
  right: 0;
  bottom: calc(100% + 8px);
  padding: 7px 10px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  border-radius: 4px;
  background: var(--green);
}

.editor-home .detail-card .button {
  width: fit-content;
  margin-top: 20px;
}

.site-footer strong,
.site-footer a {
  color: var(--white);
}

.site-footer p {
  max-width: 520px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .nav {
    order: 4;
    display: none;
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 8px;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 13px;
    border-radius: 4px;
  }

  .nav a:hover {
    background: var(--paper);
  }

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

  .section-heading,
  .capability-band,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .detail-grid,
  .feature-grid,
  .process-list,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .blog-list {
    grid-template-columns: 1fr;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand span:last-child {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 14px;
  }

  .page-hero {
    padding-top: 112px;
    padding-bottom: 46px;
  }

  .hero {
    min-height: 88vh;
  }

  .hero > img {
    object-position: 62% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(17, 20, 18, 0.86), rgba(17, 20, 18, 0.34));
  }

  .hero-content {
    margin-left: 18px;
    padding-top: 72px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-copy {
    font-size: 16px;
  }

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

  .proof-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 24px;
  }

  .proof-grid div {
    padding: 12px 14px;
  }

  .proof-grid dt {
    font-size: 22px;
  }

  .product-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .product-card,
  .article-grid article,
  .timeline li {
    min-height: auto;
  }

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

  .quote-form.expanded {
    grid-template-columns: 1fr;
  }

  .edit-toolbar {
    left: 10px;
    right: 10px;
    bottom: 10px;
    flex-wrap: wrap;
  }
}
