:root {
  --ink: #171513;
  --ink-soft: #38332c;
  --paper: #f4efe6;
  --paper-strong: #fffaf0;
  --muted: #756f66;
  --line: rgba(23, 21, 19, 0.14);
  --graphite: #111315;
  --graphite-2: #1e2224;
  --wood: #c8914d;
  --amber: #f1a33a;
  --teal: #3f8880;
  --silver: #c9cbc8;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
  --content: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

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

.skip-link:focus {
  width: auto;
  height: auto;
  margin: 16px;
  padding: 10px 14px;
  clip: auto;
  z-index: 20;
  background: var(--paper-strong);
  color: var(--ink);
  border-radius: var(--radius);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--content);
  margin: 14px auto 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(17, 19, 21, 0.72);
  color: #fff;
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
  border-radius: var(--radius);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(17, 19, 21, 0.92);
  border-color: rgba(255, 255, 255, 0.12);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, #c8914d, #f1cf8f);
  color: #171513;
  font-weight: 900;
  letter-spacing: 0;
  border-radius: 6px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.78);
  border-radius: 6px;
  font-size: 0.94rem;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  outline: none;
}

.site-nav .nav-cta {
  margin-left: 6px;
  background: var(--paper-strong);
  color: var(--ink);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: #fff;
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.hero {
  position: relative;
  display: grid;
  align-items: start;
  min-height: 92svh;
  padding: 128px max(20px, calc((100vw - 1180px) / 2)) 118px;
  overflow: hidden;
  color: #fff;
  background: #111315 url("../Pics/hero-products.png") center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 19, 21, 0.92) 0%, rgba(17, 19, 21, 0.74) 33%, rgba(17, 19, 21, 0.18) 68%, rgba(17, 19, 21, 0.18) 100%),
    linear-gradient(0deg, rgba(17, 19, 21, 0.88) 0%, rgba(17, 19, 21, 0) 36%);
}

.hero-content {
  position: relative;
  width: min(720px, 100%);
  z-index: 1;
}

.eyebrow {
  margin: 0 0 14px;
  color: #f1cf8f;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #8f5d22;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
  overflow-wrap: normal;
  text-wrap: balance;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.6rem, 4.1vw, 4.45rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.3rem);
  font-weight: 860;
}

h3 {
  font-size: 1.24rem;
  font-weight: 820;
}

.hero-copy {
  max-width: 580px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.35vw, 1.14rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

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

.button.primary {
  background: #f0be69;
  color: #19130b;
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #ffd38a;
}

.button.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

.button.ghost:hover,
.button.ghost:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.hero-dock {
  position: absolute;
  right: max(20px, calc((100vw - 1180px) / 2));
  bottom: 14px;
  left: max(20px, calc((100vw - 1180px) / 2));
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(17, 19, 21, 0.68);
  backdrop-filter: blur(18px);
  border-radius: var(--radius);
}

.hero-dock a {
  min-width: 0;
  padding: 14px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-dock a:last-child {
  border-right: 0;
}

.hero-dock span,
.hero-dock strong,
.hero-dock small {
  display: block;
}

.hero-dock span {
  color: #f1cf8f;
  font-size: 0.75rem;
  font-weight: 900;
}

.hero-dock strong {
  margin-top: 4px;
  font-size: 1.06rem;
}

.hero-dock small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.66);
}

.section {
  width: var(--content);
  margin: 0 auto;
  padding: 92px 0;
}

section[id],
article[id] {
  scroll-margin-top: 112px;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}

.lead-block {
  padding-top: 10px;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.lead-block p:first-child {
  margin-top: 0;
}

.lead-block p:last-child {
  margin-bottom: 0;
}

.design-section {
  width: 100%;
  margin: 0;
  padding: 88px max(20px, calc((100vw - 1180px) / 2));
  color: #fff;
  background:
    linear-gradient(135deg, rgba(17, 19, 21, 0.98), rgba(36, 37, 33, 0.94)),
    #111315;
}

.design-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: start;
}

.design-main h2 {
  max-width: 10ch;
}

.design-main p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

.design-points {
  display: grid;
  gap: 12px;
}

.design-points article {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
}

.design-points span {
  display: block;
  margin-bottom: 18px;
  color: #f1cf8f;
  font-weight: 900;
}

.design-points p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.design-points a {
  color: #f1cf8f;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.8fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.services {
  padding-top: 70px;
}

.service-grid,
.package-grid,
.material-grid {
  display: grid;
  gap: 16px;
}

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

.service-card,
.package-card,
.material-grid article {
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.62);
  border-radius: var(--radius);
}

.service-card {
  min-height: 360px;
  padding: 22px;
}

.service-card.accent-card {
  background: var(--graphite);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.08);
}

.service-index {
  display: block;
  margin-bottom: 44px;
  color: #9a641f;
  font-weight: 900;
}

.accent-card .service-index {
  color: #f1cf8f;
}

.service-card p,
.package-card p,
.material-grid p,
.process-list p,
.qr-panel p,
.contact-copy p,
.site-footer p {
  color: var(--muted);
}

.accent-card p,
.accent-card li {
  color: rgba(255, 255, 255, 0.72);
}

.service-card ul,
.package-card ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li,
.package-card li {
  position: relative;
  margin-top: 10px;
  padding-left: 18px;
  color: var(--ink-soft);
}

.service-card li::before,
.package-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 1px;
  background: currentColor;
}

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

.package-card {
  display: flex;
  flex-direction: column;
  min-height: 650px;
  padding: 22px;
  overflow: hidden;
}

.package-card.featured {
  background: #fff6df;
  border-color: rgba(200, 145, 77, 0.42);
  box-shadow: 0 16px 42px rgba(121, 82, 27, 0.12);
}

.package-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 28px;
}

.package-top span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 30px;
  background: var(--graphite);
  color: #fff;
  border-radius: 6px;
  font-weight: 900;
}

.package-top strong {
  color: #8f5d22;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.package-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin: 0 0 20px;
  overflow: hidden;
  border: 1px solid rgba(23, 21, 19, 0.1);
  background: #201e1a;
  border-radius: 6px;
}

.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price-slot {
  margin-top: auto;
  padding: 14px;
  border: 1px dashed rgba(23, 21, 19, 0.26);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.48);
  border-radius: 6px;
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 16px;
  color: #8f5d22;
  font-weight: 900;
}

.text-link:hover,
.text-link:focus-visible {
  color: #5f3910;
  outline: none;
}

.qr-section {
  width: 100%;
  padding: 0;
}

.qr-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: start;
  padding: 92px max(20px, calc((100vw - 1180px) / 2));
  color: #fff;
  background:
    linear-gradient(135deg, rgba(17, 19, 21, 0.98), rgba(30, 34, 36, 0.94)),
    #111315;
}

.qr-panel h2 {
  max-width: 10ch;
}

.qr-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.qr-list {
  display: grid;
  gap: 12px;
}

.qr-list article {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
}

.qr-list span {
  display: block;
  margin-bottom: 20px;
  color: #f1cf8f;
  font-weight: 900;
}

.context-note {
  width: var(--content);
  margin: 18px auto 0;
  padding: 18px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.material-grid article {
  padding: 22px;
}

.swatch {
  display: block;
  width: 100%;
  height: 90px;
  margin-bottom: 22px;
  border-radius: 6px;
  border: 1px solid var(--line);
}

.swatch.wood {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent 38%),
    repeating-linear-gradient(12deg, #c8914d 0 8px, #d5a467 8px 14px, #b87d3d 14px 18px);
}

.swatch.leather {
  background:
    radial-gradient(circle at 25% 30%, rgba(255, 255, 255, 0.1), transparent 20%),
    linear-gradient(135deg, #8d4c25, #4d2817);
}

.swatch.acrylic {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.1)),
    linear-gradient(135deg, #dbe4e5, #5a686c);
}

.swatch.metal {
  background:
    linear-gradient(90deg, #7f817c, #f4f0e7 22%, #9c9c96 45%, #d8d6d0 64%, #6f716d);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  padding: 22px;
  border-top: 2px solid var(--graphite);
  background: rgba(255, 250, 240, 0.52);
}

.process-list span {
  display: block;
  margin-bottom: 36px;
  color: #8f5d22;
  font-weight: 900;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 54px;
  align-items: start;
  padding-bottom: 112px;
}

.contact-copy {
  position: sticky;
  top: 120px;
}

.contact-copy p {
  font-size: 1.06rem;
}

.contact-note {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.68);
  border-radius: var(--radius);
}

.contact-note strong {
  color: #8f5d22;
}

.contact-note span {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid rgba(23, 21, 19, 0.18);
  color: var(--ink);
  background: #fff;
  border-radius: 6px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #8f5d22;
  outline: 3px solid rgba(200, 145, 77, 0.18);
}

.consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  font-weight: 600;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.form-button {
  width: 100%;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: #34615b;
  font-weight: 800;
}

.form-status.is-error {
  color: #9b2d22;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  width: var(--content);
  margin: 0 auto;
  padding: 34px 0 42px;
  border-top: 1px solid var(--line);
}

.footer-brand .brand-mark {
  border-color: rgba(23, 21, 19, 0.12);
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: start;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--muted);
  font-weight: 800;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--ink);
  outline: none;
}

@media (max-width: 1050px) {
  .service-grid,
  .material-grid,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 820px) {
  :root {
    --content: min(100vw - 28px, 1180px);
  }

  .site-header {
    margin-top: 8px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(17, 19, 21, 0.96);
    border-radius: var(--radius);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 12px;
  }

  .site-nav .nav-cta {
    margin-left: 0;
  }

  .hero {
    min-height: 92svh;
    padding-top: 120px;
    padding-bottom: 80px;
    background-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(17, 19, 21, 0.94), rgba(17, 19, 21, 0.58)),
      linear-gradient(0deg, rgba(17, 19, 21, 0.94) 0%, rgba(17, 19, 21, 0) 45%);
  }

  h1 {
    max-width: 12ch;
  }

  .hero-dock {
    display: none;
  }

  .section,
  .design-section,
  .qr-panel {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .section-grid,
  .section-head,
  .design-panel,
  .qr-panel,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 620px) {
  .brand small {
    display: none;
  }

  .hero-actions,
  .form-grid,
  .service-grid,
  .package-grid,
  .material-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

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

  .site-footer {
    padding-bottom: 28px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

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