:root {
  --bg: #f7f1e8;
  --bg-soft: #fffaf2;
  --ink: #1f1712;
  --muted: #6e5d50;
  --line: #e3d4c3;
  --wood: #9b5f31;
  --wood-dark: #6d3f20;
  --cream: #fff8ee;
  --shadow: 0 24px 70px rgba(51, 32, 18, 0.12);
  --radius: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

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

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  padding: 10px 14px;
}

.skip-link:focus {
  transform: translateY(0);
}

.hidden {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 241, 232, 0.9);
  border-bottom: 1px solid rgba(109, 63, 32, 0.12);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 34px rgba(63, 41, 25, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 900;
}

.brand-logo {
  display: block;
  width: clamp(118px, 12vw, 156px);
  max-height: 54px;
  object-fit: contain;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(109, 63, 32, 0.25);
  border-radius: 14px;
  background: linear-gradient(135deg, #2b1c13, var(--wood-dark));
  color: var(--cream);
  font-size: 13px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu a {
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  padding: 10px 14px;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--ink);
  background: rgba(155, 95, 49, 0.1);
}

.nav-menu .nav-cta {
  background: var(--ink);
  color: var(--cream);
  padding-inline: 18px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  padding-top: 78px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.96fr);
  align-items: center;
  gap: 58px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--wood-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

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

h1,
h2 {
  max-width: 920px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(48px, 7vw, 84px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.2vw, 58px);
}

h3 {
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 1.2;
}

.hero-subhead {
  max-width: 740px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
}

.hero-actions,
.sample-panel {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  padding: 0 22px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--wood-dark);
  color: var(--cream);
  box-shadow: 0 16px 34px rgba(109, 63, 32, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--ink);
}

.button-secondary {
  border-color: rgba(109, 63, 32, 0.24);
  background: rgba(255, 250, 242, 0.72);
  color: var(--ink);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.trust-badges li {
  border: 1px solid rgba(109, 63, 32, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.76);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  padding: 9px 13px;
}

.hero-visual {
  min-height: 590px;
  border: 1px solid rgba(109, 63, 32, 0.18);
  border-radius: 34px;
  background: url("assets/hero-workshop.webp") center / cover no-repeat;
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 30px;
}

.workbench {
  position: relative;
  visibility: hidden;
  height: 100%;
  min-height: 530px;
  border-radius: 25px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px) 0 0 / 44px 44px, linear-gradient(0deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px) 0 0 / 44px 44px, linear-gradient(135deg, #7f4c27, #c88b4f);
  box-shadow: inset 0 0 0 1px rgba(255, 248, 238, 0.18);
}

.scene-card {
  position: absolute;
  display: grid;
  gap: 10px;
  align-content: center;
  border: 1px solid rgba(61, 36, 19, 0.18);
  border-radius: 18px;
  background: rgba(255, 248, 238, 0.92);
  box-shadow: 0 22px 44px rgba(43, 28, 19, 0.2);
  color: var(--ink);
  padding: 22px;
}

.sign-card {
  top: 42px;
  left: 34px;
  width: 230px;
  height: 150px;
}

.qr-card {
  top: 150px;
  right: 36px;
  width: 170px;
  height: 210px;
}

.menu-card {
  right: 96px;
  bottom: 48px;
  width: 210px;
  height: 155px;
  transform: rotate(-3deg);
}

.mini-logo {
  width: 80px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  font-size: 13px;
  font-weight: 900;
  padding: 7px 11px;
}

.qr-grid {
  width: 78px;
  height: 78px;
  background: linear-gradient(90deg, var(--ink) 50%, transparent 0) 0 0 / 18px 18px, linear-gradient(var(--ink) 50%, transparent 0) 0 0 / 18px 18px;
  opacity: 0.8;
}

.magnet-row {
  position: absolute;
  bottom: 74px;
  left: 34px;
  display: flex;
  gap: 12px;
  transform: rotate(4deg);
}

.magnet-row span {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 18px;
  background: #f8ead9;
  color: var(--wood-dark);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 18px 34px rgba(43, 28, 19, 0.22);
}

.acrylic-piece {
  position: absolute;
  left: 118px;
  top: 240px;
  width: 210px;
  height: 126px;
  border: 2px solid rgba(255, 255, 255, 0.65);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.26);
  box-shadow: inset 0 0 34px rgba(255, 255, 255, 0.3), 0 20px 50px rgba(43, 28, 19, 0.16);
  transform: rotate(-8deg);
}

.wood-strip {
  position: absolute;
  right: 16px;
  top: 38px;
  width: 52px;
  height: 410px;
  border-radius: 999px;
  background: linear-gradient(180deg, #e7b77f, #7c4827);
  opacity: 0.85;
}

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

.section-heading.wide {
  max-width: 980px;
}

.section-heading.compact {
  margin-bottom: 0;
}

.section-heading p,
.quote-copy p,
.split-section p,
.sample-panel p {
  color: var(--muted);
  font-size: 18px;
}

.card-grid,
.product-grid,
.package-grid {
  display: grid;
  gap: 18px;
}

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

.card,
.product-card,
.package-card {
  border: 1px solid rgba(109, 63, 32, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.76);
  box-shadow: 0 12px 32px rgba(51, 32, 18, 0.06);
}

.card {
  min-height: 224px;
  padding: 24px;
}

.card p,
.product-card p,
.package-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.buyer-types {
  padding-top: 0;
}

.buyer-grid {
  display: grid;
  gap: 22px;
}

.buyer-card {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 28px;
  align-items: start;
  border: 1px solid rgba(109, 63, 32, 0.16);
  border-radius: 24px;
  background: rgba(255, 250, 242, 0.82);
  box-shadow: 0 18px 48px rgba(51, 32, 18, 0.07);
  padding: 30px;
}

.buyer-card h3 {
  margin-bottom: 12px;
  font-size: 28px;
}

.buyer-card p {
  color: var(--muted);
}

.buyer-label {
  display: inline-flex;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(155, 95, 49, 0.11);
  color: var(--wood-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 11px;
}

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

.buyer-details h4 {
  margin: 0 0 10px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.buyer-details ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.trial-note {
  grid-column: 1 / -1;
  margin: 0;
  border-left: 4px solid var(--wood);
  background: rgba(155, 95, 49, 0.08);
  border-radius: 14px;
  font-weight: 800;
  padding: 14px 16px;
}

.buyer-card .button {
  grid-column: 1 / -1;
  justify-self: start;
}

.product-ideas {
  background: var(--bg-soft);
  border-block: 1px solid rgba(109, 63, 32, 0.12);
}

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

.product-card {
  padding: 22px;
}

.product-card h3 {
  font-size: 17px;
}

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

.package-card {
  display: grid;
  gap: 14px;
  min-height: 340px;
  padding: 30px;
}

.package-card.featured {
  background: var(--ink);
  color: var(--cream);
}

.package-card.featured p,
.package-card.featured .package-number {
  color: rgba(255, 248, 238, 0.75);
}

.package-number {
  color: var(--wood-dark);
  font-size: 13px;
  font-weight: 900;
}

.package-card strong {
  align-self: end;
  color: inherit;
}

.section-cta {
  margin-top: 26px;
}

.process {
  background: #efe2d2;
}

.process-grid,
.split-section,
.quote-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  border: 1px solid rgba(109, 63, 32, 0.16);
  border-radius: 16px;
  background: rgba(255, 250, 242, 0.7);
  padding: 16px;
}

.steps span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--wood-dark);
  color: var(--cream);
  font-weight: 900;
}

.steps p {
  margin: 0;
  font-weight: 800;
}

.check-list,
.quote-notes {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

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

.check-list li,
.quote-notes li {
  border: 1px solid rgba(109, 63, 32, 0.16);
  border-radius: 14px;
  background: rgba(255, 250, 242, 0.75);
  color: var(--muted);
  font-weight: 800;
  padding: 15px 16px;
}

.sample {
  padding-top: 0;
}

.sample-panel {
  justify-content: space-between;
  border: 1px solid rgba(109, 63, 32, 0.16);
  border-radius: 28px;
  background: var(--ink);
  color: var(--cream);
  padding: 44px;
}

.sample-panel > div {
  max-width: 720px;
}

.sample-panel .eyebrow,
.sample-panel p {
  color: rgba(255, 248, 238, 0.78);
}

.quote {
  background: var(--bg-soft);
  border-top: 1px solid rgba(109, 63, 32, 0.12);
}

.quote-grid {
  grid-template-columns: 0.74fr 1.26fr;
  gap: 58px;
}

.quote-copy {
  position: sticky;
  top: 112px;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  border: 1px solid rgba(109, 63, 32, 0.16);
  border-radius: 26px;
  background: var(--cream);
  box-shadow: var(--shadow);
  padding: 28px;
}

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

.quote-form label span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(109, 63, 32, 0.2);
  border-radius: 14px;
  background: #fffdf8;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--wood);
  box-shadow: 0 0 0 4px rgba(155, 95, 49, 0.13);
}

.quote-form textarea {
  resize: vertical;
}

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

.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 42px 0;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-brand {
  color: var(--cream);
}

.site-footer p {
  margin: 10px 0 0;
  color: rgba(255, 248, 238, 0.75);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 800;
}

@media (max-width: 1080px) {
  .hero-grid,
  .buyer-card,
  .process-grid,
  .split-section,
  .quote-grid {
    grid-template-columns: 1fr;
  }

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

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

  .quote-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 70px 0;
  }

  .nav {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    inset: 68px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--cream);
    box-shadow: var(--shadow);
    padding: 12px;
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 14px 16px;
  }

  .hero {
    padding-top: 54px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-visual {
    min-height: 430px;
    border-radius: 24px;
    padding: 18px;
  }

  .workbench {
    min-height: 392px;
  }

  .sign-card {
    top: 26px;
    left: 22px;
    width: 172px;
    height: 124px;
  }

  .qr-card {
    top: 116px;
    right: 20px;
    width: 132px;
    height: 172px;
  }

  .menu-card {
    right: 42px;
    bottom: 34px;
    width: 156px;
    height: 122px;
  }

  .acrylic-piece {
    left: 60px;
    top: 204px;
    width: 160px;
  }

  .wood-strip {
    height: 260px;
  }

  .magnet-row {
    left: 20px;
    bottom: 48px;
  }

  .magnet-row span {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    font-size: 11px;
  }

  .industries-grid,
  .buyer-details,
  .product-grid,
  .package-grid,
  .check-list,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .card,
  .buyer-card,
  .package-card {
    min-height: auto;
  }

  .buyer-card {
    padding: 24px;
  }

  .buyer-card h3 {
    font-size: 24px;
  }

  .sample-panel,
  .quote-form {
    padding: 24px;
  }

  .button {
    width: 100%;
    min-height: 54px;
  }

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

@media (max-width: 420px) {
  .brand-logo {
    width: 112px;
    max-height: 46px;
  }

  h1 {
    font-size: 38px;
  }
}

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

.language-link {
  border: 1px solid rgba(109, 63, 32, 0.22);
  background: rgba(255, 250, 242, 0.72);
  color: var(--ink) !important;
}

.solutions .card {
  min-height: 210px;
}

@media (max-width: 1080px) {
  .solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .solution-grid {
    grid-template-columns: 1fr;
  }

  .solutions .card {
    min-height: auto;
  }
}
