:root {
  --forest: #123f2d;
  --forest-dark: #09291e;
  --leaf: #317a4d;
  --leaf-soft: #e7f2df;
  --sun: #f4bd2a;
  --plum: #5b255f;
  --cream: #fbf7ec;
  --stone: #e1dbcc;
  --stone-dark: #787060;
  --white: #ffffff;
  --ink: #17231a;
  --muted: #63715f;
  --shadow: 0 18px 50px rgba(18, 63, 45, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 102px;
  padding: 10px clamp(18px, 4vw, 56px);
  background: rgba(251, 247, 236, 0.94);
  border-bottom: 1px solid rgba(18, 63, 45, 0.12);
  backdrop-filter: blur(16px);
  overflow: visible;
}

.brand {
  position: relative;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  min-width: 0;
}

.brand img {
  width: 118px;
  height: 118px;
  margin: 0 0 -34px;
  object-fit: cover;
  background: var(--forest);
  border: 4px solid var(--cream);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(9, 41, 30, 0.24);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--forest);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  color: var(--stone-dark);
  font-size: 0.75rem;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 9px 12px;
  color: var(--forest);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--leaf-soft);
  outline: none;
}

.site-nav .nav-call {
  color: var(--forest-dark);
  background: var(--sun);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 8px;
  background: var(--forest);
  border: 0;
  border-radius: 6px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 3px 0;
  background: var(--white);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(56px, 8vw, 100px) clamp(18px, 5vw, 70px) clamp(34px, 5vw, 72px);
  background:
    linear-gradient(120deg, rgba(18, 63, 45, 0.96), rgba(18, 63, 45, 0.88) 45%, rgba(91, 37, 95, 0.84)),
    var(--forest);
  color: var(--white);
  overflow: hidden;
}

.hero-copy {
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sun);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.contact-section h2 {
  margin: 0;
  font-family: "Trebuchet MS", Arial, sans-serif;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 9ch;
  font-size: clamp(3.4rem, 8vw, 6.9rem);
  text-wrap: balance;
}

.hero-lede {
  max-width: 630px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  font-weight: 800;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 6px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  outline: none;
}

.button-primary {
  color: var(--forest-dark);
  background: var(--sun);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.button-ghost {
  color: var(--forest);
  background: var(--leaf-soft);
  border-color: rgba(49, 122, 77, 0.18);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 690px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.hero-points li {
  padding: 14px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.hero-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(150px, 0.75fr);
  grid-template-rows: 245px 245px;
  gap: 14px;
  min-width: 0;
}

.hero-showcase img,
.hero-logo-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-main-image {
  grid-row: 1 / 3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-side-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-logo-card {
  display: grid;
  align-content: center;
  gap: 16px;
  min-width: 0;
  padding: 20px;
  color: var(--forest);
  background: var(--cream);
}

.hero-logo-card img {
  width: 100%;
  max-width: 180px;
  margin: 0 auto;
  border: 0;
  box-shadow: none;
}

.hero-logo-card p {
  margin: 0;
  font-weight: 800;
  text-align: center;
}

.contact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0 clamp(18px, 5vw, 70px);
  transform: translateY(-22px);
  background: rgba(18, 63, 45, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.contact-strip a {
  display: grid;
  gap: 3px;
  min-width: 0;
  padding: 20px;
  background: var(--white);
  text-decoration: none;
}

.contact-strip a:hover,
.contact-strip a:focus-visible {
  background: var(--leaf-soft);
  outline: none;
}

.contact-strip span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-strip strong {
  color: var(--forest);
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  overflow-wrap: anywhere;
}

.section,
.contact-section {
  padding: clamp(58px, 8vw, 98px) clamp(18px, 5vw, 70px);
}

.section-light {
  background: var(--cream);
}

.section-heading {
  max-width: 770px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading-left {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.section h2,
.contact-section h2 {
  color: var(--forest);
  font-size: clamp(2rem, 4.6vw, 4.4rem);
  text-wrap: balance;
}

.section-heading p:not(.eyebrow),
.contact-copy > p {
  color: var(--muted);
  font-size: 1.05rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  min-width: 0;
  background: var(--white);
  border: 1px solid rgba(18, 63, 45, 0.12);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(18, 63, 45, 0.09);
  overflow: hidden;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-card div {
  padding: 18px;
}

.product-card h3,
.service-list h3 {
  margin: 0 0 8px;
  color: var(--forest);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 1.25rem;
}

.product-card p,
.service-list p {
  margin: 0;
  color: var(--muted);
}

.services-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
  background: var(--white);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-list article {
  padding: 22px;
  background: linear-gradient(180deg, var(--leaf-soft), #ffffff);
  border: 1px solid rgba(18, 63, 45, 0.12);
  border-radius: 8px;
}

.service-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  color: var(--white);
  font-weight: 900;
  background: var(--plum);
  border-radius: 50%;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 210px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  min-width: 0;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--stone);
}

.gallery-item-tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

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

.gallery-item figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 8px 10px;
  color: var(--white);
  font-weight: 800;
  background: rgba(9, 41, 30, 0.78);
  border-radius: 6px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.75fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(9, 41, 30, 0.98), rgba(18, 63, 45, 0.92)),
    var(--forest-dark);
}

.contact-section h2 {
  color: var(--white);
}

.contact-copy > p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.82);
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0 0;
}

.contact-details div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
}

.contact-details dt {
  color: var(--sun);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 4px 0 0;
  overflow-wrap: anywhere;
}

.contact-details dd span {
  display: block;
}

.flyer-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.flyer-stack img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
}

.flyer-stack img:nth-child(2) {
  margin-top: 42px;
}

.preview-offer {
  padding: clamp(48px, 7vw, 82px) clamp(18px, 5vw, 70px);
  background:
    radial-gradient(circle at top left, rgba(244, 189, 42, 0.22), transparent 34%),
    linear-gradient(135deg, #fff8df, #eef6e7 58%, #ffffff);
}

.preview-offer-card {
  max-width: 940px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 48px);
  text-align: center;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(18, 63, 45, 0.14);
  border-radius: 8px;
  box-shadow: 0 20px 54px rgba(18, 63, 45, 0.14);
}

.preview-offer-card h2 {
  max-width: 760px;
  margin: 0 auto;
  color: var(--forest);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.preview-offer-card p:not(.eyebrow) {
  max-width: 740px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.button-preview {
  margin-top: 26px;
  color: var(--white);
  background: linear-gradient(135deg, var(--forest), var(--leaf));
  box-shadow: 0 14px 32px rgba(18, 63, 45, 0.22);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 70px);
  color: rgba(255, 255, 255, 0.82);
  background: var(--forest-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-footer img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 6px;
}

.site-footer p {
  margin: 0;
}

.site-footer div p {
  color: var(--white);
  font-weight: 900;
}

@media (max-width: 1040px) {
  .hero,
  .services-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: none;
  }

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

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

@media (max-width: 760px) {
  .site-header {
    min-height: 86px;
  }

  .brand img {
    width: 82px;
    height: 82px;
    margin-bottom: -20px;
  }

  .brand small {
    white-space: normal;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 18px;
    left: 18px;
    display: none;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 10px;
    background: var(--white);
    border: 1px solid rgba(18, 63, 45, 0.12);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 12px;
  }

  .hero {
    padding-top: 48px;
  }

  .hero h1 {
    font-size: clamp(3rem, 17vw, 4.8rem);
  }

  .hero-showcase {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .hero-main-image,
  .hero-side-image {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .hero-logo-card {
    display: none;
  }

  .hero-points,
  .contact-strip,
  .service-list,
  .contact-details,
  .flyer-stack {
    grid-template-columns: 1fr;
  }

  .contact-strip {
    transform: none;
    margin-top: 0;
    border-radius: 0;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 190px;
  }

  .flyer-stack img:nth-child(2) {
    margin-top: 0;
  }

  .preview-offer-card {
    text-align: left;
  }

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

@media (max-width: 480px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand {
    gap: 10px;
  }

  .brand img {
    width: 72px;
    height: 72px;
    margin-bottom: -16px;
    border-width: 3px;
  }

  .brand span {
    max-width: 142px;
  }

  .brand strong {
    font-size: 0.9rem;
  }

  .brand small {
    font-size: 0.68rem;
  }

  .hero,
  .section,
  .contact-section {
    padding-inline: 16px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .preview-offer {
    padding-inline: 16px;
  }

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