/* contact.css — Lyren homepage-style (dark grid + gold/brown) */
/* If you already have admin-users.css / lyren-ui.css with these base tokens/classes,
   you can KEEP that and only add the "tile" styles below. */

:root{
  --c900:#663d29;
  --c700:#9a674d;
  --c600:#b97c5d;
  --c500:#da926e;
  --c300:#b59d55;
  --c200:#e3c56b;

  --bg0:#070606;
  --bg1:#0d0b0a;
  --stroke: rgba(227,197,107,.16);
  --text:#f2ece8;
  --muted: rgba(242,236,232,.72);
  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --radius: 18px;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono","Courier New", monospace;
}

body{
  background:
    radial-gradient(1200px 500px at 20% 10%, rgba(227,197,107,.10), transparent 60%),
    radial-gradient(900px 450px at 80% 0%, rgba(102,61,41,.22), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* grid overlay */
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background-image:
    linear-gradient(to right, rgba(227,197,107,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(227,197,107,.05) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity:.35;
  mix-blend-mode: screen;
}

.ly-h1{
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: clamp(1.8rem, 1.2rem + 1.6vw, 2.6rem);
  margin:0;
}

.ly-muted{ color: var(--muted); }
.ly-link{
  color: rgba(227,197,107,.92);
  text-decoration: none;
  font-weight: 900;
}
.ly-link:hover{ text-decoration: underline; }

.ly-kicker{
  display:inline-block;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
  color: rgba(227,197,107,.9);
}

/* Card */
.ly-card{
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  overflow:hidden;
  backdrop-filter: blur(10px);
}
.ly-card-head{
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(227,197,107,.10);
  background:
    radial-gradient(700px 220px at 30% 0%, rgba(227,197,107,.08), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.08), transparent);
}
.ly-card-body{ padding: 18px; }

/* Divider */
.ly-divider{
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(227,197,107,.18), transparent);
}

/* Pills */
.ly-pill{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  padding: .35rem .65rem;
  border-radius: 999px;
  border: 1px solid rgba(227,197,107,.18);
  background: rgba(0,0,0,.20);
  color: rgba(242,236,232,.88);
  font-weight: 800;
  font-size: .85rem;
}
.ly-pill-soft{
  border-color: rgba(227,197,107,.12);
  color: rgba(227,197,107,.92);
  background: rgba(227,197,107,.06);
}

/* Tiles (the 4 contact blocks) */
.ly-tile{
  border-radius: 16px;
  border: 1px solid rgba(227,197,107,.14);
  background: rgba(0,0,0,.18);
  padding: 14px 14px;
  transition: transform .12s ease, border-color .12s ease, background .12s ease;
}
.ly-tile:hover{
  transform: translateY(-2px);
  border-color: rgba(227,197,107,.24);
  background: rgba(0,0,0,.22);
}

.ly-tile-title{
  font-weight: 900;
  color: rgba(242,236,232,.92);
  font-size: 1.05rem;
}

/* Mobile */
@media (max-width: 576px){
  .ly-card-head, .ly-card-body{ padding: 16px; }
  .ly-tile{ padding: 12px; }
}