/* STEP 58 — Custom wall art invitation on Contact page */
.gimmons-custom-art-section{
  padding:clamp(72px,9vw,132px) var(--horizontal-gutter);
}
.gimmons-custom-art-card{
  position:relative;
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  align-items:end;
  gap:clamp(34px,6vw,100px);
  padding:clamp(34px,5vw,74px);
  overflow:hidden;
  color:#f3eee8;
  background:#171411;
  border-radius:clamp(22px,2.4vw,40px);
  box-shadow:0 32px 90px rgba(23,20,17,.16);
}
.gimmons-custom-art-card::before{
  content:"";
  position:absolute;
  width:clamp(260px,34vw,560px);
  aspect-ratio:1;
  right:-14%;
  top:-58%;
  border:1px solid rgba(243,238,232,.16);
  border-radius:50%;
  pointer-events:none;
}
.gimmons-custom-art-card::after{
  content:"";
  position:absolute;
  width:clamp(150px,20vw,320px);
  aspect-ratio:1;
  right:9%;
  bottom:-62%;
  border:1px solid rgba(243,238,232,.1);
  border-radius:50%;
  pointer-events:none;
}
.gimmons-custom-art-copy,
.gimmons-custom-art-button{position:relative;z-index:1}
.gimmons-custom-art-copy{max-width:900px}
.gimmons-custom-art-copy .gimmons-eyebrow{
  display:block;
  margin-bottom:18px;
  color:rgba(243,238,232,.62);
}
.gimmons-custom-art-copy h2{
  max-width:900px;
  margin:0;
  color:#f3eee8;
  font-size:clamp(36px,5vw,78px);
  line-height:.98;
  letter-spacing:-.045em;
}
.gimmons-custom-art-copy p{
  max-width:760px;
  margin:clamp(22px,3vw,34px) 0 0;
  color:rgba(243,238,232,.72);
  font-size:clamp(17px,1.35vw,22px);
  line-height:1.55;
}
.gimmons-custom-art-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  min-width:230px;
  min-height:62px;
  padding:0 28px;
  color:#171411;
  background:#f3eee8;
  border:1px solid #f3eee8;
  border-radius:999px;
  text-decoration:none;
  white-space:nowrap;
  transition:transform .25s ease,background-color .25s ease,color .25s ease;
}
.gimmons-custom-art-button i{transition:transform .25s ease}
.gimmons-custom-art-button:hover{
  transform:translateY(-4px);
  color:#f3eee8;
  background:transparent;
}
.gimmons-custom-art-button:hover i{transform:translateX(5px)}
@media(max-width:900px){
  .gimmons-custom-art-card{grid-template-columns:1fr;align-items:start}
  .gimmons-custom-art-button{justify-self:start}
}
@media(max-width:767px){
  .gimmons-custom-art-section{padding-left:18px;padding-right:18px}
  .gimmons-custom-art-card{padding:32px 24px;border-radius:24px}
  .gimmons-custom-art-copy h2{font-size:clamp(34px,11vw,52px)}
  .gimmons-custom-art-button{width:100%;min-width:0}
}
