:root {
  --kgc-forest: #081830;
  --kgc-forest-deep: #050f22;
  --kgc-sand: #f6f2ea;
  --kgc-gold: #b89a63;
  --kgc-gold-soft: rgba(184, 154, 99, 0.16);
  --kgc-ink: #0c1b31;
  --kgc-ink-soft: #5f6979;
  --kgc-line: rgba(8, 24, 48, 0.12);
  --kgc-white: #ffffff;
  --kgc-shadow: 0 22px 55px rgba(8, 24, 48, 0.14);
  --kgc-radius-lg: 28px;
  --kgc-radius-md: 20px;
  --kgc-radius-sm: 14px;
  --kgc-section-gap: clamp(4.5rem, 7vw, 7rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--kgc-ink);
  background:
    radial-gradient(circle at top left, rgba(184, 154, 99, 0.16), transparent 34%),
    radial-gradient(circle at top right, rgba(8, 24, 48, 0.05), transparent 28%),
    linear-gradient(180deg, #fffdfa 0%, #f6f2ea 100%);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
}

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

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

.page-shell {
  overflow: clip;
}

.section-space {
  padding: var(--kgc-section-gap) 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--kgc-gold);
}

.eyebrow::before {
  content: "";
  width: 2.75rem;
  height: 1px;
  background: currentColor;
}

.section-title,
.page-title,
.display-title {
  font-family: "Cinzel", serif;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin: 0;
  text-transform: none;
}

.hero-title {
  font-family: "Cinzel", serif;
  letter-spacing: 0.02em;
  line-height: 0.98;
  margin: 0;
  text-transform: none;
}

.section-title {
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  max-width: 14ch;
}

.hero-title {
  font-size: clamp(2.35rem, 5.8vw, 4.7rem);
  max-width: 10ch;
}

.page-title {
  font-size: clamp(2.5rem, 6.5vw, 4.7rem);
  max-width: 10ch;
}

.page-title--compact {
  font-size: clamp(2.25rem, 5.5vw, 4.1rem);
  max-width: 11ch;
}

.section-intro,
.hero-copy,
.page-lead {
  color: var(--kgc-ink-soft);
  font-size: 1.02rem;
  max-width: 40rem;
}

.btn-kgc,
.btn-kgc-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3.45rem;
  padding: 0 1.5rem;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, color 0.24s ease, border-color 0.24s ease;
}

.btn-kgc {
  color: var(--kgc-white);
  background: linear-gradient(135deg, var(--kgc-forest), #112b56);
  box-shadow: 0 18px 40px rgba(8, 24, 48, 0.24);
}

.btn-kgc:hover,
.btn-kgc:focus {
  color: var(--kgc-white);
  transform: translateY(-2px);
  box-shadow: 0 20px 45px rgba(8, 24, 48, 0.3);
}

.btn-kgc-outline {
  color: var(--kgc-ink);
  border: 1px solid rgba(8, 24, 48, 0.18);
  background: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(8px);
}

.btn-kgc-outline:hover,
.btn-kgc-outline:focus {
  color: var(--kgc-forest);
  border-color: rgba(8, 24, 48, 0.34);
  transform: translateY(-2px);
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 1050;
  padding: 0.95rem 0;
  transition: padding 0.24s ease, background 0.24s ease, box-shadow 0.24s ease, backdrop-filter 0.24s ease;
}

.site-nav.is-scrolled {
  padding: 0.55rem 0;
  background: rgba(255, 252, 247, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 40px rgba(8, 24, 48, 0.08);
}

.nav-frame {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 12px 36px rgba(8, 24, 48, 0.08);
  border-radius: 999px;
  padding: 0.85rem 1rem;
  min-height: 6.15rem;
}

.navbar-brand {
  display: flex;
  align-items: center;
  margin-left: 0.8rem;
  margin-right: 1.25rem;
  padding: 0;
  flex-shrink: 0;
}

.navbar-brand img {
  width: 248px;
  max-width: 68vw;
}

.navbar .nav-link {
  color: var(--kgc-ink);
  font-weight: 700;
  padding: 0.65rem 1rem;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link[aria-current="page"] {
  color: var(--kgc-forest);
}

.navbar-toggler {
  border: 0;
  box-shadow: none !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(8,24,48,0.92)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.hero-shell,
.page-hero {
  position: relative;
  padding: clamp(2rem, 5vw, 3rem) 0 clamp(4.5rem, 8vw, 7rem);
}

.hero-shell::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 6% auto auto -16%;
  width: 44vw;
  height: 44vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 154, 99, 0.18) 0%, transparent 68%);
  pointer-events: none;
}

.hero-panel,
.page-hero-panel,
.surface-card,
.service-card,
.metric-card,
.gallery-card,
.story-card,
.contact-card,
.map-frame,
.process-card,
.service-area-card,
.cta-band {
  position: relative;
  border: 1px solid var(--kgc-line);
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(10px);
  box-shadow: var(--kgc-shadow);
}

.hero-panel {
  padding: clamp(1.5rem, 4vw, 2rem);
  border-radius: var(--kgc-radius-lg);
}

.hero-actions,
.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.hero-strip {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-chip {
  border-left: 3px solid var(--kgc-gold);
  background: rgba(255, 255, 255, 0.58);
  padding: 0.95rem 1rem;
  border-radius: 18px;
}

.hero-chip strong {
  display: block;
  font-size: 1rem;
}

.hero-visual {
  position: relative;
  margin-top: 1rem;
}

.hero-visual-frame {
  overflow: hidden;
  border-radius: calc(var(--kgc-radius-lg) + 6px);
  border: 1px solid rgba(255, 255, 255, 0.36);
  box-shadow: 0 28px 60px rgba(8, 24, 48, 0.2);
  min-height: clamp(25rem, 48vw, 42rem);
}

.hero-visual-frame img,
.gallery-card img,
.map-frame iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual-frame img {
  object-position: center 38%;
}

.hero-row-match {
  align-items: stretch !important;
}

.hero-panel-match,
.hero-visual-match {
  height: 100%;
}

.hero-visual-match {
  display: flex;
  margin-top: 0;
}

.hero-visual-frame-match {
  width: 100%;
  height: 100%;
  min-height: 100%;
}

.hero-float {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: min(72vw, 250px);
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: rgba(5, 15, 34, 0.88);
  color: var(--kgc-white);
  border: 1px solid rgba(184, 154, 99, 0.26);
  box-shadow: 0 18px 35px rgba(5, 15, 34, 0.28);
}

.hero-float p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.hero-float strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.metric-card,
.service-card,
.surface-card,
.story-card,
.contact-card,
.process-card,
.service-area-card {
  height: 100%;
  border-radius: var(--kgc-radius-md);
  padding: 1.4rem;
}

.metric-value {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  line-height: 0.95;
  color: var(--kgc-forest);
}

.metric-label,
.card-copy,
.card-copy p,
.story-card p,
.contact-card p,
.process-card p,
.service-area-card p {
  color: var(--kgc-ink-soft);
}

.service-card h3,
.story-card h3,
.contact-card h3,
.process-card h3,
.surface-card h3,
.service-area-card h3 {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.7rem;
}

.number-stamp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--kgc-gold-soft);
  color: var(--kgc-forest);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
}

.section-frame {
  padding: clamp(1.5rem, 4vw, 2rem);
  border-radius: var(--kgc-radius-lg);
  border: 1px solid rgba(8, 24, 48, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.92)),
    linear-gradient(90deg, rgba(8, 24, 48, 0.03), rgba(184, 154, 99, 0.1));
  box-shadow: var(--kgc-shadow);
}

.gallery-card {
  overflow: hidden;
  height: 100%;
  border-radius: var(--kgc-radius-lg);
}

.gallery-card img {
  aspect-ratio: 1 / 0.88;
  transition: transform 0.45s ease;
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.gallery-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem 1.1rem;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 15, 34, 0.86) 100%);
  color: var(--kgc-white);
}

.gallery-caption span {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.78;
}

.gallery-caption strong {
  font-size: 1.05rem;
}

.thumb-carousel {
  position: relative;
  height: 100%;
  padding: clamp(1.35rem, 3vw, 1.75rem);
  border-radius: var(--kgc-radius-lg);
  border: 1px solid var(--kgc-line);
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(10px);
  box-shadow: var(--kgc-shadow);
}

.thumb-carousel__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.thumb-carousel__label {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--kgc-gold);
}

.thumb-carousel__header h3 {
  margin: 0;
  font-size: clamp(1.2rem, 3vw, 1.45rem);
  font-weight: 800;
}

.thumb-carousel__copy {
  margin: 0.85rem 0 1.15rem;
  color: var(--kgc-ink-soft);
}

.thumb-carousel__nav {
  display: flex;
  gap: 0.65rem;
  flex-shrink: 0;
}

.thumb-carousel__nav-btn {
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(8, 24, 48, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--kgc-forest);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(8, 24, 48, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.thumb-carousel__nav-btn:hover,
.thumb-carousel__nav-btn:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(8, 24, 48, 0.24);
  box-shadow: 0 16px 30px rgba(8, 24, 48, 0.12);
}

.thumb-carousel__slider {
  overflow: hidden;
  border-radius: calc(var(--kgc-radius-md) + 2px);
  background: linear-gradient(135deg, rgba(5, 15, 34, 0.98), rgba(17, 43, 86, 0.92));
}

.thumb-carousel__stage {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
}

.thumb-carousel__stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-carousel__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(5, 15, 34, 0.68);
  backdrop-filter: blur(10px);
  color: var(--kgc-white);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.thumb-carousel__thumbs {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(5rem, 5.9rem);
  gap: 0.75rem;
  margin-top: 1rem;
  overflow-x: auto;
  padding-bottom: 0.2rem;
  scrollbar-width: thin;
}

.thumb-carousel__thumb {
  padding: 0;
  border: 0;
  background: transparent;
}

.thumb-carousel__thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
  border: 2px solid transparent;
  box-shadow: 0 10px 24px rgba(8, 24, 48, 0.12);
  opacity: 0.72;
  transition: transform 0.24s ease, opacity 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.thumb-carousel__thumb:hover img,
.thumb-carousel__thumb:focus-visible img,
.thumb-carousel__thumb.is-active img,
.thumb-carousel__thumb[aria-current="true"] img {
  opacity: 1;
  transform: translateY(-2px);
  border-color: var(--kgc-gold);
  box-shadow: 0 16px 28px rgba(8, 24, 48, 0.18);
}

.thumb-carousel__thumb:focus-visible {
  outline: none;
}

.thumb-carousel__thumbs::-webkit-scrollbar {
  height: 8px;
}

.thumb-carousel__thumbs::-webkit-scrollbar-thumb {
  background: rgba(8, 24, 48, 0.18);
  border-radius: 999px;
}

.thumb-carousel--hero {
  padding: clamp(1.1rem, 3vw, 1.45rem);
}

.thumb-carousel--hero .thumb-carousel__header h3 {
  font-size: clamp(1.05rem, 2.5vw, 1.28rem);
}

.thumb-carousel--hero .thumb-carousel__slider {
  margin-top: 1rem;
}

.thumb-carousel--hero .thumb-carousel__stage {
  aspect-ratio: 4 / 3.1;
}

.cta-band {
  padding: clamp(1.6rem, 5vw, 2.3rem);
  border-radius: calc(var(--kgc-radius-lg) + 4px);
  background:
    linear-gradient(120deg, rgba(5, 15, 34, 0.98), rgba(16, 40, 82, 0.96)),
    linear-gradient(90deg, rgba(184, 154, 99, 0.18), transparent);
  color: var(--kgc-white);
}

.cta-band .section-title {
  color: var(--kgc-white);
  max-width: 12ch;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 38rem;
}

.cta-band .btn-kgc-outline {
  color: var(--kgc-white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.05);
}

.cta-band .btn-kgc-outline:hover,
.cta-band .btn-kgc-outline:focus {
  color: var(--kgc-white);
  border-color: rgba(255, 255, 255, 0.68);
}

.page-hero-panel {
  padding: clamp(1.5rem, 4vw, 2.1rem);
  border-radius: var(--kgc-radius-lg);
}

.page-hero-visual {
  overflow: hidden;
  border-radius: var(--kgc-radius-lg);
  min-height: 100%;
}

.page-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.page-hero-visual-compact {
  max-height: 24rem;
}

.page-hero-visual-compact img {
  min-height: 24rem;
  object-position: center 32%;
}

.page-hero-row-match {
  align-items: stretch !important;
}

.page-hero-panel-match,
.page-hero-visual-match {
  height: 100%;
}

.page-hero-visual-match {
  max-height: none;
}

.page-hero-visual-match img {
  min-height: 100%;
  height: 100%;
}

.story-card .mini-title,
.contact-card .mini-title,
.service-area-card .mini-title {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--kgc-gold);
}

.contact-card a:not(.btn-kgc):not(.btn-kgc-outline) {
  color: var(--kgc-forest);
  font-weight: 800;
}

.map-frame {
  overflow: hidden;
  border-radius: var(--kgc-radius-lg);
  height: 100%;
  min-height: 420px;
}

.map-frame iframe {
  border: 0;
  width: 100%;
  height: 100%;
  display: block;
  min-height: 420px;
}

.list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-clean li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(8, 24, 48, 0.08);
}

.list-clean li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.list-clean li::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.5rem;
  border-radius: 50%;
  background: var(--kgc-gold);
  flex: 0 0 auto;
}

.footer-shell {
  padding: 2rem 0 2.5rem;
}

.footer-frame {
  border-radius: var(--kgc-radius-lg);
  padding: 1.4rem;
  border: 1px solid rgba(8, 24, 48, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 35px rgba(8, 24, 48, 0.08);
}

.footer-logo {
  width: 240px;
  max-width: 100%;
}

.footer-copy {
  color: var(--kgc-ink-soft);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
}

.footer-links a {
  font-weight: 700;
  color: var(--kgc-ink);
}

.estimate-intro-card,
.estimate-form-card {
  height: 100%;
  border-radius: var(--kgc-radius-lg);
}

.estimate-intro-card {
  padding: clamp(1.5rem, 4vw, 2.1rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.72)),
    linear-gradient(135deg, rgba(184, 154, 99, 0.15), rgba(8, 24, 48, 0.04));
}

.estimate-form-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.6rem, 4vw, 2.2rem);
  border: 1px solid rgba(8, 24, 48, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 243, 235, 0.92)),
    linear-gradient(135deg, rgba(184, 154, 99, 0.1), rgba(8, 24, 48, 0.03));
  box-shadow: 0 24px 55px rgba(8, 24, 48, 0.14);
}

.estimate-form-card::before {
  content: "";
  position: absolute;
  inset: auto -10% -25% auto;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 154, 99, 0.18) 0%, transparent 68%);
  pointer-events: none;
}

.estimate-form-head,
.estimate-form-grid {
  position: relative;
  z-index: 1;
}

.estimate-form-head {
  margin-bottom: 1.4rem;
}

.estimate-form-head h2 {
  margin: 0.45rem 0 0.7rem;
  font-family: "Cinzel", serif;
  font-size: clamp(1.8rem, 4vw, 2.65rem);
  line-height: 1.08;
}

.estimate-form-head p,
.estimate-form-note,
.estimate-note-card p,
.estimate-quick-item span {
  color: var(--kgc-ink-soft);
}

.estimate-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.estimate-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.65rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(8, 24, 48, 0.1);
  background: rgba(255, 255, 255, 0.78);
  color: var(--kgc-forest);
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(8, 24, 48, 0.08);
}

.estimate-note-card {
  padding: 1rem 1.05rem;
  border-radius: 20px;
  border: 1px solid rgba(8, 24, 48, 0.08);
  background: rgba(255, 255, 255, 0.62);
}

.estimate-note-card strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--kgc-forest);
}

.estimate-quick-list {
  display: grid;
  gap: 0.85rem;
}

.estimate-quick-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.95rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(8, 24, 48, 0.08);
  background: rgba(255, 255, 255, 0.62);
}

.estimate-quick-item i {
  color: var(--kgc-gold);
  font-size: 1.05rem;
  margin-top: 0.2rem;
}

.estimate-quick-item strong {
  display: block;
  margin-bottom: 0.18rem;
  color: var(--kgc-forest);
}

.field-label {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--kgc-forest);
  font-size: 0.95rem;
  font-weight: 800;
}

.form-control-kgc {
  width: 100%;
  min-height: 3.7rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(8, 24, 48, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--kgc-ink);
  font-size: 1rem;
  line-height: 1.5;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.form-control-kgc::placeholder {
  color: #7d8694;
}

.form-control-kgc:focus {
  outline: none;
  border-color: rgba(8, 24, 48, 0.34);
  background: var(--kgc-white);
  box-shadow: 0 0 0 4px rgba(184, 154, 99, 0.18);
}

.form-control-kgc--textarea {
  min-height: 12rem;
  resize: vertical;
}

.form-control-kgc.is-invalid {
  border-color: #b74c42;
  box-shadow: 0 0 0 4px rgba(183, 76, 66, 0.12);
}

.field-error {
  margin-top: 0.45rem;
  color: #8f3029;
  font-size: 0.91rem;
  font-weight: 700;
}

.form-status {
  display: grid;
  gap: 0.25rem;
  margin-bottom: 1.2rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid transparent;
}

.form-status strong {
  color: inherit;
}

.form-status--success {
  background: rgba(44, 118, 80, 0.1);
  border-color: rgba(44, 118, 80, 0.22);
  color: #24553c;
}

.form-status--error {
  background: rgba(183, 76, 66, 0.1);
  border-color: rgba(183, 76, 66, 0.18);
  color: #7b2a23;
}

.estimate-submit {
  width: 100%;
}

.estimate-form-note a {
  color: var(--kgc-forest);
  font-weight: 800;
}

.estimate-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-2 {
  transition-delay: 0.08s;
}

.stagger-3 {
  transition-delay: 0.16s;
}

.stagger-4 {
  transition-delay: 0.24s;
}

@media (max-width: 991.98px) {
  .nav-frame {
    border-radius: 28px;
  }

  .navbar-brand {
    margin-left: 0.55rem;
    margin-right: 0.75rem;
  }

  .navbar-collapse {
    padding-top: 0.75rem;
  }

  .navbar .nav-link {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-title,
  .page-title {
    max-width: none;
  }

  .hero-visual {
    margin-top: 1.5rem;
  }

  .hero-panel-match,
  .hero-visual-match,
  .hero-visual-frame-match {
    height: auto;
    min-height: 0;
  }

  .hero-visual-match {
    display: block;
    margin-top: 0;
  }

  .thumb-carousel__header {
    align-items: stretch;
    flex-direction: column;
  }

  .thumb-carousel__nav {
    justify-content: flex-start;
  }
}

@media (max-width: 767.98px) {
  .site-nav {
    padding-top: 0.65rem;
  }

  .nav-frame {
    padding: 0.75rem 0.9rem;
    min-height: 5.35rem;
  }

  .hero-shell,
  .page-hero {
    padding-top: 1rem;
  }

  .hero-panel,
  .page-hero-panel,
  .section-frame,
  .cta-band,
  .thumb-carousel,
  .metric-card,
  .service-card,
  .story-card,
  .contact-card,
  .process-card,
  .service-area-card,
  .footer-frame {
    padding: 1.2rem;
  }

  .hero-float {
    width: calc(100% - 2rem);
  }

  .hero-visual-frame {
    min-height: 23rem;
  }

  .page-hero-visual-compact,
  .page-hero-visual-compact img {
    max-height: 19rem;
    min-height: 19rem;
  }

  .page-hero-panel-match,
  .page-hero-visual-match,
  .page-hero-visual-match img {
    height: auto;
  }

  .thumb-carousel__nav-btn {
    width: 2.7rem;
    height: 2.7rem;
  }

  .thumb-carousel__badge {
    top: 0.8rem;
    left: 0.8rem;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }

  .thumb-carousel__thumbs {
    grid-auto-columns: minmax(4.5rem, 5rem);
    gap: 0.6rem;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 340px;
  }

  .estimate-meta-chip {
    width: 100%;
    justify-content: center;
  }

  .estimate-intro-card,
  .estimate-form-card {
    padding: 1.25rem;
  }

  .estimate-form-head h2 {
    font-size: 1.7rem;
  }

  .form-control-kgc {
    min-height: 3.45rem;
  }

  .form-control-kgc--textarea {
    min-height: 10.5rem;
  }

  .btn-kgc,
  .btn-kgc-outline {
    width: 100%;
  }
}
