:root {
  --bg: #f5efe3;
  --bg-soft: rgba(255, 248, 236, 0.72);
  --surface: rgba(29, 37, 54, 0.9);
  --surface-soft: rgba(255, 255, 255, 0.72);
  --text: #182033;
  --muted: #5f6678;
  --accent: #b56a2d;
  --accent-strong: #8d4c17;
  --line: rgba(24, 32, 51, 0.12);
  --shadow: 0 24px 60px rgba(21, 24, 36, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(181, 106, 45, 0.24), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(22, 44, 94, 0.16), transparent 20%),
    linear-gradient(180deg, #efe5d2 0%, #f7f2e8 48%, #f4ecdf 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.48), transparent 80%);
}

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 64px;
}

.hero,
.section,
.panel,
.contact-box,
.hero-card {
  backdrop-filter: blur(12px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 250, 242, 0.88), rgba(250, 238, 222, 0.78));
  box-shadow: var(--shadow);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -28% auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181, 106, 45, 0.22), transparent 65%);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand,
.nav-link {
  text-decoration: none;
  color: var(--text);
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(24, 32, 51, 0.08);
}

.hero-content {
  max-width: 700px;
  padding: 72px 0 96px;
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent-strong);
}

h1,
h2,
h3,
strong {
  margin: 0;
}

h1,
h2 {
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
}

h1 {
  font-size: clamp(3.3rem, 8vw, 6.5rem);
  max-width: 10ch;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  max-width: 12ch;
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.lead,
.section p,
.hero-card p,
.contact-box p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

.lead {
  max-width: 62ch;
  margin: 24px 0 0;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fffaf1;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 14px 30px rgba(141, 76, 23, 0.22);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(24, 32, 51, 0.08);
}

.hero-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: min(320px, calc(100% - 48px));
  padding: 24px;
  border-radius: 24px;
  background: var(--surface);
  color: white;
  box-shadow: 0 24px 40px rgba(21, 24, 36, 0.24);
}

.hero-card p,
.hero-card .card-label {
  color: rgba(255, 255, 255, 0.78);
}

.hero-card strong {
  display: block;
  margin-top: 6px;
  font-size: 1.4rem;
}

.card-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
}

.section {
  margin-top: 22px;
  padding: 32px;
  border-radius: 28px;
  background: var(--bg-soft);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow);
}

.section-title {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.panel {
  padding: 22px;
  border-radius: 22px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
}

.spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: stretch;
}

.spotlight-copy {
  display: grid;
  gap: 16px;
}

.spotlight-metrics {
  display: grid;
  gap: 16px;
}

.metric {
  display: grid;
  gap: 6px;
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 241, 231, 0.86));
  border: 1px solid var(--line);
}

.metric strong {
  font-size: 1.8rem;
}

.metric span {
  color: var(--muted);
}

.contact-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(24, 32, 51, 0.96), rgba(35, 47, 70, 0.92));
}

.contact-box p {
  margin: 0;
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.76);
}

.contact-box .button-primary {
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .hero-content {
    padding: 56px 0 176px;
  }

  .intro-grid,
  .spotlight {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1120px);
    padding-top: 10px;
  }

  .hero,
  .section {
    padding: 20px;
    border-radius: 24px;
  }

  .topbar,
  .contact-box {
    flex-direction: column;
    align-items: flex-start;
  }

  h1 {
    max-width: 11ch;
  }

  .hero-content {
    padding: 40px 0 184px;
  }

  .hero-card {
    left: 20px;
    right: 20px;
    width: auto;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }
}
