:root {
  --paper: #f8f8f8;
  --ink: #111;
  --muted: #686868;
  --line: rgba(17, 17, 17, 0.16);
  --content: 760px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { color: inherit; }

.site-nav {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 0 34px;
  background: rgba(248, 248, 248, 0.88);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-name {
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: clamp(15px, 2.4vw, 30px);
}

.site-nav__links a {
  position: relative;
  padding: 7px 0;
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
}

.site-nav__links a:hover,
.site-nav__links a[aria-current="page"] { color: var(--ink); }

.site-nav__links a[aria-current="page"]::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
}

.home-main {
  display: grid;
  min-height: 100vh;
  padding: 104px 24px 64px;
  place-items: center;
}

.home-copy {
  max-width: 680px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.01em;
}

.home-copy h1,
.page-intro h1 {
  margin: 0;
  font-size: clamp(30px, 4.2vw, 52px);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.home-copy h1 {
  font-size: clamp(22px, 2.7vw, 32px);
  letter-spacing: normal;
  line-height: 1.2;
}

.page-intro h1 {
  font-size: clamp(29px, 4.2vw, 46px);
  font-weight: 650;
  letter-spacing: 0.01em;
  line-height: 1.16;
}

.home-copy .top-note {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.5;
}

.home-copy p:not(.eyebrow):not(.top-note) {
  margin: 17px 0 0;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.65;
}

.home-copy p:not(.top-note) + p:not(.top-note) {
  margin-top: 10px;
}

.home-copy p:last-child {
  margin-top: 14px;
}

.text-link {
  display: inline-block;
  margin-top: 0;
  text-underline-offset: 4px;
}

.page-main {
  width: min(calc(100% - 48px), var(--content));
  margin: 0 auto;
  padding: 150px 0 80px;
}

.page-intro { margin-bottom: 64px; }

.page-intro .eyebrow { margin-bottom: 16px; }

.lede {
  max-width: 610px;
  margin: 24px 0 0;
  color: #343434;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.7;
}

.content-section {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 34px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.content-section h2 {
  margin: 0;
  font-size: 14px;
  font-weight: 650;
}

.content-section p { margin: 0 0 14px; line-height: 1.8; }
.content-section p:last-child { margin-bottom: 0; }

.link-list { display: flex; flex-wrap: wrap; gap: 12px 22px; }
.link-list a { text-underline-offset: 4px; }

.contact-link {
  font-size: clamp(18px, 3vw, 27px);
  font-weight: 650;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
  text-underline-offset: 6px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
}

.status::before {
  width: 7px;
  height: 7px;
  background: #e4aa28;
  border-radius: 50%;
  content: "";
}

.site-footer {
  width: min(calc(100% - 48px), var(--content));
  margin: 0 auto;
  padding: 24px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.about-intro {
  max-width: 650px;
  margin-bottom: 44px;
}

.about-intro h1 {
  margin: 0;
  font-size: clamp(29px, 4.2vw, 46px);
  font-weight: 600;
  letter-spacing: normal;
  line-height: 1.16;
}

.about-intro .role {
  margin: 20px 0 0;
  color: #292929;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
}

.about-intro .personal-note {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.about-card {
  min-height: 245px;
  padding: clamp(24px, 4vw, 36px);
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.about-card h2 {
  margin: 0 0 26px;
  font-size: 14px;
  letter-spacing: 0.01em;
}

.focus-list,
.social-list {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.focus-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
}

.focus-list li::before {
  width: 5px;
  height: 5px;
  background: var(--ink);
  border-radius: 50%;
  content: "";
}

.social-list a,
.social-link {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.social-list a:hover { border-color: var(--ink); }

.social-link.is-pending {
  color: #999;
  cursor: default;
}

.shop-intro { margin-bottom: 38px; }

.shop-intro h1 {
  margin: 0;
  font-size: clamp(29px, 4.2vw, 46px);
  font-weight: 650;
  letter-spacing: 0.01em;
  line-height: 1.16;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.shop-card {
  display: flex;
  min-height: 178px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(22px, 4vw, 32px);
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.shop-card:first-child { grid-column: span 2; }
.shop-card__icon { display: block; margin-bottom: 22px; font-size: 25px; }

.shop-card h2 {
  margin: 0;
  font-size: clamp(17px, 2vw, 20px);
  letter-spacing: -0.02em;
}

.shop-card p { margin: 12px 0 0; color: var(--muted); font-size: 14px; }
.shop-card a { text-decoration-thickness: 1px; text-underline-offset: 4px; }

@media (max-width: 680px) {
  .site-nav { align-items: flex-start; padding: 18px 20px 14px; }
  .site-name { max-width: 110px; line-height: 1.35; }
  .site-nav__links { gap: 12px; overflow-x: auto; padding-bottom: 2px; }
  .site-nav__links a { font-size: 12px; }
  .page-main { padding-top: 130px; }
  .content-section { grid-template-columns: 1fr; gap: 16px; }
  .about-cards { grid-template-columns: 1fr; }
  .about-card { min-height: auto; }
  .shop-grid { grid-template-columns: 1fr; }
  .shop-card:first-child { grid-column: auto; }
}

@media (max-width: 460px) {
  .site-nav { position: absolute; display: block; }
  .site-name { display: block; max-width: none; margin-bottom: 11px; }
  .site-nav__links { justify-content: space-between; gap: 8px; }
  .home-main { padding-top: 126px; }
  .page-main { padding-top: 140px; }
}
