/* ─── Reset & Base ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1a1a1a;
  background: #ffffff;
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
/* 英字見出し: Cormorant Garamond / 日本語見出し: Noto Serif JP でフォント統一 */
h1, h2, h3, .hero-main-copy, .page-hero-title {
  font-family: 'Cormorant Garamond', 'Noto Serif JP', Georgia, serif;
}
.section-en-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  letter-spacing: 0.15em;
}
.section-ja-title, .subsection-title, .admin-card-title {
  font-family: 'Noto Serif JP', 'Noto Sans JP', serif;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Variables ─────────────────────────────────── */
:root {
  --pink: #FCE0E6;
  --blue: #D8E1F2;
  --skyblue: #D5EEF5;
  --gray: #E8EAEC;
  --purple: #E4DBEF;
  --yellow: #FDF5D3;
  --text: #1a1a1a;
  --text-muted: #6b7280;
  --border: #e8e8e8;
  --radius: 14px;
  --shadow: 0 2px 16px rgba(0,0,0,0.06);
  --shadow-hover: 0 6px 28px rgba(0,0,0,0.10);
  --container: 1100px;
}

/* ─── Container ─────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.container-narrow {
  max-width: 760px;
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
}

/* ─── Header ─────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
}
.header-logo { display: flex; align-items: center; }
.logo-img { height: 44px; width: auto; object-fit: contain; }
.logo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}
.logo-badge {
  font-size: 9px;
  letter-spacing: 0.1em;
  color: #9ca3af;
  border: 1px solid #e5e7eb;
  padding: 2px 6px;
  border-radius: 3px;
  margin-bottom: 3px;
}
.logo-name {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text);
}

/* Nav */
.main-nav { display: flex; align-items: center; }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  border-radius: 8px;
  transition: all 0.15s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.nav-link:hover { background: #f5f5f5; }
.nav-link.active { color: #6d28d9; }
.nav-contact-btn {
  background: var(--text);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 8px;
  margin-left: 8px;
  transition: all 0.2s;
}
.nav-contact-btn:hover { background: #333 !important; }
.dropdown-arrow { font-size: 10px; transition: transform 0.2s; }
.dropdown-btn[aria-expanded="true"] .dropdown-arrow { transform: rotate(180deg); }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow);
  min-width: 220px;
  padding: 6px;
  z-index: 300;
}
.dropdown-menu.open { display: block; }
.dropdown-menu li a {
  display: block;
  padding: 9px 14px;
  font-size: 13px;
  color: var(--text);
  border-radius: 7px;
  transition: background 0.12s;
}
.dropdown-menu li a:hover { background: #f5f5f5; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.98);
  z-index: 190;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-nav-list { padding: 24px 28px; display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-list li a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  border-bottom: 1px solid #f3f4f6;
}
.mobile-section-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9ca3af;
  padding: 16px 0 4px;
}
.mobile-contact-btn {
  display: inline-block !important;
  background: var(--text);
  color: #fff !important;
  padding: 14px 28px !important;
  border-radius: 8px;
  text-align: center;
  margin-top: 16px;
  border-bottom: none !important;
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
  .header-inner { padding: 0 20px; }
}

/* ─── Footer ─────────────────────────────────────── */
.site-footer {
  background: #111;
  color: #fff;
  padding: 64px 0 0;
}
.footer-inner {
  display: flex;
  gap: 64px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px 48px;
}
.footer-brand { flex: 1; }
.footer-logo { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-img { height: 32px; width: auto; filter: brightness(0) invert(1); }
.footer-logo-placeholder { display: flex; flex-direction: column; }
.footer-logo-badge { font-size: 8px; color: #666; border: 1px solid #333; padding: 1px 5px; border-radius: 3px; margin-bottom: 2px; }
.footer-logo-name { font-size: 16px; font-weight: 600; letter-spacing: 0.1em; color: #fff; }
.footer-description { font-size: 13px; color: #888; line-height: 1.8; margin-bottom: 20px; }
.footer-sns { display: flex; gap: 10px; }
.sns-link { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: #1c1c1c; border-radius: 8px; color: #888; transition: all 0.15s; }
.sns-link:hover { background: #2a2a2a; color: #fff; }
.footer-nav-group { display: flex; gap: 48px; }
.footer-nav-col { min-width: 160px; }
.footer-nav-title { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: #666; margin-bottom: 14px; }
.footer-nav-list { display: flex; flex-direction: column; gap: 8px; }
.footer-nav-list a { font-size: 13px; color: #888; transition: color 0.15s; }
.footer-nav-list a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid #1c1c1c;
  padding: 16px 32px;
  text-align: center;
}
.copyright { font-size: 11px; color: #555; letter-spacing: 0.04em; }

@media (max-width: 768px) {
  .footer-inner { flex-direction: column; gap: 36px; padding: 0 20px 36px; }
  .footer-nav-group { flex-direction: column; gap: 28px; }
  .footer-bottom { padding: 16px 20px; }
}

/* ─── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 9px;
  cursor: pointer;
  transition: all 0.2s;
  border: 1.5px solid transparent;
  font-family: inherit;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: #111; color: #fff; border-color: #111; }
.btn-primary:hover { background: #333; border-color: #333; }
.btn-outline { background: transparent; color: #111; border-color: #d1d5db; }
.btn-outline:hover { background: #f5f5f5; }
.btn-large { padding: 15px 36px; font-size: 15px; }

/* ─── Hero ─────────────────────────────────────────── */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: linear-gradient(145deg, #fafafa 0%, #f8f5ff 30%, #f5f9ff 60%, #f0fafa 100%);
  overflow: hidden;
}
.hero-content {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 48px 32px;
  width: 100%;
}
.hero-text { flex: 1; }
.hero-main-copy {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: #111;
}
.hero-sub-copy {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 40px;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-visual { flex: 0 0 55%; display: flex; align-items: center; justify-content: center; }
.hero-image { width: 100%; border-radius: 20px; box-shadow: var(--shadow-hover); }
.hero-logo-image { width: 100%; height: 70vh; max-height: 600px; object-fit: contain; mix-blend-mode: multiply; }
.hero-abstract {
  position: relative;
  width: 380px;
  height: 380px;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}
.hero-orb-1 { width: 240px; height: 240px; background: var(--purple); opacity: 0.5; top: 20px; right: 20px; animation: float1 6s ease-in-out infinite; }
.hero-orb-2 { width: 180px; height: 180px; background: var(--skyblue); opacity: 0.4; bottom: 30px; left: 30px; animation: float2 8s ease-in-out infinite; }
.hero-orb-3 { width: 140px; height: 140px; background: var(--pink); opacity: 0.35; top: 50%; left: 50%; transform: translate(-50%,-50%); animation: float3 7s ease-in-out infinite; }
.hero-svg { width: 100%; height: 100%; position: relative; z-index: 1; }
@keyframes float1 { 0%,100%{transform:translateY(0) rotate(0)} 50%{transform:translateY(-20px) rotate(15deg)} }
@keyframes float2 { 0%,100%{transform:translateY(0) rotate(0)} 50%{transform:translateY(16px) rotate(-10deg)} }
@keyframes float3 { 0%,100%{transform:translate(-50%,-50%) scale(1)} 50%{transform:translate(-50%,-50%) scale(1.15)} }

@media (max-width: 900px) {
  .hero-content { flex-direction: column; text-align: center; gap: 40px; padding: 60px 20px; }
  .hero-buttons { justify-content: center; }
  .hero-visual { flex: 0 0 auto; width: 80vw; height: 300px; }
  .hero-abstract { width: 260px; height: 260px; }
}

/* ─── Sections ─────────────────────────────────────── */
section { padding: 88px 0; }
.section-label-group { margin-bottom: 48px; }
.text-center { text-align: center; }
.section-en-title {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 8px;
}
.section-ja-title {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: #111;
  margin-bottom: 12px;
}
.section-description {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* News section */
.section-news { background: #fafafa; }
.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
}
.view-all-link {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #6b7280;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: all 0.15s;
}
.view-all-link:hover { border-color: #aaa; color: #333; }
.news-list { display: flex; flex-direction: column; gap: 1px; background: var(--border); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.news-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
  background: #fff;
  transition: background 0.15s;
  text-decoration: none;
  color: inherit;
}
.news-item:hover { background: #f9fafb; }
.news-date { font-size: 12.5px; color: var(--text-muted); white-space: nowrap; min-width: 88px; }
.news-category {
  font-size: 11px;
  padding: 3px 10px;
  background: #f3f4f6;
  border-radius: 4px;
  color: #6b7280;
  white-space: nowrap;
}
.news-title { flex: 1; font-size: 14px; }
.news-arrow { color: #ccc; font-size: 13px; margin-left: auto; }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.service-card {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s;
  box-shadow: var(--shadow);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: #ddd;
}
.service-card-inner {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 3px solid var(--card-accent, #e4dbef);
}
.service-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  margin-bottom: 4px;
  color: #555;
}
.service-name { font-size: 15px; font-weight: 600; line-height: 1.3; }
.service-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; flex: 1; }
.service-arrow { font-size: 13px; color: #ccc; margin-top: 4px; }

/* ─── Store ──────────────────────────────────────────────── */
.section-store { padding: 72px 0; }
.store-links-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; margin-top: 40px; }
.store-link-card { display: block; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: box-shadow 0.2s, transform 0.2s; background: #fff; }
.store-link-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.store-link-name { font-family: 'Cormorant Garamond','Noto Serif JP',serif; font-size: 20px; font-weight: 400; margin-bottom: 8px; }
.store-link-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.store-link-btn { font-size: 13px; color: #7c3aed; font-weight: 500; }

/* CTA */
.section-contact-cta {
  background: linear-gradient(135deg, var(--purple) 0%, var(--skyblue) 50%, var(--pink) 100%);
  padding: 80px 0;
}
.cta-box { text-align: center; }
.cta-text { font-size: 16px; color: #3a3a3a; line-height: 1.9; margin-bottom: 32px; }

/* ─── Page Hero ─────────────────────────────────────── */
.page-hero-title--nowrap {
  white-space: nowrap;
}
@media (max-width: 768px) {
  .page-hero-title--nowrap {
    white-space: normal;
    font-size: 18px;
  }
}
.page-hero {
  padding: 72px 0 56px;
  background: linear-gradient(160deg, #fafafa 0%, #f5f5ff 100%);
  border-bottom: 1px solid var(--border);
}
.page-hero-sm { padding: 48px 0 36px; }
.page-hero-label { margin-bottom: 10px; }
.page-hero-title {
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 300;
  letter-spacing: -0.01em;
  color: #111;
  max-width: 700px;
}

/* ─── Message page ─────────────────────────────────── */
.section-message { padding: 80px 0; }
.message-body { max-width: 660px; }
.message-para {
  font-size: 15px;
  line-height: 2;
  color: #2a2a2a;
  margin-bottom: 24px;
}

/* ─── Creators ─────────────────────────────────────── */
.section-creators { padding: 72px 0; }
.creators-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.creator-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.25s;
}
.creator-card:hover { box-shadow: var(--shadow-hover); }
.creator-card-accent {
  height: 4px;
  background: var(--creator-color, #E4DBEF);
}
.creator-img-wrap { padding: 24px 24px 0; display: flex; justify-content: center; }
.creator-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
  border: 3px solid var(--creator-color, #E4DBEF);
}
.creator-img-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--creator-color, #E4DBEF);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: 300;
}
.creator-info { padding: 16px 24px 24px; }
.creator-name-group { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.creator-name { font-size: 20px; font-weight: 500; }
.creator-en-name { font-size: 12px; color: #9ca3af; letter-spacing: 0.04em; }
.creator-genre {
  display: inline-block;
  font-size: 11px;
  color: #6b7280;
  background: #f5f5f5;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.creator-message { font-size: 13px; color: #555; line-height: 1.7; margin-bottom: 14px; }
.creator-sns { display: flex; gap: 8px; }
.creator-sns-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: #f5f5f5;
  border-radius: 6px;
  color: #6b7280;
  transition: all 0.15s;
  font-size: 14px;
}
.creator-sns-link:hover { background: #ebebeb; color: #333; }

/* ─── Services detail pages ─────────────────────────── */
.section-page-body { padding: 56px 0 32px; }
.page-body-text {
  font-size: 15px;
  line-height: 1.9;
  color: #333;
}
.page-body-text p { margin-bottom: 20px; }
.section-service-items { padding: 0 0 40px; }
.subsection-title {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.service-item-list { display: flex; flex-direction: column; gap: 10px; }
.service-item-entry {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 14px;
  color: #333;
}
.item-bullet { color: #aaa; font-size: 12px; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.pricing-card {
  background: #fafafa;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}
.pricing-plan-name { font-size: 12px; color: #9ca3af; margin-bottom: 6px; }
.pricing-price { font-size: 22px; font-weight: 500; color: #111; margin-bottom: 6px; }
.pricing-content { font-size: 13px; color: #555; }
.pricing-notes { font-size: 12px; color: #9ca3af; margin-top: 6px; }
.pricing-notes-general { font-size: 13px; color: #6b7280; margin-bottom: 40px; }

/* Staff */
.staff-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.staff-card {
  display: flex;
  gap: 16px;
  background: #fafafa;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}
.staff-img { width: 72px; height: 72px; object-fit: cover; object-position: top; border-radius: 50%; }
.staff-img-placeholder {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--gray);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 300; color: #666;
  flex-shrink: 0;
}
.staff-name { font-size: 16px; font-weight: 500; margin-bottom: 2px; }
.staff-area { font-size: 12px; color: #9ca3af; margin-bottom: 8px; }
.staff-desc { font-size: 13px; color: #555; }
.staff-clients { margin-top: 8px; }
.clients-label { font-size: 11px; color: #9ca3af; }
.client-name {
  display: inline-block;
  font-size: 11px;
  background: #f0f0f0;
  padding: 2px 8px;
  border-radius: 4px;
  margin: 2px;
}
.staff-portfolio-link { display: inline-block; font-size: 12px; color: #6d28d9; margin-top: 8px; }

/* Events */
.events-list { display: flex; flex-direction: column; gap: 16px; }
.event-card {
  display: flex;
  gap: 20px;
  background: #fafafa;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.event-img { width: 180px; object-fit: cover; flex-shrink: 0; }
.event-info { padding: 20px; }
.event-meta { display: flex; gap: 10px; margin-bottom: 6px; }
.event-year { font-size: 12px; color: #9ca3af; }
.event-venue { font-size: 12px; color: #9ca3af; }
.event-name { font-size: 17px; font-weight: 500; margin-bottom: 6px; }
.event-content { font-size: 13px; color: #555; }
.event-notes { font-size: 12px; color: #9ca3af; margin-top: 4px; }

/* Achievements */
.section-achievements { padding: 0 0 40px; }
.achievements-text { font-size: 15px; color: #333; line-height: 1.9; }

/* Company logo */
.company-logo-wrap { text-align: center; padding: 40px 0 32px; }
.company-logo { max-height: 120px; max-width: 320px; object-fit: contain; margin: 0 auto; }

/* CTA in pages */
.section-cta { padding: 48px 0 24px; text-align: center; }

/* ─── News pages ─────────────────────────────────── */
.section-news-list { padding: 60px 0; }
.news-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.filter-btn {
  padding: 6px 16px;
  font-size: 13px;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: #6b7280;
  transition: all 0.15s;
  background: #fff;
}
.filter-btn:hover, .filter-btn.active {
  background: #111;
  color: #fff;
  border-color: #111;
}
.news-list-full { display: flex; flex-direction: column; gap: 1px; }
.news-item-full {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #f3f4f6;
  text-decoration: none;
  color: inherit;
  transition: all 0.15s;
}
.news-item-full:hover { opacity: 0.7; }
.news-item-meta { display: flex; flex-direction: column; gap: 4px; min-width: 110px; }
.news-item-body { flex: 1; }
.news-item-title { font-size: 15px; font-weight: 400; margin-bottom: 4px; }
.news-item-excerpt { font-size: 12.5px; color: #9ca3af; }
.news-item-arrow { color: #ccc; }

/* News detail */
.section-news-detail { padding: 48px 0 80px; }
.back-link { display: inline-flex; align-items: center; font-size: 13px; color: #6b7280; margin-bottom: 28px; gap: 6px; }
.back-link:hover { color: #333; }
.news-detail-article { margin-bottom: 48px; }
.news-detail-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.news-detail-title { font-size: 26px; font-weight: 400; line-height: 1.4; margin-bottom: 28px; }
.news-detail-image-wrap { margin-bottom: 32px; }
.news-detail-image { width: 100%; border-radius: 12px; }
.news-detail-body { font-size: 15px; line-height: 2; color: #333; }
.news-detail-body p { margin-bottom: 20px; }

/* ─── Company ─────────────────────────────────────── */
.section-company { padding: 72px 0; }
.company-table { width: 100%; border-collapse: collapse; }
.company-table th {
  text-align: left;
  padding: 18px 24px;
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
  border-bottom: 1px solid var(--border);
  width: 180px;
  vertical-align: top;
}
.company-table td {
  padding: 18px 24px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  line-height: 1.7;
}
.company-list { padding-left: 0; display: flex; flex-direction: column; gap: 4px; }
.company-list li::before { content: '· '; color: #aaa; }

/* ─── Store ─────────────────────────────────────────── */
.section-store { padding: 72px 0; }
.store-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.store-link-card {
  background: #fafafa;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}
.store-link-name { font-size: 16px; font-weight: 500; margin-bottom: 8px; }
.store-link-desc { font-size: 13px; color: #6b7280; margin-bottom: 16px; }

/* ─── Contact ─────────────────────────────────────── */
.section-contact { padding: 64px 0 80px; }
.contact-description { font-size: 14px; color: #6b7280; margin-bottom: 40px; line-height: 1.8; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 13px; font-weight: 500; color: #374151; }
.required { color: #ef4444; font-size: 11px; }
.form-input, .form-select, .form-textarea {
  padding: 11px 14px;
  border: 1px solid #d1d5db;
  border-radius: 9px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  transition: border-color 0.15s;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: #a78bfa;
  box-shadow: 0 0 0 3px rgba(167,139,250,0.1);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; border-radius: 8px; padding: 12px 16px; font-size: 13px; margin-bottom: 20px; }
.form-submit { margin-top: 8px; }

/* Success */
.contact-success {
  text-align: center;
  padding: 64px 32px;
}
.success-icon {
  width: 64px; height: 64px;
  background: #f0fdf4;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  color: #16a34a;
  margin: 0 auto 20px;
}
.success-message { font-size: 15px; line-height: 1.9; color: #333; margin-bottom: 32px; }

/* ─── 404 ─────────────────────────────────────────── */
.error-page { padding: 120px 0; }
.error-code { font-size: 80px; font-weight: 200; color: #ddd; margin-bottom: 16px; }
.error-message { font-size: 16px; color: #6b7280; margin-bottom: 32px; }

/* ─── Empty ─────────────────────────────────────────── */
.empty-message { font-size: 14px; color: #9ca3af; text-align: center; padding: 32px; }

/* ─── Responsive grid adjustments ───────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .creators-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  section { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .creators-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .staff-grid { grid-template-columns: 1fr; }
  .store-links-grid { grid-template-columns: 1fr; }
  .news-item { flex-wrap: wrap; gap: 8px; }
  .hero-main-copy { font-size: 32px; }
}
