/* -----------------------------------------------
   Warm — In The Nave  |  Holding Page
   ----------------------------------------------- */

:root {
  --color-orange: #FF5500;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --font-sans: 'Untitled Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --text-xs: 0.6875rem;   /* 11px */
  --text-sm: 0.75rem;     /* 12px */
  --text-base: 0.8125rem; /* 13px */
}

/* ---- Font Face ---- */

@font-face {
  font-family: 'Untitled Sans';
  src: url('../fonts/untitled-sans-web-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Untitled Sans';
  src: url('../fonts/untitled-sans-web-medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* ---- Reset ---- */

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

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

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: var(--text-sm);
  line-height: 1.4;
  letter-spacing: normal;
  text-transform: uppercase;
  color: var(--color-black);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a:hover {
  text-decoration: underline;
}

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

/* ---- Holding — Desktop (Two-Column Split) ---- */

.holding {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  min-height: 100vh;
  min-height: 100dvh;
}

/* Mobile wordmark — hidden on desktop */
.holding__wordmark-mobile {
  display: none;
}

/* ---- Left Panel ---- */

.holding__left {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  padding: 2rem;
  overflow: hidden;
}

.holding__hero {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 603px;
}

.holding__hero-img,
.holding__hero-video {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.holding__hero-vimeo {
  position: relative;
  width: 100%;
  padding-bottom: 100%; /* 1:1 aspect — adjust if video differs */
  overflow: hidden;
}

.holding__hero-vimeo iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}

.holding__logo {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: auto;
}

.holding__logo svg {
  width: 100%;
  height: auto;
  fill: var(--color-black);
}

/* ---- Right Panel ---- */

.holding__right {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--bg-right, var(--color-orange));
  padding: 42px 48px 38px;
  min-height: 100vh;
  min-height: 100dvh;
}

/* ---- Contact Bar (Top of Right Panel) ---- */

.holding__contact-bar {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
}

.holding__contact-item {
  text-align: center;
}

.holding__contact-label {
  display: block;
  font-weight: 400;
  font-size: var(--text-sm);
  line-height: 16px;
  color: var(--color-black);
}

.holding__contact-detail {
  display: block;
  font-weight: 400;
  font-size: var(--text-sm);
  line-height: 16px;
  color: var(--color-black);
}

/* ---- Wordmark (Centred) ---- */

.holding__wordmark {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}

.holding__wordmark svg {
  width: 100%;
  max-width: none;
  height: auto;
  fill: var(--color-black);
}

/* ---- Bottom Bar (Follow + Signup) ---- */

.holding__bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}

/* Follow */

.holding__follow {
  text-align: center;
  width: 202px;
}

.holding__follow-label {
  display: block;
  font-weight: 400;
  font-size: var(--text-sm);
  line-height: 16px;
}

.holding__follow-links {
  font-size: var(--text-sm);
  line-height: 16px;
}

.holding__follow-row {
  display: block;
}

.holding__follow-link {
  white-space: nowrap;
}

.holding__follow-sep {
  margin: 0 0.2em;
}

/* Signup */

.holding__signup {
  text-align: center;
  width: 202px;
}

.holding__signup-label {
  display: block;
  font-weight: 400;
  font-size: var(--text-sm);
  line-height: 16px;
}

/* ---- Mailchimp Signup Form ---- */

.holding__signup-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.holding__signup-email {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  line-height: 16px;
  text-transform: uppercase;
  letter-spacing: normal;
  text-align: center;
  color: var(--color-black);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-black);
  padding: 0.25rem 0;
  width: 202px;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}

.holding__signup-email::placeholder {
  color: var(--color-black);
  opacity: 0.6;
}

.holding__signup-submit {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  line-height: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: normal;
  color: var(--color-black);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.25rem 0 0;
  display: block;
  margin: 0 auto;
  -webkit-appearance: none;
  appearance: none;
}

.holding__signup-submit:hover {
  text-decoration: underline;
}

.holding__signup-status {
  font-size: var(--text-xs);
  line-height: 16px;
  text-align: center;
  margin-top: 0.5rem;
  min-height: 16px;
  color: var(--color-black);
}
.holding__signup-status:empty {
  margin-top: 0;
}

/* ---- Mobile ---- */

@media (max-width: 1024px) {
  html, body {
    overflow: auto;
  }

  .holding {
    display: flex;
    flex-direction: column;
    grid-template-columns: unset;
    min-height: auto;
  }

  /* Mobile wordmark — shown above hero */
  .holding__wordmark-mobile {
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .holding__wordmark-mobile svg {
    width: 100%;
    height: auto;
    fill: var(--color-black);
  }

  /* Left panel — hero + logo */
  .holding__left {
    min-height: auto;
    padding: 3rem 2rem 1.5rem;
    flex-direction: column;
    gap: 1.5rem;
  }

  .holding__hero {
    max-width: 394px;
  }

  .holding__logo {
    position: static;
    transform: none;
    width: 56px;
    margin: 0 auto;
  }

  /* Contact bar moves into the orange section on mobile — stacked, centred */
  .holding__contact-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  /* Right panel — contact (top), wordmark (middle), follow + signup (bottom) */
  .holding__right {
    min-height: auto;
    padding: 3rem 1.5rem;
    order: 3;
    gap: 2.5rem;
  }

  .holding__wordmark {
    flex: none;
    padding: 1.5rem 0;
  }

  .holding__wordmark svg {
    max-width: 378px;
  }

  .holding__bottom-bar {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}

@media (max-width: 400px) {
  .holding__wordmark-mobile {
    max-width: 240px;
  }

  .holding__signup,
  .holding__follow {
    width: 100%;
    max-width: 220px;
  }

  .holding__signup-email {
    width: 100%;
    max-width: 220px;
  }
}
