:root {
  --parsley: #6f8a6b;
  --timber: #d2b48c;
  --charcoal: #333333;
  --white: #ffffff;
  --deep-green: #2e3d2c;
  --font-brand: Gotham, "Century Gothic", "Avenir Next", Arial, sans-serif;
}

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

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--white);
  font-family: var(--font-brand);
  -webkit-font-smoothing: antialiased;
}

::selection {
  color: var(--white);
  background: var(--parsley);
}

.holding-page {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
}

.brand-panel {
  position: relative;
  display: grid;
  min-height: 100%;
  overflow: hidden;
  place-items: center;
  color: var(--white);
  background: var(--deep-green);
}

.brand-panel::before {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(210, 180, 140, 0.45);
}

.brand-panel::after {
  content: "";
  position: absolute;
  width: min(28vw, 370px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.brand-mark {
  position: relative;
  z-index: 2;
  font-size: clamp(7rem, 18vw, 16rem);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 1;
}

.grain-line {
  position: absolute;
  left: -10%;
  width: 120%;
  height: 1px;
  background: rgba(210, 180, 140, 0.3);
  transform: rotate(-12deg);
}

.grain-line-one { top: 32%; }
.grain-line-two { top: 50%; }
.grain-line-three { top: 68%; }

.content-panel {
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(34px, 6vw, 92px);
  background:
    linear-gradient(rgba(111, 138, 107, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 138, 107, 0.055) 1px, transparent 1px),
    var(--white);
  background-size: 52px 52px;
}

.logo {
  width: clamp(150px, 16vw, 220px);
  height: auto;
}

.message {
  width: min(100%, 760px);
  margin: clamp(70px, 10vh, 130px) 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 28px;
  color: var(--parsley);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 44px;
  height: 1px;
  flex: 0 0 auto;
  background: var(--timber);
}

h1 {
  margin: 0;
  color: var(--deep-green);
  font-size: clamp(4rem, 9vw, 9.5rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.88;
  text-wrap: balance;
}

.intro {
  max-width: 620px;
  margin: 38px 0 0;
  color: #5f645e;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.75;
}

footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(51, 51, 51, 0.2);
}

footer p,
footer span { margin: 0; }

footer p {
  color: var(--deep-green);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

footer span {
  color: #777c75;
  font-size: 0.78rem;
}

@media (max-width: 760px) {
  .holding-page {
    grid-template-columns: 1fr;
    grid-template-rows: 34svh auto;
  }

  .brand-panel { min-height: 34svh; }
  .brand-panel::before { inset: 18px; }
  .brand-panel::after { width: min(55vw, 230px); }
  .brand-mark { font-size: clamp(7rem, 34vw, 11rem); }

  .content-panel {
    min-height: 66svh;
    padding: 34px 26px 30px;
  }

  .logo { width: 142px; }

  .message {
    margin: 68px 0 76px;
  }

  .eyebrow {
    max-width: 280px;
    margin-bottom: 24px;
    font-size: 0.66rem;
  }

  h1 { font-size: clamp(3.6rem, 18vw, 5.8rem); }

  .intro {
    margin-top: 28px;
    font-size: 1rem;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
