:root {
  --green-900: #123524;
  --green-800: #1c4a35;
  --green-700: #236643;
  --green-600: #2f7d4f;
  --green-100: #eaf5ed;
  --green-50: #f5fbf6;
  --earth: #b6a36f;
  --ink: #17231c;
  --muted: #5a6b60;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(18, 53, 36, 0.16);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--green-50);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(245, 251, 246, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(18, 53, 36, 0.08);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--green-900);
}

.brand-logo {
  display: block;
  width: 168px;
  height: auto;
}

.brand-text {
  display: none;
}

.footer-branding {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-logo {
  display: block;
  width: 138px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.nav-links {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-weight: 700;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--green-700);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(47, 125, 79, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--green-800);
  box-shadow: 0 14px 30px rgba(47, 125, 79, 0.28);
}

.btn-outline {
  background: transparent;
  color: var(--green-800);
  border: 2px solid rgba(35, 102, 67, 0.22);
  box-shadow: none;
}

.btn-outline:hover {
  color: var(--white);
  border-color: var(--green-800);
}

.btn-small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.95rem;
}

.hero {
  padding: 88px 0 64px;
  background:
    radial-gradient(circle at 80% 20%, rgba(182, 163, 111, 0.28), transparent 32%),
    linear-gradient(135deg, var(--green-50) 0%, #ffffff 50%, var(--green-100) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 40px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-700);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  color: var(--green-900);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--green-900);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  color: var(--green-900);
}

.hero-text {
  max-width: 680px;
  font-size: 1.15rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-card {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(18, 53, 36, 0.08);
}

.hero-card h2 {
  font-size: 1.7rem;
  letter-spacing: -0.03em;
}

.hero-card ul {
  padding-left: 20px;
  margin-bottom: 0;
  color: var(--muted);
}

.hero-card li + li {
  margin-top: 10px;
}


.hero-visual {
  position: relative;
  min-height: 520px;
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}

.hero-visual .hero-card {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
}

.notice {
  padding: 18px 0;
  background: var(--green-900);
  color: var(--white);
}

.notice-content {
  display: flex;
  gap: 10px 18px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
}

.notice span {
  color: rgba(255, 255, 255, 0.82);
}

.section {
  padding: 84px 0;
  background: var(--white);
}

.section-muted {
  background: var(--green-100);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p,
.about-grid p,
.cta p,
.contact-grid p {
  color: var(--muted);
  font-size: 1.05rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  padding: 26px;
  border-radius: 22px;
  background: var(--green-50);
  border: 1px solid rgba(18, 53, 36, 0.08);
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 36px;
  align-items: center;
}

.about-box {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--green-900);
  color: var(--white);
  box-shadow: var(--shadow);
}

.about-box h3 {
  color: var(--white);
}

.about-box p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}


.photo-gallery-wrap {
  margin-top: 54px;
}

.gallery-heading {
  margin-bottom: 26px;
}

.photo-gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}

.photo-card {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(18, 53, 36, 0.08);
}

.photo-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.photo-card-large img {
  height: 100%;
  min-height: 100%;
}

.photo-card-large {
  grid-row: span 2;
}

.photo-card figcaption {
  padding: 14px 16px 16px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.cta {
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  color: var(--white);
}

.cta h2,
.cta .eyebrow {
  color: var(--white);
}

.cta p {
  color: rgba(255, 255, 255, 0.84);
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta .btn {
  background: var(--white);
  color: var(--green-800);
  flex-shrink: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 42px;
}

.contact-card {
  display: grid;
  gap: 14px;
}

.contact-card a {
  display: block;
  padding: 22px 24px;
  border-radius: 20px;
  background: var(--green-50);
  border: 1px solid rgba(18, 53, 36, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.contact-card a:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 125, 79, 0.32);
}

.contact-card span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-card strong {
  color: var(--green-900);
  font-size: 1.05rem;
  word-break: break-word;
}

.footer {
  padding: 26px 0;
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.82);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer p {
  margin-bottom: 0;
}

.footer a {
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 860px) {
  .nav {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 14px;
    font-size: 0.95rem;
  }

  .hero {
    padding: 54px 0 44px;
  }

  .hero-grid,
  .about-grid,
  .contact-grid,
  .photo-gallery {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-visual > img {
    min-height: 380px;
  }

  .hero-visual .hero-card {
    position: static;
    margin-top: 18px;
  }

  .photo-card-large {
    grid-row: auto;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .cta-box {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-content {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .brand {
    font-size: 1rem;
  }

  .brand-logo {
    width: 132px;
  }

  .footer-logo {
    width: 112px;
  }

  .btn-small {
    display: none;
  }

  .hero-card,
  .about-box {
    padding: 24px;
  }

  .photo-card img {
    height: 220px;
  }

  .section {
    padding: 62px 0;
  }
}
