:root {
  --white: #ffffff;
  --bg: #f7faf9;
  --surface: #edf5f2;
  --slate: #1a2e35;
  --slate-dark: #0d1f26;
  --jade: #00875a;
  --jade-dark: #006644;
  --jade-light: #36b37e;
  --jade-soft: rgba(0, 135, 90, 0.07);
  --gold: #c99a2e;
  --gold-soft: rgba(201, 154, 46, 0.12);
  --text: #1a2e35;
  --text-muted: #5a7a84;
  --border: #cdddd6;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(13, 31, 38, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.logo-mark {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--jade-light) 0%, var(--jade-dark) 100%);
  border-radius: 10px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.logo-name {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--slate);
}

.logo-sub {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--jade);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--slate);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}

.hero {
  padding: 130px 0 80px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.hero-center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--jade);
  margin-bottom: 20px;
}

.hero-center h1 {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--slate);
  margin-bottom: 24px;
}

.hero-center h1 em {
  font-style: italic;
  color: var(--jade-dark);
}

.hero-desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.btn-primary {
  background: var(--jade);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--jade-dark);
  transform: translateY(-1px);
}

.btn-outline {
  color: var(--slate);
  border: 1.5px solid var(--border);
  background: var(--white);
}

.btn-outline:hover {
  border-color: var(--jade);
  color: var(--jade);
}

.hero-dual {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.dual-item {
  flex: 1;
  min-width: 180px;
  max-width: 260px;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--jade);
  border-radius: 4px;
  text-align: left;
}

.dual-tag {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--jade);
  margin-bottom: 6px;
}

.dual-item strong {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate);
}

.section {
  padding: 96px 0;
}

.section-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--jade);
  margin-bottom: 12px;
}

.section-tag.light {
  color: var(--jade-light);
}

.section-head {
  margin-bottom: 48px;
}

.section-head.center {
  text-align: center;
}

.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(1.625rem, 3vw, 2.125rem);
  font-weight: 600;
  color: var(--slate);
}

.about {
  background: var(--white);
}

.about-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}

.about-meta h2 {
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--slate);
}

.about-quote {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--jade-dark);
  border-left: 3px solid var(--jade);
  padding-left: 24px;
  margin-bottom: 24px;
}

.about-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.85;
}

.about-content strong {
  color: var(--slate);
  font-weight: 600;
}

.business {
  background: var(--surface);
}

.biz-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.biz-card {
  padding: 36px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: box-shadow 0.3s;
}

.biz-card:hover {
  box-shadow: 0 8px 32px rgba(0, 135, 90, 0.1);
}

.biz-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.biz-index {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--jade);
}

.biz-header h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--slate);
}

.biz-card > p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.biz-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.biz-points li {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding: 14px 16px;
  background: var(--jade-soft);
  border-radius: 4px;
}

.biz-points strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 4px;
}

.advantages {
  background: var(--white);
}

.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.adv-item {
  padding: 36px 28px;
  border-right: 1px solid var(--border);
  transition: background 0.25s;
}

.adv-item:last-child {
  border-right: none;
}

.adv-item:hover {
  background: var(--jade-soft);
}

.adv-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--jade);
  opacity: 0.5;
  margin-bottom: 16px;
}

.adv-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 10px;
}

.adv-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.contact {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--slate-dark) 0%, #0a3d2e 100%);
  text-align: center;
}

.contact-inner {
  max-width: 680px;
}

.contact h2 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}

.contact-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 28px;
}

.contact-email {
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--jade-light);
  text-decoration: none;
  padding: 14px 32px;
  border: 1.5px solid rgba(54, 179, 126, 0.4);
  border-radius: 6px;
  transition: background 0.2s, border-color 0.2s;
}

.contact-email:hover {
  background: rgba(54, 179, 126, 0.1);
  border-color: var(--jade-light);
}

.contact-brand {
  margin-top: 32px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--jade-light);
}

.footer {
  padding: 28px 0;
  background: var(--slate-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.footer-name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.footer-inner p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 960px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .biz-cards {
    grid-template-columns: 1fr;
  }

  .adv-grid {
    grid-template-columns: 1fr;
  }

  .adv-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .adv-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 12px 24px 20px;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    display: block;
    padding: 14px 0;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .section {
    padding: 72px 0;
  }

  .contact {
    padding: 60px 0;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}
