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

/* ── BASE ── */
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
}

/* ── NAV (index, contact) ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #eee;
  border-top: 4px solid #e63329;
}
nav .inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
nav img { height: 34px; display: block; }
nav ul { list-style: none; display: flex; gap: 28px; }
nav ul a {
  font-size: 13px;
  font-weight: 600;
  color: #555;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.15s;
}
nav ul a:hover, nav ul a.active { color: #e63329; }

/* ── BUTTON ── */
.btn {
  display: inline-block;
  padding: 12px 28px;
  background: #e63329;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.15s;
}
.btn:hover { background: #c62a20; }

/* ── FOOTER (index, contact) ── */
footer {
  padding: 24px;
  text-align: center;
  font-size: 11px;
}
body.page-index footer,
body.page-contact footer {
  background: #111;
  color: #555;
}
body.page-index footer a,
body.page-contact footer a { color: #777; text-decoration: none; margin: 0 8px; }
body.page-index footer a:hover,
body.page-contact footer a:hover { color: #e63329; }

/* ── HERO (index) ── */
.hero {
  background: #f7f7f7;
  padding: 72px 24px 64px;
  text-align: center;
}
.hero h1 {
  font-size: clamp(26px, 5vw, 40px);
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 16px;
}
.hero h1 span { color: #e63329; }
.hero p {
  max-width: 560px;
  margin: 0 auto 32px;
  font-size: 16px;
  color: #666;
}

/* ── SERVICES (index) ── */
.services {
  max-width: 960px;
  margin: 0 auto;
  padding: 64px 24px;
}
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e63329;
  margin-bottom: 8px;
}
.section-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 40px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: #f7f7f7;
  border-radius: 4px;
  padding: 28px 24px;
  border-top: 3px solid #e63329;
}
.service-card .icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
}
.service-card .icon svg {
  width: 40px;
  height: 40px;
  fill: #e63329;
}
.service-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.service-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* ── CONTACT STRIP (index) ── */
.contact-strip {
  background: #1a1a1a;
  padding: 48px 24px;
  text-align: center;
}
.contact-strip h2 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.contact-strip p {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 24px;
}
.contact-strip .btn {
  background: #e63329;
  margin-right: 12px;
}
.contact-strip .btn-ghost {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid #555;
  color: #ccc;
  font-size: 14px;
  font-weight: 600;
  border-radius: 3px;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}
.contact-strip .btn-ghost:hover { border-color: #e63329; color: #e63329; }

/* ── CONTACT PAGE ── */
body.page-contact {
  background: #f7f7f7;
}
body.page-contact main {
  max-width: 680px;
  margin: 56px auto;
  padding: 0 24px 80px;
}
body.page-contact footer {
  position: fixed;
  bottom: 0;
  width: 100%;
}
.page-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e63329;
  margin-bottom: 8px;
}
body.page-contact h1 {
  font-size: 28px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 32px;
}
.contact-block {
  background: #fff;
  border-radius: 4px;
  border-top: 3px solid #e63329;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  overflow: hidden;
}
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid #f0f0f0;
}
.contact-row:last-child { border-bottom: none; }
.contact-row .icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.contact-row .icon svg {
  width: 16px;
  height: 16px;
  fill: #e63329;
}
.contact-row .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 3px;
}
.contact-row .value {
  font-size: 14px;
  color: #222;
}
.contact-row .value a {
  color: #222;
  text-decoration: none;
  transition: color 0.15s;
}
.contact-row .value a:hover { color: #e63329; }
.note {
  margin-top: 24px;
  font-size: 12px;
  color: #aaa;
  text-align: center;
}

/* ── PRIVACY PAGE ── */
body.page-privacy {
  background: #f2f2f2;
  line-height: 1.7;
}
body.page-privacy main {
  max-width: 720px;
  margin: 48px auto;
  padding: 0 24px 64px;
}
body.page-privacy h1 {
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
}
.meta {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 36px;
  letter-spacing: 0.04em;
}
body.page-privacy h2 {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 32px;
  margin-bottom: 10px;
  padding-left: 12px;
  border-left: 3px solid #e63329;
}
body.page-privacy p {
  font-size: 14px;
  margin-bottom: 10px;
}
body.page-privacy main ul {
  font-size: 14px;
  margin: 10px 0 10px 20px;
}
body.page-privacy main ul li {
  margin-bottom: 4px;
}
body.page-privacy main a {
  color: #e63329;
  text-decoration: none;
}
body.page-privacy main a:hover {
  text-decoration: underline;
}
body.page-privacy footer {
  color: #bbb;
}
