/* ===========================================================
   Art Style Construction — custom refinements
   Loaded AFTER all Elementor CSS so these rules win.
   Author notes: brand gold #E4BB7D, soft gold #C0A583,
   serif = "Antic Didone", body = Inter.
   =========================================================== */

:root{
  --asc-gold:#E4BB7D;
  --asc-gold-soft:#C0A583;
  --asc-ink:#0d0d0d;
}

/* ---------- 0. Defensive: never allow horizontal scroll ---------- */
html, body{ overflow-x:hidden; max-width:100%; }

/* ============================================================
   1. HEADER — clean elephant mark (no circle) + wordmark
   The logo image is a transparent, colourful elephant, so it
   sits directly on the black header. No frame, no white circle.
   ============================================================ */
/* remove the original white circular pill behind the logo */
header .elementor-element-2a4b4d91{
  background:transparent !important;
  border-radius:0 !important;
  padding:0 !important;
  width:auto !important;
  box-shadow:none !important;
}
header .elementor-widget-image,
header .elementor-widget-image .elementor-widget-container{
  overflow:visible !important;
}
header .elementor-widget-image a{
  display:inline-flex !important;
  align-items:center;
  gap:15px;
  text-decoration:none;
  line-height:1;
}
header .elementor-widget-image img{
  width:auto !important;
  height:50px !important;
  max-width:none !important;
  border-radius:0 !important;
  background:transparent !important;
  padding:0 !important;
  box-shadow:none !important;
  object-fit:contain !important;
  transition:transform .25s ease;
}
header .elementor-widget-image a:hover img{ transform:translateY(-1px) scale(1.03); }
/* typographic wordmark beside the mark */
header .elementor-widget-image a::after{
  content:"Art Style\A Construction";
  white-space:pre;
  font-family:"Antic Didone", serif;
  color:#fff;
  font-size:21px;
  line-height:1.05;
  letter-spacing:.5px;
}
@media (max-width:600px){
  header .elementor-widget-image img{ height:42px !important; }
  header .elementor-widget-image a{ gap:12px; }
  header .elementor-widget-image a::after{ font-size:17px; }
}
@media (max-width:360px){
  header .elementor-widget-image a::after{ display:none; } /* tiny screens: mark only */
}

/* ============================================================
   1b. HOME HERO — trust content (rating, CTA note, stats)
   ============================================================ */
/* 5-star trust line above the eyebrow */
.asc-hero-rating{
  display:flex; align-items:center; gap:9px;
  font-family:Inter, sans-serif; font-size:14px; letter-spacing:.3px;
  color:rgba(255,255,255,.92);
  margin-bottom:16px;
}
.asc-hero-rating .asc-stars{
  color:var(--asc-gold); font-size:16px; letter-spacing:2px;
}
/* reassurance under the CTA button */
.asc-hero-cta-note{
  margin-top:16px;
  font-family:Inter, sans-serif; font-size:13.5px; letter-spacing:.3px;
  color:rgba(255,255,255,.78);
}
.asc-hero-cta-note::before{ content:"✓ "; color:var(--asc-gold); font-weight:700; }
/* stats strip */
.asc-hero-stats{
  display:flex; flex-wrap:wrap; align-items:flex-start;
  margin-top:36px; gap:0;
}
.asc-hero-stats .asc-stat{
  padding:2px 26px;
  border-left:1px solid rgba(255,255,255,.24);
}
.asc-hero-stats .asc-stat:first-child{ padding-left:0; border-left:0; }
.asc-hero-stats .asc-stat-num{
  display:block;
  font-family:"Antic Didone", serif; font-weight:500;
  font-size:36px; line-height:1; color:var(--asc-gold);
}
.asc-hero-stats .asc-stat-label{
  display:block; margin-top:7px;
  font-family:Inter, sans-serif; font-size:12px; letter-spacing:1.2px;
  text-transform:uppercase; color:rgba(255,255,255,.82);
}

/* ============================================================
   2. HOME HERO — premium mobile treatment
   ============================================================ */
@media (max-width:767px){
  .elementor-element-52f3462d{
    position:relative;
    min-height:90vh !important;
    display:flex !important;
    flex-direction:column !important;
    justify-content:flex-end !important;  /* column flex: pushes content to the bottom */
  }
  /* readable gradient rising from the bottom */
  .elementor-element-52f3462d::after{
    content:"";
    position:absolute; inset:0; z-index:0; pointer-events:none;
    background:linear-gradient(to top,
      rgba(10,10,10,.90) 0%,
      rgba(10,10,10,.62) 30%,
      rgba(10,10,10,.22) 60%,
      rgba(10,10,10,0) 100%);
  }
  .elementor-element-52f3462d > .e-con-inner{
    position:relative; z-index:1;
    width:100%;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:0 22px !important;
  }
  /* push the text block to the very bottom of the hero */
  .elementor-element-52f3462d .elementor-element-f87f8d8{
    margin-top:auto !important;
    padding-bottom:48px !important;
  }
  /* eyebrow */
  .elementor-element-52f3462d h6{
    font-size:15px !important;
    letter-spacing:.5px;
    margin-bottom:4px;
  }
  /* headline */
  .elementor-element-52f3462d h1{
    font-size:37px !important;
    line-height:1.12 !important;
    margin-bottom:16px;
  }
  /* intro paragraph */
  .elementor-element-1a2d3832{ margin-bottom:26px !important; }
  .elementor-element-1a2d3832 p{
    font-size:15px !important;
    line-height:1.62 !important;
    opacity:.92;
  }
  /* CTA button — full width, taller, soft gold glow */
  .elementor-element-77210439{ width:100%; }
  .elementor-element-77210439 a{
    display:flex !important;
    width:100%;
    justify-content:center;
    padding:15px 24px !important;
    box-shadow:0 10px 26px rgba(228,187,125,.30);
    transition:transform .2s ease, box-shadow .2s ease;
  }
  .elementor-element-77210439 a:hover{ transform:translateY(-1px); }
}

/* ---- hero trust content: mobile sizing ---- */
@media (max-width:767px){
  .asc-hero-rating{ font-size:13px; margin-bottom:12px; }
  .asc-hero-rating .asc-stars{ font-size:15px; }
  .asc-hero-cta-note{ font-size:12.5px; margin-top:14px; }
  .asc-hero-stats{ margin-top:24px; flex-wrap:nowrap; width:100%; }
  .asc-hero-stats .asc-stat{ flex:1 1 0; min-width:0; padding:0 10px; }
  .asc-hero-stats .asc-stat:first-child{ padding-left:0; }
  .asc-hero-stats .asc-stat-num{ font-size:24px; }
  .asc-hero-stats .asc-stat-label{
    font-size:9.5px; letter-spacing:.4px; margin-top:5px;
    max-width:none; line-height:1.25;
  }
}
@media (max-width:360px){
  .asc-hero-stats .asc-stat{ padding:0 9px; }
  .asc-hero-stats .asc-stat-num{ font-size:23px; }
}

/* ---- desktop hero: soft left-side gradient for text contrast ---- */
@media (min-width:768px){
  .elementor-element-52f3462d{ position:relative; }
  .elementor-element-52f3462d::after{
    content:""; position:absolute; inset:0; z-index:0; pointer-events:none;
    background:linear-gradient(to right,
      rgba(10,10,10,.85) 0%, rgba(10,10,10,.55) 30%,
      rgba(10,10,10,.12) 58%, rgba(10,10,10,0) 80%);
  }
  .elementor-element-52f3462d > .e-con-inner{ position:relative; z-index:1; }
}

/* ============================================================
   3. HEADER LAYOUT — never wrap, vertically centre logo & nav
   ============================================================ */
header .elementor-element-3c03105e > .e-con-inner{
  flex-wrap:nowrap !important;
  align-items:center !important;
}
header .elementor-element-2a4b4d91{        /* logo column */
  flex:0 0 auto !important;
  align-self:center !important;
  align-items:center !important;
  justify-content:center !important;
}
header .elementor-element-7597d0a8{        /* nav + button column */
  flex:1 1 auto !important;
  min-width:0 !important;
  align-self:center !important;
}

/* ============================================================
   4. DESKTOP HERO — keep content clear of the header
   ============================================================ */
@media (min-width:768px){
  .elementor-element-52f3462d{
    padding-top:170px !important;
    padding-bottom:64px !important;
  }
}
