/* ============================================================================
   RESET & ROOT VARIABLES
   ============================================================================ */



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

:root {
  --green-deep:   #162f0c;
  --green-dark:   #1e4d10;
  --green-mid:    #2d7a14;
  --green-bright: #5cb81e;
  --green-light:  #a8d970;
  --green-tint:   #f2f9eb;
  --white:        #ffffff;
  --text-dark:    #162f0c;
  --text-muted:   #5a7a4a;
  --accent:       #7ecf2e;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--green-tint);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ============================================================================
   NAVIGATION
   ============================================================================ */

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  height: 68px;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(45, 122, 20, 0.15);
  box-shadow: 0 1px 12px rgba(22, 47, 12, 0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.nav-logo-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.nav-logo-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.nav-logo-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: 0.02em;
  line-height: 1.25;
}

.nav-logo-text span {
  display: block;
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--green-mid);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--green-mid);
}

.nav-cta {
  background: var(--green-bright);
  color: var(--white);
  padding: 0.5rem 1.35rem;
  border-radius: 100px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */

.hero {
  min-height: 100vh;
  padding-top: 68px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-image: url('images/lawn1.webp');
  background-size: cover;
  background-position: center 40%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(10, 28, 6, 0.82) 0%,
    rgba(10, 28, 6, 0.65) 55%,
    rgba(10, 28, 6, 0.30) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badges {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.badge-eco {
  background: rgba(92, 184, 30, 0.25);
  color: #c8f07a;
  border: 1px solid rgba(92, 184, 30, 0.45);
}

.badge-teen {
  background: rgba(255, 255, 255, 0.15);
  color: #e0ffc0;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-local {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

h1 em {
  color: #aaee55;
  font-style: normal;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 460px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--green-bright);
  color: var(--white);
  padding: 0.9rem 2.2rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  display: inline-block;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 0.9rem 2.2rem;
  border-radius: 100px;
  border: 2px solid rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  display: inline-block;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-ring {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: float 4s ease-in-out infinite;
  box-shadow: 0 0 60px rgba(92, 184, 30, 0.2);
}

.logo-ring::before {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.2);
}

.logo-ring-img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  overflow: hidden;
}

.logo-ring-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

/* ============================================================================
   TRUST BAR
   ============================================================================ */

.trust-bar {
  background: rgba(22, 47, 12, 0.96);
  border-bottom: 2px solid rgba(92, 184, 30, 0.3);
}

.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}

.trust-item {
  flex: 1;
  min-width: 150px;
  padding: 1.25rem 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-item:last-child {
  border-right: none;
}

.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(92, 184, 30, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon img {
  width: 36px;
  height: 36px;
  object-fit: center;
}

.trust-num {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--green-light);
  line-height: 1;
}

.trust-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 500;
  margin-top: 0.1rem;
}

.grass-strip {
  background: rgba(22, 47, 12, 0.96);
  overflow: hidden;
  line-height: 0;
}

.grass-strip svg {
  display: block;
  width: 100%;
  height: 60px;
}

/* ============================================================================
   SERVICES SECTION
   ============================================================================ */

.services {
  padding: 5.5rem 2rem;
  position: relative;
  background-image: url('images/dirt.jpg');
  background-size: cover;
  background-position: center;
}

.services::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(8, 16, 4, 0.75);
  pointer-events: none;
}

.services .section-header,
.services .services-grid {
  position: relative;
  z-index: 1;
}

.services .section-tag  { color: var(--green-light); }
.services h2            { color: var(--white); }
.services .section-desc { color: rgba(255, 255, 255, 0.65); }

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 0.75rem;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.section-desc {
  color: var(--text-muted);
  font-size: 0.975rem;
  line-height: 1.75;
}

.services-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.25rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(168, 217, 112, 0.2);
  border-radius: 18px;
  padding: 2rem 1.25rem 1.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  backdrop-filter: blur(4px);
  cursor: default;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s, background 0.25s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4);
  border-color: rgba(92, 184, 30, 0.55);
  background: rgba(255, 255, 255, 0.12);
}

.service-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--green-dark);
  border: 2px solid rgba(92, 184, 30, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.service-icon img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  display: block;
}

.service-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.service-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
}

/* ============================================================================
   OUR WORK
   ============================================================================ */

.our-work {
  background: var(--white);
  padding: 5.5rem 2rem;
}

.work-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(300px, 1fr));
  gap: 1.5rem;
}

.work-card {
  position: relative;
  height: 340px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(45, 122, 20, 0.12);
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: transform 0.4s ease;
}

.work-card:hover img {
  transform: scale(1.04) translateZ(0);
}

.work-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(to top, rgba(22, 47, 12, 0.85) 0%, transparent 100%);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
}

/* ============================================================================
   EQUIPMENT SECTION
   ============================================================================ */

.equipment {
  background: var(--green-deep);
  padding: 5.5rem 2rem;
}

.equipment .section-tag  { color: var(--accent); }
.equipment h2            { color: var(--white); }
.equipment .section-desc { color: rgba(255, 255, 255, 0.55); }

.equip-grid {
  max-width: 1100px;
  margin: 2.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.equip-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(168, 217, 112, 0.15);
}

.equip-card-photo {
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.equip-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.equip-placeholder {
  width: 100%;
  height: 260px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(168, 217, 112, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.equip-placeholder svg {
  opacity: 0.25;
}

.equip-placeholder-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 500;
}

.equip-info {
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
}

.equip-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-light);
  margin-bottom: 0.3rem;
}

.equip-desc {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.55;
}

.equip-badge {
  display: inline-block;
  margin-top: 0.6rem;
  background: rgba(92, 184, 30, 0.18);
  color: var(--accent);
  border: 1px solid rgba(92, 184, 30, 0.3);
  border-radius: 100px;
  padding: 0.2rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* ============================================================================
   ABOUT SECTION
   ============================================================================ */

.about {
  background: var(--green-tint);
  padding: 5.5rem 2rem;
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about h2 { color: var(--text-dark); }

.about-p {
  color: var(--text-muted);
  line-height: 1.85;
  font-size: 0.975rem;
  margin-bottom: 1rem;
}

.pillars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  border: 1px solid rgba(45, 122, 20, 0.12);
  border-radius: 12px;
  padding: 1rem 1.25rem;
}

.pillar-icon-wrap {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--green-dark);
  border: 2px solid rgba(92, 184, 30, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar-icon-wrap img {
  width: 35px;
  height: 35px;
  object-fit: contain;
  display: block;
}

.pillar-title {
  font-weight: 700;
  color: var(--green-dark);
  font-size: 0.93rem;
  margin-bottom: 0.2rem;
}

.pillar-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.about-quote {
  background: var(--green-deep);
  border: 1px solid rgba(92, 184, 30, 0.25);
  border-radius: 20px;
  padding: 2.5rem;
}

.quote-mark {
  display: block;
  font-size: 5rem;
  font-weight: 900;
  line-height: 0.7;
  color: rgba(92, 184, 30, 0.3);
  margin-bottom: 1rem;
}

.quote-text {
  font-size: 1.3rem;
  font-weight: 700;
  font-style: italic;
  color: var(--white);
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

.quote-area {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(168, 217, 112, 0.15);
}

.quote-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.quote-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.quote-name {
  font-weight: 700;
  color: var(--green-light);
  font-size: 0.95rem;
}

.quote-role {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.42);
}

/* ============================================================================
   CTA SECTION
   ============================================================================ */

.cta-section {
  background: var(--green-mid);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(0, 0, 0, 0.025) 20px,
    rgba(0, 0, 0, 0.025) 21px
  );
}

.cta-inner {
  position: relative;
  max-width: 660px;
  margin: 0 auto;
}

.cta-section h2          { color: var(--white); margin-bottom: 1rem; }
.cta-section .section-tag { color: rgba(255, 255, 255, 0.55); }

.cta-sub {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.cta-cards {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-card {
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 1.25rem 1.75rem;
  min-width: 220px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s, transform 0.15s;
}

.cta-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.cta-card-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.52);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.3rem;
}

.cta-card-val {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--white);
}

/* ============================================================================
   FOOTER
   ============================================================================ */

footer {
  background: var(--green-deep);
  padding: 2.5rem 2rem;
  border-top: 1px solid rgba(168, 217, 112, 0.1);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.footer-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.footer-brand-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-brand {
  font-weight: 700;
  color: var(--green-light);
  font-size: 0.95rem;
}

.footer-note {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 0.1rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.42);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--green-light);
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.28);
}

/* ============================================================================
   ANIMATIONS & UTILITY
   ============================================================================ */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================================
   RESPONSIVE
   ============================================================================ */

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

  .nav-links  { display: none; }
  .hero-visual { display: none; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }

  .hero-desc    { margin: 0 auto 2rem; }
  .hero-badges  { justify-content: center; }
  .hero-actions { justify-content: center; }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .trust-inner { flex-direction: column; }

  .trust-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}