:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-soft: #eef3fb;
  --ink: #1d2430;
  --muted: #59667b;
  --line: #d5deeb;
  --forest: #2f66d0;
  --forest-deep: #183a74;
  --sage: #9cb8a8;
  --berry: #a74a5a;
  --cobalt: #5e8ef0;
  --slate: #56627a;
  --shadow: 0 18px 45px rgba(24, 58, 116, 0.1);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(244, 247, 251, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(216, 213, 203, 0.75);
  transition: box-shadow 0.25s ease;
}

.nav-shell,
.hero-grid,
.section,
.footer-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

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

.brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.brand span {
  display: grid;
  gap: 2px;
}

.brand strong {
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

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

.nav-links a {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--muted);
}

.nav-links a:hover,
.nav-cta:hover {
  color: var(--forest);
}

.nav-cta {
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest-deep);
}

.burger {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.burger span {
  width: 26px;
  height: 2px;
  background: var(--forest-deep);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 40px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 640px;
  height: 640px;
  top: -180px;
  right: -120px;
  background: radial-gradient(circle, rgba(47, 102, 208, 0.22), rgba(47, 102, 208, 0));
}

.hero::after {
  width: 420px;
  height: 420px;
  bottom: -180px;
  left: -120px;
  background: radial-gradient(circle, rgba(47, 102, 208, 0.08), rgba(47, 102, 208, 0));
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: stretch;
}

.hero-copy,
.hero-card,
.profile-story,
.founder-card,
.profile-quote,
.department-card,
.process-panel,
.contact-card,
.contact-form {
  background: var(--surface);
  border: 1px solid rgba(216, 213, 203, 0.85);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-copy {
  position: relative;
  padding: 56px;
  background:
    linear-gradient(135deg, rgba(47, 102, 208, 0.98), rgba(24, 58, 116, 0.98)),
    var(--forest);
  color: #f4f4ef;
  overflow: hidden;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.22;
}

.hero-copy > * {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 20px;
}

.hero h1,
.section-intro h2,
.profile-story h3,
.process-copy h3,
.cap-card h3,
.standard-card h3,
.contact-card h3 {
  font-family: "Bodoni Moda", serif;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.lead {
  max-width: 58ch;
  margin-top: 26px;
  font-size: 1.05rem;
  color: rgba(244, 244, 239, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: #ffffff;
  color: var(--forest-deep);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: #ffffff;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.hero-meta div {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-meta span,
.stat-card span,
.contact-rows span {
  display: block;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-meta span {
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 6px;
}

.hero-meta strong {
  font-size: 1rem;
}

.hero-card {
  padding: 32px;
  align-self: end;
}

.hero-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}

.hero-card-top img {
  width: 74px;
  height: 74px;
  border-radius: 22px;
  object-fit: cover;
}

.hero-card-top p {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-card-top span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-stat-list {
  display: grid;
  gap: 16px;
}

.hero-stat-list article {
  padding: 18px;
  border-radius: var(--radius-sm);
  background: var(--surface-soft);
  border: 1px solid rgba(216, 213, 203, 0.75);
}

.hero-stat-list strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.45rem;
  font-family: "Bodoni Moda", serif;
  color: var(--forest-deep);
}

.hero-stat-list span {
  color: var(--muted);
  font-size: 0.94rem;
}

.brand-stripes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.brand-stripes span {
  height: 8px;
  border-radius: 999px;
}

.brand-stripes .green {
  background: var(--forest);
}

.brand-stripes .red {
  background: var(--berry);
}

.brand-stripes .blue {
  background: var(--cobalt);
}

.section {
  padding: 48px 0 0;
}

.section-intro {
  max-width: 780px;
  margin-bottom: 30px;
}

.section-tag {
  margin-bottom: 12px;
  color: var(--forest);
}

.section-intro h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.profile-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.72fr 0.95fr;
  gap: 24px;
}

.profile-story,
.founder-card,
.profile-quote,
.contact-card,
.contact-form {
  padding: 32px;
}

.profile-story h3 {
  margin-bottom: 16px;
  font-size: 1.75rem;
}

.profile-story p + p,
.profile-quote span,
.contact-rows div + div,
.form-note {
  margin-top: 14px;
}

.profile-story p,
.profile-quote span,
.cap-card p,
.standard-card p,
.contact-rows p {
  color: var(--muted);
}

.founder-card {
  display: grid;
  align-content: start;
  overflow: hidden;
  padding: 0;
}

.founder-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  object-position: center top;
  background: linear-gradient(180deg, #dfe7f3, #f5f8fc);
}

.founder-copy {
  padding: 20px 22px 24px;
}

.founder-copy span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest);
}

.founder-copy h3 {
  margin-bottom: 8px;
  font-family: "Bodoni Moda", serif;
  font-size: 1.5rem;
  line-height: 1.08;
}

.founder-copy p {
  color: var(--muted);
}

.profile-quote {
  background: linear-gradient(180deg, rgba(52, 88, 160, 0.94), rgba(24, 58, 116, 0.96));
  color: #ffffff;
}

.profile-quote p {
  font-family: "Bodoni Moda", serif;
  font-size: clamp(1.5rem, 2.7vw, 2.4rem);
  line-height: 1.16;
}

.profile-quote span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
}

.stat-grid,
.capability-grid,
.departments-grid,
.factory-grid,
.standards-grid {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

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

.stat-card,
.cap-card,
.standard-card {
  padding: 24px;
  background: var(--surface);
  border: 1px solid rgba(216, 213, 203, 0.85);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.stat-card strong {
  display: block;
  margin: 10px 0 8px;
  font-size: 1.6rem;
  line-height: 1.05;
  font-family: "Bodoni Moda", serif;
}

.stat-card p,
.process-copy p,
.process-list span {
  color: var(--muted);
}

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

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

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

.cap-card h3,
.department-copy h3,
.standard-card h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
  line-height: 1.1;
}

.department-card {
  padding: 24px;
}

.department-copy p {
  color: var(--muted);
}

.department-gallery {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.department-feature,
.department-thumbs figure {
  overflow: hidden;
  border-radius: 16px;
  background: var(--surface-soft);
}

.department-feature img,
.department-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.department-feature {
  height: 280px;
}

.department-thumbs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.department-thumbs figure {
  height: 150px;
}

.department-thumbs.one-thumb {
  grid-template-columns: 1fr;
}

.process-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  margin-top: 24px;
  padding: 32px;
}

.process-copy h3 {
  margin-bottom: 12px;
  font-size: 2rem;
  line-height: 1.05;
}

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

.process-list div {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: var(--surface-soft);
  border: 1px solid rgba(216, 213, 203, 0.75);
}

.process-list strong {
  font-family: "Bodoni Moda", serif;
  font-size: 1.45rem;
  color: var(--forest);
}

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

.buyers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.factory-card,
.buyer-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(213, 222, 235, 0.9);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.factory-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  background: var(--surface-soft);
}

.buyer-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: var(--surface-soft);
}

.factory-copy,
.buyer-copy {
  padding: 20px 22px 22px;
}

.factory-copy h3,
.buyer-copy h3 {
  margin-bottom: 8px;
  font-family: "Bodoni Moda", serif;
  font-size: 1.35rem;
  line-height: 1.08;
}

.factory-copy p,
.buyer-copy p {
  color: var(--muted);
  font-size: 0.94rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.badge.green {
  background: rgba(47, 95, 71, 0.1);
  color: var(--forest);
}

.badge.red {
  background: rgba(167, 74, 90, 0.1);
  color: var(--berry);
}

.badge.blue {
  background: rgba(47, 102, 208, 0.1);
  color: var(--cobalt);
}

.contact-card {
  background: linear-gradient(180deg, rgba(47, 102, 208, 0.97), rgba(24, 58, 116, 0.97));
  color: #ffffff;
}

.contact-card h3 {
  margin-bottom: 18px;
  font-size: 2rem;
}

.contact-rows {
  display: grid;
  gap: 18px;
}

.contact-rows span {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.62);
}

.contact-rows a,
.contact-rows p {
  color: #f5f5f0;
}

.contact-form {
  display: grid;
  gap: 16px;
}

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

label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(216, 213, 203, 0.95);
  border-radius: 16px;
  background: #faf9f5;
  color: var(--ink);
  padding: 14px 16px;
}

textarea {
  resize: vertical;
}

.contact-form .btn-primary {
  border: 0;
  background: var(--forest);
  color: #ffffff;
}

.contact-form .btn-primary:hover {
  background: var(--forest-deep);
}

.btn-submit.is-success {
  background: var(--cobalt);
}

.form-note {
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer {
  padding: 44px 0 54px;
}

.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid rgba(216, 213, 203, 0.95);
}

.footer-shell p {
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero-grid,
  .profile-grid,
  .contact-grid,
  .process-panel {
    grid-template-columns: 1fr;
  }

  .stat-grid,
  .departments-grid,
  .factory-grid,
  .standards-grid,
  .buyers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .burger {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .nav-links.is-open {
    display: flex;
    position: absolute;
    top: calc(100% + 1px);
    left: 20px;
    right: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(216, 213, 203, 0.95);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }

  .site-header {
    position: sticky;
  }

  .nav-shell {
    position: relative;
  }

  .capability-grid,
  .departments-grid,
  .factory-grid,
  .form-row,
  .hero-meta {
    grid-template-columns: 1fr;
  }

  .buyers-grid {
    grid-template-columns: 1fr;
  }

  .department-thumbs {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav-shell,
  .hero-grid,
  .section,
  .footer-shell {
    width: min(100% - 28px, 1180px);
  }

  .hero-copy,
  .hero-card,
  .profile-story,
  .department-card,
  .profile-quote,
  .process-panel,
  .contact-card,
  .contact-form,
  .stat-card,
  .cap-card,
  .standard-card {
    padding: 24px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .stat-grid,
  .departments-grid,
  .factory-grid,
  .standards-grid,
  .buyers-grid {
    grid-template-columns: 1fr;
  }

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

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}
