:root {
  --bg: #f4efe4;
  --paper: #fbf8f0;
  --paper-strong: #fffdf8;
  --ink: #1b2430;
  --muted: #5f6b79;
  --line: rgba(27, 36, 48, 0.12);
  --red: #b6433f;
  --blue: #2f5378;
  --gold: #c59d47;
  --max: 1180px;
  --narrow: 760px;
  --header-h: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(197, 157, 71, 0.14), transparent 30%),
    linear-gradient(180deg, #f8f3e9 0%, #f5f0e6 40%, #efe8db 100%);
}

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

h1, h2, h3, p {
  margin-top: 0;
}

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

.narrow {
  max-width: var(--narrow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 248, 240, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

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

.brand-mark {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), #efe7d0 48%, var(--blue));
  box-shadow: 0 0 0 5px rgba(181, 67, 63, 0.08);
  flex-shrink: 0;
}

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

.main-nav {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.main-nav a {
  font-size: 0.94rem;
  color: var(--muted);
}

.main-nav a:hover {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  border: 0;
  padding: 0;
  background: transparent;
}

.nav-toggle span {
  width: 22px;
  height: 1px;
  background: var(--ink);
}

.hero {
  padding: 2.5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.eyebrow,
.section-label {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
  max-width: 7ch;
  margin-bottom: 1.2rem;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 58ch;
  margin-bottom: 1.8rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, rgba(182, 67, 63, 0.12), rgba(47, 83, 120, 0.14));
  border-color: rgba(47, 83, 120, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.4);
  color: var(--muted);
}

.hero-panel {
  position: relative;
  min-height: 560px;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.46)),
    linear-gradient(145deg, rgba(197, 157, 71, 0.08), rgba(47, 83, 120, 0.12));
  box-shadow: 0 26px 70px rgba(31, 35, 44, 0.12);
}

.hero-illustration {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.logo-badge {
  position: absolute;
  right: 1.4rem;
  top: 1.3rem;
  z-index: 2;
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: rgba(251, 248, 240, 0.92);
  border: 1px solid rgba(27, 36, 48, 0.08);
}

.logo-badge img {
  width: 66px;
  height: 66px;
  display: block;
}

.signal-card {
  position: absolute;
  top: 1.3rem;
  left: 1.3rem;
  right: 7.6rem;
  z-index: 2;
  padding: 1.2rem 1.25rem;
  border-radius: 22px;
  background: rgba(251, 248, 240, 0.9);
  border: 1px solid rgba(27, 36, 48, 0.08);
}

.signal-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.7rem;
}

.signal-text {
  margin: 0;
  font-size: 1.08rem;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: rgba(255, 252, 245, 0.56);
  border-top: 1px solid rgba(27, 36, 48, 0.06);
  border-bottom: 1px solid rgba(27, 36, 48, 0.06);
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 1.15rem;
  max-width: 14ch;
}

.section p {
  color: var(--muted);
  max-width: 64ch;
}

.quote-band {
  margin-top: 2rem;
  padding: 1.2rem 1.35rem;
  border-left: 4px solid var(--red);
  background: rgba(255, 255, 255, 0.55);
  border-radius: 0 18px 18px 0;
}

.quote-band p {
  margin: 0;
  color: var(--ink);
  font-size: 1.06rem;
}

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

.info-card,
.method-step,
.contact-box {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(27, 36, 48, 0.06);
}

.info-card {
  padding: 1.4rem;
}

.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(47, 83, 120, 0.08);
  color: var(--blue);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
}

.info-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
}

.info-card p {
  margin: 0;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 2rem;
  align-items: start;
}

.method-panel {
  display: grid;
  gap: 1rem;
}

.method-step {
  padding: 1.2rem 1.25rem;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1rem;
  align-items: start;
}

.method-step span {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(182, 67, 63, 0.12), rgba(47, 83, 120, 0.14));
  color: var(--ink);
}

.method-step p {
  margin: 0.2rem 0 0;
}

.contact-box {
  margin-top: 1.6rem;
  padding: 1.5rem;
}

.section-image-break {
  padding-top: 1rem;
}

.image-break {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 20% 30%, rgba(182, 67, 63, 0.16), transparent 22%),
    radial-gradient(circle at 75% 25%, rgba(47, 83, 120, 0.16), transparent 24%),
    radial-gradient(circle at 52% 78%, rgba(197, 157, 71, 0.15), transparent 22%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(245, 238, 225, 0.88));
  box-shadow: 0 20px 50px rgba(27, 36, 48, 0.08);
}

.image-break-copy {
  position: absolute;
  left: 2rem;
  top: 2rem;
  z-index: 2;
}

.image-break-copy h2 {
  max-width: 10ch;
  margin-bottom: 0;
}

.signal-orbit {
  position: absolute;
  inset: 0;
}

.signal-orbit span {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(27, 36, 48, 0.08);
  background: rgba(255, 255, 255, 0.42);
}

.signal-orbit span:nth-child(1) {
  width: 360px;
  height: 360px;
  right: -40px;
  top: -40px;
}

.signal-orbit span:nth-child(2) {
  width: 220px;
  height: 220px;
  right: 180px;
  top: 65px;
}

.signal-orbit span:nth-child(3) {
  width: 130px;
  height: 130px;
  right: 320px;
  bottom: 28px;
}

.signal-orbit span:nth-child(4) {
  width: 36px;
  height: 36px;
  right: 248px;
  top: 102px;
  background: var(--red);
  border-color: transparent;
}

.signal-orbit span:nth-child(5) {
  width: 26px;
  height: 26px;
  right: 376px;
  bottom: 76px;
  background: var(--blue);
  border-color: transparent;
}

.contact-title {
  color: var(--ink);
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
}

.contact-action {
  margin: 1.2rem 0 0.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-email {
  margin: 0;
  color: var(--blue);
  word-break: break-word;
}

.contact-secondary {
  margin-bottom: 0;
}

.illustration-panel {
  display: flex;
  align-items: center;
  justify-content: center;
}

.illustration-frame {
  position: relative;
  width: min(100%, 460px);
  aspect-ratio: 1 / 1;
  border-radius: 32px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.45) 54%, rgba(197, 157, 71, 0.12) 100%),
    linear-gradient(135deg, rgba(182, 67, 63, 0.08), rgba(47, 83, 120, 0.12));
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(27, 36, 48, 0.08);
}

.illustration-core {
  position: absolute;
  width: 108px;
  height: 108px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), #eedfc0 50%, var(--blue));
  box-shadow: 0 0 0 18px rgba(255, 255, 255, 0.46);
}

.illustration-line {
  position: absolute;
  left: 50%;
  top: 50%;
  transform-origin: center;
  border-radius: 999px;
  border: 1px solid rgba(27, 36, 48, 0.08);
}

.line-one {
  width: 76%;
  height: 76%;
  transform: translate(-50%, -50%) rotate(18deg);
}

.line-two {
  width: 56%;
  height: 56%;
  transform: translate(-50%, -50%) rotate(-24deg);
}

.line-three {
  width: 34%;
  height: 34%;
  transform: translate(-50%, -50%) rotate(42deg);
}

.manifest-page {
  min-height: calc(100vh - var(--header-h));
}

.manifest-title {
  font-size: clamp(2.7rem, 6vw, 4.5rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
  max-width: 10ch;
  margin-bottom: 1.3rem;
}

.manifest-nav {
  position: static;
}

.site-footer {
  padding: 2rem 0 2.6rem;
}

.footer-inner {
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}

.footer-name {
  margin-bottom: 0.35rem;
}

.footer-note {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero-grid,
  .split-grid,
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: 440px;
  }

  .signal-card {
    right: 1.3rem;
    top: 7.6rem;
  }

  .logo-badge {
    right: 1.3rem;
  }

  .image-break-copy {
    position: relative;
    left: auto;
    top: auto;
    padding: 2rem 2rem 0;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    background: rgba(251, 248, 240, 0.98);
    border: 1px solid var(--line);
    border-radius: 18px;
  }

  .main-nav.is-open {
    display: flex;
  }

  .hero {
    padding-top: 1.6rem;
  }

  .hero-panel {
    min-height: 380px;
  }

  .logo-badge {
    width: 74px;
    height: 74px;
  }

  .logo-badge img {
    width: 56px;
    height: 56px;
  }

  .image-break {
    min-height: 280px;
  }

  .signal-orbit span:nth-child(1) {
    width: 240px;
    height: 240px;
    right: -20px;
    top: 40px;
  }

  .signal-orbit span:nth-child(2) {
    width: 160px;
    height: 160px;
    right: 70px;
    top: 90px;
  }

  .signal-orbit span:nth-child(3) {
    width: 90px;
    height: 90px;
    right: 150px;
    bottom: 28px;
  }

  .signal-orbit span:nth-child(4) {
    right: 112px;
    top: 118px;
  }

  .signal-orbit span:nth-child(5) {
    right: 190px;
    bottom: 56px;
  }
}
