:root {
  --bg: #eef3f8;
  --surface: #ffffff;
  --surface-2: #f6f9fc;
  --surface-strong: #dfe8f2;
  --ink: #13212d;
  --muted: #5a6978;
  --accent: #0f5b8d;
  --accent-dark: #0a4368;
  --line: rgba(19, 33, 45, 0.1);
  --line-strong: rgba(19, 33, 45, 0.18);
  --deep: #142331;
  --deep-2: #1b3041;
  --radius: 18px;
  --shadow: 0 16px 38px rgba(15, 35, 51, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(15, 91, 141, 0.08), transparent 26rem),
    linear-gradient(180deg, #f8fbfe 0%, var(--bg) 100%);
}

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

.site-header,
.section,
.hero,
.site-footer {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0 18px;
}

.brand,
.footer-brand {
  font-family: "Fraunces", serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

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

.brand-mark {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
}

.footer-brand-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-mark {
  width: 32px;
  height: 32px;
}

.site-nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: stretch;
  padding: 26px 0 52px;
}

.hero-copy,
.hero-panel,
.card,
.material-item,
.panel-card,
.contact-card,
.timeline-item,
.intro-strip,
.faq-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 44px;
  border-color: var(--line-strong);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 800;
}

h1,
h2,
h3,
strong {
  letter-spacing: -0.03em;
}

h1 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(2.55rem, 5vw, 4.3rem);
  line-height: 1.06;
}

.lead,
.section-head p,
.section-copy-dark,
.card p,
.material-item p,
.timeline-item p,
.faq-grid p,
.contact-copy p,
.contact-row p {
  color: var(--muted);
  line-height: 1.7;
}

.lead {
  margin: 22px 0 0;
  font-size: 1.02rem;
  max-width: 55ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0;
}

.hero-microproof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-microproof span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 12px;
  font-weight: 800;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(15, 91, 141, 0.18);
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: var(--surface);
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.hero-points li {
  padding-left: 22px;
  position: relative;
  color: var(--muted);
}

.hero-points li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 3px;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 0.58rem;
}

.hero-panel {
  background: linear-gradient(180deg, rgba(20, 35, 49, 0.98), rgba(27, 48, 65, 0.98));
  color: #f5f9fc;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.panel-main {
  padding: 26px;
}

.panel-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #afc1d2;
  margin-bottom: 10px;
}

.panel-main strong,
.panel-card strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1.4;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.panel-card {
  padding: 18px;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.panel-card p {
  color: #d2dde5;
  margin: 10px 0 0;
  line-height: 1.6;
  font-size: 0.94rem;
}

.section {
  padding: 30px 0 18px;
}

.page-hero {
  padding-top: 40px;
  padding-bottom: 28px;
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  overflow: hidden;
  padding: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat {
  padding: 28px 30px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: none;
}

.stat-number {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 2.5rem;
  line-height: 1;
}

.stat-label {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.section-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.compact-head {
  margin-top: 28px;
  margin-bottom: 18px;
}

.section-head h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
}

.section-head p {
  margin: 14px 0 0;
}

.cards-three,
.material-list,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

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

.product-showcase-featured .showcase-card:first-child {
  grid-column: span 2;
}

.product-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.category-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.category-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(15, 35, 51, 0.1);
}

.category-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

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

.category-copy h2 {
  margin: 0 0 10px;
  font-family: "Fraunces", serif;
  font-size: 1.6rem;
}

.category-copy p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.7;
}

.section-kicker-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  margin: 8px 0 18px;
}

.section-kicker-row p {
  margin: 0;
  color: var(--muted);
  max-width: 46ch;
  line-height: 1.7;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}

.gallery-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.gallery-item figcaption {
  padding: 18px 20px 22px;
  color: var(--muted);
  line-height: 1.65;
  display: grid;
  gap: 6px;
}

.gallery-item-large {
  grid-row: span 2;
}

.gallery-label {
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.gallery-item figcaption strong {
  color: var(--ink);
  font-size: 1rem;
}

.showcase-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.showcase-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(15, 35, 51, 0.1);
}

.showcase-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.showcase-copy {
  padding: 18px 20px 22px;
}

.showcase-copy h3 {
  margin: 0 0 10px;
  font-size: 1.06rem;
}

.showcase-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.showcase-tag {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-link-row {
  margin-top: 18px;
}

.text-link {
  color: var(--accent-dark);
  font-weight: 800;
}

.text-link-light {
  color: #dbe8f2;
}

.text-link:hover {
  text-decoration: underline;
}

.card,
.material-item,
.faq-grid article {
  padding: 24px;
}

.card h3,
.material-item h3,
.timeline-item h3,
.faq-grid h3,
.contact-card h3 {
  margin: 0 0 12px;
  font-size: 1.1rem;
}

.section-soft {
  position: relative;
}

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

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  padding: 24px 26px;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
}

.timeline-step {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: var(--surface-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--accent-dark);
}

.section-dark {
  background: linear-gradient(180deg, #142331 0%, #1b3041 100%);
  border-radius: 24px;
  padding: 40px 36px;
  margin-top: 26px;
  color: #f5f9fc;
}

.section-head-dark,
.section-copy-dark {
  color: #f5efe8;
}

.section-head-dark .eyebrow {
  color: #8eb8d8;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.badge-row span {
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 700;
}

.contact-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: start;
}

.contact-card {
  padding: 28px;
  background: var(--surface);
}

.policy-copy {
  padding: 28px;
}

.policy-copy h2 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.policy-copy p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 22px;
}

.form-shell {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 24px;
}

.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 0.92rem;
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-2);
  padding: 14px 16px;
  font: inherit;
  color: var(--ink);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.contact-row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.contact-row:last-child {
  border-bottom: none;
}

.contact-row span {
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-row a {
  color: var(--accent-dark);
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 36px 0 44px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  margin-top: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  justify-content: flex-end;
}

.footer-links a:hover {
  color: var(--accent-dark);
}

@media (max-width: 980px) {
  .hero,
  .contact-section,
  .form-shell {
    grid-template-columns: 1fr;
  }

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

  .cards-three,
  .faq-grid,
  .intro-strip,
  .product-showcase,
  .gallery-grid,
  .product-categories {
    grid-template-columns: 1fr;
  }

  .product-showcase-featured .showcase-card:first-child {
    grid-column: span 1;
  }

  .stat {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .stat:last-child {
    border-bottom: none;
  }
}

@media (max-width: 720px) {
  .site-header {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 14px 18px;
  }

  .hero-copy,
  .section-dark,
  .contact-card {
    padding: 24px;
  }

  .panel-grid,
  .material-list {
    grid-template-columns: 1fr;
  }

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

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

  .section-kicker-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
