:root {
  --green: #34431e;
  --cream: #fbf6ed;
  --gold: #dfab2f;
  --white: #ffffff;
  --font: "Geologica", sans-serif;
}

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

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  font-family: var(--font);
  background: var(--green);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

a:hover,
a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

/* ——— Full viewport, no scroll ——— */

.stub {
  width: 100vw;
  height: 100svh;
  overflow: hidden;
  background: var(--green);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 2.5vh;
  padding: 4vh 16px;
}

/* Children of panel join the stub flex on mobile */
.stub__panel {
  display: contents;
}

.stub__top {
  order: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1vh;
  text-align: center;
}

.stub__visual {
  order: 2;
  width: 100%;
  aspect-ratio: 311 / 175;
  max-height: 27vh;
  overflow: hidden;
  background: #2a3618;
  flex-shrink: 0;
}

.stub__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.stub__messages {
  order: 3;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4em;
  text-align: center;
}

.stub__message {
  width: 100%;
  font-weight: 400;
  font-size: clamp(16px, 5.5vw, 20px);
  line-height: 0.9;
  color: var(--cream);
}

.stub__bottom {
  order: 4;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stub__eyebrow {
  width: 100%;
  font-weight: 400;
  font-size: clamp(16px, 5.5vw, 20px);
  line-height: 1.25;
  color: var(--cream);
}

.stub__title {
  width: 100%;
  font-weight: 900;
  font-size: clamp(28px, 10vw, 38px);
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--gold);
}

.stub__sales {
  width: 100%;
  font-weight: 400;
  font-size: clamp(14px, 5vw, 18px);
  line-height: 1.31;
  text-transform: uppercase;
  color: var(--cream);
}

.stub__logo {
  width: 100%;
  max-width: 280px;
  max-height: 15vh;
  margin-top: 2vh;
  object-fit: contain;
}

/* ——— Desktop ——— */

@media (min-width: 900px) {
  body {
    background: var(--white);
  }

  .stub {
    display: grid;
    grid-template-columns: 1fr min(710px, 49.3vw);
    grid-template-rows: 100%;
    gap: 0;
    padding: 0;
    background: var(--white);
    align-items: stretch;
    justify-items: stretch;
  }

  .stub__visual {
    order: unset;
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    height: 100%;
    max-height: none;
    margin: 0;
    aspect-ratio: auto;
  }

  .stub__photo {
    object-position: 45% center;
  }

  .stub__panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding: clamp(48px, 10vh, 91px) clamp(24px, 3.5vw, 54px) clamp(24px, 4vh, 40px);
    background: var(--green);
    text-align: center;
  }

  .stub__top {
    order: unset;
    gap: clamp(8px, 1.2vh, 12px);
  }

  .stub__eyebrow {
    max-width: 634px;
    font-size: clamp(24px, 3.2vh, 35px);
  }

  .stub__title {
    max-width: 702px;
    font-size: clamp(48px, 8.5vh, 80px);
    line-height: 1.14;
  }

  .stub__messages {
    order: unset;
    gap: 10px;
    max-width: 585px;
  }

  .stub__message {
    font-size: clamp(24px, 3.2vh, 35px);
    line-height: 0.73;
  }

  .stub__bottom {
    order: unset;
  }

  .stub__sales {
    max-width: 690px;
    font-weight: 300;
    font-size: clamp(24px, 3.2vh, 35px);
    line-height: 1.38;
  }

  .stub__logo {
    width: min(590px, 86%);
    max-height: 22vh;
    margin-top: clamp(16px, 2.5vh, 28px);
  }
}
