/* Links — mobile-first official directory. Premium, not Linktree. */

:root {
  color-scheme: light;
  --ink: #22181a;
  --charcoal: #32262a;
  --oxblood: #6f2126;
  --blush: #fcdddc;
  --blush-soft: #fbe9e7;
  --ivory: #fdfaf6;
  --porcelain: #f7efe9;
  --gold-deep: #a1723a;
  --gold-light: #e8cfa4;
  --muted: #7b6f6c;
  --line: rgba(34, 24, 26, 0.12);
  --font-display: "Italiana", "Didot", "Bodoni MT", Georgia, serif;
  --font-body: "Jost", "Avenir Next", "Segoe UI", Arial, sans-serif;
  --size-small: 0.75rem;
  --size-kicker: 0.6875rem;
  --size-h1: clamp(2.2rem, 1.7rem + 4vw, 3.4rem);
  --motion-fast: 0.25s;
  --motion-medium: 0.55s;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--blush-soft);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 20rem; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--oxblood); color: var(--ivory); }
:focus-visible { outline: 2px solid var(--oxblood); outline-offset: 4px; }

.skip-link {
  position: fixed; z-index: 100; top: 0.75rem; left: 0.75rem;
  padding: 0.8rem 1rem; transform: translateY(-180%);
  background: var(--ivory); color: var(--ink); border: 1px solid var(--line);
  transition: transform var(--motion-medium) var(--ease-standard);
}
.skip-link:focus { transform: none; }

h1 { margin: 0; font-family: var(--font-display); font-weight: 400; font-size: var(--size-h1); line-height: 1.05; letter-spacing: -0.015em; }
em { font-style: italic; color: var(--oxblood); }
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

.section-label, .lk-list-label {
  margin: 0 0 1rem; font-size: var(--size-kicker); font-weight: 500;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--oxblood);
}

/* Header */
.lk-header {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem clamp(1.25rem, 5vw, 2rem);
}
.wordmark { display: inline-flex; flex-direction: column; line-height: 1; }
.wordmark-name { font-family: var(--font-display); font-size: 1.35rem; letter-spacing: 0.06em; }
.wordmark-sub { margin-top: 0.3rem; font-size: 0.6rem; letter-spacing: 0.32em; text-transform: uppercase; opacity: 0.7; }
.lk-share {
  background: none; border: 1px solid var(--ink); padding: 0.5rem 0.9rem;
  font: inherit; font-size: var(--size-small); letter-spacing: 0.16em; text-transform: uppercase;
  cursor: pointer; color: inherit;
  transition: background var(--motion-fast) var(--ease-standard), color var(--motion-fast) var(--ease-standard);
}
.lk-share:hover { background: var(--ink); color: var(--ivory); }

/* Layout */
main { max-width: 34rem; margin: 0 auto; padding: 0 clamp(1.25rem, 5vw, 2rem) 3rem; }

/* Intro */
.lk-intro { padding: 2rem 0 2.5rem; text-align: center; }
.lk-intro p { color: var(--muted); margin-top: 1rem; }

/* List */
.lk-list ul { border-top: 1px solid var(--line); }
.lk-list a {
  display: grid; grid-template-columns: 1fr auto; grid-template-areas: "name arrow" "desc arrow";
  align-items: center; column-gap: 1rem;
  padding: 1.2rem 0.25rem;
  border-bottom: 1px solid var(--line);
  transition: padding-left var(--motion-fast) var(--ease-out), background var(--motion-fast) var(--ease-standard);
}
.lk-list a:hover { padding-left: 0.75rem; background: rgba(253, 250, 246, 0.6); }
.lk-name { grid-area: name; font-family: var(--font-display); font-size: 1.45rem; line-height: 1.1; }
.lk-desc { grid-area: desc; font-size: var(--size-small); letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 0.2rem; }
.lk-arrow { grid-area: arrow; color: var(--oxblood); transition: transform var(--motion-fast) var(--ease-out); }
.lk-list a:hover .lk-arrow { transform: translate(2px, -2px); }

/* Trust */
.lk-trust {
  margin-top: 2.5rem; padding: 1.1rem 1.25rem;
  background: var(--ivory); border-left: 2px solid var(--gold-deep);
  font-size: 0.9rem; color: var(--muted);
}

/* Footer */
.lk-footer {
  max-width: 34rem; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding: 0 clamp(1.25rem, 5vw, 2rem) 2.5rem;
  font-size: var(--size-small); letter-spacing: 0.08em; color: var(--muted);
}
.lk-footer a { text-decoration: underline; text-underline-offset: 3px; }

/* Notice toast */
.lk-notice {
  position: fixed; left: 50%; bottom: 1.5rem; transform: translate(-50%, 150%);
  background: var(--ink); color: var(--ivory);
  padding: 0.7rem 1.2rem; font-size: var(--size-small); letter-spacing: 0.08em;
  transition: transform var(--motion-medium) var(--ease-out);
}
.lk-notice.visible { transform: translate(-50%, 0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
}

.privacy-settings {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}
.consent-panel[hidden] { display: none; }
.consent-panel {
  position: fixed;
  z-index: 100;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 46rem;
  margin-left: auto;
  padding: 1rem;
  border: 1px solid rgba(53, 35, 32, .2);
  background: #fff;
  box-shadow: 0 1rem 3rem rgba(53, 35, 32, .18);
  color: #352320;
}
.consent-panel p { margin: 0; }
.consent-panel p span { display: block; margin-top: .25rem; }
.consent-panel div { display: flex; gap: .5rem; }
.consent-panel button { min-height: 2.75rem; padding: .65rem 1rem; border: 1px solid currentColor; background: transparent; color: inherit; cursor: pointer; }
.consent-panel [data-consent-accept] { background: #352320; color: #fff; }

@media (max-width: 540px) {
  .consent-panel { align-items: stretch; flex-direction: column; }
  .consent-panel div { justify-content: flex-end; }
}
