:root {
  --ink: #181818;
  --ink-soft: #5a5a5a;
  --accent: #e26a2c;
  --accent-dark: #a6461f;
  --surface: #fffaf2;
  --surface-strong: #fff1dc;
  --shadow: 0 24px 60px rgba(24, 24, 24, 0.18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #fffdf9 0%, #f4f0e8 55%, #efe9df 100%);
  min-height: 100vh;
}

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

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(0);
  opacity: 0.55;
  z-index: 0;
  animation: float 10s ease-in-out infinite;
}

.bg-orb--one {
  width: 420px;
  height: 420px;
  top: -140px;
  right: -120px;
  background: radial-gradient(circle, #ffd7b5 0%, transparent 70%);
}

.bg-orb--two {
  width: 360px;
  height: 360px;
  bottom: -120px;
  left: -80px;
  background: radial-gradient(circle, #ffe4c3 0%, transparent 70%);
  animation-delay: 2s;
}

.site-header {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 8vw 0;
}

.logo {
  font-size: 20px;
  letter-spacing: 2px;
  font-weight: 700;
  padding: 10px 14px;
  border: 2px solid var(--ink);
}

.site-nav {
  display: flex;
  gap: 24px;
  font-size: 16px;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s ease;
}

.site-nav a:hover::after {
  width: 100%;
}

main {
  position: relative;
  z-index: 1;
  padding: 40px 8vw 80px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  align-items: center;
  min-height: 60vh;
}

.hero-text {
  animation: rise 0.8s ease both;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-dark);
  font-size: 12px;
}

h1 {
  font-size: clamp(2.4rem, 3vw, 3.4rem);
  margin: 12px 0 16px;
}

.lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.cta-row {
  display: flex;
  gap: 16px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(24, 24, 24, 0.15);
}

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-ghost {
  border: 1px solid var(--ink);
}

.hero-card {
  background: var(--surface);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
  animation: rise 0.9s ease both;
  animation-delay: 0.1s;
}

.metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.metric-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--ink-soft);
}

.metric-value {
  font-size: 20px;
  font-weight: 700;
}

.panel {
  margin-top: 80px;
  padding: 40px;
  border-radius: 24px;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
  animation: fade-in 0.9s ease both;
}

.panel h2 {
  margin-top: 0;
  font-size: 26px;
}

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

.grid article {
  padding: 18px;
  border-radius: 16px;
  background: white;
  box-shadow: 0 14px 30px rgba(24, 24, 24, 0.08);
}

.contact {
  background: #fff;
}

.contact-box {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.contact-box .label {
  display: block;
  font-size: 12px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.site-footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 8vw 32px;
  font-size: 14px;
  color: var(--ink-soft);
}

.site-footer a {
  color: var(--ink-soft);
}

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

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(12px);
  }
}

@media (max-width: 720px) {
  .site-header {
    flex-direction: column;
    gap: 16px;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .site-footer {
    flex-direction: column;
    gap: 8px;
  }
}
