/* ======= HERO =======
   Exact split: 42% warm-cream left | 58% photo right
   UPDATED: Image height adapts to content (no fixed height)
   Compact premium layout */
.hero{display:grid;grid-template-columns:42% 58%;background:#f0ede8;align-items:stretch}
.hero-left{background:#f0ede8;padding:50px 52px 50px 72px;display:flex;flex-direction:column;justify-content:center}
.eyebrow{font-size:10.5px;font-weight:700;letter-spacing:2.5px;text-transform:uppercase;color:#777;margin-bottom:18px;display:flex;align-items:center;gap:10px}
.eyebrow::before{content:'';display:block;width:20px;height:2px;background:#111;flex-shrink:0}
.hero-title{font-size:46px;font-weight:800;line-height:1.07;letter-spacing:-.5px;color:#111;margin-bottom:22px}
.hero-desc{font-size:14px;color:#555;line-height:1.75;margin-bottom:12px;max-width:360px}
.hero-desc:last-of-type{margin-bottom:32px}
.btn-dark{display:inline-flex;align-items:center;gap:10px;background:#111;color:#fff;font-size:11px;font-weight:700;letter-spacing:1.8px;text-transform:uppercase;padding:15px 28px;border:2px solid #111;cursor:pointer;transition:background .28s,color .28s,transform .22s,box-shadow .28s;width:fit-content}
.btn-dark:hover{background:transparent;color:#111;transform:translateY(-2px);box-shadow:0 6px 20px rgba(0,0,0,.13)}
.btn-dark i{font-size:11px}
.hero-right{overflow:hidden;position:relative;width:100%;height:100%}
.hero-right img{width:100%;height:100%;object-fit:cover;object-position:center top;transition:transform .9s ease;display:block}
.hero-right:hover img{transform:scale(1.04)}

/* ======= OUR STORY =======
   48% photo left | 52% content right
   Premium card layout with rounded image, compact professional design */
.our-story{display:grid;grid-template-columns:48% 52%;gap:32px;background:#fff;max-width:1280px;margin:0 auto;padding:102px 28px;align-items:stretch}
.story-photo{overflow:hidden;border-radius:12px;background:#fff;height:100%;width:100%}
.story-photo img{width:100%;height:100%;object-fit:cover;object-position:center;transition:transform .9s ease;display:block}
.story-photo:hover img{transform:scale(1.04)}
.story-right{display:flex;flex-direction:column;justify-content:center;background:#fff;padding:0}
.st-eyebrow{font-size:10px;font-weight:700;letter-spacing:2.8px;text-transform:uppercase;color:#888;margin-bottom:20px;display:flex;align-items:center;gap:12px}
.st-eyebrow::before{content:'';display:block;width:24px;height:1px;background:#111;flex-shrink:0}
.story-title{font-size:42px;font-weight:900;line-height:1.1;letter-spacing:-.6px;color:#111;margin-bottom:26px}
.story-body{font-size:14px;color:#666;line-height:1.75;margin-bottom:16px;max-width:100%}
.story-tagline{font-size:14px;font-weight:700;color:#111;margin-bottom:32px}
/* pillars flush to bottom of card */
.pillars{display:grid;grid-template-columns:repeat(3,1fr);border-top:1px solid #e8e5e0;margin-top:auto;gap:0}
.pillar{padding:28px 20px 24px;text-align:center;border-right:1px solid #e8e5e0;transition:background .22s;cursor:default}
.pillar:last-child{border-right:none}
.pillar:hover{background:#fafaf8}
.pillar-icon{font-size:28px;color:#111;margin-bottom:14px;transition:transform .28s}
.pillar:hover .pillar-icon{transform:scale(1.1)}
.pillar-label{font-size:12px;font-weight:600;color:#333;line-height:1.6;text-align:center}

/* ======= CONFIDENCE BANNER =======
   Dark rounded card with margin sides
   Text sits bottom-left, gradient overlay */
.banner-wrap{padding:28px 28px 0}
.conf-banner{position:relative;min-height:400px;display:flex;align-items:flex-end;overflow:hidden;border-radius:12px}
.conf-bg{position:absolute;inset:0;z-index:0}
.conf-bg img{width:100%;height:100%;object-fit:cover;object-position:center 25%;transition:transform .9s ease;display:block}
.conf-banner:hover .conf-bg img{transform:scale(1.04)}
.conf-overlay{position:absolute;inset:0;background:linear-gradient(to right,rgba(0,0,0,.75) 0%,rgba(0,0,0,.45) 55%,rgba(0,0,0,.1) 100%);z-index:1}
.conf-content{position:relative;z-index:2;padding:52px 60px}
.conf-title{font-size:46px;font-weight:800;color:#fff;line-height:1.1;letter-spacing:-.3px;margin-bottom:10px}
.conf-sub{font-size:13.5px;color:rgba(255,255,255,.82);line-height:1.7;margin-bottom:28px;max-width:310px}
.btn-wht{display:inline-flex;align-items:center;gap:10px;background:#fff;color:#111;font-size:11px;font-weight:700;letter-spacing:1.8px;text-transform:uppercase;padding:13px 26px;border:2px solid #fff;cursor:pointer;transition:background .28s,color .28s,transform .22s;width:fit-content}
.btn-wht:hover{background:transparent;color:#fff;transform:translateY(-2px)}
.btn-wht i{font-size:11px}

/* ======= CTA STRIP =======
   Light gray bg, bag icon circle, text left, dark button right */
.cta-strip{background:#f8f6f2;padding:30px 60px;display:flex;align-items:center;justify-content:space-between;gap:24px;margin:28px 28px 0;border-radius:8px}
.cta-left{display:flex;align-items:center;gap:20px}
.cta-icon{width:58px;height:58px;border-radius:50%;border:1.5px solid #ddd;background:#fff;display:flex;align-items:center;justify-content:center;font-size:22px;color:#111;flex-shrink:0;transition:border-color .25s,box-shadow .25s}
.cta-strip:hover .cta-icon{border-color:#bbb;box-shadow:0 4px 14px rgba(0,0,0,.08)}
.cta-title{font-size:19px;font-weight:700;color:#111;margin-bottom:4px}
.cta-sub{font-size:13px;color:#999}
.btn-dark-sm{display:inline-flex;align-items:center;gap:10px;background:#111;color:#fff;font-size:11px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;padding:15px 28px;white-space:nowrap;border:2px solid #111;cursor:pointer;transition:background .28s,color .28s,transform .22s,box-shadow .28s}
.btn-dark-sm:hover{background:transparent;color:#111;transform:translateY(-2px);box-shadow:0 6px 18px rgba(0,0,0,.11)}
.btn-dark-sm i{font-size:11px}

/* RESPONSIVE */
@media(max-width:1024px){
  .hdr-inner{padding:0 32px}
  .hero{grid-template-columns:40% 60%;align-items:stretch}
  .hero-left{padding:45px 40px 45px 60px}
  .hero-title{font-size:40px}
  .hero-desc{font-size:13.5px}
  .hero-right{width:100%;height:100%}
  .our-story{grid-template-columns:45% 55%;gap:28px;padding:0 24px;align-items:stretch}
  .story-photo{height:100%;width:100%}
  .story-right{padding:0}
  .story-title{font-size:36px;margin-bottom:22px}
  .story-body{font-size:13.5px}
  .st-eyebrow{margin-bottom:18px}
  .pillars{padding-top:0}
  .pillar{padding:24px 16px 20px}
  .conf-content{padding:44px 48px}
  .footer-grid{grid-template-columns:1.4fr 1fr 1fr 1.1fr;gap:36px}
}

@media(max-width:768px){
  .ann-item{padding:0 12px;font-size:10px}
  .hdr-inner{padding:0 20px;height:60px}
  .logo{font-size:18px}
  .main-nav{display:none}
  .hamburger{display:flex}
  .hero{grid-template-columns:1fr;align-items:stretch}
  .hero-left{padding:40px 28px;order:2}
  .hero-right{order:1;height:360px;width:100%}
  .hero-title{font-size:36px;margin-bottom:18px}
  .hero-desc{font-size:13px;margin-bottom:10px}
  .hero-desc:last-of-type{margin-bottom:24px}
  .our-story{grid-template-columns:1fr;gap:24px;padding:0 20px;align-items:stretch}
  .story-photo{border-radius:12px;height:300px;width:100%}
  .story-right{padding:0}
  .story-title{font-size:32px;margin-bottom:20px;font-weight:800}
  .story-body{font-size:13px;margin-bottom:14px;color:#666}
  .story-tagline{margin-bottom:24px;font-size:13px}
  .st-eyebrow{margin-bottom:16px}
  .pillars{grid-template-columns:1fr;border-top:1px solid #e8e5e0}
  .pillar{border-right:none;border-bottom:1px solid #e8e5e0;padding:20px 16px}
  .pillar:last-child{border-bottom:none}
  .banner-wrap{padding:20px 20px 0}
  .conf-banner{min-height:320px;border-radius:8px}
  .conf-content{padding:36px 28px}
  .conf-title{font-size:32px}
  .conf-sub{font-size:12.5px;margin-bottom:20px}
  .cta-strip{padding:24px 28px;margin:20px 20px 0;flex-direction:column;gap:16px}
  .cta-left{flex-direction:column;text-align:center}
  .cta-icon{width:48px;height:48px}
  .btn-dark-sm{width:100%;justify-content:center}
  .site-footer{padding:40px 28px 24px}
  .footer-grid{grid-template-columns:1fr;gap:32px}
}