* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f6f2;
  --header: #3C56B9;
  --ink: #111;
  --muted: #555;
  --line: #dedbd2;
  --card: #fff;
  --max: 1120px;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
}

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

a {
  color: inherit;
}

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

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(247, 246, 242, 0.96);
}

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

.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.brand-logo {
  display: block;
  height: auto;
  width: auto;
  max-height: 60px;
  max-width: 100%;
}

.brand-title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-subtitle {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

.site-nav {
  display: flex;
  gap: 22px;
  font-size: 14px;
}

.site-nav a {
  text-decoration: none;
}

.hero {
  padding: 58px 0 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.hero-copy {
  max-width: 610px;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 12px;
  font-weight: 800;
  color: var(--header);
}

h1, h2 {
  margin: 0;
  letter-spacing: -0.055em;
  line-height: 1;
}

h1 {
  font-size: clamp(48px, 6vw, 76px);
}

h2 {
  font-size: clamp(34px, 4vw, 54px);
}

.hero-text {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: 18px;
  color: #333;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 0;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 800;
  text-decoration: none;
  background: transparent;
  cursor: pointer;
}

.button.primary {
  background: var(--ink);
  color: #fff;
}

.button.secondary {
  background: transparent;
  color: var(--ink);
}

.full {
  width: 100%;
}

.note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

/*.hero-image-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 22px 50px rgba(0,0,0,0.08);
}
*/

.hero-image-card img {
  width: 100%;
  max-height: 390px;
  object-fit: contain;
  margin: 0 auto;
  border-radius: 22px;
}

.section {
  padding: 72px 0;
}

.section-heading {
  max-width: 840px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  font-size: 18px;
  color: #333;
}

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

figure {
  margin: 0;
}

figure img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

figcaption {
  margin-top: 10px;
  font-weight: 800;
  font-size: 14px;
}

.muted {
  background: #efede6;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
}

.two-col p {
  margin-top: 0;
  font-size: 18px;
  color: #333;
}

.two-col li {
  margin-bottom: 10px;
  font-weight: 700;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
}

.email-line a {
  font-weight: 800;
}

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

label {
  display: grid;
  gap: 6px;
  font-weight: 800;
  font-size: 14px;
}

input, select, textarea {
  width: 100%;
  border: 1px solid #cfc8bc;
  border-radius: 12px;
  padding: 13px 14px;
  font: inherit;
  background: #fff;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  font-size: 14px;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

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

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 0;
  }

  .site-nav {
    gap: 16px;
    font-size: 13px;
  }

  .hero {
    padding: 40px 0;
  }

  .hero-grid,
  .two-col,
  .contact-card {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .hero-image-card img {
    max-height: 320px;
  }

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

  figure img {
    height: 230px;
  }

  .contact-card {
    padding: 24px;
  }

  .footer-inner {
    flex-direction: column;
  }
}

.product-stack {
  display: grid;
  gap: 26px;
}

.product-feature {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: center;
}

.product-feature h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.045em;
  line-height: 1;
  color: var(--header);
}

.product-copy p:not(.eyebrow) {
  font-size: 17px;
  color: #333;
}

.product-copy ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.product-copy li {
  margin-bottom: 8px;
  font-weight: 700;
}

.product-actions {
  margin-top: 22px;
}

.product-actions .button {
  width: fit-content;
}

.product-feature figure img {
  height: 230px;
}

@media (max-width: 850px) {
  .site-nav {
    justify-content: center;
  }
  .header-inner {
    flex-direction: column;
    align-items: center;
    padding: 14px 0;
  }
  .product-feature {
    grid-template-columns: 1fr;
    padding: 22px;
  }
  .brand-logo {
    max-height: 48px;
  }
}
