:root {
  --paper: #ede5d7;
  --paper-shadow: #d7ccbb;
  --ink: #171410;
  --ink-soft: #473d33;
  --steel: #6d756f;
  --oxide: #35594d;
  --copper: #b36540;
  --line: rgba(23, 20, 16, 0.12);
  --glow: rgba(179, 101, 64, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 14%, rgba(83, 118, 104, 0.18), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(179, 101, 64, 0.16), transparent 24%),
    linear-gradient(135deg, #f5efe6 0%, var(--paper) 42%, #dfd3c3 100%);
  font-family: "Spectral", Georgia, serif;
  overflow-x: hidden;
}

.texture {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 68px,
      rgba(23, 20, 16, 0.03) 68px,
      rgba(23, 20, 16, 0.03) 69px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 68px,
      rgba(23, 20, 16, 0.03) 68px,
      rgba(23, 20, 16, 0.03) 69px
    );
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 85%);
  opacity: 0.55;
}

.page {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

.hero,
.grid-block,
.statement,
.details {
  animation: rise-in 0.9s ease both;
}

.grid-block {
  animation-delay: 0.08s;
}

.statement {
  animation-delay: 0.16s;
}

.details {
  animation-delay: 0.24s;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 2.5rem;
  align-items: center;
  min-height: 78vh;
}

.eyebrow,
.panel-label,
.statement-mark {
  margin: 0 0 0.9rem;
  color: var(--oxide);
  font-family: "Antonio", Impact, sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: "Antonio", Impact, sans-serif;
  font-size: clamp(4rem, 11vw, 8.8rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: var(--copper);
}

.lead {
  max-width: 40rem;
  margin: 1.4rem 0 0;
  font-size: clamp(1.12rem, 2vw, 1.38rem);
  line-height: 1.65;
  color: var(--ink-soft);
}

.contact-ribbon {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  margin-top: 2rem;
  padding: 0.95rem 1.15rem;
  border: 1px solid rgba(53, 89, 77, 0.22);
  border-radius: 999px;
  background: rgba(245, 239, 230, 0.78);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 40px rgba(38, 32, 27, 0.08);
}

.contact-ribbon a,
.contact-ribbon span,
.detail-card a {
  color: var(--ink);
  font-size: 1rem;
  text-decoration: none;
}

.contact-ribbon a:hover,
.detail-card a:hover {
  color: var(--oxide);
}

.loop-figure {
  position: relative;
  width: min(34rem, 100%);
  aspect-ratio: 1;
  margin-inline: auto;
}

.loop {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(245, 239, 230, 0.9), rgba(214, 205, 191, 0.35));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.38),
    0 20px 45px rgba(38, 32, 27, 0.12);
}

.loop::after {
  content: "";
  position: absolute;
  inset: 11%;
  border-radius: 50%;
  border: 1px dashed rgba(53, 89, 77, 0.18);
}

.loop-outer {
  inset: 3%;
  animation: slow-spin 28s linear infinite;
}

.loop-middle {
  inset: 17%;
  animation: slow-spin 20s linear infinite reverse;
}

.loop-inner {
  inset: 31%;
  animation: slow-spin 16s linear infinite;
}

.loop-band {
  position: absolute;
  left: 50%;
  z-index: 2;
  padding: 0.65rem 1.2rem;
  border: 1px solid rgba(23, 20, 16, 0.16);
  border-radius: 999px;
  font-family: "Antonio", Impact, sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  transform: translateX(-50%) rotate(-8deg);
  box-shadow: 0 14px 28px var(--glow);
}

.loop-band-top {
  top: 14%;
  background: var(--oxide);
}

.loop-band-bottom {
  bottom: 15%;
  background: var(--copper);
}

.loop-core {
  position: absolute;
  inset: 40%;
  z-index: 2;
  display: grid;
  place-items: center;
  gap: 0.05rem;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-family: "Antonio", Impact, sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow:
    0 22px 50px rgba(23, 20, 16, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

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

.panel,
.statement,
.detail-card {
  position: relative;
  border: 1px solid var(--line);
  background: rgba(247, 242, 234, 0.76);
  box-shadow: 0 18px 36px rgba(38, 32, 27, 0.08);
  backdrop-filter: blur(8px);
}

.panel {
  min-height: 14rem;
  padding: 1.35rem;
}

.panel-solid {
  background: linear-gradient(140deg, rgba(53, 89, 77, 0.92), rgba(35, 54, 48, 0.92));
  color: var(--paper);
}

.panel-solid .panel-label {
  color: rgba(237, 229, 215, 0.76);
}

.panel p,
.detail-card p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
}

.material-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.material-list li {
  padding: 0.58rem 0;
  border-top: 1px solid var(--line);
  font-family: "Antonio", Impact, sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.material-list li:first-child {
  border-top: 0;
}

.statement {
  margin-top: 1rem;
  padding: 1.5rem;
  overflow: hidden;
}

.statement::after {
  content: "";
  position: absolute;
  inset: auto -12% -42% auto;
  width: 16rem;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(179, 101, 64, 0.2);
  opacity: 0.75;
}

.statement blockquote {
  max-width: 18ch;
  margin: 0;
  font-family: "Antonio", Impact, sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.85rem);
  line-height: 0.94;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.statement-copy {
  max-width: 42rem;
  margin-top: 1.2rem;
  color: var(--ink-soft);
}

.details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.detail-card {
  min-height: 10.5rem;
  padding: 1.2rem;
}

.detail-card-accent {
  background:
    linear-gradient(135deg, rgba(179, 101, 64, 0.96), rgba(117, 66, 42, 0.96));
  color: var(--paper);
}

.detail-card-accent .panel-label {
  color: rgba(237, 229, 215, 0.8);
}

@keyframes slow-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero,
  .grid-block,
  .statement,
  .details,
  .loop {
    animation: none;
  }
}

@media (max-width: 980px) {
  .hero,
  .grid-block,
  .details {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 1.25rem;
  }

  .loop-figure {
    width: min(28rem, 100%);
  }

  .statement blockquote {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .page {
    padding: 1.1rem 0.9rem 2rem;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 22vw, 5rem);
  }

  .lead {
    font-size: 1rem;
  }

  .contact-ribbon {
    border-radius: 1.1rem;
  }

  .loop-band {
    font-size: 0.88rem;
    letter-spacing: 0.14em;
  }

  .statement {
    padding: 1.2rem;
  }

  .statement blockquote {
    font-size: clamp(1.8rem, 12vw, 2.8rem);
  }

  .panel,
  .detail-card {
    min-height: auto;
  }
}
