 :root {
   --bg: #f7f3ea;
   --surface: #ffffff;
   --text: #1f2026;
   --muted: #777777;
   --line: #e9e3d8;
   --brand: #1f5147;
   --brand-soft: #e7dcc5;
   --shadow: 0 24px 60px rgba(24, 28, 27, 0.14);
   --radius: 24px;
   --container: min(1400px, calc(100% - 48px));
   --header-height: 84px;
   --topbar-height: 44px;
   --font: "Manrope", "Segoe UI", Arial, Helvetica, sans-serif;
 }
 * {
   box-sizing: border-box;
 }
 html {
   scroll-behavior: smooth;
 }
 body {
   margin: 0;
   font-family: var(--font);
   color: var(--text);
   background:
     radial-gradient(circle at top left, rgba(31, 81, 71, 0.08), transparent 28%),
     linear-gradient(180deg, #fcfbf8 0%, #f6f1e8 100%);
 }
 a {
   color: inherit;
   text-decoration: none;
 }
 img {
   display: block;
   max-width: 100%;
 }
 button {
   font: inherit;
   color: inherit;
 }
 .hero {
   width: var(--container);
   margin: 0 auto;
   min-height: calc(100vh - var(--topbar-height) - var(--header-height));
   display: grid;
   align-items: center;
   padding: 48px 0 72px;
 }
 .hero__panel {
   border-radius: 34px;
   padding: clamp(28px, 5vw, 56px);
   background:
     linear-gradient(130deg, rgba(31, 81, 71, 0.98) 0%, rgba(46, 71, 64, 0.9) 48%, rgba(215, 199, 170, 0.85) 100%);
   color: #fcfaf5;
   box-shadow: 0 24px 64px rgba(31, 81, 71, 0.16);
   min-height: 420px;
   display: grid;
   align-content: end;
   gap: 18px;
 }
 .hero__eyebrow {
   width: max-content;
   padding: 10px 18px;
   border-radius: 999px;
   background: rgba(240, 228, 202, 0.22);
   border: 1px solid rgba(255, 255, 255, 0.12);
   font-size: 14px;
   font-weight: 600;
 }
 .hero__title {
   margin: 0;
   max-width: 620px;
   font-size: clamp(38px, 6vw, 78px);
   line-height: 0.96;
   letter-spacing: -0.05em;
 }
 .hero__text {
   max-width: 560px;
   margin: 0;
   font-size: 18px;
   line-height: 1.65;
   color: rgba(255, 255, 255, 0.84);
 }
 @media (max-width: 980px) {
   :root {
     --container: min(100% - 32px, 1000px);
     --header-height: 76px;
   }
 }
 @media (max-width: 640px) {
   :root {
     --container: calc(100% - 20px);
   }
   .hero {
     padding: 22px 0 44px;
   }
   .hero__panel {
     min-height: 320px;
     border-radius: 24px;
   }
   .hero__text {
     font-size: 16px;
   }
 }