/* ============================================================
   GLAD'z Corporation - Shared Stylesheet
   ============================================================ */

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

:root {
  --ink: #121212;
  --text: #2f2f2f;
  --muted: #66615d;
  --soft: #f7f5f2;
  --paper: #ffffff;
  --line: #d8d3cd;
  --line-strong: #8d8780;
  --charcoal: #151515;
  --rose: #8e2d45;
  --rose-strong: #6d2033;
  --rose-soft: #f2e4e8;
  --amber: #8b4a24;
  --violet: #553b77;
  --shadow: none;
}

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
  letter-spacing: 0;
}

a { color: inherit; }

/* Nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 20px 48px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(6px);
  z-index: 100;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-img {
  height: 24px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-links a {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #4b4540;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
  border-color: var(--ink);
}

/* Page hero */
.page-hero {
  padding: 74px 48px 58px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.page-hero > * {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.page-eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 18px;
  font-weight: 700;
}
.page-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--ink);
  margin-bottom: 24px;
}
.page-title {
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.18;
  flex: 1;
}
.page-sub {
  font-size: 16px;
  line-height: 1.95;
  color: var(--text);
  max-width: 700px;
}

/* Section */
.section {
  padding: 72px 48px;
  border-bottom: 1px solid var(--line);
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 700;
  margin-bottom: 32px;
}

/* Buttons */
.btn-primary,
.btn-ghost,
.btn-outline-pub {
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0 0 0 24px;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  gap: 18px;
  overflow: hidden;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  font-weight: 700;
}
.btn-primary::after,
.btn-ghost::after,
.btn-outline-pub::after {
  content: "→";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  width: 46px;
  margin-left: 0;
  border-left: 1px solid currentColor;
  transition: transform 0.2s;
}
.btn-primary:hover::after,
.btn-ghost:hover::after,
.btn-outline-pub:hover::after {
  transform: translateX(4px);
}
.btn-primary {
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink);
}
.btn-primary:hover {
  background: #352f2a;
  border-color: #352f2a;
}
.btn-ghost {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--ink);
  background: var(--soft);
}
.btn-outline-pub {
  background: #fff;
  color: var(--rose-strong);
  border: 1px solid var(--rose);
}
.btn-outline-pub:hover {
  background: var(--rose);
  color: #fff;
}

/* Form */
.form-section {
  padding: 72px 48px;
  border-bottom: 1px solid var(--line);
  max-width: 1100px;
  margin: 0 auto;
}
.form-eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 700;
  margin-bottom: 10px;
}
.form-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.form-note {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 36px;
  line-height: 1.9;
  max-width: 760px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
  max-width: 760px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-size: 13px;
  color: var(--text);
  font-weight: 700;
}
.form-label .req { color: var(--rose); margin-left: 2px; }
input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 13px 15px;
  font-size: 15px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: #fff;
  color: var(--ink);
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
input[type="text"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 2px rgba(142, 45, 69, 0.12);
}
textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.75;
}
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23111111' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.form-privacy {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 28px;
  padding: 18px 20px;
  background: var(--soft);
  border-radius: 2px;
  border: 1px solid var(--line);
  max-width: 760px;
}
.form-privacy a {
  color: var(--rose-strong);
  font-weight: 700;
  text-decoration: none;
}
.form-privacy a:hover { text-decoration: underline; }
.btn-submit {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 0;
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  display: block;
  width: 100%;
  max-width: 760px;
  transition: background 0.2s;
  font-family: inherit;
  font-weight: 800;
}
.btn-submit:hover {
  background: #352f2a;
}

/* Footer */
footer {
  padding: 32px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--charcoal);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 12px;
  color: #e8dfd6;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.copy { font-size: 12px; color: #b7aa9f; }

/* Policy */
.policy-section {
  max-width: 900px;
}
.policy-body {
  color: var(--text);
  font-size: 15px;
  line-height: 2;
}
.policy-body h2 {
  font-size: 20px;
  font-weight: 900;
  color: var(--ink);
  line-height: 1.45;
  margin: 40px 0 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.policy-body p + p {
  margin-top: 14px;
}
.policy-body ul {
  margin: 14px 0 0 1.4em;
}
.policy-body li {
  margin: 4px 0;
}
.policy-date {
  margin-top: 48px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .nav {
    padding: 16px 24px;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
  .nav-links {
    gap: 14px 18px;
    justify-content: flex-start;
  }
  .page-hero, .section, .form-section { padding: 52px 24px; }
  .page-title-row { display: block; }
  footer { padding: 28px 24px; }
}
@media (max-width: 600px) {
  .form-grid { grid-template-columns: 1fr; }
  .btn-primary,
  .btn-ghost,
  .btn-outline-pub { width: 100%; white-space: normal; }
}

/* Editorial polish */
.philosophy-card,
.business-card,
.culture-card,
.label-detail,
.label-badge,
.label-future,
.wanted-point,
.quick-link,
.info-image-container,
.thanks-inner,
.pub-teaser-compact {
  border-radius: 0;
  box-shadow: none;
}

.philosophy-card:hover,
.business-card:hover,
.culture-card:hover,
.label-card:hover,
.business-panel:hover {
  transform: none;
  box-shadow: none;
}

.philosophy-card h3,
.business-heading,
.biz-title,
.culture-card h3,
.entry-band-text h2,
.ld-name,
.label-name,
.wanted-title,
.wp-title,
.ql-title,
.info-block-title,
.form-title {
  font-weight: 700;
}

.philosophy-card-label,
.biz-label,
.culture-card-label,
.ld-type,
.label-section-label,
.wanted-eyebrow,
.label-tagline,
.label-future-label,
.ql-label,
.info-block-label {
  letter-spacing: 0.12em;
  font-weight: 700;
}

.wanted,
.pub-teaser-compact {
  background: var(--charcoal);
}

.ld-badge,
.pill,
.wp-icon-wrapper,
.biz-icon-wrapper {
  border-radius: 2px;
}
