:root {
  --ink: #171613;
  --muted: #6e6a62;
  --cream: #f7f3ec;
  --sand: #ded1bd;
  --accent: #ff8332 ;
  --accent-dark: #ff8332;
  --white: #fff;
}


body{font-family: "Open Sans", sans-serif;}
.bg-main{background: #000C3C !important;}
.bg-main-alt{background: #ff8332 !important;}
.text-main-alt{color:#ff8332 !important;}
.text-main{color:#000C3C !important;}


.navbar-brand.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: #fff;
  line-height: 1;
}

.brand-mark {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  font-size: 1.35rem;
}

.brand strong { display: block; font-size: 1.2rem; }
.brand small {
  display: block;
  margin-top: .25rem;
  font-family: "Open Sans", sans-serif;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .75;
}
.nav-link { color: rgba(255,255,255,.9) !important; font-size: .92rem; }
.nav-link:hover, .nav-link.active { color: #fff !important; }
.btn-accent {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.btn-accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: #fff; }

.hero { height: min(760px, 92vh); min-height: 620px; background: #222; }
.hero-slide {
  position: relative;
  background-size: cover;
  background-position: center;
}
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.76), rgba(0,0,0,.28) 65%, rgba(0,0,0,.1));
}

.mhide{display:none;}

/*Pictures*/
.slide-one{background-image:url('/_webfilx/_visualx/images/carousel/1.jpg');}
.slide-two{background-image:url('/_webfilx/_visualx/images/carousel/2.jpg');}
.slide-three{background-image:url('/_webfilx/_visualx/images/carousel/3.jpg');}
.slide-four{background-image:url('/_webfilx/_visualx/images/carousel/4.jpg');}
.intro{background:url('/_webfilx/_visualx/images/featured/2.jpg');}
.cta{background:url('/_webfilx/_visualx/images/featured/1.jpg') no-repeat center center/cover;}

/*Services*/
.service::before {
  content: "";
  position: absolute;
  inset: 0; /* shorthand for top/right/bottom/left:0 */
  background: rgba(0, 0, 0, 0.5); /* black overlay at 50% opacity */
  border-radius: inherit; /* matches rounded corners */
}
.service-one{
  position: relative;
  background: url('/_webfilx/_visualx/images/services/1.jpg') no-repeat center center/cover;
  color: #fff; /* ensures text is visible */
}
.service-two{
  position: relative;
  background: url('/_webfilx/_visualx/images/services/2.jpg') no-repeat center center/cover;
  color: #fff; /* ensures text is visible */
}
.service-three{
  position: relative;
  background: url('/_webfilx/_visualx/images/services/3.jpg') no-repeat center center/cover;
  color: #fff; /* ensures text is visible */
}


.m-gradient {
  background: radial-gradient(circle at top left,#FFEFE5,white);
}

.m-border{border-color:#ff8332 !important;}
.border-main{border-color:#000C3C !important;}
.mcursor{cursor:pointer;}
.m-hr {
  border: none;
  height: 2px; /* thickness of the line */
  background: linear-gradient(to left, var(--fade-color, #000), transparent);
}

.m-hl {
  border: none;
  height: 2px; /* thickness of the line */
  background: linear-gradient(to right, var(--fade-color, #000), transparent);
}

.hr-orange {--fade-color: #ff8332;}
.shop-image{height:150px;object-fit: cover; /* Keeps aspect ratio intact by cropping if necessary */}
/* Medium (md) and Large (lg) devices (≥768px) */
@media (min-width: 768px) {
  .shop-image {height: 250px;}
}



.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
  color: #fff;
  padding-top: 3rem;
}
.hero-copy h1, .hero-copy h2 {
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: .98;
  letter-spacing: -.045em;
  margin: .75rem 0 1.25rem;
}
.hero-copy h1 em { color: #e9c4a4; font-style: normal; }
.hero-copy .lead { max-width: 610px; color: rgba(255,255,255,.84); }
.eyebrow {
  display: inline-block;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.text-accent { color: var(--accent) !important; }
.section-padding { padding: 100px 0; }
.bg-cream { background: var(--cream); }
.section-title {
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -.035em;
}
.section-heading { max-width: 680px; margin: 0 auto; }
.link-arrow {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}
.link-arrow span { color: var(--accent); margin-left: .35rem; transition: margin .2s; }
.link-arrow:hover span { margin-left: .7rem; }

.service-card {
  border: 1px solid #e9e4dc;
  transition: transform .25s, box-shadow .25s;
}
.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 45px rgba(34,28,20,.09);
}
.service-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--cream);
  color: var(--accent);
  font-weight: 700;
  font-size: .78rem;
  margin-bottom: 2rem;
}
.service-card h3 { font-size: 1.55rem; margin-bottom: .8rem; }
.service-card p { color: var(--muted); margin: 0; }

.portfolio-section { background: #f4f0e9; }
.portfolio-tile {
  min-height: 330px;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  background-size: cover;
  background-position: center;
}
.portfolio-tile::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.68), transparent 55%);
}
.portfolio-tile span {
  position: relative;
  z-index: 2;
  color: #fff;
  font-weight: 600;
  letter-spacing: .04em;
}
.tile-a { background: linear-gradient(135deg, #b9a58f, #6f5848 58%, #332a25); }
.tile-b { background: linear-gradient(145deg, #d7c7b0, #92745e 55%, #4b3b30); min-height: 330px; }
.tile-c { background: linear-gradient(135deg, #c7c1b5, #66645d 55%, #242522); min-height: 330px; }
.tile-d { background: linear-gradient(135deg, #e1d2c0, #a35f3b 50%, #4c3025); min-height: 330px; }

.about-section { background: var(--cream); }
.about-art {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  background: #000C3C;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 2rem;
}
.about-art > span {
  position: relative;
  z-index: 3;
  color: #fff;
  font-family: "Open Sans", serif;
  font-size: clamp(3rem, 8vw, 7rem);
  letter-spacing: -.05em;
}
.paint-swatch { position: absolute; border-radius: 50%; filter: blur(.2px); }
.swatch-1 { width: 470px; height: 470px; background: #ff8332; top: -120px; left: -90px; }
.swatch-2 { width: 360px; height: 360px; background: #ffc199; top: 110px; right: -100px; }
.swatch-3 { width: 280px; height: 280px; background: #ff8332; bottom: -110px; left: 120px; }
.mini-stat {
  border-top: 1px solid #d5ccbf;
  padding-top: .9rem;
  display: flex;
  gap: .8rem;
  align-items: center;
}
.mini-stat strong { color: var(--accent); font-size: .78rem; }
.mini-stat span { color: var(--muted); font-size: .9rem; }

.contact-section { background: #fff; }
.contact-detail {
  padding: 1rem 0;
  border-bottom: 1px solid #e9e4dc;
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.contact-detail span {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
}
.contact-detail a { color: var(--ink); font-weight: 600; text-decoration: none; }
.contact-form {
  padding: 2rem;
  background: var(--cream);
}
.form-control {
  border: 1px solid #ddd4c8;
  border-radius: 0;
  padding: .9rem 1rem;
  background: rgba(255,255,255,.8);
}
.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 .2rem rgba(182,106,60,.12);
}
.footer { background: #1b1917; color: #fff; }
.footer-link { color: #e8c5aa; text-decoration: none; }
.footer-link:hover { color: #fff; }

@media (max-width: 991.98px) {
  .site-nav { background: rgba(20,18,16,.96); }
  .hero { min-height: 650px; }
  .hero-copy h1, .hero-copy h2 { font-size: clamp(3rem, 11vw, 5rem); }
}
@media (max-width: 575.98px) {
  .section-padding { padding: 72px 0; }
  .hero { min-height: 620px; }
  .hero-copy { padding: 2rem 1rem 0; }
  .hero-copy .lead { font-size: 1rem; }
  .about-art { min-height: 360px; }
  .paint-swatch { transform: scale(.72); }
  .portfolio-tile { min-height: 260px; }
}

