:root{
  --red:#b30000;
  --red-dark:#8f0000;
  --gold:#ffcc00;
  --ink:#121212;
  --ink-soft:#1b1b1b;
  --text:#f5f5f5;
  --muted:#cfcfcf;
  --line:rgba(255,255,255,.12);
  --panel:#1a1a1a;
  --bg:#0f0f10;
  --shadow:0 12px 36px rgba(0,0,0,.28);
  --radius:18px;
  --max:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  color:#202020;
  background:#fff;
  line-height:1.55;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
.container{width:min(calc(100% - 32px),var(--max));margin:0 auto}

/* Header */
.hy-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:#fff;
  border-bottom:1px solid #ececec;
  box-shadow:0 2px 10px rgba(0,0,0,.04);
}
.hy-nav-row{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:20px;
  min-height:88px;
}
.hy-logo-text{
  font-size:1.55rem;
  font-weight:800;
  letter-spacing:.02em;
}
.hy-logo-text span{color:var(--red)}
.hy-mobile-toggle{
  display:none;
  border:1px solid #ddd;
  background:#fff;
  border-radius:10px;
  width:46px;
  height:46px;
  font-size:1.35rem;
  cursor:pointer;
}
.hy-mobile-menu-wrap nav ul{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  gap:28px;
  justify-content:center;
  align-items:center;
}
.hy-mobile-menu-wrap a{
  font-weight:700;
  color:#333;
}
.hy-nav-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 20px;
  border-radius:999px;
  background:var(--red);
  color:#fff;
  font-weight:800;
}
.hy-nav-cta:hover{background:var(--red-dark)}

/* Hero */
.hy-hero{
  position:relative;
  overflow:hidden;
  color:#fff;
  background:none;
}
.hy-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:url('../images/tryson_norm_2026.png') center center / cover no-repeat;
  opacity:.92;
  filter:brightness(.62) contrast(1.08);
  transform:translateY(var(--hero-parallax, 0));
  will-change:transform;
  z-index:0;
}
.hy-hero > .container{
  position:relative;
  z-index:1;
}
.hy-hero-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:36px;
  align-items:start;
  min-height:680px;
  padding:24px 0 84px;
}

.hy-kicker{
  display:inline-block;
  margin-bottom:18px;
  padding:8px 14px;
  border-radius:999px;
  background:none;
  color:#ffcc00;
  font-size:.82rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.12em;
  position:relative;
  overflow:hidden;
  animation:kickerGlow 3.5s ease-in-out infinite alternate;
}
@keyframes kickerGlow{
  0%{
    text-shadow:
      0 0 6px rgba(255,204,0,.4),
      0 0 12px rgba(255,204,0,.3),
      0 0 20px rgba(255,204,0,.2);
  }
  100%{
    text-shadow:
      0 0 12px rgba(255,204,0,.9),
      0 0 22px rgba(255,204,0,.7),
      0 0 40px rgba(255,204,0,.4);
  }
}
.hy-kicker:hover{
  text-shadow:
    0 0 12px rgba(255,204,0,.9),
    0 0 22px rgba(255,204,0,.7),
    0 0 40px rgba(255,204,0,.5);
}
.hy-kicker::after{
  content:"";
  position:absolute;
  top:0;
  left:-60%;
  width:50%;
  height:100%;
  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.6),
    transparent
  );
  transform:skewX(-20deg);
  animation:shimmer 5s infinite;
}
@keyframes shimmer{
  0%{
    left:-60%;
    opacity:0;
  }
  20%{
    opacity:.6;
  }
  50%{
    left:120%;
    opacity:0;
  }
  100%{
    left:120%;
    opacity:0;
  }
}

.hy-hero-copy h1{
  margin:0 0 12px;
  font-size:clamp(1.8rem, 3.5vw, 3.2rem);
  line-height:1.02;
  max-width:16ch;
  text-shadow:
    0 3px 6px rgba(0,0,0,.8),
    0 8px 20px rgba(0,0,0,.5);
}
.hy-hero-copy p{
  margin:0 0 22px;
  color:#f0f0f0;
  font-size:1.08rem;
  max-width:60ch;
}
.hy-checks{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}
.hy-checks li{
  padding-left:28px;
  position:relative;
  color:#f0f0f0;
}
.hy-checks li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  font-weight:800;
  color:var(--gold);
}

.hy-quote-card{
  background:rgba(255,255,255,.96);
  color:#222;
  border-radius:24px;
  padding:28px;
  box-shadow:var(--shadow);
}
.hy-quote-kicker{
  font-size:.84rem;
  font-weight:800;
  color:var(--red);
  text-transform:uppercase;
  letter-spacing:.08em;
}
.hy-quote-card h2{
  margin:10px 0 8px;
  font-size:2rem;
  line-height:1.1;
}
.hy-quote-card p{
  margin:0 0 16px;
  color:#555;
}
.hy-form{
  display:grid;
  gap:12px;
}
.hy-form input,
.hy-form textarea,
.hy-form select{
  width:100%;
  border:1px solid #ddd;
  background:#fff;
  border-radius:12px;
  padding:14px 15px;
  font:inherit;
  color:#222;
}
.hy-form textarea{
  min-height:120px;
  resize:vertical;
}
.hy-form-split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.hy-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 22px;
  border:none;
  border-radius:999px;
  font-weight:800;
  cursor:pointer;
}
.hy-btn-red{
  background:var(--red);
  color:#fff;
}
.hy-btn-red:hover{background:var(--red-dark)}

/* Trust band */
.hy-trust-band{
  background:#151515;
  color:#fff;
  padding:24px 0;
}
.hy-trust-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}
.hy-trust-item{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px;
  padding:18px;
}
.hy-trust-item strong{
  display:block;
  margin-bottom:6px;
}
.hy-trust-item span{
  color:#d0d0d0;
  font-size:.95rem;
}

/* Sections */
.hy-section{padding:84px 0}
.hy-section-alt{background:#f7f7f7}
.hy-section-head{
  max-width:800px;
  margin:0 auto 34px 0;
}
.hy-section-head h2{
  margin:0 0 12px;
  font-size:clamp(2rem, 4vw, 3rem);
  line-height:1.08;
  color:#111;
}
.hy-section-head p{
  margin:0;
  color:#555;
  font-size:1.05rem;
}

.hy-feature-grid,
.hy-fleet-grid,
.hy-project-grid,
.hy-area-grid,
.hy-footer-grid,
.hy-two-col-grid{
  display:grid;
  gap:22px;
}

.hy-feature-grid{grid-template-columns:repeat(3,1fr)}
.hy-feature-card{
  background:#fff;
  border:1px solid #eee;
  border-radius:20px;
  padding:28px;
  box-shadow:0 8px 24px rgba(0,0,0,.05);
}
.hy-feature-card h3{
  margin:0 0 10px;
  font-size:1.45rem;
}
.hy-feature-card p{
  margin:0;
  color:#555;
}

.hy-fleet-grid{grid-template-columns:repeat(4,1fr)}
.hy-fleet-card{
  background:#fff;
  border:1px solid #eee;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 8px 24px rgba(0,0,0,.05);
}
.hy-fleet-card img{
  aspect-ratio:16/10;
  object-fit:cover;
  background:#eee;
}
.hy-fleet-card h3{margin:18px 18px 8px}
.hy-fleet-card p{
  margin:0 18px 20px;
  color:#555;
}
.hy-fleet-highlight{
  border-color:#f1d14d;
  box-shadow:0 12px 32px rgba(179,0,0,.08);
}

.hy-two-col-grid{
  grid-template-columns:1fr 1fr;
  align-items:center;
}
.hy-feature-list{
  display:grid;
  gap:14px;
  margin-top:18px;
}
.hy-feature-list-item{
  background:#fff;
  border:1px solid #eee;
  border-radius:18px;
  padding:18px;
}
.hy-feature-list-item h3{margin:0 0 8px}
.hy-feature-list-item p{
  margin:0;
  color:#555;
}
.hy-media-stack img{
  border-radius:24px;
  box-shadow:var(--shadow);
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  background:#eee;
}

.hy-project-grid{grid-template-columns:repeat(3,1fr)}
.hy-project-card{
  background:#fff;
  border:1px solid #eee;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 8px 24px rgba(0,0,0,.05);
}
.hy-project-card img{
  aspect-ratio:16/10;
  object-fit:cover;
  background:#eee;
}
.hy-project-copy{padding:18px}
.hy-project-copy h3{margin:0 0 6px}
.hy-project-copy p{
  margin:0;
  color:#666;
}

.hy-area-grid{grid-template-columns:repeat(4,1fr)}
.hy-area-grid > div{
  background:#fff;
  border:1px solid #eee;
  border-radius:18px;
  padding:18px;
  text-align:center;
  font-weight:700;
}

.hy-center{
  text-align:center;
  margin-top:26px;
}

.hy-contact-band{
  background:linear-gradient(135deg,#161616,#262626);
  color:#fff;
}
.hy-contact-band .hy-section-head h2,
.hy-contact-band .hy-section-head p{
  color:#fff;
}
.hy-contact-band .hy-area-grid > div{
  background:rgba(255,255,255,.05);
  border-color:rgba(255,255,255,.12);
}

/* Footer */
.hy-footer{
  background:#121212;
  color:#fff;
  padding:52px 0 110px;
}
.hy-footer-grid{grid-template-columns:1.3fr .8fr .8fr}
.hy-footer h3{margin-top:0}
.hy-footer p,
.hy-footer a{
  color:#d7d7d7;
}
.hy-footer-bottom{
  margin-top:28px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.12);
  color:#bbb;
}

/* Bottom CTA */
.hy-bottom-bar{
  display:block;
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  width:100%;
  z-index:9999;
  overflow:hidden;
  box-shadow:0 -4px 14px rgba(0,0,0,.28);
  transform:translateZ(0);
  -webkit-transform:translateZ(0);
  backface-visibility:hidden;
  -webkit-backface-visibility:hidden;
}
.hy-bottom-bar a{
  float:left;
  width:50%;
  padding:16px 10px;
  text-align:center;
  font-size:18px;
  font-weight:800;
}
.hy-bottom-quote{
  background:var(--red);
  color:#fff;
}
.hy-bottom-call{
  background:var(--gold);
  color:#111;
}

/* Inner page hero */
.page-hero{
  background:linear-gradient(135deg,#151515,#303030);
  color:#fff;
  padding:72px 0 56px;
}
.page-hero h1{
  margin:0 0 10px;
  font-size:clamp(2rem, 4vw, 3.6rem);
}
.page-hero p{
  margin:0;
  color:#ededed;
  max-width:70ch;
}

/* Hero entrance */
.hy-hero-copy,
.hy-quote-card{
  opacity:0;
  transform:translateY(30px);
  transition:all .9s ease;
}
.hy-visible{
  opacity:1;
  transform:translateY(0);
}
.hy-hero-copy .hy-kicker{transition-delay:.1s}
.hy-hero-copy h1{transition-delay:.2s}
.hy-hero-copy p{transition-delay:.3s}
.hy-hero-copy .hy-checks{transition-delay:.4s}
.hy-quote-card{transition-delay:.5s}

/* Tablet */
@media (max-width:1100px){
  .hy-hero-grid,
  .hy-two-col-grid,
  .hy-footer-grid,
  .hy-feature-grid,
  .hy-fleet-grid,
  .hy-project-grid,
  .hy-area-grid,
  .hy-trust-grid{
    grid-template-columns:1fr 1fr;
  }

  .hy-nav-row{
    grid-template-columns:auto auto;
    justify-content:space-between;
  }

  .hy-mobile-toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
  }

  .hy-mobile-menu-wrap{
    position:absolute;
    left:16px;
    right:16px;
    top:88px;
    background:#fff;
    border:1px solid #eee;
    border-radius:18px;
    padding:14px;
    display:none;
    box-shadow:var(--shadow);
  }

  .hy-mobile-menu-wrap.hy-open{display:block}

  .hy-mobile-menu-wrap nav ul{
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
  }

  .hy-nav-cta{display:none}
}

/* Mobile */
@media (max-width:720px){
  .hy-hero-grid,
  .hy-form-split,
  .hy-trust-grid,
  .hy-feature-grid,
  .hy-fleet-grid,
  .hy-project-grid,
  .hy-area-grid,
  .hy-footer-grid,
  .hy-two-col-grid{
    grid-template-columns:1fr;
  }

  .hy-hero{
    min-height:auto;
  }

  .hy-hero::before{
    background-position:center top;
	background-image: url('../images/Bed 2026.png');
      /* THIS is the key change */
    background-size: cover;
    background-position: center center;

    /* prevent weird stretching */
    background-repeat: no-repeat;

    /* keep your darkening */
    opacity: .92;
    filter: brightness(.56) contrast(1.05);

    transform: none !important;
    will-change: auto;
  }
  }

  .hy-hero-grid{
    min-height:auto;
    padding:18px 0 40px;
    align-items:start;
    gap:24px;
  }

  .hy-hero-copy h1{
    max-width:none;
    font-size:clamp(2.15rem, 9vw, 3.35rem);
    line-height:.98;
  }

  .hy-section{
    padding:68px 0;
  }

  .hy-bottom-bar{
    display:block;
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    width:100%;
    z-index:9999;
    transform:translateZ(0);
    -webkit-transform:translateZ(0);
    backface-visibility:hidden;
    -webkit-backface-visibility:hidden;
  }

  body{
    padding-bottom:72px;
  }

  .hy-footer{
    padding-bottom:120px;
  }
}