:root {
  color-scheme: light;
  --bg: #edf4f8;
  --bg-deep: #e3edf4;
  --panel: rgba(255, 255, 255, 0.64);
  --panel-strong: rgba(255, 255, 255, 0.78);
  --line: rgba(255, 255, 255, 0.86);
  --line-muted: rgba(128, 156, 177, 0.36);
  --text: #273547;
  --muted: #53667a;
  --soft: #738499;
  --pink: #eebcd6;
  --lavender: #c9c4ed;
  --aqua: #b8dfe5;
  --max: 780px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 4%, rgba(205, 225, 239, 0.78), transparent 31%),
    radial-gradient(circle at 88% 28%, rgba(222, 218, 244, 0.62), transparent 30%),
    linear-gradient(160deg, #fbfdfe 0%, var(--bg) 48%, var(--bg-deep) 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0.01em;
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image: radial-gradient(circle, rgba(116, 148, 171, 0.2) 0 0.65px, transparent 0.9px);
  background-position: 18px 23px;
  background-size: 132px 132px;
  opacity: 0.28;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
  padding: 72px 0 48px;
}

.ambient {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(86px);
  opacity: 0.26;
  pointer-events: none;
}

.ambient-one {
  top: 14vh;
  left: -160px;
  background: var(--pink);
}

.ambient-two {
  top: 43vh;
  right: -170px;
  background: var(--aqua);
}

.hero {
  padding: 20px 0 30px;
  text-align: center;
}

.profile-wrap {
  position: relative;
  width: 188px;
  height: 188px;
  margin: 0 auto 28px;
}

.profile-image {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 42px rgba(93, 123, 148, 0.17);
  object-fit: cover;
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

h1 {
  margin: 10px 0 0;
  color: #283b4e;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(48px, 10vw, 72px);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1;
}

section {
  margin-top: 62px;
}

.section-heading {
  margin-bottom: 18px;
}

h2 {
  margin: 7px 0 0;
  color: var(--text);
  font-size: 22px;
  font-weight: 650;
  letter-spacing: 0.03em;
}

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

.shop-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
}

.link-card,
.social-grid a,
.about-panel {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, var(--panel-strong), var(--panel));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 14px 34px rgba(91, 119, 145, 0.1);
  backdrop-filter: blur(16px);
}

.link-card,
.social-grid a {
  position: relative;
  display: grid;
  min-width: 0;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.link-card {
  min-height: 128px;
  padding: 20px;
  border-radius: 24px;
}

.link-card.primary {
  background:
    radial-gradient(circle at 12% 12%, rgba(230, 194, 220, 0.4), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(245, 250, 252, 0.58));
}

.link-card:hover,
.social-grid a:hover {
  border-color: var(--line-muted);
  background-color: rgba(255, 255, 255, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 18px 38px rgba(91, 119, 145, 0.15);
  transform: translateY(-2px);
}

.service-icon {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  place-items: center;
}

.service-logo {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.service-logo-booth {
  width: 110px;
  height: auto;
}

.service-logo-mercari {
  width: 52px;
  height: 52px;
}

.service-icon-booth {
  width: 110px;
}

.service-icon-mercari {
  color: initial;
}

.service-icon-pinterest {
  color: #e60023;
}

.service-icon-x {
  color: #111;
}

.service-copy {
  min-width: 0;
}

.link-card strong,
.social-name {
  display: block;
  color: var(--text);
  font-size: 18px;
  font-weight: 650;
}

.link-card small,
.social-note {
  display: block;
  margin-top: 5px;
  color: var(--soft);
  font-size: 12px;
}

.arrow {
  color: var(--muted);
  font-size: 20px;
}

.about-panel {
  padding: 28px;
  border-radius: 28px;
}

.about-panel p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 2;
}

.about-panel p + p {
  margin-top: 14px;
}

.about-panel .note {
  margin-top: 18px;
  color: var(--soft);
  font-size: 12px;
}

.social-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.social-grid a {
  min-height: 124px;
  padding: 18px;
  border-radius: 21px;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}

.social-grid .service-icon {
  grid-row: 1 / span 2;
  width: 46px;
  height: 46px;
}

.social-grid .arrow {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 16px;
}

footer {
  margin-top: 86px;
  padding: 28px 0 8px;
  color: var(--soft);
  text-align: center;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-spark {
  color: #93b2bf;
}

@media (max-width: 640px) {
  .site-shell {
    width: min(calc(100% - 28px), var(--max));
    padding-top: 45px;
  }

  .hero {
    padding-bottom: 24px;
  }

  .profile-wrap {
    width: 164px;
    height: 164px;
  }

  section {
    margin-top: 54px;
  }

  .shop-grid,
  .social-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .link-card {
    min-height: 104px;
    padding: 17px 18px;
  }

  .social-grid a {
    min-height: 92px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-rows: 1fr;
    gap: 14px;
  }

  .social-grid .service-icon {
    grid-row: auto;
    width: 44px;
    height: 44px;
  }

  .social-grid .arrow {
    position: static;
    font-size: 18px;
  }

  .service-icon {
    width: 48px;
    height: 48px;
  }

  .service-icon-booth {
    width: 110px;
  }

  footer {
    margin-top: 64px;
  }

  .footer-main {
    gap: 9px;
    font-size: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .link-card,
  .social-grid a {
    transition: none;
  }
}
