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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.7;
  color: #2c2416;
  background-color: #fafaf8;
  font-size: 16px;
}

/* Layout helpers */

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */

.site-header {
  background-color: #ffffff;
  color: #2c2416;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid #e5e5e3;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
}

/* Logo */

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #4a7c59, #8b6f47);
  color: #faf8f5;
  font-weight: 700;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 1.1rem;
  color: #355E3B;
}

.logo-tagline {
  font-size: 0.8rem;
  color: #6b6b67;
  font-weight: 400;
}

/* Navigation */

.site-nav {
  position: relative;
}

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

.nav-links a {
  text-decoration: none;
  color: #2c2416;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a:hover {
  color: #355E3B;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #355E3B;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Mobile nav toggle */

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid #d0d0ce;
  border-radius: 0.5rem;
  color: #2c2416;
  padding: 0.4rem 0.7rem;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.nav-toggle:hover {
  background-color: #f5f5f3;
  border-color: #355E3B;
}

/* Hero */

.hero {
  padding: 0 0 3rem;
  position: relative;
  overflow: hidden;
}

.hero-banner {
  background: linear-gradient(135deg, #355E3B 0%, #2c4a31 100%);
  padding: 2rem 0;
  text-align: center;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero-banner h1 {
  color: #ffffff;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-banner h3 {
  color: #ffffff;
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.01em;
  opacity: 0.95;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('background4.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(0.5px);
  transform: scale(1.02);
  z-index: -1;
  image-rendering: auto;
  image-rendering: -webkit-optimize-contrast;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(250, 250, 248, 0.6);
  z-index: 0;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 1rem;
}

.hero-text p {
  max-width: 32rem;
  margin-bottom: 2rem;
  color: #3a3a35;
  text-shadow: none;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.8;
}

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

.hero-contact-snippet {
  font-size: 0.9rem;
  color: #2c2416;
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid #e5e5e3;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.hero-contact-snippet p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  line-height: 1.6;
  text-shadow: none;
  font-weight: normal;
  max-width: none;
}

.hero-contact-snippet p:last-child {
  margin-bottom: 0;
}

.hero-contact-snippet strong {
  color: #355E3B;
  font-weight: 600;
}

/* Hero image */

.hero-image {
  display: flex;
  justify-content: flex-start;
  margin-left: -2rem;
}

@media (max-width: 1100px) {
  .hero-image {
    justify-content: center;
    margin-left: 0;
  }
}

.hero-photo {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  object-fit: cover;
  border: none;
  background-color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-photo:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}


/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  border-radius: 0.5rem;
  border: none;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn.primary {
  background-color: #355E3B;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(53, 94, 59, 0.25);
}

.btn.primary:hover {
  background-color: #2c4a31;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(53, 94, 59, 0.3);
}

.btn.secondary {
  background-color: #8b6f47;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(139, 111, 71, 0.25);
}

.btn.secondary:hover {
  background-color: #7a6040;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 111, 71, 0.3);
}

.btn.full-width {
  width: 100%;
}

/* Sections */

.section {
  padding: 5rem 0;
}

.section-alt {
  background-color: #ffffff;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  text-align: left;
  color: #2c2416;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-subtitle {
  margin-bottom: 3rem;
  color: #6b6b67;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Cards grid (services, etc.) */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e5e3;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: #355E3B;
}

.card h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: #355E3B;
  font-weight: 600;
}

.card p {
  font-size: 0.95rem;
  color: #6b6b67;
  line-height: 1.7;
}

/* About */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.2fr);
  gap: 3rem;
}

.about-grid p {
  color: #3a3a35;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.checklist {
  list-style: none;
  margin-top: 1.5rem;
}

.checklist li {
  padding-left: 1.75rem;
  position: relative;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: #3a3a35;
  line-height: 1.6;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #355E3B;
  font-size: 1rem;
  font-weight: 700;
}

.about-highlight {
  background-color: #f8f8f6;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid #e5e5e3;
}

.about-highlight h3 {
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
  color: #355E3B;
  font-weight: 600;
}

.about-highlight ul {
  list-style: none;
  padding: 0;
}

.about-highlight li {
  padding-left: 1.75rem;
  position: relative;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: #3a3a35;
  line-height: 1.6;
}

.about-highlight li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #355E3B;
  font-weight: 700;
}

/* Gallery */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  border-radius: 1rem;
  min-height: 240px;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  background-color: #2c2416;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: scale(1.03);
}

.gallery-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.05);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 60%);
  z-index: 1;
}

.gallery-label {
  position: relative;
  font-size: 1rem;
  font-weight: 600;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Contact */

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.contact-info-box h3 {
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  color: #355E3B;
  font-weight: 600;
}

.contact-info-box p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #3a3a35;
  line-height: 1.7;
}

.contact-info-box strong {
  color: #355E3B;
  font-weight: 600;
}

.contact-info-box ul {
  list-style: none;
  padding: 0;
}

.contact-info-box ul li {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: #6b6b67;
  padding-left: 1.5rem;
  position: relative;
}

.contact-info-box ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #355E3B;
  font-weight: 700;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 2rem;
}

.contact-form {
  background-color: #faf8f5;
  border-radius: 0.9rem;
  padding: 1.5rem;
  border: 1px solid #e8d5c4;
  box-shadow: 0 10px 25px rgba(44, 36, 22, 0.05);
}

.form-group {
  margin-bottom: 0.9rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #2c2416;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid #c8b299;
  padding: 0.5rem 0.6rem;
  font-size: 0.95rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4a7c59;
  box-shadow: 0 0 0 1px rgba(74, 124, 89, 0.5);
  background-color: #ffffff;
}

.form-note {
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: #6b5840;
}

.form-status {
  margin-top: 0.5rem;
  font-size: 0.85rem;
}

.form-status.success {
  color: #3d5a3f;
}

.form-status.error {
  color: #8b4513;
}

.contact-info {
  font-size: 0.95rem;
}

.contact-info h3 {
  margin-bottom: 0.4rem;
}

.contact-info h4 {
  margin-top: 1rem;
  margin-bottom: 0.25rem;
}

/* Footer */

.site-footer {
  background-color: #2c2416;
  color: #c8b299;
  padding: 2rem 0;
  margin-top: 0;
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}

.footer-small {
  font-size: 0.85rem;
  color: #a89074;
}

/* Responsive */

@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .hero-inner,
  .about-grid,
  .contact-grid,
  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    right: 0;
    top: 120%;
    flex-direction: column;
    background-color: #ffffff;
    padding: 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    display: none;
    border: 1px solid #e5e5e3;
  }
  
  .nav-links a::after {
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .cards-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .section {
    padding: 3rem 0;
  }
}
