/* ============================================================
   Thomson Reserve (Former Thomson View) — Landing Page
   Aesthetic: editorial "nature reserve" — warm paper, botanical
   green & terracotta. Fraunces display × Manrope text.
   (Intentionally distinct from the Lucerne Grand site.)
   ============================================================ */

:root {
  --paper: #f6f2ea;
  --paper-2: #fffdf8;
  --ink: #19271f;
  --ink-soft: #45524a;
  --green: #2f5d4a;
  --green-2: #244a3a;
  --green-deep: #14271e;
  --clay: #c0673f;
  --clay-2: #a8512c;
  --sage: #9cb3a3;
  --sand: #eaddca;
  --line: #e3dac9;
  --line-soft: #efe8da;
  --muted: #727c73;
  --white: #ffffff;

  --serif: "Cormorant Garamond", "Georgia", serif;
  --sans: "Manrope", "Helvetica Neue", Arial, sans-serif;

  --container: 1180px;
  --r: 14px;
  --r-sm: 8px;
  --shadow: 0 30px 70px -40px rgba(20, 39, 30, .55);
  --shadow-soft: 0 18px 40px -28px rgba(20, 39, 30, .4);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%
}

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block
}

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

em {
  font-style: italic
}

strong {
  font-weight: 600
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 30px
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.005em
}

/* index marker + label used in every section head */
.kicker {
  display: flex;
  align-items: center;
  gap: .85rem;
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--clay)
}

.kicker em {
  font-style: normal;
  font-variant-numeric: tabular-nums;
  color: var(--green)
}

.kicker .bar {
  width: 30px;
  height: 1px;
  background: var(--clay);
  opacity: .5
}

.kicker--light {
  color: var(--sand)
}

.kicker--light em {
  color: var(--sage)
}

.kicker--light .bar {
  background: var(--sand)
}

.h-xl {
  font-size: clamp(2.4rem, 5vw, 3.9rem);
  color: var(--ink)
}

.h-xl--light {
  color: var(--paper-2)
}

.lede {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 52ch;
  line-height: 1.7
}

.lede strong {
  color: var(--green)
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .93rem;
  letter-spacing: .01em;
  padding: 1em 1.7em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .3s var(--ease), background .3s, color .3s, box-shadow .3s, border-color .3s;
  white-space: nowrap
}


.btn--sm {
  padding: .64em 1.15em;
  font-size: .83rem
}

.btn--lg {
  padding: 1.1em 2rem;
  font-size: 1rem
}

.btn--block {
  width: 100%
}

.btn--primary {
  background: var(--clay);
  color: #fff;
  box-shadow: 0 14px 28px -14px rgba(192, 103, 63, .8)
}

.btn--primary:hover {
  background: var(--clay-2);
  transform: translateY(-2px);
  box-shadow: 0 20px 36px -16px rgba(192, 103, 63, .85)
}

.btn--dark {
  background: var(--green);
  color: #fff
}

.btn--dark:hover {
  background: var(--green-2);
  transform: translateY(-2px)
}

.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink)
}

.btn--outline:hover {
  background: var(--ink);
  color: var(--paper)
}

.btn--outline-light {
  background: transparent;
  color: var(--paper-2);
  border-color: rgba(246, 242, 234, .45)
}

.btn--outline-light:hover {
  background: rgba(246, 242, 234, .12);
  border-color: var(--paper-2)
}

.btn--wa {
  background: #1faf5b;
  color: #fff
}

.btn--wa:hover {
  background: #1b9b51;
  transform: translateY(-2px)
}

.tlink {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-weight: 600;
  color: var(--green);
  font-size: .95rem;
  border-bottom: 2px solid var(--clay);
  padding-bottom: 2px;
  transition: gap .3s, color .3s
}

.tlink:hover {
  gap: .9em;
  color: var(--clay)
}

