:root {
  --ink: #1c1916;
  --paper: #efe7dc;
  --paper-soft: #f6eee6;
  --dark: #181410;
  --dark-soft: #252019;
  --muted: #716960;
  --muted-dark: #9e968d;
  --line: rgba(54, 43, 34, 0.18);
  --line-dark: rgba(255, 245, 232, 0.14);
  --accent: #b16f42;
  --accent-light: #d7a66f;
  --sage: #626b56;
  --container: min(1180px, calc(100vw - 44px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: 0;
}

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

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

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

.container {
  margin: 0 auto;
  width: var(--container);
}

.site-header {
  align-items: center;
  color: #f7efe4;
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 26px max(22px, calc((100vw - 1180px) / 2)) 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10;
}

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

.brand-symbol {
  border: 1px solid currentColor;
  border-radius: 50%;
  display: inline-block;
  flex: 0 0 34px;
  height: 34px;
  opacity: 0.7;
  position: relative;
}

.brand-symbol::before,
.brand-symbol::after {
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  inset: 7px;
  position: absolute;
}

.brand-symbol::after {
  inset: 13px;
}

.brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand small {
  color: rgba(247, 239, 228, 0.52);
  display: block;
  font-size: 10px;
  letter-spacing: 0.28em;
  margin-top: 8px;
  text-transform: uppercase;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 14px;
}

.nav-links a,
.footer nav a {
  border-radius: 8px;
  color: rgba(247, 239, 228, 0.82);
  font-size: 14px;
  padding: 10px 12px;
}

.nav-links a:hover,
.footer nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.nav-cta {
  background: rgba(177, 111, 66, 0.5);
  border: 1px solid rgba(255, 245, 232, 0.16);
}

.section-dark {
  background: var(--dark);
  color: #f6eee6;
}

.section-light {
  background: var(--paper);
  color: var(--ink);
}

.hero {
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.hero-bg,
.contact-bg {
  background-image:
    linear-gradient(90deg, rgba(24, 20, 16, 0.94), rgba(24, 20, 16, 0.58) 46%, rgba(24, 20, 16, 0.08)),
    url("public/assets/hero-cross.png");
  background-position: center;
  background-size: cover;
  inset: 0;
  position: absolute;
}

.hero-bg::after,
.contact-bg::after {
  background: radial-gradient(circle at 20% 15%, rgba(215, 166, 111, 0.18), transparent 36%);
  content: "";
  inset: 0;
  position: absolute;
}

.hero-inner {
  min-height: 100vh;
  padding: 220px 0 92px;
  position: relative;
  z-index: 1;
}

.section-kicker,
.section-label {
  color: var(--accent-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.32em;
  line-height: 1.5;
  margin: 0 0 24px;
  text-transform: uppercase;
}

.section-kicker {
  align-items: center;
  display: flex;
  gap: 14px;
}

.section-kicker span {
  background: currentColor;
  display: inline-block;
  height: 1px;
  width: 48px;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(52px, 8vw, 106px);
  line-height: 0.98;
  margin-bottom: 34px;
  max-width: 690px;
}

h2 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.05;
  margin-bottom: 26px;
}

em {
  color: var(--accent-light);
  font-style: italic;
}

.hero-copy {
  color: rgba(247, 239, 228, 0.74);
  font-size: 20px;
  line-height: 1.72;
  max-width: 560px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 42px;
}

.button,
.text-link {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  justify-content: center;
}

.button {
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  min-height: 58px;
  padding: 16px 28px;
}

.button-primary {
  background: var(--accent);
  color: #fff6ea;
}

.button-primary:hover {
  background: #c17c49;
}

.text-link {
  border-bottom: 1px solid var(--accent-light);
  color: #f5eadb;
  font-weight: 800;
  min-height: 42px;
}

.hero-note {
  bottom: 34px;
  color: rgba(247, 239, 228, 0.55);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.24em;
  position: absolute;
  right: 0;
  text-align: right;
  text-transform: uppercase;
}

.about,
.why,
.partners {
  padding: clamp(76px, 9vw, 128px) 0;
}

.two-column {
  align-items: center;
  display: grid;
  gap: clamp(44px, 8vw, 88px);
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.86fr);
}

.copy-block p,
.section-heading p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  max-width: 680px;
}

.copy-block p + p {
  margin-top: 22px;
}

.stats-grid {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
  padding-top: 34px;
}

.stats-grid strong,
.partner-stats strong {
  color: var(--accent);
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
}

.stats-grid span,
.partner-stats span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  line-height: 1.45;
  margin-top: 12px;
}

.about-image {
  border-radius: 8px;
  margin: 0;
  overflow: hidden;
}

.about-image img {
  aspect-ratio: 0.84;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.products,
.process {
  padding: clamp(82px, 10vw, 132px) 0;
}

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

.section-dark .section-heading p,
.section-dark .process-grid p,
.section-dark .product-card p {
  color: rgba(246, 238, 230, 0.58);
}

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

.product-card {
  background: var(--dark-soft);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  overflow: hidden;
}

.product-card img {
  aspect-ratio: 1.28;
  filter: saturate(0.9) contrast(1.03);
  object-fit: cover;
  width: 100%;
}

.product-card div {
  min-height: 286px;
  padding: 30px;
}

.product-card span,
.process-grid span {
  color: var(--accent-light);
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.product-card h3,
.feature-row h3,
.process-grid h3,
.inquiry-form h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 18px;
}

.product-card p,
.feature-row p,
.process-grid p {
  font-size: 16px;
  line-height: 1.7;
}

.product-card small {
  color: var(--accent-light);
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  margin-top: 24px;
  text-transform: uppercase;
}

.feature-row {
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.feature-row article {
  min-height: 290px;
  padding: 44px 36px;
}

.feature-row article + article {
  border-left: 1px solid var(--line);
}

.feature-icon {
  color: var(--accent);
  display: block;
  font-family: var(--serif);
  font-size: 38px;
  height: 48px;
  margin-bottom: 26px;
}

.feature-icon.target {
  border: 1px solid var(--accent);
  border-radius: 50%;
  height: 42px;
  position: relative;
  width: 42px;
}

.feature-icon.target::before,
.feature-icon.target::after {
  border: 1px solid var(--accent);
  border-radius: 50%;
  content: "";
  inset: 8px;
  position: absolute;
}

.feature-icon.target::after {
  inset: 16px;
}

.feature-row p {
  color: var(--muted);
  margin-bottom: 0;
}

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

.process-grid article {
  border-top: 2px solid var(--accent);
  padding-top: 28px;
}

.quote-section {
  background: var(--sage);
  color: #f5efe8;
  padding: clamp(88px, 11vw, 150px) 0;
  text-align: center;
}

.quote-section p {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 52px);
  font-style: italic;
  line-height: 1.35;
  margin: 0 auto 30px;
  max-width: 880px;
}

.quote-section span {
  color: rgba(245, 239, 232, 0.65);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.partner-stats {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(3, 1fr);
  margin: 72px auto 50px;
  max-width: 980px;
  text-align: center;
}

.partner-stats strong {
  font-size: clamp(44px, 6vw, 68px);
}

.partner-note {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 720px;
  text-align: center;
}

.contact {
  overflow: hidden;
  padding: clamp(78px, 9vw, 124px) 0;
  position: relative;
}

.contact-bg {
  background-image:
    linear-gradient(90deg, rgba(24, 20, 16, 0.96), rgba(24, 20, 16, 0.82)),
    url("public/assets/contact-cross.png");
  opacity: 0.98;
}

.contact-grid {
  align-items: start;
  display: grid;
  gap: clamp(44px, 8vw, 80px);
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.85fr);
  position: relative;
  z-index: 1;
}

.contact-copy p {
  color: rgba(246, 238, 230, 0.64);
  font-size: 18px;
  line-height: 1.75;
}

.contact-list {
  margin: 36px 0 0;
}

.contact-list div {
  border-top: 1px solid var(--line-dark);
  display: grid;
  gap: 20px;
  grid-template-columns: 120px 1fr;
  padding: 26px 0;
}

.contact-list dt {
  color: var(--accent-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.contact-list dd {
  color: #f5eee5;
  font-size: 18px;
  line-height: 1.55;
  margin: 0;
}

.inquiry-form {
  background: rgba(246, 238, 230, 0.08);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 44px);
}

.inquiry-form p,
.inquiry-form small {
  color: rgba(246, 238, 230, 0.62);
  line-height: 1.6;
}

.inquiry-form label {
  color: var(--accent-light);
  display: grid;
  font-size: 12px;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  color: #f5eee5;
  min-height: 54px;
  padding: 14px 16px;
  text-transform: none;
  width: 100%;
}

.inquiry-form textarea {
  min-height: 120px;
  resize: vertical;
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: rgba(246, 238, 230, 0.38);
}

.inquiry-form .button {
  margin-top: 8px;
  width: 100%;
}

.footer {
  background: #15110e;
  color: rgba(246, 238, 230, 0.72);
  padding: 42px 0;
}

.footer-inner {
  display: grid;
  gap: 28px;
}

.footer .brand small {
  display: none;
}

.footer nav {
  border-bottom: 1px solid var(--line-dark);
  border-top: 1px solid var(--line-dark);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 0;
}

.footer p {
  color: rgba(246, 238, 230, 0.48);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  margin: 0;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    gap: 18px;
    position: absolute;
  }

  .nav-links {
    justify-content: flex-end;
    max-width: 480px;
    flex-wrap: wrap;
  }

  .two-column,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .feature-row,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .feature-row article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .product-card {
    display: grid;
    grid-template-columns: minmax(220px, 0.8fr) 1fr;
  }

  .product-card img {
    height: 100%;
  }

  .partner-stats {
    grid-template-columns: 1fr;
  }
}

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

  .site-header {
    padding: 18px 14px 0;
  }

  .brand strong {
    font-size: 17px;
  }

  .brand small {
    font-size: 9px;
  }

  .brand-symbol {
    flex-basis: 30px;
    height: 30px;
  }

  .nav-links {
    display: none;
  }

  .hero-inner {
    padding: 150px 0 72px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 38px;
  }

  .hero-copy,
  .copy-block p,
  .section-heading p,
  .contact-copy p {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .button,
  .text-link {
    width: 100%;
  }

  .hero-note {
    position: static;
    text-align: left;
    margin-top: 42px;
  }

  .stats-grid,
  .product-card,
  .contact-list div {
    grid-template-columns: 1fr;
  }

  .product-card img {
    aspect-ratio: 1.35;
  }

  .product-card div,
  .feature-row article {
    min-height: 0;
    padding: 24px;
  }

  .contact-list div {
    gap: 8px;
  }

  .inquiry-form {
    padding: 22px;
  }
}
