:root {
  --black: #111111;
  --charcoal: #1b1b1b;
  --olive: #4f5f37;
  --olive-dark: #344124;
  --olive-soft: #eef2e8;
  --white: #ffffff;
  --off-white: #f7f7f4;
  --gray: #6f6f6f;
  --line: #dfdfd8;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.10);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--black);
  background: var(--off-white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 215px;
}

.brand img {
  width: 190px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--charcoal);
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--olive);
  color: var(--white);
}

.mobile-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 800;
}

.hero {
  background:
    linear-gradient(135deg, rgba(17,17,17,0.90), rgba(52,65,36,0.84)),
    radial-gradient(circle at top right, rgba(79,95,55,0.55), transparent 32%);
  color: var(--white);
  padding: 82px 0 76px;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
}

.kicker {
  color: #d7e2c7;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 12px;
}

h1, h2, h3 { line-height: 1.1; margin: 0 0 16px; }

h1 { font-size: clamp(2.35rem, 5vw, 4.8rem); letter-spacing: -0.05em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.04em; }
h3 { font-size: 1.35rem; }

.hero p,
.page-intro p {
  font-size: 1.12rem;
  max-width: 680px;
  color: rgba(255,255,255,0.88);
}

.hero-card {
  background: var(--white);
  color: var(--black);
  padding: 28px;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--white);
}

.button-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  border: 2px solid transparent;
}

.btn-primary { background: var(--olive); color: var(--white); }
.btn-primary:hover { background: var(--olive-dark); }
.btn-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn-secondary:hover { background: var(--white); color: var(--black); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: var(--olive-dark); }

.section { padding: 72px 0; }
.section.white { background: var(--white); }
.section.dark { background: var(--black); color: var(--white); }

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: start;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}

.card.olive {
  background: var(--olive-soft);
  border-color: #d6ddcb;
}

.card.dark-card {
  background: #181818;
  border-color: #2d2d2d;
  color: var(--white);
}

.card p { color: var(--gray); margin-bottom: 0; }
.card.dark-card p { color: rgba(255,255,255,0.76); }

.icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--olive);
  color: var(--white);
  font-weight: 900;
  margin-bottom: 18px;
}

.page-hero {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--black), var(--olive-dark));
  color: var(--white);
}

.page-intro p { color: rgba(255,255,255,0.86); }

.story-photo-placeholder {
  min-height: 440px;
  border: 2px dashed #a9b49a;
  border-radius: 28px;
  background: linear-gradient(135deg, #ffffff, var(--olive-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px;
  color: var(--olive-dark);
  font-weight: 800;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.service-list li {
  padding: 12px 0 12px 30px;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--olive);
  font-weight: 900;
}

.notice {
  border-left: 5px solid var(--olive);
  background: var(--olive-soft);
  padding: 18px 20px;
  border-radius: 14px;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 30px;
  box-shadow: var(--shadow);
}

form { display: grid; gap: 18px; }

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

label { font-weight: 800; display: block; margin-bottom: 7px; }

input, select, textarea {
  width: 100%;
  border: 1px solid #cfcfc8;
  border-radius: 12px;
  padding: 13px 14px;
  font: inherit;
  background: #fff;
}

textarea { min-height: 150px; resize: vertical; }

input:focus, select:focus, textarea:focus {
  outline: 3px solid rgba(79,95,55,0.22);
  border-color: var(--olive);
}

.footer {
  background: var(--black);
  color: var(--white);
  padding: 40px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.footer img { width: 180px; background: white; border-radius: 12px; padding: 8px; }
.footer p { color: rgba(255,255,255,0.72); }

.small { font-size: 0.92rem; color: var(--gray); }

@media (max-width: 900px) {
  .nav-wrap { flex-wrap: wrap; padding: 12px 0; }
  .mobile-toggle { display: inline-flex; }
  .nav-links { display: none; width: 100%; justify-content: flex-start; padding-bottom: 12px; }
  .nav-links.open { display: flex; }
  .hero-grid, .grid-2, .footer-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .hero { padding: 56px 0; }
  .section { padding: 54px 0; }
}

@media (max-width: 620px) {
  .brand img { width: 150px; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links a { width: 100%; border-radius: 12px; }
}


.about-content {
  max-width: 920px;
}
