/* inalmari — holding page.
   Provisional. The real design system lands in the design phase; this is a
   small, self-contained sheet so the domain has something honest on it. */

:root {
  --ink: oklch(24% 0.03 65);
  --ink-soft: oklch(45% 0.025 65);
  --paper: oklch(97% 0.012 78);
  --paper-deep: oklch(93.5% 0.018 78);
  --marigold: oklch(72% 0.16 66);
  --indigo: oklch(44% 0.09 265);
  --rule: oklch(86% 0.018 78);

  --step--1: clamp(0.82rem, 0.79rem + 0.15vw, 0.9rem);
  --step-0: clamp(1rem, 0.96rem + 0.2vw, 1.12rem);
  --step-1: clamp(1.2rem, 1.1rem + 0.5vw, 1.5rem);
  --step-3: clamp(2.4rem, 1.9rem + 2.4vw, 4.2rem);

  --measure: 34ch;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: clamp(3rem, 8vh, 6rem);
  padding: clamp(1.5rem, 5vw, 4rem);
  background: var(--paper);
  color: var(--ink);
  font-family: "General Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: var(--step-0);
  line-height: 1.55;
  text-wrap: pretty;
}

main {
  align-self: center;
  max-width: 62rem;
  width: 100%;
  margin-inline: auto;
}

.wordmark {
  font-family: Fraunces, Georgia, serif;
  font-size: var(--step-1);
  font-weight: 600;
  font-variation-settings: "SOFT" 40, "opsz" 24;
  letter-spacing: -0.015em;
  margin: 0 0 clamp(2.5rem, 7vh, 4.5rem);
}

/* Bandhani-style dot, the one motif carried through from the brand notes. */
.wordmark::after {
  content: "";
  display: inline-block;
  width: 0.34em;
  height: 0.34em;
  margin-left: 0.18em;
  border-radius: 50%;
  background: var(--marigold);
  vertical-align: 0.08em;
}

h1 {
  font-family: Fraunces, Georgia, serif;
  font-size: var(--step-3);
  font-weight: 600;
  font-variation-settings: "SOFT" 40, "opsz" 96;
  line-height: 1.02;
  letter-spacing: -0.028em;
  margin: 0 0 1.25rem;
  max-width: 18ch;
  text-wrap: balance;
}

h1 em {
  font-style: italic;
  color: var(--indigo);
}

.lede {
  margin: 0 0 clamp(2rem, 5vh, 3rem);
  max-width: var(--measure);
  font-size: var(--step-1);
  color: var(--ink-soft);
  line-height: 1.4;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  margin-bottom: clamp(2.5rem, 7vh, 4rem);
}

.btn {
  --_bg: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.6ch;
  padding: 0.8em 1.4em;
  border-radius: 999px;
  background: var(--_bg);
  color: var(--paper);
  text-decoration: none;
  font-weight: 550;
  font-size: var(--step-0);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), background-color 220ms;
}

.btn:hover,
.btn:focus-visible { --_bg: var(--indigo); transform: translateY(-2px); }

.btn-quiet {
  color: var(--ink-soft);
  text-decoration: none;
  text-underline-offset: 0.3em;
  text-decoration: underline;
  text-decoration-color: var(--rule);
  transition: color 220ms, text-decoration-color 220ms;
}

.btn-quiet:hover,
.btn-quiet:focus-visible { color: var(--ink); text-decoration-color: currentColor; }

.cities {
  border-top: 1px solid var(--rule);
  padding-top: 1.25rem;
  max-width: 48rem;
}

.cities dt {
  font-size: var(--step--1);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.6rem;
}

.cities dd {
  margin: 0;
  color: var(--ink);
  line-height: 1.7;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 2rem;
  max-width: 62rem;
  width: 100%;
  margin-inline: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule);
  font-size: var(--step--1);
  color: var(--ink-soft);
}

footer a { color: inherit; text-underline-offset: 0.25em; }
footer a:hover { color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--indigo);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
