:root {
  color-scheme: light;
  --bg: #f3efe6;
  --bg-deep: #e2dbc9;
  --ink: #1b1a17;
  --muted: #58524a;
  --accent: #d45535;
  --accent-dark: #a33b22;
  --card: #fdf9f2;
  --stroke: #d6cbb8;
  --shadow: 0 24px 60px rgba(36, 28, 20, 0.18);
  --radius: 24px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", "Helvetica Neue", sans-serif;
  color: var(--ink);
  background: radial-gradient(1200px 800px at 10% 10%, #ffffff 0%, var(--bg) 55%, var(--bg-deep) 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
  z-index: 0;
}

.page {
  position: relative;
  z-index: 1;
  padding: 72px 7vw 64px;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 56px;
}

.hero {
  display: grid;
  gap: 20px;
}

.hero__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wordmark {
  font-size: 0.95rem;
}

.hero__fullname {
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.dot {
  width: 14px;
  height: 14px;
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 0 0 8px rgba(212, 85, 53, 0.15);
}

.hero__eyebrow {
  font-size: 0.9rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

h1,
h2,
h3 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.8rem, 4vw, 4.4rem);
  line-height: 1.02;
  max-width: 18ch;
}

.hero__lead {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 52ch;
  color: var(--muted);
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.primary {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 14px 26px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 999px;
  box-shadow: 0 16px 30px rgba(212, 85, 53, 0.3);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.primary:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
  box-shadow: 0 20px 36px rgba(163, 59, 34, 0.3);
}

.ghost {
  font-size: 0.95rem;
  color: var(--muted);
  padding-left: 8px;
}

.panel {
  background: var(--card);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--stroke);
  display: grid;
  gap: 28px;
}

.panel__intro {
  display: grid;
  gap: 12px;
  max-width: 58ch;
}

.panel__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.card {
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  background: #fff;
  display: grid;
  gap: 10px;
  min-height: 140px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 85, 53, 0.4);
}

.card h3 {
  font-size: 1.15rem;
}

.card p,
.panel p,
.strip p {
  color: var(--muted);
  line-height: 1.6;
}

.strip {
  display: grid;
  gap: 24px;
  padding: 30px 36px;
  border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(27, 26, 23, 0.95), rgba(56, 44, 34, 0.92));
  color: #fff;
  position: relative;
  overflow: hidden;
}

.strip::after {
  content: "";
  position: absolute;
  inset: -40% auto auto 50%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 85, 53, 0.6), transparent 70%);
  transform: translateX(-50%);
  opacity: 0.5;
}

.strip h2 {
  color: #fff;
}

.pulse {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  z-index: 1;
}

.pulse__ring {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  position: relative;
}

.pulse__ring::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  animation: ping 2.6s ease-in-out infinite;
}

.panel--compact {
  text-align: center;
}

.panel--compact a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.panel--compact a:hover {
  text-decoration: underline;
}

.footer {
  padding: 20px 7vw 40px;
  max-width: 1180px;
  margin: 0 auto;
  color: var(--muted);
  display: grid;
  gap: 12px;
}

.footer__line {
  width: 100%;
  height: 1px;
  background: var(--stroke);
}

@keyframes ping {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }
  70% {
    transform: scale(1.9);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@media (max-width: 800px) {
  .page {
    padding-top: 56px;
  }

  .panel {
    padding: 28px;
  }

  .strip {
    padding: 26px;
  }
}

@media (max-width: 540px) {
  .hero__cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .primary {
    width: 100%;
  }
}
