:root {
  --bg: #f6f1ea;
  --ink: #1f1c16;
  --muted: #6f6557;
  --accent: #b47b37;
  --accent-dark: #8a5a23;
  --card: #fffaf2;
  --line: rgba(31, 28, 22, 0.12);
  --shadow: 0 20px 60px rgba(31, 28, 22, 0.12);
}

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

body {
  margin: 0;
  font-family: "Work Sans", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #fff6e8 0%, #f4eee6 45%, #efe6d8 100%);
}

main {
  min-height: 100vh;
  padding: 48px 24px;
  position: relative;
  overflow: hidden;
}

main::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 420px;
  background: radial-gradient(circle, rgba(180, 123, 55, 0.12), transparent 70%);
  z-index: 0;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #c08a4a, #865523);
  display: grid;
  place-items: center;
  color: #fff7e8;
  font-weight: 700;
  font-size: 20px;
  box-shadow: 0 8px 24px rgba(134, 85, 35, 0.35);
}

.hero {
  display: grid;
  gap: 22px;
  align-items: center;
  margin-top: 96px;
}

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

h1 {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  margin: 16px 0;
}

.hero p {
  font-size: 17px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.6;
}

.contact-link {
  color: var(--accent-dark);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px;
}

.fade-up {
  animation: fadeUp 0.8s ease both;
}

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

@media (max-width: 720px) {
  .hero {
    margin-top: 64px;
  }
}
