:root {
  --sand: #f4efe6;
  --sand-deep: #e4d7c1;
  --steel: #20303c;
  --steel-soft: #3f5767;
  --copper: #bd6b38;
  --copper-deep: #9e5024;
  --panel: rgba(255, 255, 255, 0.74);
  --panel-strong: rgba(255, 255, 255, 0.9);
  --line: rgba(32, 48, 60, 0.12);
  --shadow: 0 24px 60px rgba(42, 58, 69, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--steel);
  font-family: "IBM Plex Sans", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(189, 107, 56, 0.16), transparent 32%),
    radial-gradient(circle at right 15%, rgba(32, 48, 60, 0.09), transparent 26%),
    linear-gradient(180deg, #f7f1e7 0%, #efe5d5 100%);
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image: linear-gradient(rgba(32, 48, 60, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(32, 48, 60, 0.025) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 82%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 82%);
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 64px;
}

.site-header,
.hero,
.section,
.stats-band {
  animation: rise 700ms ease both;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 0 28px;
}

.brand-mark,
h1,
h2,
h3,
.button {
  font-family: "Space Grotesk", sans-serif;
}

.brand-mark {
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark .brand-model {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  font-weight: 600;
  padding: 3px 8px;
  border: 1px solid currentColor;
  border-radius: 999px;
  opacity: 0.75;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.site-nav a {
  color: var(--steel);
  text-decoration: none;
  font-size: 0.96rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
  min-height: 76vh;
}

.hero-copy,
.story-copy,
.story-panel-box,
.feature-card,
.contact-form,
.contact-copy,
.stat-card {
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--copper-deep);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  font-weight: 600;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.lead,
.section p,
.contact-copy p,
.story-panel-box li,
.hero-points li,
label {
  color: var(--steel-soft);
  font-size: 1rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--copper) 0%, var(--copper-deep) 100%);
  box-shadow: 0 14px 28px rgba(158, 80, 36, 0.24);
}

.button-secondary {
  color: var(--steel);
  border-color: rgba(32, 48, 60, 0.18);
  background: rgba(255, 255, 255, 0.54);
}

.hero-points {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li::before,
.story-panel-box li::before {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--copper) 0%, var(--copper-deep) 100%);
  content: "";
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  position: absolute;
  inset: 10% 7% auto;
  height: 72%;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.14));
  filter: blur(10px);
  content: "";
}

.hero-visual img {
  display: block;
  width: min(100%, 520px);
  margin: 0 auto;
  filter: drop-shadow(0 32px 44px rgba(32, 48, 60, 0.18));
}

.section {
  padding: 72px 0 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.feature-grid,
.contact-layout,
.story-panel {
  display: grid;
  gap: 20px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.story-panel-box,
.contact-form,
.contact-copy,
.stat-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.feature-card {
  padding: 26px;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 72px;
}

.stat-card {
  padding: 24px;
  text-align: center;
}

.stat-value {
  display: block;
  margin-bottom: 10px;
  color: var(--copper-deep);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
}

.stat-label {
  color: var(--steel-soft);
  line-height: 1.5;
}

.story-panel {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: start;
}

.story-copy {
  padding: 32px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(32, 48, 60, 0.96), rgba(40, 60, 72, 0.92));
  color: #f9f4ed;
  box-shadow: var(--shadow);
}

.story-copy .eyebrow,
.story-copy p {
  color: rgba(249, 244, 237, 0.82);
}

.story-panel-box {
  padding: 30px;
}

.story-panel-box ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.story-panel-box li + li {
  margin-top: 12px;
}

.contact-layout {
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
}

.contact-copy,
.contact-form {
  padding: 28px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 500;
}

input,
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(32, 48, 60, 0.14);
  border-radius: 18px;
  color: var(--steel);
  font: inherit;
  background: rgba(255, 255, 255, 0.86);
}

input:focus-visible,
textarea:focus-visible,
.button:focus-visible {
  outline: 3px solid rgba(189, 107, 56, 0.28);
  outline-offset: 2px;
}

textarea {
  resize: vertical;
}

.button-submit {
  width: fit-content;
  min-width: 180px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--steel);
  font-weight: 500;
}

.form-status[data-state="error"] {
  color: #8e2f22;
}

.form-status[data-state="success"] {
  color: #26603f;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .hero,
  .story-panel,
  .contact-layout,
  .feature-grid,
  .stats-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 16px;
  }

  .hero-visual {
    order: -1;
  }
}

@media (max-width: 680px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 16px;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  h1 {
    font-size: clamp(2.3rem, 13vw, 4rem);
  }

  .contact-copy,
  .contact-form,
  .feature-card,
  .story-copy,
  .story-panel-box,
  .stat-card {
    padding: 22px;
  }
}