/* =========================================================
   V3 Petro Consulting — single page parallax site
   ========================================================= */

:root{
  --cream:        #f2ece7;
  --cream-2:      #eae3d3;
  --dark:         #1b1712;
  --dark-2:       #241d16;
  --rust:         #b85c2e;
  --rust-dark:    #9a4a24;
  --rust-light:   #d98a4f;
  --text-dark:    #2a231c;
  --text-muted:   #6b6154;
  --border:       #ddd4c0;
  --white:        #ffffff;
  --card-hover:   #f9f3ee;

  --font-head: 'Oswald', Arial, sans-serif;
  --font-body: Arial, Helvetica, sans-serif;

  --container: 1240px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
section[id], .nav-anchor[id]{ scroll-margin-top:157px; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--text-dark);
  background:var(--cream);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img,svg,video{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{
  font-family:var(--font-head);
  text-transform:uppercase;
  margin:0;
  line-height:1.15;
  color:var(--text-dark);
  letter-spacing:.5px;
}
p{ margin:0; }

.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 24px;
}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:var(--font-head);
  font-weight:600;
  letter-spacing:1px;
  text-transform:uppercase;
  font-size:15px;
  padding:18px 38px;
  border:2px solid transparent;
  cursor:pointer;
  transition:background .25s ease,color .25s ease,border-color .25s ease,transform .2s ease;
}
.btn-primary{
  background:var(--rust);
  color:var(--white);
}
.btn-primary:hover{
  background:var(--rust-dark);
  transform:translateY(-2px);
}
.btn-outline{
  border-color:var(--cream);
  color:var(--text-dark);
  background:transparent;
  padding:14px 28px;
}
.btn-outline.dark{
  border-color:var(--rust);
  color:var(--rust);
}
.btn-outline.light{
  border-color:rgba(255,255,255,.85);
  color:var(--white);
}
.btn-outline:hover{
  background:var(--rust);
  border-color:var(--rust);
  color:var(--white);
}

/* ---------- parallax core ---------- */
.parallax-layer{
  position:absolute;
  inset:-12% 0;
  height:124%;
  will-change:transform;
  z-index:0;
}
@media (prefers-reduced-motion:reduce){
  .parallax-layer{ transform:none !important; }
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:var(--cream);
  border-bottom:1px solid var(--border);
  transition:box-shadow .3s ease, border-color .3s ease;
}
.site-header.scrolled{
  border-bottom-color:transparent;
  box-shadow:0 6px 24px rgba(27,23,18,.13);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
  width:80%;
  max-width:1680px;
  margin:0 auto;
  padding:22px 0;
}
.logo{
  display:flex;
  align-items:center;
  flex-shrink:0;
}
.logo-img{
  height:112px;
  width:auto;
}
.main-nav{
  display:flex;
  gap:42px;
  margin-left:auto;
}
.main-nav a{
  font-family:var(--font-head);
  font-size:19px;
  font-weight:600;
  letter-spacing:1px;
  text-transform:uppercase;
  color:var(--text-dark);
  position:relative;
  padding:6px 0;
}
.main-nav a::after{
  content:"";
  position:absolute;
  left:0; bottom:0;
  width:0; height:2px;
  background:var(--rust);
  transition:width .25s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after{ width:100%; }

.nav-phone{ display:none; }

.phone-pill{
  display:flex;
  align-items:center;
  gap:12px;
  background:var(--rust);
  color:var(--white);
  border-radius:999px;
  padding:16px 30px;
  font-family:var(--font-head);
  font-size:17px;
  font-weight:500;
  letter-spacing:.5px;
  white-space:nowrap;
  transition:background .25s ease;
}
.phone-pill:hover{ background:var(--dark); }
.phone-icon svg{ display:block; width:20px; height:20px; }

.nav-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:32px; height:32px;
  flex-shrink:0;
  background:none;
  border:none;
  cursor:pointer;
  padding:0;
}
.nav-toggle span{
  display:block;
  height:2px;
  background:var(--text-dark);
  transition:transform .25s ease, opacity .25s ease;
}
.nav-toggle.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity:0; }
.nav-toggle.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position:relative;
  min-height:690px;
  height:calc(82vh + 50px);
  overflow:hidden;
  display:flex;
  align-items:center;
}
.hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}
.hero-img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 8%;
  background:var(--dark);
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(10,7,4,.72) 0%, rgba(10,7,4,.42) 42%, rgba(10,7,4,.15) 75%);
  z-index:1;
}
.hero-content{
  position:relative;
  z-index:2;
  max-width:900px;
  padding-left:clamp(24px, 5vw, 80px);
  padding-right:24px;
}
.hero-content .btn{
  font-size:18px;
  padding:22px 48px;
}
.hero-content h1{
  color:var(--white);
  font-size:clamp(36px, 5.6vw, 68px);
  font-weight:400;
  margin-bottom:26px;
}
.hero-sub{
  color:#f0e6d6;
  font-size:20px;
  max-width:520px;
  line-height:1.5;
  padding:20px 0;
  border-top:1px solid rgba(240,230,214,.5);
  border-bottom:1px solid rgba(240,230,214,.5);
  margin-bottom:38px;
}

/* =========================================================
   SERVICES
   ========================================================= */
.services{ padding:96px 0; }
.services .container{
  width:88%;
  max-width:1680px;
  margin:0 auto;
  padding:0;
}
.section-heading{ text-align:center; margin-bottom:56px; }
.eyebrow{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:22px;
  color:var(--rust-dark);
  font-family:var(--font-head);
  font-size:21px;
  font-weight:600;
  letter-spacing:2px;
  text-transform:uppercase;
  margin:0 0 20px;
}
.eyebrow span{
  width:130px; height:1px;
  background:var(--rust-dark);
  display:inline-block;
}
.section-heading h2{
  font-size:clamp(40px,5.4vw,72px);
  color:#1c1712;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:0;
  border-top:1px solid var(--border);
  border-left:1px solid var(--border);
}
.service-card{
  padding:52px 36px;
  border-right:1px solid var(--border);
  border-bottom:1px solid var(--border);
  background:var(--cream);
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  transition:background .25s ease, transform .25s ease;
}
.service-card:hover{
  background:var(--card-hover);
  transform:translateY(-4px);
  box-shadow:0 14px 30px rgba(0,0,0,.06);
  position:relative;
  z-index:1;
}
.service-icon{
  display:inline-flex;
  align-items:flex-end;
  justify-content:center;
  height:140px;
  margin-bottom:30px;
}
.service-icon img{
  height:100%;
  width:auto;
  max-width:170px;
  object-fit:contain;
}
.service-card h3{
  font-size:26px;
  max-width:320px;
  margin:0 auto 26px;
}
.service-card ul{
  text-align:left;
  width:100%;
  max-width:290px;
  margin:0 auto;
}
.service-card ul li{
  position:relative;
  padding-left:16px;
  font-size:16px;
  color:var(--text-muted);
  line-height:2;
}
.service-card ul li::before{
  content:"";
  position:absolute;
  left:0; top:14px;
  width:6px; height:6px;
  background:var(--rust);
  border-radius:50%;
}

/* =========================================================
   STATS + ABOUT
   ========================================================= */
.stats-about{
  display:grid;
  grid-template-columns:minmax(340px, 44%) 1fr;
}
.stats-panel{
  display:grid;
  grid-template-columns:1fr 1fr;
  background:var(--dark) url("../images/Black.jpg") center/cover no-repeat;
  position:relative;
  padding:34px;
}
/* rust frame, inset so a band of the dark backdrop shows outside it */
.stats-panel::before{
  content:"";
  position:absolute;
  inset:34px;
  border:1px solid var(--rust);
  pointer-events:none;
  z-index:1;
}
.stat-tile{
  padding:clamp(30px,2.6vw,50px) clamp(20px,2.1vw,40px);
  border-right:1px solid var(--rust);
  border-bottom:1px solid var(--rust);
  display:flex;
  flex-direction:row;
  align-items:flex-start;
  gap:clamp(14px,1.5vw,26px);
}
.stat-tile:nth-child(2n){ border-right:none; }
.stat-tile:nth-last-child(-n+2){ border-bottom:none; }
.stat-icon{ display:inline-flex; flex-shrink:0; margin-top:2px; }
.stat-icon img{ width:clamp(62px,5.4vw,92px); height:clamp(62px,5.4vw,92px); object-fit:contain; }
.stat-text{
  display:flex;
  flex-direction:column;
}
.stat-number{
  font-family:var(--font-head);
  color:var(--rust-light);
  font-size:clamp(44px,4vw,68px);
  font-weight:700;
  line-height:1;
  text-transform:uppercase;
}
.stat-number--text{
  font-size:clamp(21px,1.7vw,28px);
  color:var(--white);
  line-height:1.25;
  margin-bottom:6px;
}
.stat-label{
  color:var(--white);
  font-family:var(--font-head);
  font-size:clamp(16px,1.35vw,21px);
  font-weight:600;
  letter-spacing:.5px;
  text-transform:uppercase;
  line-height:1.3;
  margin-top:6px;
}
.stat-label--muted{
  color:#cfc6b8;
  font-family:var(--font-body);
  font-size:15px;
  font-weight:400;
  letter-spacing:normal;
  text-transform:none;
  margin-top:2px;
}

.about-panel{
  position:relative;
  overflow:hidden;
  display:flex;
  align-items:stretch;
  min-height:420px;
}
.about-bg{ width:100%; height:100%; }
.about-img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 62%;
}
.about-scrim{
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(90deg,
    var(--cream) 0%,
    rgba(242,236,224,.94) 32%,
    rgba(242,236,224,.6) 55%,
    rgba(242,236,224,0) 78%);
}
.about-panel .about-content{
  position:relative;
  z-index:2;
  background:transparent;
  margin:0;
  padding:60px;
  max-width:560px;
  align-self:center;
}
.eyebrow-left{
  color:var(--rust-dark);
  font-family:var(--font-head);
  font-size:19px;
  font-weight:600;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-bottom:16px;
}
.about-content h2{
  font-size:clamp(30px,3.2vw,40px);
  margin-bottom:22px;
}
.about-divider{
  display:block;
  width:70px;
  height:2px;
  background:var(--rust);
  margin-bottom:26px;
}
.about-content p:not(.eyebrow-left){
  color:var(--text-muted);
  font-size:17px;
  line-height:1.7;
  margin-bottom:30px;
}

/* =========================================================
   LANCE / TEAM
   ========================================================= */
.lance-section{ padding:0; }
.lance-row{
  display:grid;
  grid-template-columns:1.05fr 0.95fr 1.7fr;
  align-items:stretch;
  min-height:520px;
}
.lance-bio{
  padding:60px 50px 60px clamp(24px,5vw,80px);
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:18px;
}
.lance-bio h2{ font-size:clamp(28px,2.6vw,38px); color:var(--rust-dark); margin-bottom:6px; }
.lance-bio p{ color:var(--text-dark); font-size:15px; line-height:1.75; }
.lance-bio .btn{ align-self:flex-start; margin-top:10px; }

.lance-photo{ overflow:hidden; }
.lance-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 20%;
}

.involved{
  padding:60px clamp(24px,5vw,70px) 60px 50px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.involved h3{
  font-size:clamp(24px,2.2vw,32px);
  color:#1c1712;
  margin-bottom:40px;
}
.badges{
  display:flex;
  align-items:flex-start;
}
.badge{
  flex:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:16px;
  padding:0 24px;
}
.badge:not(:first-child){ border-left:1px solid var(--border); }
.badge img{ height:100px; width:auto; max-width:190px; object-fit:contain; }
.badge-title{
  display:block;
  font-family:var(--font-head);
  font-size:15px;
  font-weight:600;
  letter-spacing:.5px;
  line-height:1.4;
  text-transform:uppercase;
  color:var(--text-dark);
}
.badge-link{ transition:opacity .25s ease; }
.badge-link:hover img{ opacity:.82; }
.badge-link:hover .badge-title{ color:var(--rust); }
.badge-link img,
.badge-link .badge-title{ transition:opacity .25s ease, color .25s ease; }
.badge-sub{
  display:block;
  font-family:var(--font-body);
  font-size:14px;
  font-weight:400;
  color:var(--text-muted);
  margin-top:2px;
}

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-banner{
  position:relative;
  overflow:hidden;
  padding:60px 0;
}
.cta-bg{
  position:absolute;
  inset:0;
  width:100%; height:100%;
  background:url("../images/brown.jpg") center/cover no-repeat;
}
.cta-overlay{
  position:absolute;
  inset:0;
  background:rgba(10,6,3,.3);
  z-index:1;
}
.cta-banner .container{
  width:92%;
  max-width:1800px;
  margin:0 auto;
  padding:0;
}
.cta-inner{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  flex-wrap:nowrap;
}
.cta-inner h2{
  flex:0 0 auto;
  color:var(--white);
  font-size:45px;
  font-weight:700;
  line-height:1.3;
  white-space:nowrap;
  padding-right:36px;
  margin-right:36px;
  border-right:1px solid rgba(255,255,255,.35);
}
.cta-text{
  flex:0 1 440px;
  color:#e9ddc9;
  font-size:22px;
  font-weight:400;
  line-height:1.6;
}
.cta-actions{
  flex:0 0 auto;
  margin-left:auto;
  padding-left:36px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:18px;
}
.cta-actions .btn{
  border-width:1px;
  padding:20px 46px;
  font-size:18px;
}
.cta-phone{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--white);
  font-family:var(--font-head);
  font-size:26px;
  font-weight:600;
  letter-spacing:.5px;
}
.cta-phone svg{ color:var(--rust-light); width:22px; height:22px; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{
  background:var(--dark) url("../images/Black.jpg") center/cover no-repeat;
  color:#cfc6b8;
}
.site-footer .container{
  width:92%;
  max-width:1800px;
  margin:0 auto;
  padding-left:0;
  padding-right:0;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr .9fr .7fr;
  gap:48px;
  padding:80px 0 56px;
}
.footer-brand .logo-img{
  height:110px;
  margin-bottom:22px;
}
.footer-tagline{
  font-family:var(--font-head);
  color:var(--rust-light);
  font-size:30px;
  font-weight:600;
  letter-spacing:.5px;
  text-transform:uppercase;
  line-height:1.4;
}
.footer-col{
  align-self:start;
  border-left:1px solid rgba(255,255,255,.18);
  padding-left:32px;
}
.footer-col h4{
  color:var(--rust-light);
  font-size:30px;
  font-weight:600;
  letter-spacing:1px;
  margin-bottom:22px;
}
.footer-col p{
  font-size:16px;
  line-height:1.7;
  color:var(--white);
  display:flex;
  gap:10px;
}
.footer-col p svg{ flex-shrink:0; width:42px; height:42px; margin-top:5px; color:var(--rust); }
.address-link{ transition:color .2s ease; }
.address-link:hover{ color:var(--rust-light); text-decoration:underline; }
.footer-links li{ margin-bottom:12px; }
.footer-links a{
  font-size:16px;
  color:var(--white);
  transition:color .2s ease;
}
.footer-links a:hover{ color:var(--rust-light); }
.social-row{ display:flex; gap:12px; flex-wrap:wrap; }
.social-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px; height:42px;
  border:1px solid var(--rust);
  border-radius:4px;
  color:var(--white);
  transition:background .2s ease, color .2s ease;
}
.social-icon:hover{ background:var(--rust); color:var(--white); }

.footer-bottom{ border-top:1px solid rgba(255,255,255,.15); }
.footer-bottom-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:10px;
  padding:24px 0;
  font-size:14px;
  color:#cfc6b8;
}
.footer-policy a{ color:#cfc6b8; }
.footer-policy a:hover{ color:var(--rust-light); }


/* =========================================================
   MODAL
   ========================================================= */
.modal{
  position:fixed;
  inset:0;
  z-index:2000;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
}
.modal[hidden]{ display:none; }
.modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(15,11,7,.72);
  opacity:0;
  transition:opacity .25s ease;
}
.modal.open .modal-backdrop{ opacity:1; }
.modal-dialog{
  position:relative;
  z-index:1;
  width:100%;
  max-width:780px;
  max-height:calc(100vh - 48px);
  overflow-y:auto;
  background:var(--cream);
  border-top:4px solid var(--rust);
  padding:52px clamp(24px,4vw,60px) 48px;
  box-shadow:0 30px 70px rgba(0,0,0,.4);
  opacity:0;
  transform:translateY(18px);
  transition:opacity .28s ease, transform .28s ease;
}
.modal.open .modal-dialog{ opacity:1; transform:translateY(0); }
.modal-close{
  position:absolute;
  top:16px; right:16px;
  width:42px; height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:transparent;
  border:1px solid var(--border);
  color:var(--text-dark);
  cursor:pointer;
  transition:background .2s ease, color .2s ease, border-color .2s ease;
}
.modal-close:hover{ background:var(--rust); border-color:var(--rust); color:var(--white); }
.modal-title{
  font-size:clamp(30px,3.4vw,42px);
  color:var(--text-dark);
  padding-right:48px;
}
.modal-divider{
  display:block;
  width:80px; height:3px;
  background:var(--rust);
  margin:18px 0 26px;
}
.modal-body p{
  color:var(--text-muted);
  font-size:17px;
  line-height:1.75;
}
.modal-body p + p{ margin-top:20px; }
body.modal-open{ overflow:hidden; }

@media (prefers-reduced-motion:reduce){
  .modal-backdrop,
  .modal-dialog{ transition:none; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width:1080px){
  /* small laptops / landscape tablets: logo + full nav + pill overran the viewport */
  .header-inner{ width:92%; }
  .logo-img{ height:80px; }
  section[id], .nav-anchor[id]{ scroll-margin-top:125px; }
  .main-nav{ gap:22px; }
  .main-nav a{ font-size:16px; letter-spacing:.5px; }
  .phone-pill{ padding:12px 20px; font-size:15px; gap:8px; }
  .services-grid{ grid-template-columns:repeat(2,1fr); }
  .stats-about{ grid-template-columns:1fr; }
  .stats-panel{ grid-template-columns:1fr 1fr; }
  .about-panel{ min-height:380px; }
  .lance-row{ grid-template-columns:1fr; }
  .lance-photo{ order:-1; height:340px; }
  .involved{ padding:50px clamp(24px,5vw,70px); }
  .footer-grid{ grid-template-columns:1fr 1fr; }
}

@media (max-width:860px){
  .header-inner{ width:100%; padding:22px 24px; gap:14px; }
  .logo-img{ height:64px; }
  section[id], .nav-anchor[id]{ scroll-margin-top:109px; }
  .main-nav{
    position:fixed;
    top:109px; left:0; right:0;
    background:var(--cream);
    flex-direction:column;
    gap:0;
    max-height:0;
    overflow:hidden;
    border-bottom:1px solid var(--border);
    transition:max-height .3s ease;
  }
  .main-nav.open{ max-height:460px; }
  .main-nav a{
    padding:16px 24px;
    border-top:1px solid var(--border);
  }
  .nav-toggle{ display:flex; }
  .phone-pill{
    display:flex;
    justify-content:center;
    width:46px;
    height:46px;
    padding:0;
    gap:0;
    flex-shrink:0;
    margin-left:auto;
  }
  .phone-text{ display:none; }
  .nav-phone{
    display:flex;
    align-items:center;
    gap:10px;
    padding:18px 24px;
    border-top:1px solid var(--border);
    background:var(--rust);
    color:var(--white);
    font-family:var(--font-head);
    font-size:19px;
    font-weight:600;
    letter-spacing:1px;
  }
  .nav-phone svg{ flex-shrink:0; }
  .nav-phone::after{ display:none; }

  /* narrow viewports crop the sides hard — bias the frame so the pumpjack stays in shot */
  .hero-img{ object-position:62% 40%; }

  .about-panel .about-content{ padding:36px 30px; max-width:100%; }
  .about-scrim{
    background:linear-gradient(180deg,
      var(--cream) 0%,
      rgba(242,236,224,.96) 55%,
      rgba(242,236,224,.75) 100%);
  }
  .cta-inner{ flex-wrap:wrap; row-gap:28px; }
  .cta-inner h2{
    border-right:none;
    padding-right:0;
    margin-right:0;
    white-space:normal;
    /* flex:0 0 auto kept it at max-content width, so the longest line overflowed
       and body{overflow-x:hidden} clipped it instead of wrapping */
    flex:1 1 100%;
    min-width:0;
    font-size:clamp(28px,6.4vw,45px);
  }
  .cta-text{ flex-basis:100%; max-width:480px; }
  .cta-actions{ margin-left:0; padding-left:0; }
}

/* very narrow phones: shrink the logo so logo + call + menu still fit on one row */
@media (max-width:400px){
  .header-inner{ padding:18px 18px; gap:10px; }
  .logo-img{ height:52px; }
  section[id], .nav-anchor[id]{ scroll-margin-top:89px; }
  .main-nav{ top:89px; }
  .phone-pill{ width:42px; height:42px; }
  /* pre-existing: these paddings forced the page wider than a 320px screen */
  .service-card{ padding:44px 20px; }
  .stat-tile{ padding:38px 22px; gap:18px; }
}

@media (max-width:640px){
  .services-grid{ grid-template-columns:1fr; }
  .stats-panel{ grid-template-columns:1fr; }
  .stat-tile{ border-right:none; }
  .stat-tile:nth-last-child(-n+2){ border-bottom:1px solid var(--rust); }
  .stat-tile:last-child{ border-bottom:none; }
  .footer-grid{ grid-template-columns:1fr; }
  .footer-col{ border-left:none; padding-left:0; }
  .badges{ flex-direction:column; gap:32px; }
  .badge{ padding:0; }
  .badge:not(:first-child){ border-left:none; border-top:1px solid var(--border); padding-top:28px; }
  .hero{ height:auto; padding:140px 0 80px; }
  .lance-bio{ padding:40px 24px; }
  .modal{ padding:12px; }
  .modal-dialog{ padding:48px 22px 36px; max-height:calc(100vh - 24px); }
  .modal-body p{ font-size:16px; }
}
