
  .why-page{
    max-width:1240px;
    margin:0 auto;
    background:#fff;
    border-left:1px solid var(--line);
    border-right:1px solid var(--line);
  }

  /* ---------- hero / why section ---------- */
  .why{
    position:relative;
    overflow:hidden;
    min-height:560px;
    display:flex;
  }

  /* background photo - anchored right, bleeding off that edge, left side stays clear for text */
  .why-photo{
    position:absolute;
    inset:0;
    left:52%;
    background-image:url('/images/why.avif');
    background-size:cover;
    background-position:center 30%;
    background-color:#e7e9ee; /* placeholder tone until the real photo is dropped in */
    z-index:0;
  }
  .why-fade{
    position:absolute;
    inset:0;
    left:52%;
    z-index:1;
    background:linear-gradient(90deg, #ffffff 0%, rgba(255,255,255,0.7) 6%, rgba(255,255,255,0) 20%);
  }

	
  .why-inner{
    position:relative;
    z-index:2;
    width:100%;
    display:grid;
    grid-template-columns:65% 75%;
    align-items:center;
  }

  .why-content{
    padding:44px 30px 44px 48px;
  }

  /* ---------- header lockup ---------- */
  .brand-row{
    display:flex;
    align-items:flex-start;
    gap:20px;
    margin-bottom:8px;
  }


  .headline-block{padding-top:4px;}
  h1.headline{
    font-size:clamp(24px,3.4vw,36px);
    font-weight:800;
    line-height:1.16;
    color:var(--navy);
    margin:0 0 10px;
    letter-spacing:0.2px;
  }

  .role-tag{
    font-family:'Playfair Display',serif;
    font-style:italic;
    font-weight:600;
    color:var(--red);
    font-size:clamp(14px,1.7vw,18px);
    margin-bottom:10px;
  }

  .rule{
    display:flex;
    align-items:center;
    gap:10px;
    margin:0 0 22px;
    max-width:420px;
  }
  .rule .bar{height:1px;background:var(--red);flex:1;}
  .rule .diamond{width:6px;height:6px;background:var(--red);transform:rotate(45deg);flex-shrink:0;}

  /* ---------- feature list ---------- */
  .feature-list{
    display:flex;
    flex-direction:column;
    gap:16px;
  }
  .feature-item{
    display:flex;
    align-items:flex-start;
    gap:14px;
  }
  .feature-item .icon{
    width:38px;
    height:38px;
    flex-shrink:0;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .feature-item .icon svg{width:32px;height:32px;}
  .feature-item .text h3{
    margin:0 0 2px;
    font-size:20.5px;
    font-weight:800;
    letter-spacing:0.2px;
    color:var(--navy);
  }
  .feature-item .text p{
    margin:0;
    font-size:16.5px;
    color:var(--ink);
    font-weight:500;
    line-height:1.4;
  }

  /* ---------- quote banner ---------- */
  .quote-wrap{
    padding:0 48px;
    margin-top:-8px;
	z-index: 100;
    position: relative;
  }
  .quote{
    position:relative;
    background:var(--navy);
    color:#fff;
    border-radius:10px;
    padding:28px 56px;
    text-align:center;
  }
  .quote .mark{
    position:absolute;
    top:6px;
    font-family:'Playfair Display',serif;
    font-size:156px;
    color:var(--red);
    line-height:1;
    font-weight:700;
  }
  .quote .mark.left{left:16px;}
  .quote .mark.right{right:16px;transform:scaleX(-1) scaleY(-1);}
  .quote p.quote-text{
    font-family:'Playfair Display',serif;
    font-style:italic;
    font-size:clamp(14px,1.9vw,18px);
    line-height:1.6;
    max-width:820px;
    margin:0 auto 10px;
  }
  .quote p.attribution{
    margin:0;
    font-size:13.5px;
    font-weight:600;
    color:rgba(255,255,255,0.85);
  }

  /* ---------- bottom tagline ---------- */
  .tagline-section{
    text-align:center;
    padding:28px 24px 30px;
  }
  .tagline-section .rule{
    max-width:340px;
    margin:0 auto 14px;
  }
  .tagline-section h2{
    font-size:clamp(18px,3vw,28px);
    font-weight:800;
    letter-spacing:0.3px;
    color:var(--navy);
    margin:0 0 12px;
  }
  .tagline-section .since{
    font-size:12px;
    letter-spacing:1.5px;
    font-weight:600;
    color:var(--navy);
    position:relative;
    display:inline-block;
    padding-top:10px;
  }
  .tagline-section .since::before{
    content:"";
    position:absolute;
    top:0;
    left:50%;
    transform:translateX(-50%);
    width:120px;
    height:1px;
    background:var(--red);
  }


	.deskOnly {display: inherit}
  /* ---------- responsive ---------- */
  @media (max-width:900px){
    .why-inner{grid-template-columns:1fr;}
    .why-photo,.why-fade{
      left:0;
      opacity:0.14;
    }
    .why-fade{background:linear-gradient(180deg, rgba(255,255,255,0.2) 0%, #fbfaf7 82%);}
    .why{min-height:auto;}
    .why-content{padding:36px 24px 30px;}
    .quote-wrap{padding:0 24px;}
    .quote{padding:24px 26px;}
    .quote .mark{font-size:40px;}
    .quote .mark.left{left:8px;top:2px;}
    .quote .mark.right{right:8px;}
  }

  @media (max-width:560px){
	  .deskOnly {display: none}
    .brand-row{gap:14px;}

    h1.headline{font-size:22px;}
    .feature-item .text h3{font-size:13.5px;}
    .feature-item .text p{font-size:12.5px;}
    .quote p.quote-text{font-size:13.5px;}
  }