*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito Sans", system-ui, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: #1F2D24;
  background: #F5F1E8;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: "Lora", Georgia, serif;
  line-height: 1.2;
  color: #2D4A3E;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
  margin: 0 0 16px;
}

a {
  color: #C96E4B;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:hover {
  color: rgb(180.9230769231, 89.4564102564, 54.2769230769);
}

.showcase-skip {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.showcase-skip:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: 12px 16px;
  background: #2D4A3E;
  color: #fff;
  z-index: 9999;
}

.showcase-container {
  width: min(100% - 32px, 72rem);
  margin-inline: auto;
}

.showcase-section {
  padding: clamp(4rem, 10vw, 6rem) 0;
}

.showcase-section__title {
  margin-bottom: 16px;
}

.showcase-section__lede {
  font-size: 1.125rem;
  color: #5C6B62;
  max-width: 42rem;
  margin-bottom: 40px;
}

.showcase-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 8px;
  background: #C96E4B;
  color: #fff !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid #C96E4B;
  transition: transform 150ms cubic-bezier(0.22, 1, 0.36, 1), background 150ms cubic-bezier(0.22, 1, 0.36, 1);
}
.showcase-btn:hover {
  background: rgb(188.7692307692, 93.3358974359, 56.6307692308);
  border-color: rgb(188.7692307692, 93.3358974359, 56.6307692308);
  transform: translateY(-2px);
}
.showcase-btn:focus-visible {
  outline: 2px solid #2D4A3E;
  outline-offset: 3px;
}
.showcase-btn--secondary {
  background: transparent;
  color: #2D4A3E !important;
  border-color: #2D4A3E;
}
.showcase-btn--secondary:hover {
  background: #2D4A3E;
  color: #fff !important;
}
.showcase-btn--phone svg {
  flex-shrink: 0;
}

.showcase-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
@media (max-width: 767px) {
  .showcase-hero {
    min-height: 480px;
  }
}
.showcase-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.showcase-hero__media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}
.showcase-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45, 74, 62, 0.92) 0%, rgba(45, 74, 62, 0.55) 45%, rgba(45, 74, 62, 0.25) 100%);
}
.showcase-hero__content {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 8vw, 5rem) 0;
  color: #fff;
}
.showcase-hero__logo {
  display: block;
  width: min(200px, 55vw);
  height: auto;
  margin-bottom: 24px;
  border-radius: 8px;
}
.showcase-hero__eyebrow {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
}
.showcase-hero__title {
  color: #fff;
  max-width: 18ch;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}
.showcase-hero__lede {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 32px;
}
.showcase-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.showcase-hero .showcase-btn--secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff !important;
}
.showcase-hero .showcase-btn--secondary:hover {
  background: #fff;
  color: #2D4A3E !important;
}

.showcase-services {
  background: #FFFFFF;
}

.showcase-services__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .showcase-services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.showcase-card {
  background: #F5F1E8;
  border: 1px solid #D4C9B8;
  border-radius: 8px;
  padding: 32px;
}
.showcase-card h3 {
  color: #2D4A3E;
}
.showcase-card p {
  color: #5C6B62;
  margin-bottom: 0;
}

.showcase-about__grid {
  display: grid;
  gap: 40px;
  align-items: start;
}
@media (min-width: 768px) {
  .showcase-about__grid {
    grid-template-columns: 1.4fr 1fr;
  }
}

.showcase-about__note {
  font-size: 0.9375rem;
  color: #5C6B62;
  border-left: 3px solid #C96E4B;
  padding-left: 16px;
}

.showcase-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.showcase-stats li {
  background: #FFFFFF;
  border: 1px solid #D4C9B8;
  border-radius: 8px;
  padding: 24px;
}
.showcase-stats strong {
  display: block;
  font-family: "Lora", Georgia, serif;
  font-size: 1.25rem;
  color: #2D4A3E;
  margin-bottom: 4px;
}
.showcase-stats span {
  font-size: 0.9375rem;
  color: #5C6B62;
}

.showcase-cta {
  background: #2D4A3E;
  color: #fff;
  text-align: center;
}

.showcase-cta__title {
  color: #fff;
}

.showcase-cta__lede {
  color: rgba(255, 255, 255, 0.88);
  max-width: 36rem;
  margin-inline: auto;
  margin-bottom: 32px;
}

.showcase-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.showcase-cta .showcase-btn--secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff !important;
}
.showcase-cta .showcase-btn--secondary:hover {
  background: #fff;
  color: #2D4A3E !important;
}

.showcase-footer {
  background: rgb(33.4285714286, 54.9714285714, 46.0571428571);
  color: rgba(255, 255, 255, 0.88);
  padding: 40px 0 32px;
  font-size: 0.9375rem;
}

.showcase-footer__inner {
  display: grid;
  gap: 24px;
}

.showcase-footer__logo {
  display: block;
  width: min(160px, 40vw);
  height: auto;
  margin-bottom: 16px;
  border-radius: 8px;
}

.showcase-footer__name {
  font-family: "Lora", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
}

.showcase-footer__tagline {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

.showcase-footer__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.showcase-footer__contact a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}
.showcase-footer__contact a:hover {
  text-decoration: underline;
}

.showcase-footer__credit {
  margin: 16px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8125rem;
}
.showcase-footer__credit a {
  color: rgba(255, 255, 255, 0.85);
}

.showcase-footer__sep {
  margin: 0 8px;
}

@media (prefers-reduced-motion: reduce) {
  .showcase-btn {
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/*# sourceMappingURL=showcase.css.map */