:root {
  --forest: #163528;
  --forest-mid: #1f4a35;
  --leaf: #2f6b4a;
  --moss: #3d8f62;
  --sage: #7cb392;
  --mist: #eef5f0;
  --foam: #f6faf7;
  --ink: #14241c;
  --muted: #4d6356;
  --white: #ffffff;
  --gold: #c9a227;
  --gold-dark: #a8861a;
  --line: rgba(22, 53, 40, 0.12);
  --container: 1140px;
  --font-head: "Fraunces", "Georgia", serif;
  --font-body: "DM Sans", "Segoe UI", sans-serif;
  --radius: 6px;
  --shadow: 0 22px 48px rgba(22, 53, 40, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink);
  background:
    radial-gradient(ellipse at 6% -8%, rgba(63, 143, 98, 0.14), transparent 42%),
    radial-gradient(ellipse at 100% 0%, rgba(201, 162, 39, 0.08), transparent 38%),
    linear-gradient(180deg, #f4f9f5 0%, var(--mist) 45%, #ffffff 100%);
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
.btn,
.nav a,
.logo-text,
.section-label,
.eyebrow,
.stat-num {
  font-family: var(--font-head);
  letter-spacing: 0.01em;
}

.container {
  width: min(calc(100% - 2.5rem), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--leaf);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(22, 53, 40, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(22, 53, 40, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: 74px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
  flex-shrink: 0;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.1);
}

.logo-text {
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.1;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin-left: auto;
}

.nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav a:hover,
.nav a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  color: var(--forest);
  background: var(--gold);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  padding: 0.65rem 1rem;
  border-radius: var(--radius);
  transition: background 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--gold-dark);
  color: #fff;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  border-radius: var(--radius);
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: var(--gold);
  color: var(--forest);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.9rem 1.45rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.btn:hover {
  background: var(--gold-dark);
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.btn-dark {
  background: var(--forest);
  color: #fff;
}

.btn-dark:hover {
  background: var(--forest-mid);
  color: #fff;
}

/* Hero */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(105deg, rgba(22, 53, 40, 0.88) 0%, rgba(31, 74, 53, 0.7) 48%, rgba(47, 107, 74, 0.42) 100%),
    url("assets/hero.jpg") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(to top, var(--mist), transparent);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
  padding: 4.5rem 0 5rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.1rem;
}

.brand-mark img {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  padding: 4px;
}

.brand-mark span {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1;
}

.eyebrow,
.section-label {
  display: inline-block;
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 0.85rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.08;
  font-weight: 700;
  max-width: 14ch;
}

.hero-lead {
  margin: 1.1rem 0 0;
  max-width: 40ch;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.hero-phone {
  margin-top: 1.5rem;
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 700;
}

.hero-phone span {
  display: block;
  font-size: 0.9rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.2rem;
}

.hero-phone a:hover {
  color: var(--gold);
}

.hero-visual {
  position: relative;
  min-height: 420px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  animation: floatSoft 6s ease-in-out infinite;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.hero-visual::after {
  content: "Outdoor Living";
  position: absolute;
  left: 1.4rem;
  bottom: 1.4rem;
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  z-index: 1;
}

@keyframes floatSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: linear-gradient(180deg, #ffffff 0%, var(--foam) 100%);
}

.section-head {
  max-width: 640px;
  margin-bottom: 2.4rem;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head h2,
.page-intro h1 {
  margin: 0;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.12;
  color: var(--forest);
}

.section-lead {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

/* About teaser */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 420px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1;
}

.about-badge strong {
  background: var(--gold);
  color: var(--forest);
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  padding: 1rem 1.1rem 0.85rem;
  border-radius: 8px;
}

.about-badge span {
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
  max-width: 8ch;
}

.about-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  line-height: 1.15;
  color: var(--forest);
}

.about-copy p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.about-list {
  display: grid;
  gap: 0.55rem;
  margin: 1.2rem 0 1.5rem;
}

.about-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--ink);
  font-weight: 600;
}

.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--moss);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0 0 1.35rem;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.service-card > img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 1rem;
}

.service-card h3,
.service-card p,
.service-card .more {
  padding-left: 1.35rem;
  padding-right: 1.35rem;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--mist), #d8ebe0);
  color: var(--leaf);
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.85rem 1.35rem;
}

.service-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.45rem;
  color: var(--forest);
}

.service-card p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.service-card .more {
  color: var(--leaf);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
}

.service-card .more:hover {
  color: var(--gold-dark);
}

/* Why choose */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.why-card {
  background: #fff;
  border-radius: 10px;
  padding: 1.4rem 1.2rem;
  border: 1px solid var(--line);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.why-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  color: var(--forest);
}

.why-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.stat-item {
  text-align: center;
  padding: 1.4rem 1rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  border: 1px solid var(--line);
}

.stat-num {
  display: block;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--leaf);
  line-height: 1;
}

.stat-item span:last-child {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.quote-card {
  background: #fff;
  border-left: 3px solid var(--moss);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 10px 28px rgba(22, 53, 40, 0.06);
}

.stars {
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 0.7rem;
}

.quote-card p {
  margin: 0 0 1.1rem;
  color: var(--muted);
  font-size: 1.02rem;
}

.quote-card strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--forest);
}

.quote-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.9rem;
  max-width: 820px;
  margin-inline: auto;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.2rem 1.35rem;
}

.faq-item h3 {
  margin: 0 0 0.55rem;
  font-size: 1.25rem;
  color: var(--forest);
}

.faq-item p {
  margin: 0;
  color: var(--muted);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.gallery-item {
  position: relative;
  min-height: 240px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(22, 53, 40, 0.12);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.1rem;
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  background: linear-gradient(to top, rgba(22, 53, 40, 0.85), transparent);
}

/* Mission / values */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.value-card {
  background: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  border: 1px solid var(--line);
}

.value-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.35rem;
  color: var(--forest);
}

.value-card p {
  margin: 0;
  color: var(--muted);
}

/* CTA */
.section-cta {
  padding: 0 0 5rem;
}

.cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background:
    linear-gradient(115deg, rgba(22, 53, 40, 0.92), rgba(47, 107, 74, 0.82)),
    url("assets/cta.jpg") center / cover no-repeat;
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-inner {
  position: relative;
  z-index: 1;
  padding: 3.2rem 2.4rem;
  max-width: 720px;
}

.cta-banner .section-label {
  color: var(--gold);
}

.cta-phone {
  margin: 0.4rem 0 0.8rem;
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
}

.cta-inner h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  line-height: 1.15;
}

.cta-inner p {
  margin: 0 0 1.4rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 48ch;
}

/* Page hero */
.page-hero {
  background:
    linear-gradient(115deg, rgba(22, 53, 40, 0.9), rgba(47, 107, 74, 0.72)),
    url("assets/hero.jpg") center / cover no-repeat;
  color: #fff;
  padding: 3.5rem 0 3.2rem;
}

.page-intro .breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
}

.page-intro .breadcrumb a:hover {
  color: var(--gold);
}

.page-intro h1 {
  color: #fff;
}

.page-intro p {
  margin: 0.85rem 0 0;
  max-width: 54ch;
  color: rgba(255, 255, 255, 0.88);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  align-items: start;
}

.contact-panel,
.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.6rem 1.5rem;
}

.contact-panel h2,
.contact-form h2 {
  margin: 0 0 1rem;
  font-size: 1.6rem;
  color: var(--forest);
}

.contact-detail {
  margin-bottom: 1.2rem;
}

.contact-detail h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  color: var(--leaf);
}

.contact-detail p,
.contact-detail a {
  margin: 0;
  color: var(--muted);
}

.contact-detail a:hover {
  color: var(--forest);
}

.form-grid {
  display: grid;
  gap: 0.75rem;
}

.form-grid label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
}

.form-grid input,
.form-grid textarea,
.form-grid select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.75rem 0.85rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-grid input:focus,
.form-grid textarea:focus,
.form-grid select:focus {
  outline: none;
  border-color: var(--moss);
  box-shadow: 0 0 0 3px rgba(61, 143, 98, 0.18);
}

.form-grid textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  margin: 0.75rem 0 0;
  font-size: 0.92rem;
  color: var(--leaf);
  min-height: 1.2em;
}

.service-detail {
  display: grid;
  gap: 1.5rem;
}

.service-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.6rem 1.5rem;
}

.service-block h2 {
  margin: 0 0 0.7rem;
  font-size: 1.6rem;
  color: var(--forest);
}

.service-block p {
  margin: 0 0 0.8rem;
  color: var(--muted);
}

.service-block ul {
  display: grid;
  gap: 0.4rem;
  margin-top: 0.6rem;
}

.service-block li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--ink);
}

.service-block li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--moss);
  font-weight: 700;
}

/* Footer */
.site-footer {
  background: var(--forest);
  color: rgba(255, 255, 255, 0.82);
  padding: 3rem 0 2rem;
}

.footer-brand {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.6rem;
}

.footer-brand .logo-text {
  display: block;
  color: #fff;
  margin-bottom: 0.35rem;
}

.footer-brand p {
  margin: 0;
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.1rem;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

.copyright {
  margin: 1.2rem 0 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}

/* Reveal motion */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 280px;
    order: -1;
  }

  .services-grid,
  .gallery-grid,
  .mission-grid,
  .testimonials {
    grid-template-columns: 1fr 1fr;
  }

  .why-grid,
  .stats {
    grid-template-columns: 1fr 1fr;
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 0.6rem 1.25rem 1rem;
    background: rgba(22, 53, 40, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 0.85rem 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .services-grid,
  .gallery-grid,
  .mission-grid,
  .testimonials,
  .why-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    padding: 2.4rem 1.4rem;
  }

  .hero h1 {
    max-width: none;
  }
}
