* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #fafafa;
  color: #1a1a1a;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 2rem;
}

.container {
  max-width: 640px;
  width: 100%;
  text-align: center;
}

header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 4rem;
}

.site-logo {
  height: 512px;
  width: auto;
  object-fit: contain;
}

.company-name {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.subtitle {
  font-size: 1.125rem;
  color: #555;
  line-height: 1.6;
}

footer {
  margin-top: 6rem;
  font-size: 0.875rem;
  color: #999;
  line-height: 1.8;
}

footer a {
  color: #555;
  text-decoration: none;
}

footer a:hover {
  color: #1a1a1a;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 0.75rem;
}

/* Inner pages */
.text-left {
  text-align: left;
}

.text-left h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.text-left p,
.text-left ul {
  color: #333;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.text-left ul {
  padding-left: 1.5rem;
}

.text-left li {
  margin-bottom: 0.4rem;
}

.text-left a {
  color: #1a1a1a;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.text-left a:hover {
  color: #555;
}

.meta {
  font-size: 0.875rem;
  color: #999;
}

.header-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

/* Home product links */
.home-products {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 3rem;
}

.home-product {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.25rem 1.5rem;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  flex: 1;
  max-width: 220px;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.home-product:hover {
  border-color: #ccc;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.home-product strong {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.home-product span {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.4;
}

/* Brand grid */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.25rem;
  margin: 1rem 0 1.5rem;
}

.brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.25rem 0.75rem;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.brand-card:hover {
  border-color: #ccc;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.brand-card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 0.75rem;
  border-radius: 6px;
}

.brand-card strong {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.brand-card span {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.4;
}

/* Wishabook card */
.wishabook-card {
  display: block;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  margin: 1rem 0 1.5rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.wishabook-card:hover {
  border-color: #ccc;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.wishabook-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.wishabook-card-body {
  padding: 1rem 1.25rem 1.25rem;
}

.wishabook-card-body strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.wishabook-card-body span {
  font-size: 0.875rem;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }

  .subtitle {
    font-size: 1rem;
  }
}
