:root {
  --forest-950: #08160f;
  --forest-900: #0d2118;
  --forest-850: #133325;
  --forest-800: #1a3d2d;
  --white-strong: #f8f7f2;
  --white-soft: #d7d8ce;
  --gold-matte: #c2a463;
  --gold-deep: #8f6f33;
  --gold-line: rgba(194, 164, 99, 0.34);
  --panel: rgba(7, 25, 18, 0.67);
  --panel-strong: rgba(7, 25, 18, 0.84);
  --radius-lg: 22px;
  --radius-md: 14px;
  --shadow-soft: 0 30px 80px rgba(0, 0, 0, 0.42);
}

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

html {
  background-color: #050d09; /* prevents white canvas */
}

body {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
  color: var(--white-soft);
  line-height: 1.65;

  background-color: #050d09; /* fallback */
  background:
    linear-gradient(
      to top,
      rgba(19, 51, 37, 0.75) 0%,
      rgba(19, 51, 37, 0.35) 30%,
      rgba(19, 51, 37, 0.12) 55%,
      rgba(19, 51, 37, 0.0) 78%
    ),
    radial-gradient(90% 110% at 14% -4%, rgba(194, 164, 99, 0.22), transparent 62%),
    radial-gradient(70% 90% at 104% 0%, rgba(33, 76, 56, 0.42), transparent 58%),
    linear-gradient(160deg, var(--forest-900), var(--forest-950) 46%, #050d09 100%);

  background-repeat: no-repeat;
  background-size: 100% 100%;
}




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

.bg-layer {
  position: absolute; /* changed from fixed */
  inset: auto;
  pointer-events: none;
  z-index: 0;
}

.bg-layer-top {
  position: absolute;
  top: -12rem;
  right: -7rem;
  width: 26rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(194, 164, 99, 0.16), rgba(194, 164, 99, 0));
  opacity: 0.25;
}

.bg-layer-bottom {
  position: absolute;
  bottom: -18rem;
  left: -12rem;
  width: 34rem;
  aspect-ratio: 1;
  border-radius: 50%;

  /* switch to a deep green haze (no olive) */
  background: radial-gradient(
    circle,
    rgba(33, 76, 56, 0.22),
    rgba(33, 76, 56, 0)
  );

  opacity: 0.35;
  z-index: 0;
}




.page-shell {
  position: relative;
  z-index: 1;
  width: min(100% - 1.9rem, 70rem);
  margin-inline: auto;
  padding: 1.2rem 0 2.2rem;
}

.site-header {
  padding: 2.8rem 0 3.6rem;
}



.brand {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}

.brand img {
  width: 3.2rem;
  height: 3.2rem;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--gold-line);
  box-shadow: 0 0 0 4px rgba(194, 164, 99, 0.08);
}

.wordmark {
  font-family: "Cormorant Garamond", Georgia, serif;

  /* 3× presence */
  font-size: clamp(5.6rem, 12vw, 8.8rem);
  line-height: 0.95;
  letter-spacing: 0.1em;
  position: relative;

  /* High-contrast brushed gold */
  background: linear-gradient(
    180deg,
    #fff3c9 0%,
    #e6c97a 22%,
    #c2a463 48%,
    #9a7a3d 78%,
    #6f5526 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent; /* helps Chrome render clipped text reliably */

  /* Luminous, not neon */
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.35),
    0 0 24px rgba(194, 164, 99, 0.55),
    0 0 56px rgba(194, 164, 99, 0.25),
    0 0 90px rgba(194, 164, 99, 0.10);

  contain: paint;
  isolation: isolate;

  /* Anti-flicker compositing hints */
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
}

@media (max-width: 40rem) {
  .wordmark {
    font-size: clamp(4.2rem, 16vw, 6rem);
  }
}




main {
  display: grid;
  gap: 1.4rem;
}

.hero,
.interest {
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.hero {
  position: relative;
  isolation: isolate;
  padding: 1.4rem;
  background:
    linear-gradient(130deg, rgba(194, 164, 99, 0.12), transparent 42%),
    linear-gradient(170deg, rgba(255, 255, 255, 0.02), transparent 35%),
    var(--panel);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0.85rem;
  border: 1px solid rgba(194, 164, 99, 0.2);
  border-radius: calc(var(--radius-lg) - 7px);
  pointer-events: none;
}

.hero-logo-wrap {
  width: clamp(6.2rem, 30vw, 8.8rem);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;

  background: radial-gradient(
    circle at 30% 30%,
    rgba(194, 164, 99, 0.25),
    rgba(194, 164, 99, 0.05) 55%,
    rgba(7, 25, 18, 0.9) 100%
  );

  border: 1px solid rgba(194, 164, 99, 0.55);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}


.hero-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.18); /* <-- THIS is the fix */
}



.hero-copy {
  text-align: center;
}

.eyebrow {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--white-soft);
  opacity: 0.86;
}

h1,
h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0.03em;
  color: var(--gold-matte);
}

h1 {
  margin-top: 0.55rem;
  font-size: clamp(2.2rem, 12vw, 4.3rem);
  line-height: 1.02;
}

.tagline {
  margin: 0.95rem auto 0;
  max-width: 38ch;
  color: var(--white-strong);
  opacity: 0.95;
}

.pillars {
  padding: 0.25rem 0;
}

.pillars ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.pillars li {
  text-align: center;
  padding: 0.74rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--gold-line);
  color: var(--white-strong);
  background: linear-gradient(
    140deg,
    rgba(194, 164, 99, 0.16),
    rgba(194, 164, 99, 0.05) 44%,
    rgba(255, 255, 255, 0.04) 100%
  );
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  font-weight: 600;
}

.interest {
  padding: 1.3rem;
  background:
    linear-gradient(170deg, rgba(194, 164, 99, 0.09), transparent 55%),
    var(--panel-strong);
}

h2 {
  font-size: clamp(1.8rem, 8vw, 2.5rem);
  line-height: 1.06;
}

form {
  margin-top: 0.85rem;
}

label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--white-strong);
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

.form-row {
  display: grid;
  gap: 0.66rem;
}

input,
button {
  font: inherit;
}

input[type="email"] {
  width: 100%;
  border: 1px solid rgba(194, 164, 99, 0.44);
  border-radius: var(--radius-md);
  padding: 0.8rem 0.9rem;
  color: var(--white-strong);
  background: rgba(255, 255, 255, 0.04);
}

input[type="email"]::placeholder {
  color: rgba(248, 247, 242, 0.62);
}

input[type="email"]:focus {
  outline: 2px solid rgba(194, 164, 99, 0.42);
  outline-offset: 2px;
}

button {
  border: 1px solid rgba(194, 164, 99, 0.7);
  border-radius: var(--radius-md);
  padding: 0.82rem 1rem;
  color: #fbf8ef;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  background:
    linear-gradient(180deg, rgba(194, 164, 99, 0.42), rgba(143, 111, 51, 0.55)),
    #4a3a1a;
  transition: transform 140ms ease, filter 140ms ease, box-shadow 140ms ease;
}

button:hover,
button:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.site-footer {
  margin-top: 1.8rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(194, 164, 99, 0.24);
  display: grid;
  gap: 0.22rem;
}

.site-footer p {
  margin: 0;
  color: rgba(248, 247, 242, 0.9);
  font-size: 0.88rem;
}

.site-footer a {
  color: var(--white-strong);
  text-decoration-color: rgba(194, 164, 99, 0.75);
  text-decoration-thickness: 1px;
}

@media (min-width: 44rem) {
  .page-shell {
    padding-top: 2rem;
    padding-bottom: 2.6rem;
  }

  main {
    gap: 1.9rem;
  }

  .hero {
    padding: 2.2rem;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 1.6rem;
  }

  .hero-logo-wrap {
    margin: 0;
  }

  .hero-copy {
    text-align: left;
  }

  .tagline {
    margin-left: 0;
  }

  .pillars ul {
    display: flex;
    gap: 0.7rem;
    justify-content: flex-start;
  }

  .pillars li {
    padding-inline: 1.2rem;
  }

  .interest {
    padding: 1.6rem;
  }

  .form-row {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  button {
    min-width: 11rem;
  }
}
