:root {
  color-scheme: light;
  --forest: #244c3a;
  --pine: #2f6b4f;
  --sage: #c7d2c1;
  --stone: #f2efe8;
  --sand: #e7dfd1;
  --midnight: #1b2923;
  --white: #ffffff;
  --accent: #c79a45;
  --shadow: 0 20px 45px rgba(27, 41, 35, 0.15);
  --border: 1px solid rgba(36, 76, 58, 0.2);
}

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

body {
  font-family: "Source Sans 3", system-ui, -apple-system, sans-serif;
  color: var(--midnight);
  background: linear-gradient(180deg, #f9f6f0 0%, #f1efe6 50%, #f5f3ed 100%);
  line-height: 1.6;
  position: relative;
  isolation: isolate;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("Assets/Images/no%20background.png");
  background-repeat: no-repeat;
  background-position: center 18%;
  background-size: min(900px, 80vw);
  opacity: 0.06;
  pointer-events: none;
  z-index: -1;
}

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

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--pine);
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  color: var(--forest);
}

h1 {
  font-size: clamp(2.5rem, 3vw, 3.4rem);
  line-height: 1.1;
  margin: 0.6rem 0 1rem;
}

h2 {
  font-size: clamp(2rem, 2.5vw, 2.6rem);
  margin: 0.6rem 0 1rem;
}

h3 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}

p {
  font-size: 1rem;
  color: rgba(27, 41, 35, 0.9);
}

.btn {
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  font-family: "Source Sans 3", sans-serif;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 15px 30px rgba(36, 76, 58, 0.2);
}

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

.btn-ghost {
  background: transparent;
  border-color: rgba(36, 76, 58, 0.4);
  color: var(--forest);
}

.btn-outline {
  background: transparent;
  border-color: rgba(199, 154, 69, 0.5);
  color: var(--forest);
}

.section {
  padding: 5rem 0;
}

.site-header {
  background: var(--stone);
  border-bottom: 1px solid rgba(36, 76, 58, 0.12);
}

.topbar {
  padding: 1.25rem 0;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  gap: 0.9rem;
  align-items: center;
}

.brand-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(140deg, var(--forest), var(--pine));
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.brand-mark span {
  position: absolute;
  width: 30px;
  height: 3px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 999px;
}

.brand-mark span:nth-child(1) {
  top: 12px;
}

.brand-mark span:nth-child(2) {
  top: 22px;
  width: 22px;
}

.brand-mark span:nth-child(3) {
  top: 32px;
  width: 26px;
}

.brand-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--forest);
}

.brand-tag {
  font-size: 0.9rem;
  color: rgba(27, 41, 35, 0.7);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.contact-mini {
  text-align: right;
  font-size: 0.9rem;
  color: rgba(27, 41, 35, 0.75);
}

.contact-mini strong {
  display: block;
  font-size: 1rem;
  color: var(--forest);
}

.main-nav {
  background: var(--sand);
  border-top: 1px solid rgba(36, 76, 58, 0.1);
}

.nav-inner {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 0.9rem 0;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--forest);
}

.hero {
  padding: 5.5rem 0 6rem;
  background: radial-gradient(circle at 20% 20%, rgba(199, 154, 69, 0.18), transparent 55%),
    linear-gradient(140deg, rgba(47, 107, 79, 0.12), transparent 55%);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.lead {
  font-size: 1.1rem;
  margin-bottom: 1.8rem;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.4rem;
}

.hero-stats strong {
  font-size: 1.4rem;
  color: var(--forest);
  display: block;
}

.hero-card {
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: var(--border);
  overflow: hidden;
  transform: translateY(10px);
  animation: floatUp 1s ease forwards;
}

.hero-image {
  height: 240px;
  background-image: linear-gradient(120deg, rgba(36, 76, 58, 0.15), rgba(199, 154, 69, 0.18)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='640' height='420'%3E%3Crect width='640' height='420' fill='%23d7e3d0'/%3E%3Cpath d='M0 300 C120 260 200 320 320 300 C440 280 520 320 640 290 L640 420 L0 420 Z' fill='%2387a98b'/%3E%3Cpath d='M0 260 C140 230 260 280 380 260 C500 240 580 270 640 250 L640 420 L0 420 Z' fill='%236f9376'/%3E%3Cpath d='M60 170 L120 60 L180 170 Z' fill='%234d6d55'/%3E%3Cpath d='M160 170 L220 70 L280 170 Z' fill='%233f6048'/%3E%3Cpath d='M420 190 L480 80 L540 190 Z' fill='%234d6d55'/%3E%3Ccircle cx='530' cy='90' r='35' fill='%23f4d28b'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}

.hero-card-body {
  padding: 2rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.3rem;
  font-size: 0.85rem;
}

.hero-badges span {
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: rgba(36, 76, 58, 0.08);
  color: var(--forest);
  font-weight: 600;
}

.section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.services {
  background: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--stone);
  border-radius: 18px;
  padding: 2rem;
  border: var(--border);
  box-shadow: 0 15px 30px rgba(27, 41, 35, 0.08);
}

.service-card ul {
  list-style: none;
  margin-top: 1.2rem;
  color: rgba(27, 41, 35, 0.75);
}

.service-card li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.2rem;
}

.service-card li::before {
  content: "•";
  color: var(--accent);
  position: absolute;
  left: 0;
}

.portfolio {
  background: linear-gradient(180deg, rgba(199, 154, 69, 0.08), transparent);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.portfolio-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: var(--border);
  display: grid;
}

.portfolio-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.image-one {
  background-image: linear-gradient(130deg, rgba(36, 76, 58, 0.15), rgba(199, 154, 69, 0.2)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='640' height='420'%3E%3Crect width='640' height='420' fill='%23e3dccb'/%3E%3Crect y='260' width='640' height='160' fill='%23c9bba2'/%3E%3Crect y='300' width='640' height='120' fill='%23b9ad97'/%3E%3Ccircle cx='120' cy='250' r='60' fill='%23a77a3a'/%3E%3Ccircle cx='220' cy='240' r='40' fill='%238e6327'/%3E%3Crect x='420' y='120' width='160' height='80' fill='%238a7f6a'/%3E%3C/svg%3E");
}

.image-two {
  background-image: linear-gradient(130deg, rgba(36, 76, 58, 0.15), rgba(199, 154, 69, 0.2)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='640' height='420'%3E%3Crect width='640' height='420' fill='%23dfe8d8'/%3E%3Crect y='260' width='640' height='160' fill='%23b3c3a4'/%3E%3Cpath d='M80 320 L140 160 L200 320 Z' fill='%2360866a'/%3E%3Cpath d='M220 320 L280 150 L340 320 Z' fill='%234f745a'/%3E%3Crect x='420' y='90' width='160' height='110' fill='%238aa18b'/%3E%3C/svg%3E");
}

.image-three {
  background-image: linear-gradient(130deg, rgba(36, 76, 58, 0.15), rgba(199, 154, 69, 0.2)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='640' height='420'%3E%3Crect width='640' height='420' fill='%23ede4d2'/%3E%3Crect y='250' width='640' height='170' fill='%23c6d2bf'/%3E%3Crect x='90' y='140' width='220' height='90' fill='%2397a887'/%3E%3Crect x='90' y='120' width='220' height='30' fill='%238b9a77'/%3E%3Crect x='370' y='120' width='170' height='110' fill='%23b5a68a'/%3E%3C/svg%3E");
}

.portfolio-body {
  padding: 1.6rem;
}

.process {
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 3rem;
  align-items: start;
}

.process-steps {
  display: grid;
  gap: 1.5rem;
}

.step {
  padding: 1.5rem;
  border-radius: 16px;
  border: var(--border);
  background: var(--stone);
}

.step span {
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 0.4rem;
}

.testimonials {
  background: linear-gradient(180deg, rgba(36, 76, 58, 0.06), transparent);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: 18px;
  padding: 1.8rem;
  border: var(--border);
  box-shadow: 0 12px 28px rgba(27, 41, 35, 0.08);
}

.testimonial-card span {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--forest);
}

.contact {
  background: var(--stone);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 3rem;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  border: var(--border);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--forest);
  font-size: 0.95rem;
}

input,
select,
textarea {
  font: inherit;
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(36, 76, 58, 0.2);
  background: #f9f8f4;
}

.form-note {
  font-size: 0.85rem;
  color: rgba(27, 41, 35, 0.6);
}

.site-footer {
  background: var(--midnight);
  color: #e5efe7;
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

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

.footer-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.25));
}

.site-footer h4 {
  color: #f7f2e9;
  margin-bottom: 0.6rem;
}

.site-footer p {
  color: rgba(229, 239, 231, 0.8);
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: rgba(229, 239, 231, 0.6);
}

@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar-actions {
    width: 100%;
    justify-content: space-between;
  }

  .nav-inner {
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }
}

@media (max-width: 680px) {
  .topbar-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}
