/* Cheshire Truffle holding page (matches launch artwork) */

@font-face {
  font-family: "Le Jour Serif";
  src: url("/assets/fonts/LeJourSerif.otf?v=7") format("opentype");
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}

:root {
  --bg: #000;
  --text: #ffffff;
  --muted: #e8e8e8;
  --serif: "Le Jour Serif", "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --sans:  "Glacial Indifference", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
html { overflow-x: hidden; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--serif);
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--text);
  text-decoration: none;
  transition: opacity .25s ease;
}
a:hover { opacity: .7; }

::selection { background: #fff; color: #000; }

.holding {
  min-height: 100svh;
  height: 100svh;
  width: 100%;
  display: grid;
  grid-template-rows: auto auto auto auto;
  justify-items: center;
  align-content: center;
  padding: clamp(20px, 4vh, 56px) clamp(16px, 5vw, 64px) clamp(28px, 6vh, 64px);
  text-align: center;
  gap: clamp(14px, 3.5vh, 44px);
  overflow: hidden;
  animation: fade 1.1s ease both;
}

@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

.eyebrow {
  margin: 0;
  max-width: 100%;
  font-family: var(--serif);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: clamp(14px, min(3vw, 2.4vh), 30px);
  font-weight: 400;
}

.word {
  margin: 0;
  max-width: 100%;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, min(16vw, 22vh), 240px);
  line-height: .95;
  letter-spacing: .015em;
  text-transform: uppercase;
}

.tagline {
  margin: 0;
  max-width: 100%;
  font-family: var(--serif);
  text-transform: uppercase;
  letter-spacing: .26em;
  font-size: clamp(12px, min(2.4vw, 2vh), 24px);
}

/* ---- Footer block (Instagram + contact) ---- */
.foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: clamp(10px, 1.6vh, 22px);
  margin-top: clamp(28px, 7vh, 72px);
}

/* Instagram link */
.social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  color: var(--text);
  text-decoration: none;
  transition: opacity .2s ease, transform .2s ease;
}
.social:hover { opacity: .55; color: var(--text); }
.social:active { transform: scale(.96); }
.social svg { width: 24px; height: 24px; display: block; }

/* Contact lines (emails + address) — Glacial Indifference, sentence case */
.contact {
  align-self: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 100%;
  display: grid;
  gap: 4px;
  font-family: var(--sans);
  font-weight: 400;
  text-transform: none;
  letter-spacing: .005em;
  font-size: clamp(14px, 1.7vh, 16px);
  color: var(--muted);
  line-height: 1.4;
  word-break: break-word;
}
.contact li { max-width: 100%; }
.contact a,
.contact address {
  color: var(--muted);
  font-family: var(--sans);
  font-style: normal;
  display: inline-block;
  max-width: 100%;
  word-break: break-word;
}
.contact a:hover { opacity: .7; color: var(--muted); }

@media (max-width: 520px) {
  .contact {
    font-size: 15px;
    letter-spacing: 0;
    gap: 6px;
    padding: 0 4px;
    line-height: 1.4;
  }
  .foot { gap: 14px; }
  .holding { padding-left: 14px; padding-right: 14px; }
}

/* Very short windows (half-height landscape laptops etc.) */
@media (max-height: 620px) {
  .holding { gap: 10px; padding-top: 18px; padding-bottom: 16px; }
  .foot { gap: 8px; margin-top: 20px; }
  .contact { font-size: 13px; gap: 2px; line-height: 1.3; }
  .social { width: 36px; height: 36px; }
  .social svg { width: 20px; height: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .holding { animation: none; }
}
