:root {
  --ink: #171414;
  --muted: #756b69;
  --line: rgba(23, 20, 20, 0.10);
  --page: #f7efec;
  --card: rgba(255, 255, 255, 0.84);
  --surface: rgba(255, 255, 255, 0.76);
  --surface-hover: #fff;
  --accent: #d5aaa5;
  --accent-soft: #ead7d3;
  --shadow: 0 24px 60px rgba(60, 38, 34, 0.14);
  --radius-xl: 34px;
  --radius-lg: 22px;
}

* { box-sizing: border-box; }
html { min-height: 100%; background: var(--page); }
body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 10%, rgba(255,255,255,.95) 0 8%, transparent 32%),
    radial-gradient(circle at 88% 92%, rgba(213,170,165,.18) 0 8%, transparent 34%),
    linear-gradient(145deg, #fffaf7 0%, #f7eeeb 46%, #f4e8e6 100%);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button, a { -webkit-tap-highlight-color: transparent; }

.page-shell {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: max(18px, env(safe-area-inset-top)) 16px max(18px, env(safe-area-inset-bottom));
}

.link-card {
  position: relative;
  isolation: isolate;
  width: min(100%, 440px);
  overflow: hidden;
  padding: 28px 20px 20px;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: var(--radius-xl);
  background: var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.ambient {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(4px);
  pointer-events: none;
}
.ambient-one {
  width: 180px;
  height: 180px;
  top: -70px;
  right: -76px;
  background: radial-gradient(circle, rgba(213,170,165,.27), rgba(213,170,165,0));
}
.ambient-two {
  width: 150px;
  height: 150px;
  bottom: 45px;
  left: -80px;
  background: radial-gradient(circle, rgba(234,215,211,.6), rgba(234,215,211,0));
}

.brand-header { text-align: center; }
.logo-frame {
  width: 128px;
  height: 128px;
  margin: 0 auto 18px;
  padding: 5px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  box-shadow: 0 12px 30px rgba(42,28,26,.10), inset 0 0 0 1px rgba(25,20,20,.06);
}
.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}
.eyebrow {
  margin: 0 0 8px;
  font-size: .71rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: #8c7773;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 10vw, 3.15rem);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.055em;
}

.intro {
  max-width: 290px;
  margin: 13px auto 26px;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.55;
}
.intro em {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1em;
}

.social-list {
  display: grid;
  gap: 12px;
}

.social-link {
  min-height: 74px;
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 13px;
  align-items: center;
  padding: 12px 16px 12px 12px;
  color: inherit;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(48, 32, 29, .04);
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  background: var(--surface-hover);
  border-color: rgba(23,20,20,.16);
  box-shadow: 0 12px 26px rgba(48,32,29,.08);
  outline: none;
}
.social-link:active { transform: translateY(0) scale(.99); }

.social-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: #181414;
  color: #fff;
}
.social-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.social-icon .dot { fill: currentColor; stroke: none; }
.facebook-icon svg { fill: currentColor; stroke: none; width: 25px; height: 25px; }

.social-copy { min-width: 0; display: grid; gap: 2px; }
.social-copy strong { font-size: .99rem; font-weight: 700; letter-spacing: -.01em; }
.social-copy span { color: var(--muted); font-size: .85rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.arrow { font-size: 1.15rem; color: #8d7d79; transition: transform 180ms ease; }
.social-link:hover .arrow,
.social-link:focus-visible .arrow { transform: translate(2px, -2px); }

footer {
  padding: 20px 4px 2px;
  text-align: center;
}
footer p {
  margin: 0;
  color: #8b7d79;
  font-family: Georgia, "Times New Roman", serif;
  font-size: .82rem;
  letter-spacing: .01em;
}

@media (min-width: 700px) {
  .page-shell { padding: 36px; }
  .link-card { padding: 34px 26px 24px; }
  .logo-frame { width: 142px; height: 142px; }
}

@media (max-width: 360px) {
  .link-card { padding-left: 15px; padding-right: 15px; }
  .logo-frame { width: 116px; height: 116px; }
  .social-link { min-height: 68px; grid-template-columns: 42px 1fr auto; padding-left: 10px; }
  .social-icon { width: 42px; height: 42px; border-radius: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
